Ask HN: 3rd Week at FAANG and feeling imposter syndrome
39 points by HowDoesSound 1d ago 35 comments
Ask HN: What's the modern distributed data processing stack?
3 points by grandimam 1d ago 0 comments
OSle – A 510 bytes OS in x86 assembly
7 shikaan 1 5/1/2025, 9:42:04 PM github.com ↗
As a follow up to my relatively successful series in x86 Assembly of last year[1], I started making an OS that fits in a boot sector. I am purposefully not doing chain loading or multi-stage to see how much I can squeeze out of 510bytes.
It comes with a file system, a shell, and a simple process management. Enough to write non-trivial guest applications, like a text editor and even some games. It's a lot of fun!
It comes with an SDK and you can play around with it in the browser to see what it looks like.
The aim is, as always, to make Assembly less scary and this time around also OS development.
[1] https://news.ycombinator.com/item?id=41571971