frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Boing

https://boing.greg.technology/
148•gregsadetsky•3h ago•27 comments

Zigbook Is Plagiarizing the Zigtools Playground

https://zigtools.org/blog/zigbook-plagiarizing-playground/
85•todsacerdoti•2h ago•12 comments

Bazzite: The next generation of Linux gaming

https://bazzite.gg/
341•doener•8h ago•218 comments

Meshtastic

https://meshtastic.org/
100•debo_•5h ago•19 comments

All it takes is for one to work out

https://alearningaday.blog/2025/11/28/all-it-takes-is-for-one-to-work-out-2/
452•herbertl•10h ago•227 comments

Landlock-Ing Linux

https://blog.prizrak.me/post/landlock/
168•razighter777•9h ago•59 comments

The HTTP Query Method

https://www.ietf.org/archive/id/draft-ietf-httpbis-safe-method-w-body-14.html
119•Ivoah•3d ago•54 comments

Learning Feynman's Trick for Integrals

https://zackyzz.github.io/feynman.html
167•Zen1th•10h ago•19 comments

Americans no longer see four-year college degrees as worth the cost

https://www.nbcnews.com/politics/politics-news/poll-dramatic-shift-americans-no-longer-see-four-y...
187•jnord•7h ago•260 comments

Blender facial animation tool. What else should it do?

https://github.com/shun126/livelinkface_arkit_receiver/wiki
63•happy-game-dev•2d ago•12 comments

Scala

https://www.huygens-fokker.org/scala/
51•onestay42•6h ago•10 comments

Datacenters in space aren't going to work

https://taranis.ie/datacenters-in-space-are-a-terrible-horrible-no-good-idea/
228•mindracer•16h ago•199 comments

A new Little Prince museum has opened its doors in Switzerland

https://www.lepetitprince.com/en/events-around-the-world/a-new-little-prince-museum-has-opened-it...
39•gnabgib•5h ago•11 comments

Matrix Core Programming on AMD CDNA Architecture

https://rocm.blogs.amd.com/software-tools-optimization/matrix-cores-cdna/README.html
15•salykova•4d ago•2 comments

Show HN: Nano PDF – A CLI Tool to Edit PDFs with Gemini's Nano Banana

https://github.com/gavrielc/Nano-PDF
119•GavCo•10h ago•28 comments

Be Like Clippy

https://be-clippy.com/
260•Aloha•11h ago•167 comments

Our Phosphorescent World

https://aeon.co/essays/the-cycling-of-phosphorus-is-the-basis-for-all-life-on-earth
7•the-mitr•5d ago•0 comments

An update on the Farphone's battery

https://far.computer/battery-update/
77•louismerlin•1d ago•52 comments

Rare X-ray images of a 4.5-ton satellite that returned intact from space

https://www.empa.ch/web/s604/eureca-satellit-mit-roentgenmethoden-untersucht
78•giuliomagnifico•3d ago•12 comments

Leak confirms OpenAI is preparing ads on ChatGPT for public roll out

https://www.bleepingcomputer.com/news/artificial-intelligence/leak-confirms-openai-is-preparing-a...
607•fleahunter•19h ago•557 comments

Testing shows automotive glassbreakers can't break modern automotive glass

https://www.core77.com/posts/138925/Testing-Shows-Automotive-Glassbreakers-Cant-Break-Modern-Auto...
107•surprisetalk•15h ago•115 comments

The Origins of Scala (2009)

https://www.artima.com/articles/the-origins-of-scala
66•todsacerdoti•10h ago•37 comments

Show HN: Network Monitor – a GUI to spot anomalous connections on your Linux

109•grigio•5d ago•42 comments

Anthony Bourdain's Lost Li.st's

https://bourdain.greg.technology/
260•gregsadetsky•3d ago•82 comments

Hardening the C++ Standard Library at scale

https://queue.acm.org/detail.cfm?id=3773097
139•ndesaulniers•1w ago•60 comments

Zero knowlege proof of compositeness

https://www.johndcook.com/blog/2025/11/29/zkp-composite/
101•ColinWright•12h ago•32 comments

A new myth appeared during the presidential campaign of Andrew Jackson

https://www.historynewsnetwork.org/article/self-made
30•Petiver•4d ago•62 comments

Stopping bad guys from using my open source project (feedback wanted)

https://evanhahn.com/stopping-bad-guys-from-using-my-open-source-project/
60•emschwartz•5h ago•99 comments

Student perceptions of AI coding assistants in learning

https://arxiv.org/abs/2507.22900
75•victorbuilds•12h ago•99 comments

Bronze Age mega-settlement in Kazakhstan has advanced urban planning, metallurgy

https://archaeologymag.com/2025/11/bronze-age-mega-settlement-in-kazakhstan/
135•CGMthrowaway•1w ago•44 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