frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Both recent GCP outages caused by fiber optic maintenance

1•fastest963•2m ago•0 comments

GitHub dipped 7%, while both AI labs were down

https://claude.ai/public/artifacts/2368658e-60f2-4f51-8883-8d72738ba7ce
3•Topfi•3m ago•1 comments

Watermarks Track AI Generated Content [video]

https://www.youtube.com/watch?v=kVXp6UNVPTo
2•moebrowne•4m ago•0 comments

The $1 Trump Coin

https://www.theguardian.com/us-news/2026/sep/02/trump-one-dollar-coin
1•flyaway123•4m ago•0 comments

GPT-6 Astra: an automated AI Engineer you can hire for <$6 an hour

https://www.latent.space/p/astra
2•swyx•6m ago•0 comments

WebMCP DJ – BananaLabs

https://devpost.com/software/bananalabs-webmcp-dj
1•kushagra525•7m ago•1 comments

Daybreak for Frontline Defenders: $1B to protect essential services

https://openai.com/index/daybreak-for-frontline-defenders
1•kuberwastaken•10m ago•0 comments

A paradigm shift in text selection

https://ishmael.textualize.io/blog/shift-select/
1•willm•11m ago•0 comments

Show HN: Building AI agents client-side JavaScript

1•stephenblum•14m ago•1 comments

Www.whitehouse.gov/Arcade/

https://www.whitehouse.gov/arcade/
4•typeofhuman•19m ago•0 comments

Your CTO Job Description Is a Confession

https://jasmor.substack.com/p/your-cto-job-description-is-a-confession
4•mooreds•19m ago•0 comments

AI Automation for Government Contracting

1•ranveergill•21m ago•0 comments

A new way to store thermal energy (2017)

https://news.mit.edu/2017/new-way-store-thermal-energy-1117
2•Retro_Dev•21m ago•0 comments

Microsoft slashes Xbox Cloud Gaming to just 15h/month for Ultimate subscribers

https://www.theverge.com/news/989166/microsoft-xbox-cloud-gaming-hourly-limits-changes
1•realsarm•22m ago•1 comments

MockBase – record real API traffic and replay it as a mock

https://mockbase.org/
2•xerat•24m ago•0 comments

A look at coding agent benchmarks, and what may be interesting next

https://tuneloop.io/blog/coding-agent-benchmarks
1•behat•25m ago•0 comments

Muscles talk to the brain to fight depression

https://www.nature.com/articles/s41380-026-03651-y
5•luispa•26m ago•0 comments

Revo Programming Language

https://revo.lung.fyi/
2•birdculture•26m ago•0 comments

Which tools do Claude, Codex and Cursor choose? We measured 17k runs to find out

https://armature.tech/blog/which-tools-coding-agents-install
8•screm•28m ago•1 comments

Ask HN: Could AI Eventually Build God?

3•olirex99•29m ago•3 comments

Fixing Seagate's LaCie hard drive array for the ‪ theslowmoguys [video]

https://www.youtube.com/watch?v=Sn_o8kBcjzI
1•GeoAtreides•30m ago•0 comments

Give Me 12 Minutes and I'll Give You 30 Years of Productivity Advice [video]

https://www.youtube.com/watch?v=MN_LkumE3Ig
1•gmays•31m ago•0 comments

Virginia Community Voids a $100B Data Center Project

https://www.bloomberg.com/news/features/2026-09-02/how-a-revolt-toppled-a-100-billion-data-center...
4•gen220•34m ago•1 comments

If a startup worth your career

https://www.thetrueengineer.com/p/ego-equity-or-exit-checklist-to-decide
8•adletbalzhanov•38m ago•1 comments

Over 700 games launched on Steam in one week – 74% had fewer than 10 reviews

https://www.gamesindustry.biz/over-700-games-launched-on-steam-in-one-week-for-the-first-time-tho...
4•speckx•41m ago•0 comments

Porting the RAD Debugger to macOS

https://robert.wittams.com/posts/porting-the-rad-debugger-to-macos/
1•gmcabrita•43m ago•0 comments

Clockwork Orange (Plot)

https://en.wikipedia.org/wiki/Clockwork_Orange_(plot)
3•vinnyglennon•43m ago•0 comments

A hungry woman is easier to dismiss than a well-fed woman

https://aeon.co/essays/a-hungry-woman-is-easier-to-dismiss-than-a-well-fed-woman
4•gmays•44m ago•0 comments

Social Policy Builds Financial Markets

https://economicsociology.org/2026/08/28/how-social-policy-builds-financial-markets/
1•kome•45m ago•0 comments

LightAudit Score – Lighthouse and PageSpeed Insights in one local console

https://lightauditscore.com
2•crawlforgedev•46m 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 ...