frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

One Schema for Every Eval

https://evalevalai.com/projects/every-eval-ever/
1•NickDouglas•1m ago•0 comments

Do Co-Located AI Training Jobs Synchronize?

https://arxiv.org/abs/2607.19638
1•Jimmc414•3m ago•0 comments

Rhino Horn, Leopard Skin and Tiger Claws Sold Openly on Facebook

https://www.bellingcat.com/news/2026/06/24/rhino-horn-leopard-skin-and-tiger-claws-sold-openly-on...
1•Jimmc414•4m ago•0 comments

Show HN: OpenTrust – Browser trust signals for the AI era

https://github.com/rafaelEt/opentrust
1•rafaeltadesse•4m ago•0 comments

Save Up to 70% on Claude Code Costs with PNG Prompts?

https://ai-karma-tracker.github.io/blog/pxpipe-png-prompts/
1•javatuts•4m ago•0 comments

Wreckage of Pan Am plane that shaped aviation safety found 74 years on

https://www.bbc.com/news/articles/cdrvyllxj71o
1•rmason•5m ago•1 comments

Sahil Lavingia – God Mode

https://sahillavingia.com/god
1•rmason•6m ago•0 comments

The Guide to Software Factories

https://twitter.com/zachlloydtweets/status/2077056692987027758
1•gmays•8m ago•0 comments

Ask HN: What verb best describes what a developer does in 2026?

1•jdlib•9m ago•0 comments

Show HN: Run Claude Code Through Codex, Kimi, Grok, or Cursor

https://github.com/raine/claude-code-proxy
1•rane•9m ago•0 comments

What 4,523 AI investment forecasts revealed about model disagreement

https://ipulseai.substack.com/p/4523-ai-forecasts-opposing-views
1•russlan•10m ago•0 comments

Show HN: Practice chess openings with a voice coach

https://chessmaster.alirizasaral.com
1•alirizasaral•11m ago•0 comments

A local RAG assistant for a Romanian government agency, built on an 8GB laptop

https://arxiv.org/abs/2607.18756
1•rotariuvladimir•13m ago•0 comments

How the OS Works [video]

https://www.youtube.com/watch?v=0y_2mZqP3cc
1•dalvrosa•14m ago•0 comments

BBC Sound Effects

https://sound-effects.bbcrewind.co.uk/
1•mellosouls•15m ago•0 comments

Where to find inspiration for a (reactive) personal website?

1•mryingster•15m ago•0 comments

DARPA Robotic mechanic for broken satellites launched

https://www.darpa.mil/news/2026/robotic-servicing-of-geosynchronous-satellites-lifts-off
1•GlenTheMachine•16m ago•0 comments

AI Agent Pull Requests on GitHub: Frequency, Structure, and Merge Conflict Rates

https://arxiv.org/abs/2607.04697
1•imrakibul•17m ago•0 comments

Are Agent Code Reviews for AI-Generated Code Worth It?

https://mattmccormick.ca/are-agent-code-reviews-for-ai-generated-code-worth-it/
1•mattm•17m ago•0 comments

The Solar Panel That Beats Silicon's Limit [video]

https://www.youtube.com/watch?v=vtmX0st3uOk
1•thelastgallon•17m ago•0 comments

AI Kill Switch Act [pdf]

https://lieu.house.gov/sites/evo-subsites/lieu-evo.house.gov/files/evo-media-document/ai-kill-swi...
1•bifftastic•18m ago•0 comments

Saudis must recognise Israel for nuclear deal, says Trump

https://www.bbc.com/news/articles/cwye71yq8wwo
1•thisislife2•18m ago•0 comments

YC rfs: is it ok "lowering the cost per kill" in startup world?

https://www.ycombinator.com/rfs
3•skobeltsyn•19m ago•0 comments

When China Gets Its Own Mythos

https://www.foreignaffairs.com/china/when-china-gets-its-own-mythos
1•verdverm•20m ago•1 comments

Guaranteed Wins

https://www.christopherburg.com/blog/guaranteed-wins/
1•speckx•21m ago•0 comments

How powerful is your passport?

https://www.theguardian.com/world/ng-interactive/2026/jul/23/most-powerful-passports-ranked
2•rwmj•21m ago•0 comments

Brazilian Trees

https://www.guidavid.com/writing/arvores-brasileiras#
1•gdss•22m ago•0 comments

Internet History Roulette – Spin the Early Web

https://internethistoryroulette.com/
1•luanmuniz•23m ago•0 comments

US weekly jobless claims plunge to lowest since 1969

https://www.reuters.com/world/us/us-weekly-jobless-claims-fall-sharply-latest-week-2026-07-23/
4•geox•24m ago•1 comments

Big Tech Isn't Hiding $1.65T of Debt

https://finterm.ai/blog/big-tech-hidden-debt-fact-check.html
19•kellyluu•26m ago•10 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 ...