Database Isolation Levels: MySQL vs PgSQL
Introduction Isolation levels define the degree of visibility that one transaction has over the changes made by another concurrent transaction. This article dives into the isolation levels in MySQL...
Introduction Isolation levels define the degree of visibility that one transaction has over the changes made by another concurrent transaction. This article dives into the isolation levels in MySQL...
In TypeScript, managing union types often introduces complexity, particularly with type guards, leading to verbose and less transparent code. Consider this typical scenario: type SelectProps = { ...
In this post, we will see how to setup a new typescript-node project in 2024. We will use pnpm as package manager, ts-node for running typescript code directly, eslint for linting, prettier for for...
If you have a large number of duplicate files in google drive for any reason (mine was syncing up files from multiple sources like laptop, tab, phone etc, and merging school’s g-drive with personal...
Problem statement: The efficient way to find all items near a given location(lat, long). The obvious solution: The easiest way would be to calculate the distance of all items from the given loca...