frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Welcome (back) to Macintosh

https://take.surf/2026/03/01/welcome-back-to-macintosh
110•Udo_Schmitz•1h ago•47 comments

Motorola announces a partnership with GrapheneOS

https://motorolanews.com/motorola-three-new-b2b-solutions-at-mwc-2026/
1969•km•15h ago•707 comments

British Columbia to end time changes, adopt year-round daylight time

https://www.cbc.ca/news/canada/british-columbia/b-c-adopting-year-round-daylight-time-9.7111657
181•ireflect•2h ago•90 comments

First in-utero stem cell therapy for fetal spina bifida repair is safe: study

https://health.ucdavis.edu/news/headlines/first-ever-in-utero-stem-cell-therapy-for-fetal-spina-b...
218•gmays•7h ago•39 comments

New iPad Air, powered by M4

https://www.apple.com/newsroom/2026/03/apple-introduces-the-new-ipad-air-powered-by-m4/
280•Garbage•8h ago•458 comments

Show HN: Govbase – Follow a bill from source text to news bias to social posts

https://govbase.com
125•foxfoxx•5h ago•60 comments

"That Shape Had None" – A Horror of Substrate Independence (Short Fiction)

https://starlightconvenience.net/#that-shape-had-none
60•casmalia•3h ago•10 comments

Show HN: Pianoterm – Run shell commands from your Piano. A Linux CLI tool

https://github.com/vustagc/pianoterm
23•vustagc•1h ago•5 comments

Show HN: uBlock filter list to blur all Instagram Reels

https://gist.github.com/shraiwi/009c652da6ce8c99a6e1e0c86fe66886
70•shraiwi•2h ago•17 comments

The 185-Microsecond Type Hint

https://blog.sturdystatistics.com/posts/type_hint/
7•kianN•29m ago•1 comments

LFortran compiles fpm

https://lfortran.org/blog/2026/02/lfortran-compiles-fpm/
31•wtlin•2d ago•8 comments

Launch HN: OctaPulse (YC W26) – Robotics and computer vision for fish farming

52•rohxnsxngh•5h ago•27 comments

Ask HN: Who is hiring? (March 2026)

137•whoishiring•6h ago•187 comments

Show HN: I built a sub-500ms latency voice agent from scratch

https://www.ntik.me/posts/voice-agent
15•nicktikhonov•1h ago•5 comments

Ask HN: Who wants to be hired? (March 2026)

49•whoishiring•6h ago•136 comments

How to talk to anyone and why you should

https://www.theguardian.com/lifeandstyle/2026/feb/24/stranger-secret-how-to-talk-to-anyone-why-yo...
513•Looky1173•15h ago•494 comments

Reflex (YC W23) Is Hiring Software Engineers – Python

https://www.ycombinator.com/companies/reflex/jobs
1•apetuskey•5h ago

iPhone 17e

https://www.apple.com/newsroom/2026/03/apple-introduces-iphone-17e/
148•meetpateltech•8h ago•140 comments

Inside the M4 Apple Neural Engine, Part 1: Reverse Engineering

https://maderix.substack.com/p/inside-the-m4-apple-neural-engine
225•zdw•1d ago•57 comments

Programmable Cryptography

https://0xparc.org/writings/programmable-cryptography-1
13•fi-le•1d ago•1 comments

Boss-CSS: I created another "CSS-in-JS" lib

https://dev.to/wintercounter/boss-css-i-created-another-css-in-js-lib-and-here-is-why-23kc
13•wintercounter•2h ago•1 comments

Build your own Command Line with ANSI escape codes (2016)

https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html
26•vinhnx•2d ago•8 comments

Packaging a Gleam app into a single executable

https://www.dhzdhd.dev/blog/gleam-executable
72•todsacerdoti•6h ago•6 comments

Parallel coding agents with tmux and Markdown specs

https://schipper.ai/posts/parallel-coding-agents/
95•schipperai•8h ago•73 comments

Use the Mikado Method to do safe changes in a complex codebase

https://understandlegacycode.com/blog/a-process-to-do-safe-changes-in-a-complex-codebase/
135•foenix•4d ago•65 comments

A case for Go as the best language for AI agents

https://getbruin.com/blog/go-is-the-best-language-for-agents/
122•karakanb•3h ago•192 comments

Why Objective-C

https://inessential.com/2026/02/27/why-objective-c.html
108•ingve•2d ago•98 comments

19th century silent film that first captured a robot attack

https://www.npr.org/2026/02/28/nx-s1-5730373/georges-melies-robot-film-1897-library-of-congress-g...
32•ynac•7h ago•10 comments

Zclaw – The 888 KiB Assistant

https://zclaw.dev
69•kristianpaul•2d ago•35 comments

Microsoft bans the word "Microslop" on its Discord, then locks the server

https://www.windowslatest.com/2026/03/02/microsoft-gets-tired-of-microslop-bans-the-word-on-its-d...
978•robtherobber•12h ago•437 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