Best of Medium — January 2023
- 1
- 2
Medium·3y
The entry-level (junior) full-stack software engineer’s guide
The entry-level (junior) full-stack software engineer’s guide Jan 11. Learn how variables are declared, the language primitives, how functions, objects, and arrays are used in JavaScript. Find out what the language data types are and how to use them.
- 3
- 4
Medium·3y
The Six (06) Visual Studio Code extensions I advise all python developers to use
The Six (06) Visual Studio Code extensions I advise all python developers to use Jan 8 In this article, I want to make it easy for you to find the most suitable VS Python code extensions for your needs. But first, let’s recap what is VS code and Python.
- 5
- 6
Medium·3y
JavaScript 101: All About Timers
JavaScript timers are great tools for achieving recurrent behavior or even triggering delayed actions. They’re not exactly accurate Timers either trigger an action after a certain number of seconds or repeat an action every time the specified timeout is over. Let’s take a look at what timers we have available and how they work.
- 7
Medium·3y
What, Why, and How JavaScript engine?
A JavaScript engine is a software component that executes JavaScript code. The first JavaScript engines were mere interpreters, but all relevant modern engines use…. etc. Disclaimer here — we will not go through the nitty-gritty (stack, memory heap, etc. The article will only focus on the JS Engine.
- 8
Medium·3y
Node.JS | Atomic Operations
An atomic operation in a Node.js server refers to a single, indivisible action that is performed on data. It is a type of operation that guarantees that the operation is completed in its entirety or not at all. This means that no other process or thread can access or modify the same data.
- 9
- 10
Medium·3y
An Introduction to Python FastAPI & Swagger UI
FastAPI is a modern API framework for developing RESTful APIs in Python. The framework is production ready and it is widely used in industry. FastAPI documents will get generated automatically without any extra lines of code and additional effort.
- 11
Medium·3y
Analysis in Python using Pandas. Data Analysis and Charting simple…
Analysis in Python using Pandas Dec 30, 2022 using pandas, NumPy, and seaborn libraries. In this article, we will play around with bank-nifty data and generate a heatmap of monthly returns. The first step one needs to follow is understanding the type of data they are dealing with.