frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The 'Paperwork Flood': How I Drowned a Bureaucrat Before Dinner

https://sightlessscribbles.com/posts/the-paperwork-flood/
125•robin_reala•1h ago•63 comments

A Faster Alternative to Jq

https://micahkepe.com/blog/jsongrep/
228•pistolario•6h ago•130 comments

Hold on to Your Hardware

https://xn--gckvb8fzb.com/hold-on-to-your-hardware/
312•LucidLynx•4h ago•253 comments

Schedule tasks on the web

https://code.claude.com/docs/en/web-scheduled-tasks
210•iBelieve•9h ago•161 comments

Apple discontinues the Mac Pro

https://9to5mac.com/2026/03/26/apple-discontinues-the-mac-pro/
497•bentocorp•17h ago•404 comments

Why so many control rooms were seafoam green (2025)

https://bethmathews.substack.com/p/why-so-many-control-rooms-were-seafoam
906•Amorymeltzer•1d ago•187 comments

The European AllSky7 fireball network

https://www.allsky7.net/#archive
84•marklit•7h ago•7 comments

This picture broke my brain [3B1B video]

https://www.youtube.com/watch?v=ldxFjLJ3rVY
33•jgwil2•3d ago•15 comments

Local Bernstein theory, and lower bounds for Lebesgue constants

https://terrytao.wordpress.com/2026/03/23/local-bernstein-theory-and-lower-bounds-for-lebesgue-co...
26•jjgreen•3d ago•2 comments

Show HN: I put an AI agent on a $7/month VPS with IRC as its transport layer

https://georgelarson.me/writing/2026-03-23-nullclaw-doorman/
286•j0rg3•15h ago•81 comments

QRV Operating System: QNX on RISC-V

https://r-tty.blogspot.com/2026/03/qrv-operating-system-first-publication.html
32•chrsw•4d ago•5 comments

$500 GPU outperforms Claude Sonnet on coding benchmarks

https://github.com/itigges22/ATLAS
376•yogthos•20h ago•213 comments

Everything old is new again: memory optimization

https://nibblestew.blogspot.com/2026/03/everything-old-is-new-again-memory.html
94•ibobev•3d ago•62 comments

Hong Kong Police Can Now Demand Phone Passwords Under New Security Rules

https://www.gadgetreview.com/hong-kong-police-can-now-demand-phone-passwords-under-new-security-r...
8•vidyesh•14m ago•0 comments

The Legibility of Serif and Sans Serif Typefaces (2022)

https://library.oapen.org//handle/20.500.12657/53344
60•the-mitr•3d ago•38 comments

We rewrote JSONata with AI in a day, saved $500k/year

https://www.reco.ai/blog/we-rewrote-jsonata-with-ai
211•cjlm•15h ago•191 comments

DOOM Over DNS

https://github.com/resumex/doom-over-dns
319•Venn1•3d ago•85 comments

My minute-by-minute response to the LiteLLM malware attack

https://futuresearch.ai/blog/litellm-attack-transcript/
395•Fibonar•22h ago•150 comments

Whistler: Live eBPF Programming from the Common Lisp REPL

https://atgreen.github.io/repl-yell/posts/whistler/
115•varjag•3d ago•13 comments

Running Tesla Model 3's computer on my desk using parts from crashed cars

https://bugs.xdavidhu.me/tesla/2026/03/23/running-tesla-model-3s-computer-on-my-desk-using-parts-...
913•driesdep•1d ago•319 comments

HyperAgents: Self-referential self-improving agents

https://github.com/facebookresearch/hyperagents
214•andyg_blog•2d ago•75 comments

Generators in Lone Lisp

https://www.matheusmoreira.com/articles/generators-in-lone-lisp
53•matheusmoreira•4d ago•8 comments

Anthropic Subprocessor Changes

https://trust.anthropic.com
97•tencentshill•16h ago•44 comments

Agent-to-agent pair programming

https://axeldelafosse.com/blog/agent-to-agent-pair-programming
99•axldelafosse•12h ago•37 comments

Using FireWire on a Raspberry Pi

https://www.jeffgeerling.com/blog/2026/firewire-on-a-raspberry-pi/
105•jandeboevrie•17h ago•46 comments

We haven't seen the worst of what gambling and prediction markets will do

https://www.derekthompson.org/p/we-havent-seen-the-worst-of-what
818•mmcclure•18h ago•566 comments

An unstoppable mushroom is tearing through North American forests

https://www.bbc.com/future/article/20260325-an-unstoppable-mushroom-is-tearing-through-north-amer...
103•1659447091•16h ago•39 comments

OpenTelemetry profiles enters public alpha

https://opentelemetry.io/blog/2026/profiles-alpha/
182•tanelpoder•21h ago•27 comments

Chroma Context-1: Training a Self-Editing Search Agent

https://www.trychroma.com/research/context-1
58•philip1209•18h ago•8 comments

Show HN: Fio: 3D World editor/game engine – inspired by Radiant and Hammer

https://github.com/ViciousSquid/Fio
85•vicioussquid•17h ago•8 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