frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Leaving Google has actively improved my life

https://pseudosingleton.com/leaving-google-improved-my-life/
249•speckx•3h ago•138 comments

OpenAI raises $110B on $730B pre-money valuation

https://techcrunch.com/2026/02/27/openai-raises-110b-in-one-of-the-largest-private-funding-rounds...
218•zlatkov•7h ago•340 comments

NASA announces overhaul of Artemis program amid safety concerns, delays

https://www.cbsnews.com/news/nasa-artemis-moon-program-overhaul/
140•voxadam•5h ago•157 comments

A better streams API is possible for JavaScript

https://blog.cloudflare.com/a-better-web-streams-api/
325•nnx•8h ago•110 comments

Dan Simmons, author of Hyperion, has died

https://www.dignitymemorial.com/obituaries/longmont-co/daniel-simmons-12758871
355•throw0101a•3h ago•148 comments

Let's discuss sandbox isolation

https://www.shayon.dev/post/2026/52/lets-discuss-sandbox-isolation/
60•shayonj•3h ago•16 comments

A new California law says all operating systems need to have age verification

https://www.pcgamer.com/software/operating-systems/a-new-california-law-says-all-operating-system...
155•WalterSobchak•7h ago•169 comments

Writing a Guide to SDF Fonts

https://www.redblobgames.com/blog/2026-02-26-writing-a-guide-to-sdf-fonts/
45•chunkles•3h ago•4 comments

The Robotic Dexterity Deadlock

https://www.origami-robotics.com/blog/dexterity-deadlocks.html
56•shmublu•2h ago•33 comments

Show HN: Claude-File-Recovery, recover files from your ~/.claude sessions

https://github.com/hjtenklooster/claude-file-recovery
15•rikk3rt•5h ago•5 comments

Allocating on the Stack

https://go.dev/blog/allocation-optimizations
96•spacey•5h ago•41 comments

Open source calculator firmware DB48X forbids CA/CO use due to age verification

https://github.com/c3d/db48x/commit/7819972b641ac808d46c54d3f5d1df70d706d286
94•iamnothere•6h ago•38 comments

Kyber (YC W23) Is Hiring an Enterprise Account Executive

https://www.ycombinator.com/companies/kyber/jobs/59yPaCs-enterprise-account-executive-ae
1•asontha•3h ago

Modeling cycles of grift with evolutionary game theory

https://www.oranlooney.com/post/grifters-skeptics-marks/
67•ibobev•3d ago•28 comments

Building secure, scalable agent sandbox infrastructure

https://browser-use.com/posts/two-ways-to-sandbox-agents
36•gregpr07•7h ago•8 comments

Get free Claude max 20x for open-source maintainers

https://claude.com/contact-sales/claude-for-oss
348•zhisme•13h ago•171 comments

Court finds Fourth Amendment doesn’t support broad search of protesters’ devices

https://www.eff.org/deeplinks/2026/02/victory-tenth-circuit-finds-fourth-amendment-doesnt-support...
416•hn_acker•7h ago•68 comments

PCB Tracer

https://pcbtracer.com
14•Luc•3d ago•4 comments

"Just a little detail that wouldn't sell anything"

https://unsung.aresluna.org/just-a-little-detail-that-wouldnt-sell-anything/
75•bobbiechen•3d ago•15 comments

Reading English from 1000 AD

https://lewiscampbell.tech/blog/260224.html
87•LAC-Tech•3d ago•30 comments

Implementing a Z80 / ZX Spectrum emulator with Claude Code

https://antirez.com/news/160
104•antirez•2d ago•55 comments

Can you reverse engineer our neural network?

https://blog.janestreet.com/can-you-reverse-engineer-our-neural-network/
242•jsomers•2d ago•175 comments

Tell HN: MitID, Denmark's digital ID, was down

108•mousepad12•11h ago•150 comments

We gave terabytes of CI logs to an LLM

https://www.mendral.com/blog/llms-are-good-at-sql
140•shad42•6h ago•82 comments

A Chinese official’s use of ChatGPT revealed an intimidation operation

https://www.cnn.com/2026/02/25/politics/chatgpt-china-intimidation-operation
68•cwwc•6h ago•47 comments

Show HN: RetroTick – Run classic Windows EXEs in the browser

https://retrotick.com/
157•lqs_•9h ago•45 comments

Statement from Dario Amodei on our discussions with the Department of War

https://www.anthropic.com/news/statement-department-of-war
2815•qwertox•23h ago•1490 comments

Trump orders US Government to cut ties with Anthropic

https://abcnews.com/Politics/anthropic-latest-pentagon-contract-bar-ai-autonomous-weapons/story?i...
32•SunshineTheCat•20m ago•6 comments

Sprites on the Web

https://www.joshwcomeau.com/animation/sprites/
90•vinhnx•3d ago•16 comments

Rob Grant, creator of Red Dwarf, has died

https://www.beyondthejoke.co.uk/content/17193/red-dwarf-rob-grant
154•nephihaha•2h ago•41 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

mannykannot•9mo 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•9mo 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•9mo 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•9mo 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•9mo 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•9mo ago
Congratz, you've invented regression tests.
quantadev•9mo 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•9mo 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•9mo ago
> And my intentions were not to belittle, but to praise.

With the stock eyeroll dismissal phrase.

quantadev•9mo 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•9mo ago
Good thing he has knights in shining armor like you to defend him from my nasty insults.
quantadev•9mo ago
Good thing you can admit what you were doing.
bheadmaster•9mo ago
Good thing you can understand sarcasm.
quantadev•9mo ago
but your sarcasm was truthful.
bheadmaster•9mo ago
but it wasn't.
quantadev•9mo ago
Well in that case...Congratz, you've invented sarcasm.
bheadmaster•9mo ago
Congratz, you've invented obnoxiousness.
quantadev•9mo ago
Not "independently reinvented" ?
readthenotes1•9mo ago
I was aware of unit testing before it had a name ... Desperation is the mother of intervention
quantadev•9mo ago
Yep, I "independently reinvent" the wheel every day I guess, because I, ya know...use wheels.
alilleybrinker•9mo 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•9mo 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•9mo 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•9mo ago
John Carmack uses a debugger