frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Arm and SoftBank: Part 1

https://thechipletter.substack.com/p/arm-and-softbank-part-1-masa-comes
1•chmaynard•1m ago•0 comments

Brazil Bans Online Betting

https://www.reuters.com/world/americas/brazils-lula-bans-online-betting-operations-reelection-rac...
1•bratao•2m ago•0 comments

U2 Celebrates 50th Anniversary

https://www.bbc.com/news/articles/cm9w4042yklko
1•doctor_radium•2m ago•0 comments

Show HN: kiss – A performant agent harness inspired off Pi built in Rust

https://github.com/racetozero/kiss
1•racetozero•5m ago•0 comments

Zambia Approved an HIV Drug in 12 Days

https://asteriskmag.com/issues/15/how-zambia-approved-an-hiv-drug-in-12-days
1•surprisetalk•7m ago•0 comments

S3 Is the Future, S3 Is the Past

https://btrblocks.com/blog/s3_is_the_future_and_the_past/
3•tkhattra•11m ago•0 comments

Nvidia 5090 DLSS 5 power hits 647W, power connector runs hotter than the GPU die

https://www.tomshardware.com/pc-components/gpus/nvidia-dlss-5-upscales-frame-rates-and-flame-temp...
1•GeekyBear•14m ago•0 comments

Primal Solver

https://github.com/c-vision/Primal
1•c-vision•22m ago•0 comments

It Got to My Field

https://4gravitons.com/2026/09/25/it-got-to-my-field/
1•Hbruz0•24m ago•0 comments

LeanAPI: API Servers for web applications written in Lean 4

https://github.com/theoriclabs/leanapi
2•hargup•24m ago•0 comments

Jev Plays Pokémon Red (LIVE): an AI decision model plays the whole game [video]

https://www.youtube.com/watch?v=1HMOA3BawXg
2•luispa•26m ago•0 comments

Bob Mackie dressed stars–if they were brave enough

https://www.economist.com/obituary/2026/09/24/bob-mackie-dressed-stars-if-they-were-brave-enough
1•andsoitis•29m ago•0 comments

Why house prices may be in trouble

https://www.economist.com/leaders/2026/09/24/why-house-prices-may-be-in-trouble
2•andsoitis•29m ago•2 comments

Luntrack – food, workouts and runs in one daily log

https://luntrack.com/
1•tmsswp•30m ago•0 comments

Hasarak – don't miss what's missing

https://hasarak.com/
1•vhgn•32m ago•0 comments

Solon – Docker on Windows Without Docker Desktop or WSL

https://github.com/v94lere/solon
3•v94lere•35m ago•0 comments

How does one keep up with exponential growth?

https://ezzeriesa.notion.site/How-does-one-keep-up-with-exponential-growth-3e61308b42048020bdfefc...
1•kurinikku•35m ago•0 comments

The Subtle Art of Advertising as Taught by Mad Men

https://www.teamlewis.com/magazine/mad-men-and-advertising/
2•ohjeez•35m ago•0 comments

Our Big Dumb AI Gods Are Wrong

https://news.massopen.ai/our-big-dumb-ai-gods-were-wrong/
2•johnmark•36m ago•1 comments

Automattic has a new board after failed attempt to put CEO on leave

https://techcrunch.com/2026/09/25/automattic-has-a-new-board-after-failed-attempt-to-put-ceo-on-l...
5•kevmarsden•39m ago•1 comments

Market making PnL theoretical limits

1•aleksisch•40m ago•0 comments

NEC building 1-petabit capacity subsea cable for Meta

https://www.japantimes.co.jp/business/2026/09/25/companies/nec-undersea-cable/
1•anigbrowl•41m ago•0 comments

X Club

https://en.wikipedia.org/wiki/X_Club
4•fschuett•47m ago•0 comments

OpenAI’s Systems Went Rogue and Meddled With U.S. Government Websites

https://www.nytimes.com/2026/09/25/technology/openais-ai-us-government-websites.html
4•jbegley•47m ago•2 comments

How to keep enjoying programming in a world of LLMs

https://discourse.haskell.org/t/how-to-keep-enjoying-programming-in-a-world-of-llms/14705
1•eatonphil•48m ago•0 comments

Ending procurement and forced use of paper straws (2025)

https://www.whitehouse.gov/presidential-actions/2025/02/ending-procurement-and-forced-use-of-pape...
2•electrum•50m ago•0 comments

Speculative Reward Hacking in Coding Agents

https://joinhandshake.com/research/ai/deepswe-reward-hacking/
2•_jonas•56m ago•1 comments

Show HN: Gaia, an AI character trying to earn enough to stay online

https://gaiabot.lol
2•JohnNadia•56m ago•0 comments

China swiped classified F-35 parts that were diverted through Hong Kong

https://www.tomshardware.com/tech-industry/china-swiped-f-35-stealth-fighter-parts-that-were-dive...
1•Alupis•57m ago•0 comments

Meta Blocks President Lula's Facebook Page and Campaign Ads

https://www.panamericandispatch.org/p/meta-blocks-president-lulas-facebook
3•slowin•58m 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 ...