Skip to main content

Information Technology growth in the state of Bihar


It is great to witness the change and the development in Bihar in the last couple of years. There has been an unprecedented growth in the basic infrastructures, real-estates, and transportation facilities along with the burgeoning malls & multiplexes in the northern Indian state. Bihar has attracted various investments across industries from Manufacturing, Services, Health-Care, to Education owing to the conducive environment in the recent time.

The northern state of Bihar was left with just Tourism as one of the leading sector to boost the economy thanks to the bifurcation in state in the late 2000. While the talented people from the state are serving across India and making their presence felt in the IT industry, it was surprising to see Bihar going unnoticed and not getting leveraged with the IT growth in the past. As many of its industries have been agriculture based, it left the IT industry lagging behind the peer states.

Amidst the stupendous growth recently across industries in Bihar, IT industry is no exception and has seen growth in terms of good number of investments being made in the region. With the set up of Software Technology Park of India (STPI) way back in 2008, Bihar has been on its way to emerge as a next IT hub in the eastern region.

The government of Bihar has taken many initiatives to promote the industry by establishing the Bihar Information Technology Authority(BITA) and Information Communication Technology(ICT) policy. Apart form this district e-governance societies(DeGS) and National Informatics Center(NIC) have been formed to implement e-governance at district level. Government departments like
Electricity department, PWD, Revenue department, Registrar office and others are leveraging the exceedingly use of technology to carry out the official work due to the gradual digitization in bureaucracy and the distribution of the laptop and tabs among government servants.

The big daddy of IT industry like TCS, Infosys, and HCL have already made a foray into Bihar growth bandwagon. The very basic services like acquiring driving licenses, residential certificates, passports that used to take ages, have now gone online and services can be availed with no more hustle. Many of the state departments have come up with their own Websites and the
bureaucracy has gone hi-tech.

Even though many of state's e-governance projects have been handed over to the large corporations, nevertheless substantial investments are yet to be made in terms of IT companies opening their branches and creating employment opportunities for the local people. With the basic infrastructure already underway, the fundamental requirements to establish IT industry at the ground level in Bihar are:
1) Land Acquisition
2) Effective power supply.

It will be interesting to see how the government tackle these two issues, as the land acquisition has been the bone of contention in many states, like for Tata in Bengal and Posco in Orissa to name a few, and power(energy) sector is still at the nascent stage in the state.

Hence armed with the lucrative IT policy and progressive governance, future of IT in the state looks promising in days to come !!

Pankaj

Comments

Popular posts from this blog

Spring Cloud vs AWS/GCP/Azure Cloud - In the realm of Distributed Systems Development

The Scalability and High-Availability have become defacto standards for Distributed Systems development. The traditional applications are moving fast from the On-Prem model to the Cloud. With such requirements, it has become imperative to build an application with robust APIs or Cloud Services having fault-tolerant and graceful fallback functionality. Spring framework has emerged as a full-fledged, robust, feature-rich and mature ecosystem over time. It has been equipped with lots of features for rapid development. Spring Boot dominates the Cloud Native Software development. With the introduction of Spring Boot, the Microservices development has catapulted to a whole new level as it brings all sorts of dependencies in one place. Spring Cloud is an umbrella project under the Spring ecosystem. It consists of many sub-projects to build a robust distributed system. It was primarily developed by Netflix and open-sourced as part of Netflix OSS to create resilient, fault-tolerant and s...

Program "make" not found in PATH in Eclipse

In order to fix the error "Program "make" not found in PATH in Eclipse", follow below steps: Right Click on the Project -> Properties -> C/C++ Build ->Environment Check PATH, if it has C:\cygwin64\bin in the path or not. Sometimes path set in Environment variables is not reflected in the Eclipse, so you have to edit it here. Build/Restart the eclipse again, you should be able to get rid of the error. If it still persists, do right click on the Project -> Properties -> C/C++ Build ->Tool Chain Editor Current toolchain: ->Cygwin GCC Current builder: -> GNU Make Builder It should work now !! Pankaj

Create the Vsix package from a class library

A project that was created as a class library that contains numerous controls that can be used in windows forms applications. In order to create an installation package (*.vsix) that will embed these controls into the visual studio toolbox window. The controls are visible in the toolbox window when being in the solution that has this project within itself. I have created a vsix project and referenced the component project's dll as a Microsoft.VisualStudio.Assembly asset. The VS2017 build process creates the vsix file that I need. When I run it on a system with a fresh VS installation, it goes through the install process with no problems, but the components don't show up in the toolbox. When I try to register the asset as a Microsoft.VisualStudio.ToolboxControl, I get the error 'The target "PkgdefProjectOutputGroup" does not exist in the project.  To reslolve the below error which comes while adding reference of DLL application to VSIX project for Visual ...