frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

MacBook Pro with M5 Pro and M5 Max

https://www.apple.com/newsroom/2026/03/apple-introduces-macbook-pro-with-all-new-m5-pro-and-m5-max/
674•scrlk•12h ago•659 comments

Lenovo's New ThinkPads Score 10/10 for Repairability

https://www.ifixit.com/News/115827/new-thinkpads-score-perfect-10-repairability
198•wrxd•2h ago•62 comments

Voxile: A ray-traced game made in its own engine and programming language

https://elbowgreasegames.substack.com/p/voxray-games-pushes-major-update
106•spacemarine1•5h ago•19 comments

Claude's Cycles [pdf]

https://www-cs-faculty.stanford.edu/~knuth/papers/claude-cycles.pdf
475•fs123•15h ago•212 comments

Textadept

https://orbitalquark.github.io/textadept/
72•giancarlostoro•2d ago•14 comments

Intel's make-or-break 18A process node debuts for data center with 288-core Xeon

https://www.tomshardware.com/pc-components/cpus/intels-make-or-break-18a-process-node-debuts-for-...
248•vanburen•7h ago•195 comments

GPT‑5.3 Instant

https://openai.com/index/gpt-5-3-instant/
297•meetpateltech•8h ago•224 comments

Marcus AI Claims Dataset

https://github.com/davegoldblatt/marcus-claims-dataset
56•davegoldblatt•46m ago•33 comments

Claude's Cycles [pdf]

https://cs.stanford.edu/~knuth/papers/claude-cycles.pdf
16•cebert•1h ago•2 comments

An Interactive Intro to CRDTs (2023)

https://jakelazaroff.com/words/an-interactive-intro-to-crdts/
95•evakhoury•6h ago•15 comments

Time, Space, and Life as We Know It (2017)

https://raganwald.com/2017/01/12/time-space-life-as-we-know-it.html
9•vismit2000•3d ago•0 comments

Motorola GrapheneOS devices will be bootloader unlockable/relockable

https://grapheneos.social/@GrapheneOS/116160393783585567
9•pabs3•1h ago•1 comments

The Xkcd thing, now interactive

https://editor.p5js.org/isohedral/full/vJa5RiZWs
1147•memalign•15h ago•153 comments

When AI writes the software, who verifies it?

https://leodemoura.github.io/blog/2026/02/28/when-ai-writes-the-worlds-software.html
145•todsacerdoti•9h ago•136 comments

Launch HN: Cekura (YC F24) – Testing and monitoring for voice and chat AI agents

71•atarus•11h ago•19 comments

We've freed Cookie's Bustle from copyright hell

https://gamehistory.org/cookies-bustle/
93•sb057•6h ago•10 comments

130k Lines of Formal Topology: Simple and Cheap Autoformalization for Everyone?

https://arxiv.org/abs/2601.03298
7•PaulHoule•2h ago•0 comments

Don't become an engineering manager

https://newsletter.manager.dev/p/dont-become-an-engineering-manager
309•flail•11h ago•225 comments

You can't use a code editor when you're under 18 now?

https://mastodon.online/@marekfort/116164253291515471
32•pabs3•1h ago•10 comments

What’s in a name? (2014)

https://sailsandcommas.com/2014/02/03/whats-in-a-name/
10•Curiositry•2d ago•1 comments

Physics Girl: Super-Kamiokande – Imaging the sun by detecting neutrinos [video]

https://www.youtube.com/watch?v=B3m3AMRlYfc
426•pcdavid•11h ago•67 comments

You can use newline characters in URLs

https://lemire.me/blog/2026/02/28/you-can-use-newline-characters-in-urls/
7•chmaynard•3d ago•0 comments

TorchLean: Formalizing Neural Networks in Lean

https://leandojo.org/torchlean.html
74•matt_d•2d ago•9 comments

My take on vibe coding for PMs

https://www.ddmckinnon.com/2026/02/11/my-%f0%9f%8c%b6-take-on-vibe-coding-for-pms/
6•dmckinno•2h ago•0 comments

Disable Your SSH access accidentally with scp

https://sny.sh/hypha/blog/scp
101•zdw•3d ago•47 comments

Don't make me talk to your chatbot

https://raymyers.org/post/dont-make-me-talk-to-your-chatbot/
215•pkilgore•3h ago•175 comments

Talos: Hardware accelerator for deep convolutional neural networks

https://talos.wtf/
46•llamatheollama•3h ago•16 comments

MacBook Air with M5

https://www.apple.com/newsroom/2026/03/apple-introduces-the-new-macbook-air-with-m5/
376•Garbage•12h ago•420 comments

Possible US Government iPhone-Hacking Toolkit in foreign spy and criminal hands

https://www.wired.com/story/coruna-iphone-hacking-toolkit-us-government/
192•alwillis•6h ago•60 comments

I'm reluctant to verify my identity or age for any online services

https://neilzone.co.uk/2026/03/im-struggling-to-think-of-any-online-services-for-which-id-be-will...
882•speckx•11h ago•545 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