frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AirSnitch: Demystifying and breaking client isolation in Wi-Fi networks [pdf]

https://www.ndss-symposium.org/wp-content/uploads/2026-f1282-paper.pdf
285•DamnInteresting•6h ago•135 comments

Launch HN: Cardboard (YC W26) – Agentic video editor

https://www.usecardboard.com/
68•sxmawl•3h ago•32 comments

Will vibe coding end like the maker movement?

https://read.technically.dev/p/vibe-coding-and-the-maker-movement
215•itunpredictable•5h ago•213 comments

What Claude Code Chooses

https://amplifying.ai/research/claude-code-picks
117•tin7in•3h ago•56 comments

I baked a pie every day for a year and it changed my life

https://www.theguardian.com/lifeandstyle/2026/feb/22/a-new-start-after-60-i-baked-a-pie-every-day...
162•NaOH•3d ago•104 comments

OsmAnd's Faster Offline Navigation

https://osmand.net/blog/fast-routing/
74•todsacerdoti•3h ago•18 comments

Lidar waveforms are worth 40x128x33 words

https://openaccess.thecvf.com/content/ICCV2025/html/Scheuble_Lidar_Waveforms_are_Worth_40x128x33_...
16•teleforce•3d ago•1 comments

Palm OS User Interface Guidelines (2003) [pdf]

https://cs.uml.edu/~fredm/courses/91.308-spr05/files/palmdocs/uiguidelines.pdf
117•spiffytech•4h ago•54 comments

Museum of Plugs and Sockets

https://plugsocketmuseum.nl/index.html
35•ohjeez•3d ago•11 comments

Show HN: Deff – side-by-side Git diff review in your terminal

https://github.com/flamestro/deff
52•flamestro•4h ago•34 comments

Layoffs at Block

https://twitter.com/jack/status/2027129697092731343
35•mlex•42m ago•13 comments

Nano Banana 2: Google's latest AI image generation model

https://blog.google/innovation-and-ai/technology/ai/nano-banana-2/
418•davidbarker•5h ago•397 comments

Show HN: Hacker Smacker – spot great (and terrible) HN commenters at a glance

https://hackersmacker.org
67•conesus•2d ago•55 comments

Show HN: Terminal Phone – E2EE Walkie Talkie from the Command Line

https://gitlab.com/here_forawhile/terminalphone
272•smalltorch•11h ago•66 comments

BuildKit: Docker's Hidden Gem That Can Build Almost Anything

https://tuananh.net/2026/02/25/buildkit-docker-hidden-gem/
119•jasonpeacock•7h ago•33 comments

Bild AI (YC W25) Is Hiring Interns to Make Housing Affordable

https://www.workatastartup.com/jobs/80596
1•rooppal•5h ago

Show HN: Linex – A daily challenge: placing pieces on a board that fights back

https://www.playlinex.com/
34•Humanista75•1d ago•18 comments

The Wolfram S Combinator Challenge

https://www.combinatorprize.org/
47•paraschopra•3d ago•12 comments

Google Street View in 2026

https://tech.marksblogg.com/google-street-view-coverage.html
107•marklit•4h ago•70 comments

Show HN: Rev-dep – 20x faster knip.dev alternative build in Go

https://github.com/jayu/rev-dep
27•jayu_dev•3h ago•6 comments

America, and probably the world, stands on a precipice

https://garymarcus.substack.com/p/america-and-probably-the-world-stands
47•MindGods•1h ago•4 comments

Steering interpretable language models with concept algebra

https://www.guidelabs.ai/post/steerling-steering-8b/
33•luulinh90s•22h ago•3 comments

This time is different

https://shkspr.mobi/blog/2026/02/this-time-is-different/
79•speckx•8h ago•108 comments

Open Source Endowment – new funding source for open source maintainers

https://endowment.dev/
174•kvinogradov•5h ago•114 comments

Show HN: Beehive – Multi-Workspace Agent Orchestrator

https://storozhenko98.github.io/beehive/
30•mst98•2d ago•17 comments

Banned in California

https://www.bannedincalifornia.org/
499•pie_flavor•22h ago•578 comments

He saw an abandoned trailer. Then, uncovered a surveillance network

https://calmatters.org/justice/2026/02/alpr-border-patrol-caltrans/
102•Element_•3h ago•36 comments

just-bash: Bash for Agents

https://github.com/vercel-labs/just-bash
96•tosh•8h ago•54 comments

Jimi Hendrix was a systems engineer

https://spectrum.ieee.org/jimi-hendrix-systems-engineer
643•tintinnabula•1d ago•227 comments

Show HN: Mission Control – Open-source task management for AI agents

https://github.com/MeisnerDan/mission-control
26•meisnerd•8h ago•5 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