Monthly Archives: February, 2021
Flask
Getting started with Flask: a Python microframework
Flask is a python framework for writing web applications. It is a microframework, which as the name suggests, is a small, clean,...
Python
Managing Python dependencies using Virtual Environments
When we start building a Python project that goes beyond simple scripts, we tend to start using third-party dependencies. When working on...
AWS
Configure multiple accounts in AWS CLI
AWS CLI is a great tool for doing anything related to AWS. We can configure our access key for an account using...
JavaScript
JavaScript Proxy: What and Why?
EcmaScript 2015 introduced yet another feature that has not been used widely yet. A JavaScript proxy allows us to wrap an existing...
Programming
Visual Studio Code Snippets: Boost productivity with shortcuts
As developers, we always want to be more productive. And who does not like to write more code using a lesser number...
React
Avoiding race conditions and memory leaks in React useEffect
Let us take a look at an implementation of getting data from an API request and see if there is any possibility...
Productivity
How to easily build good habits: 4 tips backed by research
The best way to move forward towards achieving our dreams is to commit to them. And habits are the compound interest of...
JavaScript
Object initialization shorthand notations in JavaScript
I was recently working on a project in which I was trying to use a shorthand notation for destructuring assignment of a...