frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Bored of eating your own dogfood? Try smelling your own farts

https://shkspr.mobi/blog/2026/03/bored-of-eating-your-own-dogfood-try-smelling-your-own-farts/
96•ColinWright•1h ago•26 comments

Flash-Moe: Running a 397B Parameter Model on a Mac with 48GB RAM

https://github.com/danveloper/flash-moe
134•mft_•3h ago•46 comments

A Case Against Currying

https://emi-h.com/articles/a-case-against-currying.html
26•emih•1h ago•21 comments

Building an FPGA 3dfx Voodoo with Modern RTL Tools

https://noquiche.fyi/voodoo
12•fayalalebrun•1h ago•0 comments

Project Nomad – Knowledge That Never Goes Offline

https://www.projectnomad.us
40•jensgk•2h ago•7 comments

Nintendo's not-AI, not-a-game toy

https://tapestry.news/culture/nintendo-talking-flower/
10•zygon•35m ago•3 comments

Hormuz Minesweeper – Are you tired of winning?

https://hormuz.pythonic.ninja/
451•PythonicNinja•5h ago•277 comments

Brute-Forcing My Algorithmic Ignorance with an LLM in 7 Days

http://blog.dominikrudnik.pl/my-google-recruitment-journey-part-1
21•qikcik•2h ago•8 comments

Convincing Is Not Persuading

https://blog.alaindichiappari.dev/p/convincing-is-not-persuading
10•alainrk•1h ago•6 comments

Node.js worker threads are problematic, but they work great for us

https://www.inngest.com/blog/node-worker-threads
29•goodoldneon•3d ago•11 comments

More common mistakes to avoid when creating system architecture diagrams

https://www.ilograph.com/blog/posts/more-common-diagram-mistakes/
33•billyp-rva•2h ago•13 comments

A Review of Dice That Came with the White Castle

https://boardgamegeek.com/thread/3533812/a-review-of-dice-that-came-with-the-white-castle
29•doener•3d ago•4 comments

25 Years of Eggs

https://www.john-rush.com/posts/eggs-25-years-20260219.html
124•avyfain•3d ago•43 comments

$ teebot.dev – from terminal to tee in 6 seconds

https://teebot.dev
12•foxpress•2h ago•9 comments

Revise – An AI Editor for Documents

https://revise.io
16•artursapek•1h ago•9 comments

My first patch to the Linux kernel

https://pooladkhay.com/posts/first-kernel-patch/
154•pooladkhay•2d ago•28 comments

Tinybox – A powerful computer for deep learning

https://tinygrad.org/#tinybox
535•albelfio•18h ago•307 comments

Why Lab Coats Turned White

https://www.asimov.press/p/lab-coat
11•mailyk•3d ago•0 comments

Show HN: Crack – Turn your MacBook into a squeaky door

http://crackmacapp.com/
8•ronreiter•52m ago•7 comments

How We Synchronized Editing for Rec Room's Multiplayer Scripting System

https://www.tyleo.com/blog/how-we-synchronized-editing-for-rec-rooms-multiplayer-scripting-system
9•tyleo•2h ago•7 comments

Some things just take time

https://lucumr.pocoo.org/2026/3/20/some-things-just-take-time/
767•vaylian•23h ago•246 comments

The three pillars of JavaScript bloat

https://43081j.com/2026/03/three-pillars-of-javascript-bloat
389•onlyspaceghost•12h ago•227 comments

Professional video editing, right in the browser with WebGPU and WASM

https://tooscut.app/
315•mohebifar•17h ago•112 comments

Chest Fridge (2009)

https://mtbest.net/chest-fridge/
148•wolfi1•13h ago•79 comments

Turns out your coffee addiction may be doing your brain a favor

https://www.theregister.com/2026/03/21/turns_out_your_coffee_addiction/
22•Bender•1h ago•4 comments

HopTab–free,open source macOS app switcher and tiler that replaces Cmd+Tab

https://www.royalbhati.com/hoptab
68•robhati•8h ago•20 comments

Vatican Rebukes Peter Thiel's Antichrist Lectures in Rome

https://www.thenerdreich.com/peter-thiels-antichrist-circus-smacked-down-in-rome/
91•vrganj•5h ago•60 comments

'Miracle': Europe reconnects with lost spacecraft

https://phys.org/news/2026-03-miracle-europe-reconnects-lost-spacecraft.html
66•vrganj•4h ago•28 comments

Floci – A free, open-source local AWS emulator

https://github.com/hectorvent/floci
232•shaicoleman•16h ago•73 comments

The IBM scientist who rewrote the rules of information just won a Turing Award

https://www.ibm.com/think/news/ibm-scientist-charles-bennett-turing-award
7•rbanffy•2h ago•0 comments
Open in hackernews

How We Synchronized Editing for Rec Room's Multiplayer Scripting System

https://www.tyleo.com/blog/how-we-synchronized-editing-for-rec-rooms-multiplayer-scripting-system
9•tyleo•2h ago

Comments

giovannibonetti•1h ago
I find it fascinating when different people independently arrive at the same architecture when working on a hard problem like this. In my company we built our offline-first apps with PowerSync, which has the same idea of optimistic local changes while waiting for the central server to acknowledge the definitive changes. In PowerSync's case, the sync engine reads Postgres replication logs directly.
tyleo•1h ago
Yeah, I'm surprised this pattern doesn't have a more general name.

I've also used it to synchronize content for local multi-window editing applications: each window is its own process but routes through one "coordination" process to ensure consistent ordering.

Easily solves some cross-process concurrency issues.

Rohansi•10m ago
In this case it's just a (transaction/commit) log. Very common in distributed systems, databases, and filesystems.
wpietri•1h ago
For those interested in a keep-everything-hot approach like this, it's worth checking out the 25-year-old library Prevayler. Full ACID guarantees, and radically faster than a database. I happily used it for a project forever ago and was disappointed to see it so thoroughly ignored.
tyleo•1h ago
Oh, this is interesting. What sort of project did you use it for?
davidanekstein•12m ago
I’m surprised there was no mention of operational CRDT’s, or CRDT’s generally.
Rohansi•5m ago
There's no need for CRDTs here because there is always a central authority.