Skip to main content

Posts

Significance of Development and Production Environment for any Application

The concept of the environment that any application runs on was something that I was unaware of as a student. I got introduced to these concept after becoming a part of corporate IT sector. Two of the most important environment are Development environment and Production environment. Of course, there are testing environments like  OAT and UAT environment, but at times these are taken as a sub part of the above mentioned major environments. So now the question arises, "What are  these environment? and why do I need to know about these?". Well, although subconsciously, we all are aware of these, not all of us are aware of how important these are to us and to each other. Development environment is basically the environment where the application is developed and maintained. Any changes that needs to be made to any application are made in development environment as well. The application in development environment could be any application made from scratch or any third party applica...

Warning while installing Django in Linux

I have been a windows user for a very long time, but quite recently, I decided to switch to Linux. Currently, I am using Ubuntu 16.0.4 LTS, which I still think is a great Debian based Linux Distribution for someone new to Linux. To be honest, the journey as a Linux user has been like a rollercoaster ride, after all, after using completely GUI based operating system like Windows, it may get annoying to use command line/ terminal for installing software. For me, installing apps using terminal isn't that worst part, in fact sites like askubuntu.com and in most cases even the websites for the required app makes the job easier, the worst part is when "apparently" the installation command looks to be correct, still however, some error pops up in the terminal. Then we try to search the web but get solutions only for windows machine even after exclusively mentioning "Linux" in the search bar. Something similar happened with me while trying to install Django in my Linux ...