frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Discovery Loop

https://www.discoveryloop.com/
147•xtreak29•1h ago•59 comments

Qwen 3.0 Image Pro

https://www.qwencloud.com/models/qwen-image-3.0-pro
138•theanonymousone•2h ago•39 comments

Oracle Just Halved Its Always Free ARM Limits

https://www.cnelecar.com/blog/oracle-always-free-arm-limits-cut-2026/
97•iplaypc•2h ago•65 comments

The next chapter of our AI momentum

https://blog.google/company-news/inside-google/message-ceo/next-chapter-ai-momentum/
56•colesantiago•1h ago•37 comments

Google DeepMind CEO Demis Hassabis is stepping down

https://www.axios.com/2026/08/05/google-deepmind-demis-hassabis-ai
299•ot•1h ago•178 comments

The "Disability Dongle": Why Silicon Valley Hates Me and You

https://sightlessscribbles.com/disability-dongle/
94•calcifer•3h ago•60 comments

Aristotle quotes on virtue, knowledge, and happiness

https://www.campion.edu.au/blog/top-25-aristotle-quotes-on-virtue-knowledge-and-happiness/
104•teleforce•3h ago•29 comments

Jeff Dean leaving Alphabet

https://www.nytimes.com/2026/08/05/technology/google-researchers-ai-startup.html
220•louiereederson•1h ago•50 comments

Cloudflare OS: an open platform for agents, apps, and work

https://blog.cloudflare.com/cloudflare-os/
309•speckx•3h ago•170 comments

Cops Used Flock to Track a Man Across State Lines for a Pretextual Weed Search

https://www.404media.co/cops-used-flock-to-track-a-man-across-state-lines-to-create-pretext-to-se...
246•cdrnsf•2h ago•126 comments

Western Sahara

https://en.wikipedia.org/wiki/Western_Sahara
43•brudgers•19h ago•14 comments

Launch HN: HyperProbe (YC S26) – Agents that do read-only debugging in prod

https://www.hyperprobe.co
9•shailendraht•55m ago•4 comments

The Valley of Webhooks

https://weli.dev/blog/the-valley-of-webhooks/
30•weli•2h ago•13 comments

Discovery of a multicomponent alloy forged by the Hiroshima atomic blast

https://www.science.org/doi/10.1126/sciadv.aeg8299
50•_____k•5d ago•14 comments

The Entropy of a Markov Chain

https://chillphysicsenjoyer.substack.com/p/the-entropy-of-a-markov-chain
54•surprisetalk•3h ago•2 comments

Building an Advanced Agentic Harness

https://data4sci.com/blog/building-an-advanced-agentic-harness
58•Anon84•3h ago•28 comments

Painting with Gaussians

https://yogthos.net/posts/2026-08-03-splat-painter.html
45•yogthos•4h ago•5 comments

Rubin Observatory's first LSST Camera release: 500k galaxies in the COSMOS field

https://rubinobservatory.org/news/rubin-new-window-cosmos-field
41•MarcoDewey•3h ago•3 comments

Jeff Dean Leaving Google

https://twitter.com/JeffDean/status/2085034604172603724
54•bifftastic•1h ago•3 comments

Intelligence Is Not the Main Bottleneck

https://www.writingruxandrabio.com/p/intelligence-is-not-the-main-bottleneck
92•rruxandra_l•3h ago•67 comments

Civilian plane crash in New Mexico tied to military GPS blocking

https://www.wired.com/story/a-civilian-plane-crashed-in-new-mexico-was-the-militarys-tech-to-blame/
348•dzdt•6h ago•170 comments

When "no healthy upstream" isn't about the upstream you think

https://sahansera.dev/no-healthy-upstream/
4•sahan•3d ago•0 comments

TSON – A JSON superset with immutable, hash-pinned schemas

https://tson.io/
45•andrewjneumann•3h ago•39 comments

Faster Than Ninja

https://build2.org/blog/faster-than-ninja.xhtml
51•elasticdog•4h ago•17 comments

Position: LLMs Can't Jump

https://openreview.net/challenge?redirect=%2Fforum%3Fid%3DklU4737opt
180•theanonymousone•6h ago•126 comments

The Law of Jante (2015)

https://www.theparisreview.org/blog/2015/02/11/the-law-of-jante/
12•NaOH•22h ago•1 comments

Stateless MCP has recaptured my interest

https://simonwillison.net/2026/Jul/31/stateless-mcp/
350•tosh•4d ago•200 comments

TIME Is Serving AI Bots a Different Website, with Ads Built In

https://www.vincentschmalbach.com/time-serves-ai-bots-a-different-website/
179•vincent_s•5h ago•72 comments

Energizing a vacuum-tube flip-flop module from a 1948 IBM system

https://www.righto.com/2026/07/ibm-604-trigger-tube-module.html
26•Jimmc414•5d ago•3 comments

Why Erdős Problems Are Falling to AI

https://www.quantamagazine.org/why-the-legendary-erdos-problems-are-falling-to-ai-20260803/
113•pseudolus•5h ago•104 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

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

With the stock eyeroll dismissal phrase.

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