Stop Paying the Abstraction Tax : How I Built a C-Engine 12x Faster than Pandas
Python is the king of data science, but it charges a heavy price for convenience. When you use pd.read_csv() on a 10GB+ file, Python attempts to load …
Latest Architecture news from Tech News
Python is the king of data science, but it charges a heavy price for convenience. When you use pd.read_csv() on a 10GB+ file, Python attempts to load …
Handmade Hero: A Systems Programming Odyssey This post is the start of my Handmade Hero journey documentation. For those who do not know what Handmade…
We write structs by listing fields in whatever order feels readable. Name, then age, then score. It compiles. It runs. The compiler silently bloats it…
Sleeping Barber Problem The sleeping barber problem is a classic concurrency problem introduced by Edsger Dijkstra in 1965. It illustrates the challen…