frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

From Convergence to Confidence: Push-Button Verification for RDTs

https://kcsrk.info/verification/rdts/lean/2026/04/28/from-convergence-to-confidence/
1•matt_d•1m ago•0 comments

Show HN: Agents in Whisper Memos

https://whispermemos.com/agents
1•Void_•3m ago•0 comments

Space meteor showers visualization powered by SpaceKit.js

https://www.meteorshowers.org/
1•axbyte•7m ago•0 comments

Despite everything, a small praise of GitHub

https://davidpoblador.com/blog/despite-everything-a-small-praise-of-github.html
3•nirvanis•10m ago•0 comments

Paper Age

https://marcin.cylke.com.pl/til/2026-04-28-til-paper-age/
5•janisz•11m ago•0 comments

Workers Training Meta's AI Could Be Laid Off

https://www.wired.com/story/meta-covalen-ai-workers-layoffs/
6•tijana3290•14m ago•0 comments

The Site for Prevention of Laptop Sales

https://lars.ingebrigtsen.no/2026/03/23/the-site-for-prevention-of-laptop-sales/
2•internet_points•15m ago•0 comments

The Downfall and Enshittification of Microsoft in 2026

https://caio.ca/blog/the-downfall-and-enshittification-of-microsoft.html
7•birdculture•17m ago•0 comments

Britain's Solar Revolution Is Here; We Should Be Shouting It from the Rooftops

https://bylinetimes.com/2026/04/22/britains-solar-revolution-is-here-and-we-should-be-shouting-it...
6•robtherobber•18m ago•0 comments

Show HN: C# based Kubernetes Operator to deploy SurrealDB

https://github.com/stevefan1999-personal/surrealdb-operator
4•stevefan1999•24m ago•1 comments

Wire to Replace Signal as Standard in the Bundestag

https://www.heise.de/en/news/Digital-Sovereignty-Wire-to-Replace-Signal-as-Standard-in-the-Bundes...
12•raffael_de•28m ago•4 comments

Why Codex works better than Claude Code for my production monolith

5•anophelon•29m ago•1 comments

ListingBot – One click, 100 directories, zero hassle

https://listingbott.com/
4•listingbott•34m ago•0 comments

Meta found in breach of EU law for failing to keep children off platforms

https://www.theguardian.com/technology/2026/apr/29/meta-found-in-breach-of-eu-law-for-failing-to-...
10•geox•37m ago•0 comments

RSME: A Reactive Stability Mutation Encryption

https://zenodo.org/records/19712564
3•RanggaS•37m ago•0 comments

Study Finds a Third of New Websites Are AI-Generated

https://www.404media.co/study-finds-a-third-of-new-websites-are-ai-generated/
5•thm•40m ago•0 comments

Who's on call? How Opus 4.6 helped us calculate this 2,500x faster

https://incident.io/blog/whos-on-call-how-claude-helped-us-calculate-this-2-500-x-faster
5•boryrain•43m ago•0 comments

Show HN: TiGrIS, a tiling compiler that fits ML models onto embedded devices

https://github.com/raws-labs/tigris
6•asteinh•48m ago•0 comments

ANP – A binary protocol for AI agent-to-agent price negotiation (no LLM tokens)

https://github.com/victornominista/anp
4•VC83•51m ago•0 comments

Rebuilding the Data Stack for AI

https://www.technologyreview.com/2026/04/27/1136322/rebuilding-the-data-stack-for-ai/
4•joozio•55m ago•0 comments

Sovereign Tech Standards network: financial support for open source maintainers

https://www.sovereign.tech/programs/standards
9•mgajdo•56m ago•1 comments

Anthropic's Champion Kit for engineers pushing Claude Code at their company

https://code.claude.com/docs/en/champion-kit
6•ashadh•56m ago•0 comments

India's major airlines on 'verge of closing down' as high fuel costs sting

https://www.scmp.com/news/asia/south-asia/article/3351782/indias-major-airlines-verge-closing-dow...
5•TMWNN•59m ago•0 comments

A Podcast with Talkie, a 13B model trained only on pre-1931 text

https://the-coming-age-aqx87j.jellypod.com
3•bilater•1h ago•1 comments

The UK's Answer to DARPA Wants to Rewire the Human Brain

https://www.wired.com/story/kathleen-fisher-jacques-carolan-aria-wired-health/
3•beardyw•1h ago•0 comments

Specification-Driven Development framework for agent-native development

https://specdd.ai
5•addvilz•1h ago•0 comments

Low-Compilation-Cost Register Allocation in LLVM-Based Binary Translation

https://dl.acm.org/doi/abs/10.1145/3767295.3803591
12•matt_d•1h ago•0 comments

Germany Overtakes US in Ammunition Production Capacity

https://www.newsweek.com/germany-overtakes-us-in-ammunition-production-capacity-11886409
54•vrganj•1h ago•29 comments

Ask HN: What are you doing during inference?

7•petesergeant•1h ago•2 comments

Scaleway raises cloud prices after 3 years of absorbing costs

https://www.scaleway.com/en/blog/a-transparent-update-on-scaleway-pricing/
4•latentframe•1h ago•1 comments
Open in hackernews

I asked Gemini for a script to move files to Cloudflare R2. It deleted them

https://twitter.com/levelsio/status/1921974501257912563
6•bundie•11mo ago

Comments

qwertox•11mo ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•11mo ago
It was truncating filenames, so /pics/1003-46.png overwrote /pics/1003-45.png because both were renamed /pics/1003-.png, or something like that.
qwertox•11mo ago
Truncating file names for the target. Then it proceeded to delete the source file. "Successfully deleted local file: ..."

I mean, look at the printout. It shows that it created the remote file with the truncated filename, then deletes the local file with the correct filename.

turtleyacht•11mo ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•11mo ago
Recently there was a story about an updater causing a $8,000 bill because there was a lack of basic automated tests to catch the issue. [0]

The big lesson here is that you should actually test the code you write and also write automated tests to check any code generated by an LLM that the code is correct in what it does.

It is also useless to ask another AI to check for mistakes created by another LLM. As you can see in the post, both of them failed to catch the issue.

This why I don't take this hype around 'vibe-coding' seriously since not only it isn't software engineering, it promotes low quality and carelessness over basic testing and dismisses in checking that the software / script works as expected.

Turning $70 problems found in development into $700,000+ costs in production.

There are no more excuses in not adding tests.

[0] https://news.ycombinator.com/item?id=43829006

victorbjorklund•11mo ago
Who runs such an AI generated script without checking the code first?
qwertox•11mo ago
To be fair, the code Gemini outputs in AI Studio is so extremely verbose that it is almost impossible to read through it.

It turns 10 lines of code which is perfectly fine to reason about into 100 lines of unreadable code full of comments and exception handling.

weatherlite•11mo ago
Right so lets just always run the code as is ?
qwertox•11mo ago
No. Not at all. I've settled to discussing my code with Gemini. That way it works very well. I explicitly say "Comment on my code and discuss it" or "Let's discuss code for a script doing this and that. Generate me an outline and let's see where this leads. Don't put comments in the code, nor exception handling, we're just discussing it".

Or you create elaborate System Instructions, since it adheres to them pretty well.

But out-of-the-box, Gemini's coding abilities are unusable due to the verbosity.

I've even gone so far to tell it that it must understand that I am just a human and have limited bandwidth in my brain, so it should write code which is easy to reason about, that this is more important than having it handle every possible exception or adding multiline comments.

rsynnott•11mo ago
> To be fair, the code Gemini outputs in AI Studio is so extremely verbose that it is almost impossible to read through it.

In which case, it should simply be considered unusable. Like, the sensible response to "tool is so inadequate that there is no reasonable way to make sure its output is safe" is to _not use that tool_.

rsynnott•11mo ago
In which Roko's Basilisk fires a warning shot.
jethronethro•11mo ago
This is why you test code or a script before running it for real. Live and learn, I guess ...