frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gemini 3.8 Flash

https://deepmind.google/models/model-cards/gemini-3-8-flash/
239•bratao•1h ago•118 comments

A Note from LWN

https://lwn.net/Articles/1090585/
446•rwky•3h ago•95 comments

GrapheneOS says Pixel 11 has MTE support after all

https://grapheneos.social/@GrapheneOS/117194007157499435
92•user_7832•2h ago•59 comments

Biggest dark matter detector spots a single weird particle

https://www.science.org/content/article/world-s-biggest-dark-matter-detector-spots-single-weird-p...
111•randycupertino•2h ago•20 comments

Mistral now trains on user input by default, except on enterprise tier

https://help.mistral.ai/en/articles/455207-can-i-opt-out-of-my-input-or-output-data-being-used-fo...
173•teekert•3h ago•79 comments

Gemini 3.8 Flash and 3.8 Flash Cyber

https://blog.google/innovation-and-ai/models-and-research/gemini-models/3-8-flash-and-3-8-flash-c...
24•simonsarris•39m ago•2 comments

Three sites made 215,128 “best software” pages for AI. Perplexity cites them

https://trellner.com/reports/manufactured-sources-behind-ai-recommendations/
140•jakobgreenfeld•2h ago•78 comments

Exit the Cave

https://turtlespace.blog/p/exit-the-cave
58•akkartik•2h ago•13 comments

Poisson Disk Sampling

https://stripeacross.com/posts/poisson-disk-sampling/
55•vismit2000•2h ago•6 comments

Aging Brains Blend Memories Together Instead of Just Forgetting Them

https://studyfinds.com/aging-brains-blend-memories-together-instead-of-forgetting-them-study-finds/
73•mdp2021•3h ago•26 comments

Commodore 64 released September 1, 1982

https://dfarq.homeip.net/commodore-64-released-september-1-1982/
241•giuliomagnifico•7h ago•121 comments

A Selection of Los Alamos Rolodex Business Cards

https://clui.org/collections/los-alamos-business-cards/selection-cards
40•1970-01-01•1d ago•7 comments

WebLLM: high-performance in-browser LLM inference engine

https://github.com/mlc-ai/web-llm
27•saikatsg•2h ago•8 comments

Six curl CVEs after OpenAI and Anthropic came back with zero

https://aisle.com/blog/aisle-discovered-six-curl-cves-after-openai-and-anthropic-found-zero
95•goobreee•2h ago•30 comments

A third of Perplexity's citations don't contain the number they're cited for

https://hausresearch.com/reports/perplexity-citation-audit/
46•jakobgreenfeld•2h ago•12 comments

Saving money on Google Photos with Immich: Your own personal photo storage

https://www.markpitblado.me/blog/saving-on-google-photos-with-immich-your-own-personal-photo-stor...
6•speckx•16m ago•3 comments

Check if a file was made with Claude

https://claude.com/check-content
73•frexs•4h ago•47 comments

AI, ex-Soviet engineers, and the Holy Grail of rocketry

https://www.fastcompany.com/91563020/aspire-rocket-design-spacex
10•rbanffy•2d ago•1 comments

Show HN: FrontierHarness Eval – 9 harness, same model, cost per pass varies 17x

https://frontierharness.org
9•shiqimei•8m ago•0 comments

LLMs: Intelligence vs. Cost

https://openteams.com/intelligence-vs-cost/
40•theanonymousone•3h ago•17 comments

Telli (YC F24) is hiring engineers and designers [Berlin, on-site]

https://careers.telli.com/
1•sebselassie•7h ago

The Emergent Symbolic Structure of Artificial Neural Networks

https://arxiv.org/abs/2608.29530
240•schmuhblaster•12h ago•84 comments

Dutch central bank moves share of gold from U.S., Canada to London

https://nltimes.nl/2026/09/02/dutch-central-bank-moves-share-gold-us-canada-london-cites-instability
162•TechTechTech•3h ago•146 comments

9000 RPM is faster than your screen refreshes

https://ma.ttias.be/9000-rpm/
36•Mojah•3h ago•20 comments

Ending my elixir exploratory writing

https://lucassifoni.info/blog/the-end-of-this-elixir-log/
57•ffin•4h ago•36 comments

The Cables That Connect the World

https://xn--gckvb8fzb.com/the-cables-that-connect-the-world/
33•surprisetalk•3h ago•6 comments

Using jq to format JSON on the clipboard

https://chris48s.github.io/blogmarks/posts/2021/jsontidy/
39•stefanvdw1•3h ago•13 comments

Banca Etica Suspends A/I's Account While Condemning the Sanctions Behind It

https://sabot.media/post/banca-etica-statement-english
55•rendx•6h ago•33 comments

Move in C++ without a std:move

https://andreasfertig.com/blog/2026/09/move-in-cpp-without-a-stdmove/
34•dalvrosa•1d ago•39 comments

It's OK to hardcode feature flags (2025)

https://code.mendhak.com/hardcode-feature-flags/
61•biscuits1•5h ago•35 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.