The algorithm is hardware agnostic.
"No architecture-specific code was used, and the implementation relies on branchless instruction-level parallelism instead of auto-vectorization to saturate wide out-of-order (OoO) CPU micro-architectures." (2/2)
Link: github.com/Voultapher/s...
09.09.2025 04:28 —
👍 1
🔁 0
💬 0
📌 0
driftsort - introduced in Rust 1.81.0. Here’s a component level overview of the sorting algorithm (link to the research document : 👇) .. 🧵(1/2)
09.09.2025 04:28 —
👍 4
🔁 0
💬 1
📌 0
TIL a 3-week course that will teach u to design and implement LSM tree storage engine in Rust, including implementing MVCC over the LSM engine (link: skyzh.github.io/mini-lsm/)
09.09.2025 04:23 —
👍 3
🔁 0
💬 0
📌 0
advanced data structures course by Jeff Erickson -Spring 2025 .. lots of advanced data structures discussed along with analysis (link: jeffe.cs.illinois.edu/teaching/dat...)
09.09.2025 04:20 —
👍 4
🔁 1
💬 0
📌 0
Me: what's the WiFi password?
Bartender: you need to buy a drink first
Me: ok, I'll have a Coca-Cola Zero
Bartender: is Diet-Pepsi ok?
Me: Sure. how much?
Bartender: that's $3.00
Me: good. so what's the WiFi password?
Bartender: you need to buy a drink first
no spaces no caps.
(Via Threads)
15.08.2025 15:14 —
👍 2
🔁 0
💬 0
📌 0
YouTube video by Better Software Conference
Casey Muratori – The Big OOPs: Anatomy of a Thirty-five-year Mistake – BSC 2025
Awesome talk nonetheless .. wondering how much of research went into the talk .. (3/3) link: youtu.be/wo84LFzx5nI?...
20.07.2025 11:23 —
👍 4
🔁 0
💬 0
📌 0
Opinionated talk - he hits hard at the ubiquitous practice of building compile time hierarchy of encapsulation that matches the domain model as the basis of your object oriented design. Such encapsulation boundaries may work for specific use cases but don’t generalise. (2/3)
20.07.2025 11:23 —
👍 1
🔁 0
💬 1
📌 0
Spent a meaningful 2.5 hours on the Casey Muratori talk that instrumented an exponential rise to my reading list. A masterclass in the history of computing and the roots of OO (1/3)
20.07.2025 11:23 —
👍 3
🔁 1
💬 1
📌 1
Some things never change, almost a ritual for us .. লুচি (deep-fried flatbread made from refined flour)+ সাদা আলুর তরকারি (potato curry) for a Sunday breakfast ..
13.07.2025 05:24 —
👍 5
🔁 0
💬 0
📌 0
Dancing Links is tailor made for linked lists .. the way it sets up the pre-structured grid allows the algorithm to efficiently remove and restore elements during backtracking just by jumping through pointers .. (2/2)
04.07.2025 10:40 —
👍 4
🔁 0
💬 0
📌 0
Linked lists often face criticism in the world of data structures, and it’s easy to see why.
I am studying Dancing Links, a technique Knuth developed as part of his Algorithm X, designed to solve Exact Cover problems. (1/2)
04.07.2025 10:40 —
👍 4
🔁 0
💬 1
📌 0
Interesting take on cognitive load of learning a programming language. Good post on how Zig has a lower cognitive load than Rust ..
link to the blog post: kevinlynagh.com/rust-zig/
03.07.2025 05:48 —
👍 3
🔁 3
💬 2
📌 0
I remember Erik Meijer mention this in one of the Scala reactive programming course long back ..
(paraphrasing)
"flatMap/monad is the dolby for programmers. It allows us to amplify the happy path and itself takes care of the noise in error handling" - anyone remember the exact quote ?
23.06.2025 07:36 —
👍 3
🔁 1
💬 1
📌 0
Mathematical thinking gets honed with learning how to do proofs .. Sunday reading ..
22.06.2025 17:33 —
👍 3
🔁 0
💬 0
📌 0
OCaml and Zig are different languages with different trade offs. Not fair to compare them .. pick your own poison ..
22.06.2025 13:44 —
👍 3
🔁 0
💬 1
📌 0
Optimizations with Zig | alloc.dev
The power of Zig's comptime code execution
This blog post makes a strong point on feeding the compiler enough *intent* to generate more optimized code. This can be at the expense of added verbosity in the language because nothing beats efficiency when you need it. And Zig does it .. alloc.dev/2025/06/07/z...
08.06.2025 14:47 —
👍 0
🔁 0
💬 0
📌 0
Sunday morning surprise from Amazon .. always wanted to dig deep into the computational aspects of database concurrency control. Papadimitriou serves the perfect recipe ..
08.06.2025 04:55 —
👍 4
🔁 0
💬 0
📌 0
Thinking has no replacement
There are many tools to improve software correctness, and formal methods can be one of them.
Amazing talk by Ankush Desai on using formal & semi-formal methods as a thinking tool in the design process. The core message of the talk is Don't fear the Formal Methods, treat them as a thinking tool. Formal methods teach u to think at the proper level of abstraction antithesis.com/blog/2025/bu...
31.05.2025 12:22 —
👍 5
🔁 0
💬 0
📌 0
YouTube video by current continuation
E1: Ranjit Jhala (UCSD)
Spent an hour and a half on this interview on a Sunday morning with @ranjitjhala.bsky.social ..absolutely fascinating. Right from philosophical discussions down to a cool demo of refinement types in Rust. Absolutely loved the demo and surely would be playing around with Flux youtu.be/goUZczQAfgk?...
25.05.2025 07:11 —
👍 3
🔁 1
💬 0
📌 1
One of the essays of Paul Graham from 2002 that resonated a lot to me when I read back then .. Succinctness is power. I always add a post scriptum - only when not abused .. t.co/MQaDLsEUQe
12.05.2025 05:23 —
👍 1
🔁 0
💬 0
📌 0
It's a generic data structure and can be used for almost everything, not only text. And the best part is, it's a monoid in disguise. No wonder there are more than 20 uses of SumTree in Zed .. (2/2)
link to blogpost: zed.dev/blog/zed-dec...
05.05.2025 08:16 —
👍 3
🔁 0
💬 0
📌 0
my data structure lessons on a Friday evening ..
rope in Zed has a very clever implementation. It's implemented in terms of SumTree, a thread-safe, snapshot-friendly, copy-on-write B+ tree. (1/2)
05.05.2025 08:16 —
👍 4
🔁 0
💬 1
📌 0