Why to learn, when you can just larp !!

Draxter retweeted
> click apply on linkedin > it opens workday nitter.net/kitlaidoscope/status/2…
15
252
7,075
147,237
Ye paid internship ka swad kaisa hota hai 😭
5
Database Indexes: A deep dive thread
1
1
10
So an index isn't "free performance": It comes with: 1) Storage 2) Write Overhead 3) Memory/cache usage for faster reads. And with 10 million rows, the difference between scanning millions of entries and navigating ~23 levels of a tree explains why indexes can be so powerful.
1
1
3
Difference between memory De-allocation in Go vs Rust: A thread
2
10
Rust prevents this by doing memory management in compile time which automatically inject cleanup calls(drop) exactly when variable goes out of scope. In this way most allocation stays on stack while heap allocation are freed the instant their owner leaves scope
1
1
So without a GC, Rust excels in systems were ultra low latency and real time sensitivity is required. But Go
1