frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: AI Efficiency Score – paste any GitHub repo, get a score in seconds

https://costlens.dev/score
1•j_filipe•13s ago•0 comments

Omni 1

https://ai.google.dev/competition/projects/omni-1
2•simianwords•2m ago•0 comments

RNode – Unsigned.io

https://unsigned.io/rnode/
1•evo_9•2m ago•0 comments

Arbiter – Unified AI runtime for Swift with intelligent provider routing

https://github.com/sabby3861/Arbiter
1•sabby3861•3m ago•0 comments

Ask HN: Any remote job options for devs?

1•wasimsk•3m ago•0 comments

Canada's RCAF Snowbirds to be grounded after 2026 until new aircraft arrive

https://www.cbc.ca/news/politics/snowbirds-grounded-2030s-9.7204210
1•cf100clunk•4m ago•0 comments

Jahro – session replay for Unity, synchronized to logs on a shared timeline

https://jahro.io/features/session-replay
1•alexbulat•4m ago•0 comments

The (Fake) Long Decline of Fertility

https://lymanstone.substack.com/p/the-fake-long-decline-of-fertility
1•telotortium•5m ago•0 comments

Microsoft Removed Comments Functionality from Planner

https://learn.microsoft.com/en-sg/answers/questions/5870625/planner-task-comments-are-gone
1•nethunters•5m ago•0 comments

Show HN: I've built a Rust database to replace Surrealdb

https://github.com/ayoubnabil/aiondb
1•K9987plus•6m ago•0 comments

Kindle loyalists scramble as Amazon turns page on old e-readers

https://www.reuters.com/business/retail-consumer/kindle-loyalists-scramble-amazon-turns-page-old-...
3•cf100clunk•6m ago•0 comments

SlopCop: Forensics for Your Codebase

https://blog.brokk.ai/slopcop-forensics-for-your-codebase/
1•BigDataDave•8m ago•0 comments

APV video decoder written in Vulkan compute shaders

https://github.com/FFmpeg/FFmpeg/commit/5ad8c67e6cce8809dde67af87e23989f940389c1
1•pandaforce•8m ago•0 comments

Gentoo News: Copy Fail, Dirty Frag, and Fragnesia Kernel Vulnerabilities

https://www.gentoo.org/news/2026/05/19/copy-fail-fragnesia-vulnerabilities.html
2•akhuettel•8m ago•0 comments

The kernel patch that almost broke our fleet

https://www.geocod.io/code-and-coordinates/2026-05-18-the-kernel-patch-that-almost-broke-our-enti...
2•thecodemonkey•9m ago•0 comments

StanChart to cut over 7k jobs and use AI to replace 'lower-value human capital'

https://www.reuters.com/business/world-at-work/stanchart-cut-more-than-7000-jobs-bank-steps-up-ai...
3•alephnerd•10m ago•0 comments

Ask HN: What's your go-to LLM for coding?

2•Michelangelo11•12m ago•0 comments

Show HN: Humansmap, find degrees of connections between people and orgs

https://humansmap.com/
1•abstracthinking•14m ago•2 comments

GrapheneOS now has official production support for Pixel 10a

https://grapheneos.org/faq
3•cf100clunk•14m ago•1 comments

Show HN: Mudu, a private E2EE space for the people closest to you

https://byla.lt/posts/mudu/
1•Pattio•15m ago•0 comments

Notes on pretraining parallelisms and failed training runs

https://www.dwarkesh.com/p/notes-on-pretraining-parallelisms
1•gmays•16m ago•0 comments

Two AI agents walk into a hiring funnel. Nobody hires anyone

https://turkawka.substack.com/p/two-ai-agents-walk-into-a-hiring
2•kitsuno•17m ago•0 comments

I Tried Claude Code

https://zhenyi.gibber.blog/i-tried-claude-code
3•zhenyi•18m ago•0 comments

Show HN: A framework for building hackable applications

https://github.com/zenbu-labs/zenbu.js
2•robpruzan•18m ago•1 comments

A sub-50ms Bitcoin mempool telemetry engine written in bare-metal C

https://www.mempool-alpha-oracle.com
1•AhmadysKhan•19m ago•0 comments

Deadly Sins of Cargo Culting

https://blog.jacobstechtavern.com/p/the-7-deadly-sins-of-cargo-culting
1•jakey_bakey•19m ago•0 comments

Leftover Magics

https://play.google.com/store/apps/details?id=com.mousenbrush.leftovermagics&hl=en_US
1•newraje•20m ago•0 comments

Stellantis plans $17,500 small EV to revive European market

https://www.reuters.com/world/china/stellantis-produce-small-e-car-italys-pomigliano-2028-2026-05...
4•vrganj•21m ago•0 comments

Claude Player: royalty-free elevator music on Claude Code

https://github.com/betacar/claude-player
2•betacar•21m ago•1 comments

Lexicon – Manipulate DNS records on various DNS providers in a standardized way

https://github.com/dns-lexicon/dns-lexicon
2•indigodaddy•24m ago•0 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•1y ago

Comments

qwertox•1y ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•1y 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•1y 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•1y ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•1y 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•1y ago
Who runs such an AI generated script without checking the code first?
qwertox•1y 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•1y ago
Right so lets just always run the code as is ?
qwertox•1y 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•1y 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•1y ago
In which Roko's Basilisk fires a warning shot.
jethronethro•1y ago
This is why you test code or a script before running it for real. Live and learn, I guess ...