frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How Charles M Schulz created Charlie Brown and Snoopy (2024)

https://www.bbc.com/culture/article/20241205-how-charles-m-schulz-created-charlie-brown-and-snoopy
58•1659447091•2h ago•16 comments

250MWh 'Sand Battery' to start construction in Finland

https://www.energy-storage.news/250mwh-sand-battery-to-start-construction-in-finland-for-both-hea...
144•doener•4h ago•61 comments

Same-day upstream Linux support for Snapdragon 8 Elite Gen 5

https://www.qualcomm.com/developer/blog/2025/10/same-day-snapdragon-8-elite-gen-5-upstream-linux-...
343•mfilion•10h ago•151 comments

Vsora Jotunn-8 5nm European inference chip

https://vsora.com/products/jotunn-8/
35•rdg42•3h ago•8 comments

A programmer-friendly I/O abstraction over io_uring and kqueue (2022)

https://tigerbeetle.com/blog/2022-11-23-a-friendly-abstraction-over-iouring-and-kqueue/
41•enz•4h ago•8 comments

Physicists drive antihydrogen breakthrough at CERN

https://phys.org/news/2025-11-physicists-antihydrogen-breakthrough-cern-technique.html
130•naves•5d ago•33 comments

Quake Engine Indicators

https://fabiensanglard.net/quake_indicators/index.html
198•liquid_x•3d ago•42 comments

Memories of .us

https://computer.rip/2025-11-11-dot-us.html
123•sabas_ge•1d ago•35 comments

Feedback doesn't scale

https://another.rodeo/feedback/
119•ohjeez•1d ago•35 comments

Underrated reasons to be thankful V

https://dynomight.net/thanks-5/
139•numeri•6h ago•64 comments

Linux Kernel Explorer

https://reverser.dev/linux-kernel-explorer
540•tanelpoder•20h ago•79 comments

Tell HN: Happy Thanksgiving

555•prodigycorp•21h ago•136 comments

Bird flu viruses are resistant to fever, making them a major threat to humans

https://medicalxpress.com/news/2025-11-bird-flu-viruses-resistant-fever.html
46•bikenaga•3h ago•34 comments

Indie, alone, and figuring it out

https://danijelavrzan.com/posts/2025/11/indie-dev/
36•wallflower•4d ago•3 comments

DeepSeekMath-V2: Towards Self-Verifiable Mathematical Reasoning [pdf]

https://github.com/deepseek-ai/DeepSeek-Math-V2/blob/main/DeepSeekMath_V2.pdf
130•fspeech•6h ago•29 comments

TPUs vs. GPUs and why Google is positioned to win AI race in the long term

https://www.uncoveralpha.com/p/the-chip-made-for-the-ai-inference
276•vegasbrianc•13h ago•218 comments

DIY NAS: 2026 Edition

https://blog.briancmoses.com/2025/11/diy-nas-2026-edition.html
402•sashk•1d ago•259 comments

Maxduino Review: Tape Cassette Emulator for Multiple Retro Computers

https://retrogamecoders.com/maxduino-review/
9•ibobev•3d ago•0 comments

Mixpanel Security Breach

https://mixpanel.com/blog/sms-security-incident/
211•jaredwiener•19h ago•107 comments

A Camera of Miroslav Tichý

https://artblart.com/tag/a-camera-of-miroslav-tichy/
8•Kaibeezy•4d ago•0 comments

Why Strong Consistency?

https://brooker.co.za/blog/2025/11/18/consistency.html
82•SchwKatze•1d ago•59 comments

Ray Marching Soft Shadows in 2D (2020)

https://www.rykap.com/2020/09/23/distance-fields/
179•memalign•19h ago•28 comments

Inspired by Spider-Man, scientists recreate web-slinging technology

https://scienceclock.com/inspired-by-spider-man-scientists-recreate-web-slinging-technology/
42•ohjeez•1d ago•10 comments

Coq: The World's Best Macro Assembler? (2013) [pdf]

https://nickbenton.name/coqasm.pdf
144•addaon•22h ago•66 comments

Music eases surgery and speeds recovery, study finds

https://www.bbc.com/news/articles/c231dv9zpz3o
200•1659447091•22h ago•88 comments

Penpot: The Open-Source Figma

https://github.com/penpot/penpot
699•selvan•1d ago•171 comments

The current state of the theory that GPL propagates to AI models

https://shujisado.org/2025/11/27/gpl-propagates-to-ai-models-trained-on-gpl-code/
183•jonymo•14h ago•242 comments

Show HN: Runprompt – run .prompt files from the command line

https://github.com/chr15m/runprompt
115•chr15m•12h ago•38 comments

The VanDersarl Blériot: a 1911 airplane homebuilt by teenage brothers (2017)

https://www.historynet.com/vandersarl-bleriot/
40•ForHackernews•10h ago•35 comments

Interactive λ-Reduction

https://deltanets.org/
119•jy14898•3d ago•22 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

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

With the stock eyeroll dismissal phrase.

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