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:…
Category: Technical
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…
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.…