
Julia: A Competitor to Python?
Julia combines python’s convenience with C’s performance. This means it combines the convenience of dynamic languages with the performance of statically linked languages. Introduction Humans talk to computers by giving them specific instructions that automate our world with the help of programming languages. There are many programming languages like Java, C,... read moreDjango Test Driven Development using Bitbucket
Big IT companies have seen the need of testing as a major step in software development and emphasize on testing of software thoroughly before shipping them out. Assuming you made a smoke detector alarm that triggers an alarm once it detects smoke, you cannot just start selling it directly or install it in your house waiting for the day you house catches fire to find out whether... read moreConverting a Python Script to Windows Executable
Normally, when we want to install a Microsoft software, we go to the source be the Microsoft Store or any website offering the software. We then download an installer which normally is an (.exe) file. Ones installing it generates many files and folders which are stored in the C:\Program Files. Prerequisites Little knowledge of python Python installed in your Windows OS Have you ever wondered... read morePython Leading in the List of Top 10 Programming Languages in 2017
IEEE Spectrum has recently published its fourth annual ranking of Top Programming Languages for the year 2017. Python which was on third step in 2016 ranking has climbed up to the first position leading the list of Top 10 programming languages. Many times students ask me which programming language is in demand currently to decide their career path or to pursue specialization courses.... read moreHow to Add a New Row in a Dynamic Table in JavaScript?
In my last post on dynamic table in JavaScript, we had created a dynamic table. I have received many requests to show how to add a new row in the table at runtime. Considering the same table and continuing with the same variables, let us try to add new row in the dynamic table we have already created. As discussed in the previous post, we are managing the row ordering of our data on timestamp i.e.... read more