frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Iceland votes 'No' to reopening EU accession talks

https://www.euronews.com/my-europe/2026/08/30/iceland-votes-no-to-further-eu-accession-talks-in-t...
1•sehw•1m ago•0 comments

Rehearse a specific English work conversation before you have it

https://www.unfreezy.com
1•czaar1•2m ago•0 comments

Groom of the Stool

https://en.wikipedia.org/wiki/Groom_of_the_Stool
1•soupspaces•3m ago•0 comments

IguanaTex

https://github.com/Jonathan-LeRoux/IguanaTex
1•Eridanus2•3m ago•0 comments

Innovation Doesn't Happen on Schedule

https://www.thesignalist.io/s/innovation-doesnt-happen-on-schedule/
1•kodesko•4m ago•0 comments

The largest electric plane takes flight today

https://www.popsci.com/technology/worlds-largest-electric-plane/
1•thinkingemote•4m ago•0 comments

Scientists Create the Littlest Big Bang to Study the Universe's Origins

https://www.wired.com/story/scientists-create-littlest-big-bang-to-study-universe-origins/
1•joozio•5m ago•0 comments

When Led Zeppelin bombed in front of 1.9B people [video]

https://www.youtube.com/watch?v=PPJJdQfVxyg
1•jurf•5m ago•0 comments

Show HN: The Thousand – 1k founders, 1 question, one book

https://thethousand.co
1•jabed•5m ago•1 comments

Google Maps – Lake America

https://www.google.com/maps/place/Lake+America/@43.7036865,-79.2490163,8z/data=!3m1!4b1!4m6!3m5!1...
1•pseudolus•6m ago•0 comments

Columbia House Is Shutting Down

https://pitchfork.com/story/columbia-house-is-shutting-down/
1•pseudolus•14m ago•0 comments

He Did Not Conquer: Franklin's Failure to Annex Canada

https://reviewcanada.ca/magazine/2025/12/how-vain-an-attempt-review-he-did-not-conquer/
2•Bluestein•16m ago•0 comments

Show HN: Get your free AI search visibility scan

https://www.visiscan.app
1•not_wowinter14•16m ago•0 comments

Tortoise and the Birds – an African folktale recreated with Lego animation [video]

https://www.youtube.com/watch?v=EVHlqLa7-u0
1•CodePapi_•19m ago•1 comments

Show HN: Nuzzle – adorable live wallpapers of your pets

https://usenuzzle.com
1•13001r•19m ago•0 comments

Against Dumb Vibe Coding, Not Vibe Coding

https://funnygeek.com/essays/vibe-coding-speech/
1•ifoo•21m ago•1 comments

Show HN: Drop a SQL schema, get an interactive ER diagram

https://mcdview.dev/
1•PatuDev•21m ago•0 comments

Mitchell Hashimoto: Basic Superlogical Demo

https://twitter.com/mitchellh/status/2093451043661316217
2•mdrachuk•24m ago•0 comments

The U.S. Munitions Crisis

https://www.cfr.org/articles/the-u-s-munitions-crisis
2•Betelbuddy•24m ago•1 comments

Show HN: Time tracking for solo consultants that ends in a PDF invoice

https://hourtobill.com/demo
1•Stackedboost•25m ago•0 comments

Tja – TUI for learning German verbs in your terminal, one-armed-bandit style

https://github.com/progapandist/tja
1•progapandist•25m ago•1 comments

US Threatens Britain over Falklands

https://www.telegraph.co.uk/world-news/2026/08/28/us-uk-boost-defence-spending-lose-falklands-sup...
1•Betelbuddy•28m ago•1 comments

Iceland votes against restarting talks on joining EU

https://www.bbc.com/news/articles/c70le8ed1plo
2•vinni2•28m ago•0 comments

Show HN: Train 300M/32-Layer Model in 1.5GB RAM on Base M1 Mac

1•vlad_kalinkin•28m ago•0 comments

Only believe what you can validate: a verification framework for agentic AI

https://devblogs.microsoft.com/all-things-azure/only-believe-what-you-can-validate/
1•yani__•30m ago•0 comments

Delhi Metro Jazz

https://www.delhimetrojazz.com/
1•mscholz•32m ago•0 comments

Veldo: Stop paying for App Store keywords that never pay back

https://veldo.app/
1•welsenesbros•34m ago•0 comments

Show HN: Rose – reusable foundation embeddings for industrial 1H NMR

https://github.com/romboai/rose-1h-nmr
1•zaza3311•35m ago•0 comments

The Complex Tech Behind Growing Diamonds in Minutes [video]

https://www.youtube.com/watch?v=SPAMTs6Ug20
1•binyu•35m ago•0 comments

Berlin is being blackmailed by hackers

https://www.bbc.com/news/articles/cm2q7gv3l5qo
2•dudefeliciano•38m 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 ...