AWS Free tier
Amazon Web Services - AWS

AWS Free Tier Explained

AWS Free Tier can be used for anything you want to run in the cloud, such as launching new applications, testing existing applications in the cloud, or simply getting hands-on experience with AWS. The AWS Free Tier is offered across 100-plus services and allows you to get hands-on experience with AWS services such as Amazon EC2, Amazon S3, and Amazon…

Continue Reading

Flask
Technical

How to deploy a Flask App with NGINX and Gunicorn

Preface Deploying a Flask web application is an essential step in making your project accessible to users worldwide. This blog post will guide you through the process of deploying a Flask app with NGINX and Gunicorn using python3 virtual environments (venv), Supervisor for process management, custom DNS for domain configuration, and Git for version control. While the steps may involve…

Continue Reading

multipass
Technical

Canonical’s Multipass: Streamlining Software Testing and Development

Firstly, a huge thanks to Canonical for giving us this awesome tool for free! Yet another triumph from them for sure. I will try to explain and explore the utility of Multipass in software testing and development cycles, highlighting its advantages and versatility, and also delves into its role in testing Docker Swarm. In the ever-evolving landscape of software development,…

Continue Reading

green and white line illustration
Technical

What is python enumerate() function?

The enumerate() function in Python is a built-in function that allows us to iterate over a sequence (such as a list, tuple, or string) while keeping track of the index of the current item. It returns both the index and the value of each item in the sequence as you iterate through it. Here’s a simple example to illustrate how…

Continue Reading

Non Technical

The Significance of Secularism in Promoting Equality

Introduction Secularism, as a principle that separates religion from the affairs of the state, plays a pivotal role in fostering equality in society. The idea of secularism is rooted in the belief that individuals should be free to practice their own religion or belief system without interference from the government or other religious institutions. This essay explores the vital importance…

Continue Reading

back to school flatlay
Technical

How I Learn New Technical Concepts: My Black box Method

Learning something new in the tech world is like opening a mysterious Blackbox. You’re faced with complex terms and ideas that need unravelling. My approach, what I call it “The Blackbox Method,” (is a metaphor for the process of diving into complex topics and gradually understanding them, similar to opening a black box to uncover its contents) simplifies this process.…

Continue Reading

a woman with number code on her face while looking afar
Technical

How to convert decimal numbers to binary in Python: A Step-by-Step Guide

Binary number system is a fundamental concept in computer science, particularly when we deal with low-level operations and digital representation. In this article, I will explore a simple Python code snippet that manually converts a decimal number to its binary equivalent. Understanding the inner workings of this code can provide valuable insights into how binary representation is constructed. The Code:…

Continue Reading

black screen with code
Technical

Autoindent according to language in VS Code

I am a bit tired off manual handling of indentation, specially when working on full stack projects. Jumping two to four spaces or tabs are not cutting it any more. So out of a bit of rage, made this .editorconfig file for VS Code. It is a configuration file standard that helps maintain consistent coding styles across different programming languages.…

Continue Reading