frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

The Path to Medical Superintelligence

https://microsoft.ai/new/the-path-to-medical-superintelligence/
1•jonbaer•3m ago•0 comments

State of the Spack community: the Road to Version 1.0 [video]

https://indico.fnal.gov/event/69557/
1•teleforce•5m ago•0 comments

Product-Market Fit Is Retrospective Fiction

https://www.thebrokevc.com/p/product-market-fit-is-retrospective-fiction-7c36
1•joanwestenberg•6m ago•0 comments

People are using AI to 'sit' with them while they trip on psychedelics

https://www.technologyreview.com/2025/07/01/1119513/ai-sit-trip-psychedelics/
2•pseudolus•11m ago•0 comments

The Hamburger Menu Is No Longer a Hamburger Menu

https://www.datagubbe.se/dimburger/
3•zdw•13m ago•0 comments

Does education increase intelligence and does it matter? (2024)

https://theinfinitesimal.substack.com/p/does-education-increase-intelligence
1•johntfella•13m ago•0 comments

Hot acetic acid enables full recycling of carbon fiber composite materials

https://phys.org/news/2025-06-hot-acetic-acid-enables-full.html
2•PaulHoule•15m ago•0 comments

I Built Neural AST That Works – It Fixed 274 TypeScript Errors Then Went Rogue

https://imgur.com/gallery/bnImeMk
1•StopUncle•16m ago•0 comments

The End of the Arctic? Ocean Could Be Ice Free by 2015

https://www.thedailybeast.com/the-end-of-the-arctic-ocean-could-be-ice-free-by-2015/
1•bilsbie•19m ago•0 comments

Castlevania: Symphony of the Night Decompilation Project

https://sotn.xee.dev/
1•retro_guy•23m ago•1 comments

Young Americans Are Spending a Whole Lot Less on Video Games This Year

https://www.gamespot.com/articles/young-americans-are-spending-a-whole-lot-less-on-video-games-this-year/1100-6532877/
3•andsoitis•26m ago•0 comments

Benchmark for Evaluating Text Embeddings

https://huggingface.co/spaces/embedding-benchmark/RTEB
1•fzliu•27m ago•0 comments

Celebrating love in all its forms across identities and relationships

https://childrensbookforall.org/readings/16
1•chbkall•31m ago•1 comments

Qantas customers involved in mammoth data breach

https://www.news.com.au/travel/travel-updates/incidents/qantas-customers-involved-in-mammoth-data-breach
1•aussieguy1234•32m ago•1 comments

New claim added: X opens up to Community Notes written by AI bots

https://www.theverge.com/news/696210/x-community-notes-ai-note-writers
3•bundie•33m ago•0 comments

HTTP: H Is for Hallucinated

https://www.jasonthorsness.com/28
1•jasonthorsness•35m ago•0 comments

The simple act of reading can be a crime in Malaysia. Here's why

https://www.rnz.co.nz/life/books/the-simple-act-of-reading-can-be-a-crime-in-malaysia-here-s-why
5•billybuckwheat•35m ago•0 comments

Hilbert's sixth problem: derivation of fluid equations via Boltzmann's theory

https://arxiv.org/abs/2503.01800
3•nsoonhui•58m ago•0 comments

Wider or Deeper? Scaling LLM Inference-Time Compute with Adaptive Tree Search

https://arxiv.org/abs/2503.04412
1•vrm•1h ago•0 comments

As wave of dementia cases looms, Law School looks to preserve elders’ rights

https://news.harvard.edu/gazette/story/2025/07/as-wave-of-dementia-cases-looms-law-school-looks-to-preserve-elders-rights/
2•gnabgib•1h ago•1 comments

Self-hostable AT Protocol backlink index that runs on a RPi 4

https://github.com/at-microcosm/links/tree/main/constellation
1•ffin•1h ago•0 comments

Cross-Device Flows: Security Best Current Practice

https://www.ietf.org/archive/id/draft-ietf-oauth-cross-device-security-10.html
3•mooreds•1h ago•0 comments

The Eiffel Tower is closed to tourists due to searing heat

https://www.cnn.com/2025/07/01/weather/europe-heat-wave-global-warming
1•mooreds•1h ago•0 comments

Dewdrop: A Java Event Sourcing Framework

https://dewdrop.events/
2•mooreds•1h ago•0 comments

You MUST Listen to RFC 2119

https://ericwbailey.website/published/you-must-listen-to-rfc-2119/
4•zdw•1h ago•1 comments

Show HN: Conduit – Turn large text files into listenable audio

https://conduit-landing-page-git-master-tobys-projects-a638df7e.vercel.app/
2•tboneskibs•1h ago•0 comments

Show HN: I built a procedural universe in Python to explore simulation theory

https://github.com/SurceBeats/Atlas
1•SurceBeats•1h ago•1 comments

Trump threatens Tesla, SpaceX support

https://www.reuters.com/business/autos-transportation/elon-musk-renews-criticism-trump-spending-bill-calls-new-political-party-2025-06-30/
9•geox•1h ago•3 comments

Qantas says 6M customers caught up in cyberattack

https://www.afr.com/companies/transport/qantas-says-6-million-aussies-caught-up-in-cyberattack-20250702-p5mbup
3•sen•1h ago•2 comments

Visual intuitive tool to design predict and optimise complex economic models

https://machinations.io
1•leetrout•1h ago•0 comments
Open in hackernews

A Taxonomy of Bugs

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

Comments

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

With the stock eyeroll dismissal phrase.

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