Compare Top Python Frameworks
Python frameworks make it easier for developers to create web applications quickly by offering required functionality out of the box. This allows developers to focus on the business logic instead and get up and running faster and smarter See comparison between popular Python frameworks.
March 7, 2020All Articles
What is HTTP/2?
There are many reasons to feel excited about HTTP/2. It is the first major update of the HTTP protocol in 16 years! It was long overdue as the web dramatically evolved over the years....
Apr 23, 2016When to Rewrite from Scratch - Autopsy of a Failed Software
It was winter of 2012. I was working as a software developer in a small team at a start-up. We had just released the first version of our software to a real corporate customer. The de...
Apr 21, 2016Git Stash - Saving Your Changes
Let’s say you are in the middle of implementing a new feature. You’re half way through your changes and the code is in a messy state. You get a message that there’s an urgent issue th...
Apr 18, 2016What's the difference between git fetch vs git pull?
Git has two types of repositories: local and remote. The local repository is on your computer and has all the files, commit history etc. Remote repositories are usually hosted on a ce...
Apr 18, 2016The Problem With Code Coverage Metrics
Code coverage is a valuable metric. Software developers write tests for the code they have written and run code coverage analysis which gives them an assessment of how much of their c...
Apr 16, 2016Is it OK to make mistakes at work?
I have not failed. I have just found 10,000 ways that won’t work. -Thomas EdisonSoftware development is an activity that requires serious brain power. And it’s only natural that sof...
Apr 14, 2016Generating Sessions Ids
Session Id’s are unique, short-lived numbers that servers assign to users when they log in (or visit) so they can remember (or track) users for the duration of their sessions. Servers...
Apr 13, 2016Developing Sense of Ownership in Employees - Let Your People 'Own' It!
To me, management is: about hiring the right people telling them what needs to get done and why, giving them the tools they need and getting out of their way.
Apr 12, 2016What Are Code Reviews and How to Do Them Effectively
What is Code Review?Code review is the process or rather an activity in which code written by a developer is inspected by other developers to look for defects and improvements. In oth...
Apr 03, 2016Checked vs Unchecked Exceptions in Java. Why it's so Confusing
This blog post is intended for new Java developers. It starts with a historical perspective and a look at what motivated the design and creation of Java’s exception handling mechanism...
Apr 02, 2016Java
-
Java - How to Cancel Tasks in Executors (With Examples)
-
How to Stop Threads in Java. Best Practices and Examples.
-
Java - Convert char to String with Examples
-
Java Math.pow() Method with Examples
-
Java PrintWriter Explained with Examples (Java 9+)
-
Java Math.abs() with Examples
-
Java Math.ceil() Method with Examples
-
Java Math.floor() Method with Examples
-
Java Math.random() Method with Examples
-
Java Math.round() with Examples
-
Java Math.sqrt() Method with Examples
-
Java String to int with examples
-
Fibonacci Series in Java
-
Java Stream to Array Conversion
-
ArrayList to Array Conversion in Java