frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Do Not Turn Child Protection into Internet Access Control

https://news.dyne.org/child-protection-is-not-access-control/
194•smartmic•2h ago•60 comments

Tinybox- offline AI device 120B parameters

https://tinygrad.org/#tinybox
180•albelfio•2h ago•105 comments

Some things just take time

https://lucumr.pocoo.org/2026/3/20/some-things-just-take-time/
423•vaylian•7h ago•142 comments

Professional video editing, right in the browser with WebGPU and WASM

https://tooscut.app/
19•mohebifar•1h ago•3 comments

Grafeo – A fast, lean, embeddable graph database built in Rust

https://grafeo.dev/
159•0x1997•7h ago•55 comments

Electronics for Kids, 2nd Edition

https://nostarch.com/electronics-for-kids-2e
49•0x54MUR41•2d ago•6 comments

Show HN: Termcraft – terminal-first 2D sandbox survival in Rust

https://github.com/pagel-s/termcraft
56•sebosch•3h ago•4 comments

The seven hour explosion nobody could explain

https://phys.org/news/2026-03-hour-explosion.html
65•mellosouls•4d ago•8 comments

How Invisalign became the biggest user of 3D printers

https://www.wired.com/story/how-invisalign-became-the-worlds-biggest-3d-printing-company/
110•mikhael•2d ago•80 comments

No evidence cannabis helps anxiety, depression, or PTSD

https://www.sciencedaily.com/releases/2026/03/260319044656.htm
93•nothrowaways•2h ago•68 comments

Hide macOS Tahoe's Menu Icons

https://512pixels.net/2026/03/hide-macos-tahoes-menu-icons-with-this-one-simple-trick/
50•soheilpro•4h ago•16 comments

No Semicolons Needed

https://terts.dev/blog/no-semicolons-needed/
19•karakoram•3h ago•20 comments

The paddle wheel aircraft carriers of Lake Michigan

https://signoregalilei.com/2026/03/08/the-paddle-wheel-aircraft-carriers-of-lake-michigan/
17•surprisetalk•4d ago•2 comments

ZJIT removes redundant object loads and stores

https://railsatscale.com/2026-03-18-how-zjit-removes-redundant-object-loads-and-stores/
63•tekknolagi•3d ago•10 comments

Ubuntu 26.04 Ends 46 Years of Silent sudo Passwords

https://pbxscience.com/ubuntu-26-04-ends-46-years-of-silent-sudo-passwords/
284•akersten•17h ago•293 comments

Common Lisp Development Tooling

https://www.creativetension.co/posts/common-lisp-development-tooling
15•0bytematt•2h ago•1 comments

Esqueleto Tutorial

https://entropicthoughts.com/esqueleto-tutorial
5•ibobev•4d ago•0 comments

Meta's Omnilingual MT for 1,600 Languages

https://ai.meta.com/research/publications/omnilingual-mt-machine-translation-for-1600-languages/?...
109•j0e1•3d ago•31 comments

Thinking Fast, Slow, and Artificial: How AI Is Reshaping Human Reasoning

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6097646
73•Anon84•7h ago•44 comments

Books of the Century by Le Monde

https://standardebooks.org/collections/le-mondes-100-books-of-the-century
84•zlu•2d ago•50 comments

Show HN: Atomic – self-hosted, semantically-connected personal knowledge base

https://github.com/kenforthewin/atomic
15•kenforthewin•3h ago•0 comments

Hawaii's worst flooding in 20 years threatens dam, prompts evacuations

https://www.nbcnews.com/weather/floods/hawaii-worst-flooding-in-20-years-rcna264573
35•geox•2h ago•10 comments

A Japanese glossary of chopsticks faux pas (2022)

https://www.nippon.com/en/japan-data/h01362/
444•cainxinth•1d ago•344 comments

Show HN: Joonote – A note-taking app on your lock screen and notification panel

https://joonote.com/
31•kilgarenone•7h ago•23 comments

Mamba-3

https://www.together.ai/blog/mamba-3
266•matt_d•3d ago•50 comments

FFmpeg 101 (2024)

https://blogs.igalia.com/llepage/ffmpeg-101/
201•vinhnx•19h ago•8 comments

Blocking Internet Archive Won't Stop AI, but Will Erase Web's Historical Record

https://www.eff.org/deeplinks/2026/03/blocking-internet-archive-wont-stop-ai-it-will-erase-webs-h...
465•pabs3•15h ago•131 comments

OpenCode – Open source AI coding agent

https://opencode.ai/
1181•rbanffy•1d ago•578 comments

Molly guard in reverse

https://unsung.aresluna.org/molly-guard-in-reverse/
203•surprisetalk•1d ago•82 comments

A pig's brain has been frozen with its cellular activity locked in place

https://www.newscientist.com/article/2520204-major-leap-towards-reanimation-after-death-as-mammal...
90•Brajeshwar•8h ago•129 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