-
Code4ReferencePython sample script to read and parse excel file using xlrd library
Recently I got interested in Python programming actually this was my first scripting language and its really a handy tool. I would like to share a small code which can access Excel(*.xls) file. I am assuming that you are having Ubuntu machine. In order to run this code you need to have xlrd package and Python installed. If…
-
Code4ReferenceCode4Reference: Useful git commands
Clearcase was my first version control software. I used it for 2 years and eventually I liked it since most of the commands are really simple to understand. In these two years I used to debug the code on debugging branch. Once I was done with the fix, I renamed the branch to follow the…
-
Code4ReferenceCode4Reference » Page 2 of 6 » Tutorials on Adroid, java, Python and how to do articles
How to read environment variable in 5 different languages? In code development, be it one or the other requirement, we need to access the environment variable. In this post, the environment variable will be read/set in 5 different programming languages. C language In C, environment variables can be read and set by getenv() and putevn()…
-
Code4ReferenceHow to read environment variable in 5 different languages.
How to read environment variable in 5 different languages? In code development, be it one or the other requirement, we need to access the environment variable. In this post, the environment variable will be read/set in 5 different programming languages. In C, environment variables can be read and set by getenv() and putevn() methods respectively.…
-
Code4Referencexml parsing gradle script
Gradle is a great tool for build management. Recently I started using it in my projects. In one of the requirements I had to parse the xml file using gradle. I started looking for help from blog and gradle documents but I hardly found any. I started fiddling around and discovered that it is achievable…