Guide to Time Zones and Timestamps
A comprehensive guide to understanding time zones, timestamps, and implementing timezone-aware applications.

2025-03-15
—
10 min read
Time zone
Timestamp
A personal blog where I share my thoughts.
A comprehensive guide to understanding time zones, timestamps, and implementing timezone-aware applications.
2025-03-15
—
10 min read
Time zone
Timestamp
Internet sockets are a fundamental part of the internet. They are used to establish a connection between two devices over the internet. In this article, we'll delve into the basics of internet sockets and how they work.
2024-08-29
—
18 min read
backend
c++
networking
React's key attribute is a powerful tool that often goes unnoticed or misunderstood by developers. we'll delve into the importance of the key attribute when rendering lists in React components
2023-09-24
—
11 min read
front-end
react
Discover how React's re-rendering works under the hood! Learn about the concepts of diffing and reconciliation and how they optimize UI updates in React applications.
2023-09-22
—
12 min read
front-end
react
Learn about web token generators JWT and PASETO. Explore their pros and cons, compare their structures, and choose the right one for your development needs.
2023-07-29
—
10 min read
backend
Promises are a pattern that helps with one particular kind of asynchronous programming: a function (or method) that returns a single result asynchronously. One popular way of receiving such a result is via a callback (“callbacks as continuations”)
2022-12-16
—
8 min read
Node
Javascript
Node.js is an Event-Driven architecture, when Node starts a server it initializes its memory by declaring variables and functions, and then it waits for the events to occur.
2022-12-02
—
12 min read
Node
Javascript
ACID, Its acronym refers to the presence of four properties: Atomicity, Consistency, Isolation, and durability, They are four critical properties of any relational database system that intended to guarantee data validity despite errors, power failures, and other mishaps In the context of databases transaction.
2022-11-24
—
7 min read
database