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

SQL photo
Technical, Data Analytics

Basic Overview of SQL Language / RDBMS

What is SQL? SQL stands for Structured Query Language. SQL is a standard language for accessing and manipulating databases. Just as humans use different languages to communicate with others, so do computers. Structured Query Language (or SQL, often pronounced “sequel”) enables us to talk to their databases. SQL is one of the most useful data analyst tools, especially when working…

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