frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Rust Project Perspectives on AI

https://nikomatsakis.github.io/rust-project-perspectives-on-ai/feb27-summary.html
16•weinzierl•20m ago•0 comments

PC Gamer recommends RSS readers in a 37mb article that just keeps downloading

https://stuartbreckenridge.net/2026-03-19-pc-gamer-recommends-rss-readers-in-a-37mb-article/
201•JumpCrisscross•4h ago•83 comments

The gold standard of optimization: A look under the hood of RollerCoaster Tycoon

https://larstofus.com/2026/03/22/the-gold-standard-of-optimization-a-look-under-the-hood-of-rolle...
92•mariuz•3h ago•27 comments

GrapheneOS will remain usable by anyone without requiring personal information

https://grapheneos.social/@GrapheneOS/116261301913660830
27•nothrowaways•1h ago•3 comments

The future of version control

https://bramcohen.com/p/manyana
337•c17r•7h ago•185 comments

Reports of code's death are greatly exaggerated

https://stevekrouse.com/precision
180•stevekrouse•11h ago•174 comments

LLMs Predict My Coffee

https://dynomight.net/coffee/
32•surprisetalk•4d ago•10 comments

Project Nomad – Knowledge That Never Goes Offline

https://www.projectnomad.us
325•jensgk•10h ago•82 comments

Five Years of Running a Systems Reading Group at Microsoft

https://armaansood.com/posts/systems-reading-group/
89•Foe•5h ago•23 comments

Flash-MoE: Running a 397B Parameter Model on a Laptop

https://github.com/danveloper/flash-moe
279•mft_•11h ago•98 comments

MAUI Is Coming to Linux

https://avaloniaui.net/blog/maui-avalonia-preview-1
129•DeathArrow•6h ago•56 comments

Windows native app development is a mess

https://domenic.me/windows-native-dev/
283•domenicd•12h ago•310 comments

Building an FPGA 3dfx Voodoo with Modern RTL Tools

https://noquiche.fyi/voodoo
141•fayalalebrun•9h ago•27 comments

Show HN: Codala, a social network built on scanning barcodes

https://play.google.com/store/apps/details?id=com.hsynkrkye.codala&hl=en
15•hsynkrkye•4d ago•7 comments

Theodosian Land Walls of Constantinople

https://turkisharchaeonews.net/object/theodosian-land-walls-constantinople
7•bcraven•3d ago•0 comments

Palantir extends reach into British state as gets access to sensitive FCA data

https://www.theguardian.com/technology/2026/mar/22/palantir-extends-reach-into-british-state-as-i...
138•chrisjj•4h ago•39 comments

OpenClaw is a security nightmare dressed up as a daydream

https://composio.dev/content/openclaw-security-and-vulnerabilities
253•fs_software•5h ago•175 comments

More common mistakes to avoid when creating system architecture diagrams

https://www.ilograph.com/blog/posts/more-common-diagram-mistakes/
124•billyp-rva•10h ago•49 comments

Cloudflare flags archive.today as "C&C/Botnet"; no longer resolves via 1.1.1.2

https://radar.cloudflare.com/domains/domain/archive.today
346•winkelmann•18h ago•255 comments

How to Attract AI Bots to Your Open Source Project

https://nesbitt.io/2026/03/21/how-to-attract-ai-bots-to-your-open-source-project.html
38•zdw•1d ago•6 comments

Teaching Claude to QA a mobile app

https://christophermeiklejohn.com/ai/zabriskie/development/android/ios/2026/03/22/teaching-claude...
47•azhenley•3h ago•2 comments

Vectorization of Verilog Designs and its Effects on Verification and Synthesis

https://arxiv.org/abs/2603.17099
13•matt_d•3d ago•1 comments

25 Years of Eggs

https://www.john-rush.com/posts/eggs-25-years-20260219.html
233•avyfain•4d ago•66 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
119•doener•3d ago•36 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
81•rbanffy•10h ago•6 comments

GrapheneOS refuses to comply with new age verification laws for operating system

https://www.tomshardware.com/software/operating-systems/grapheneos-refuses-to-comply-with-age-ver...
171•CrypticShift•6h ago•78 comments

Why I love NixOS

https://www.birkey.co/2026-03-22-why-i-love-nixos.html
146•birkey•5h ago•115 comments

Brute-forcing my algorithmic ignorance

http://blog.dominikrudnik.pl/my-google-recruitment-journey-part-1
87•qikcik•10h ago•52 comments

Show HN: Revise – An AI Editor for Documents

https://revise.io
56•artursapek•9h ago•48 comments

A case against currying

https://emi-h.com/articles/a-case-against-currying.html
88•emih•9h ago•109 comments
Open in hackernews

A Taxonomy of Bugs

https://ruby0x1.github.io/machinery_blog_archive/post/a-taxonomy-of-bugs/index.html
52•lissine•10mo ago

Comments

mannykannot•10mo ago
Here's a step 0 for your debugging strategy: spend a few minutes thinking about what could account for the bug. Prior to its occurrence, you are thinking about what could go wrong, but now you are thinking about what did go wrong, which is a much less open-ended question.
marginalia_nu•10mo ago
I've had large success by treating the bug as a binary search problem as soon as I identify an initial state that's correct and a terminal state that's incorrect. It seems like a lot of work, but that's underestimating just how fast binary searches are.

Depends of course on the nature of the bug whether it's a good strategy.

readthenotes1•10mo ago
I was such a bad developer that I realized I had to automate the re-running of parts of the system to find the bugs.

Of course, the code I wrote to exercise the code I wrote had bugs, but usually I wouldn't make offsetting errors.

It didn't fix all the problems I made, but it helped. And it helped to have the humility when trying to fix code to realize I wouldn't get it the first time, so should automate replication

bheadmaster•10mo ago
> I had to automate the re-running of parts of the system to find the bugs

Congratz, you've independently invented integration tests.

tough•10mo ago
I don't always test but adding a lil test after finding and fixing a bug so you don't end up there again a second time is a great practice
bheadmaster•10mo ago
Congratz, you've invented regression tests.
quantadev•10mo ago
Congrats, you've found someone who failed to invoke a buzzword that you know.

EDIT: But Acktshally `the code I wrote to exercise the code I wrote` is a description of "Unit Testing", not integration testing.

bheadmaster•10mo ago
Unit/integration tests are anything but a buzzword. And my intentions were not to belittle, but to praise.

Some actions simply make so much sense to do, that any sensible person (unaware of the concept) will start doing them given enough practice, and in process they "reinvent" a common method.

keybored•10mo ago
> And my intentions were not to belittle, but to praise.

With the stock eyeroll dismissal phrase.

quantadev•10mo ago
As far as you knew that guy was aware what Unit Testing was since well before you were born. lol. I'm sure he appreciates all your nice compliments.
bheadmaster•10mo ago
Good thing he has knights in shining armor like you to defend him from my nasty insults.
quantadev•10mo ago
Good thing you can admit what you were doing.
bheadmaster•10mo ago
Good thing you can understand sarcasm.
quantadev•10mo ago
but your sarcasm was truthful.
bheadmaster•10mo ago
but it wasn't.
quantadev•10mo ago
Well in that case...Congratz, you've invented sarcasm.
bheadmaster•10mo ago
Congratz, you've invented obnoxiousness.
quantadev•10mo ago
Not "independently reinvented" ?
readthenotes1•10mo ago
I was aware of unit testing before it had a name ... Desperation is the mother of intervention
quantadev•10mo ago
Yep, I "independently reinvent" the wheel every day I guess, because I, ya know...use wheels.
alilleybrinker•10mo ago
There's also the Common Weakness Enumeration (CWE), a long-running taxonomy of software weaknesses (meaning types of bugs).

https://cwe.mitre.org/

Animats•10mo ago
The Third-Party Bug

Is the party responsible for the bug bigger than you? If yes, it's your problem. If no, it's their problem.

marginalia_nu•10mo ago
A subcategory of the design flaw I find quite a lot is the case where the code works exactly as intended, it's just not having the desired effect because of some erroneous premise.
djmips•10mo ago
John Carmack uses a debugger