frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I wrote my book by hand

https://augustlamm.substack.com/p/i-wrote-my-book-by-hand
1•herbertl•1m ago•0 comments

Claude will watermark AI-generated text and images

https://tokenstead.ai/
1•cdnsteve•1m ago•0 comments

In Arizona, it may be easier to steal a home than a TV as deed fraud grows

https://www.usatoday.com/
1•rawgabbit•3m ago•0 comments

Recycle – Floppydisks

https://www.floppydisk.com/recycle
1•calvinmorrison•4m ago•0 comments

Another August

https://kellykeene.blog/2026/08/01/another-august/
1•wawayanda•8m ago•0 comments

Chinese rocket explodes shortly after liftoff

https://www.space.com/space-exploration/launches-spacecraft/chinese-rocket-explodes-less-than-90-...
1•glimshe•8m ago•0 comments

Japanese government announces measures against mega-solar projects

https://twitter.com/takaichi_sanae/status/2086977599130194229
1•anigbrowl•10m ago•0 comments

ChatGPT to Markdown: export any chat [video]

https://www.youtube.com/watch?v=TXPMnpUxab4
2•quysala147258•11m ago•1 comments

eBay scammer took $600 from me; eBay suggests cotton-candy flavor energy drinks

https://www.reddit.com/r/Wellthatsucks/s/si0ksx7ceI
1•rogerrogerr•16m ago•0 comments

Attackers Can Steal Enterprise Data with One Click Through Atlassian Rovo Flaw

https://www.kobaran.com/attackers-can-steal-enterprise-data-with-one-click-through-atlassian-rovo...
1•supportm•17m ago•0 comments

Building a Pure-Rust, Sandboxed, Local-First Browser for Agents

https://www.reddit.com/r/codex/comments/1vl404k/purerust_sandboxed_localfirst_browser_for_agents/
1•syumei•18m ago•0 comments

Show HN: SendPage – turn AI-generated HTML into a shareable link

https://sendpageapp.com
1•jack714•21m ago•0 comments

We Built Linear Agent

https://linear.app/now/how-we-built-linear-agent
1•cristinacordova•26m ago•0 comments

Canada Is Building a Surveillance State via 5 Bills

https://x.com/lucyhargreaves4/article/2066903272271544551
3•vancouvermatt•27m ago•0 comments

New Claude model improves lower bound on problem linked to Reimann hypothesis

https://marqr.codes/u3bno
1•ajax33•28m ago•2 comments

Sprout – easily build an app with AI, share it, and use other apps

https://sprout.monkeyai.io/
1•davidk2yang•36m ago•1 comments

Antirez/h3.c: MiniMax H3 inference engine for Mac computers

https://github.com/antirez/h3.c
2•swyx•42m ago•0 comments

Show HN: Insidedb, an interactive, animated explainer of database internals

https://david-g-3654.github.io/insidedb/
2•davai-g•45m ago•0 comments

Show HN: Sketchling – a hand-drawn animation language for coding agents

https://github.com/AnayGarodia/sketchling
1•ag5250•46m ago•0 comments

Predicting AI Job Exposure

https://www.ben-evans.com/benedictevans/2026/5/24/ai-job-exposure
1•fagnerbrack•48m ago•0 comments

Reorgs Happen

https://ben.balter.com/2026/06/07/reorgs-happen/
3•fagnerbrack•48m ago•0 comments

Compensation Bands and Promotions

https://molochinations.substack.com/p/compensation-bands-and-promotions
2•fagnerbrack•48m ago•0 comments

Google's AI Team Tells Job Seekers Its HR Filters Are Unreliable

https://www.bloomberg.com/news/articles/2026-08-10/google-s-ai-team-tells-job-seekers-its-hr-filt...
3•htrp•50m ago•1 comments

Show HN: Linejudge – an independent verification harness for coding agents

https://github.com/phillipmex/linejudge
1•phillipmex•55m ago•0 comments

Show HN: Airship – Figma-Like Visual Editor for Claude Code, Codex and OpenCode

https://github.com/0xnyn/airship
1•0xnyn•55m ago•0 comments

A Lost Civilization Is Baffling Experts and Rewriting China's Origin Story

https://www.wsj.com/world/china/a-lost-civilization-is-baffling-experts-and-rewriting-chinas-orig...
6•bookofjoe•57m ago•1 comments

Nintendo Should Stop Selling Consoles

https://taikhooms.substack.com/p/nintendo-the-media-company
2•Altaba•59m ago•0 comments

Flock Cameras Can Track Every Car in America. Police Love Them. Citizens Don't

https://www.nytimes.com/2026/08/10/us/flock-cameras-can-track-every-car-in-america-police-love-th...
48•pseudolus•1h ago•24 comments

OpenAI found us generators for maximal Monster subgroup holdout 59:29

https://arxiv.org/abs/2607.28900
2•oliculipolicula•1h ago•0 comments

U.S. brokers secret deal on clandestine Syrian nuclear site

https://www.axios.com/2026/08/10/syria-nuclear-israel-turkey-iaea
4•cwwc•1h 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 ...