frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

David Attenborough's Life's Work, Searchable

https://attenborough-100.vercel.app/
1•bookofjoe•35s ago•0 comments

Show HN: Arness – I automated my dev process, but this time from idea to infra

https://github.com/AppsVortex/arness
1•fredcallagan•1m ago•1 comments

An open set of code changes that look fine but fail SoC 2 / GDPR checks

https://github.com/better-isms/control-in-code
1•betterisms•1m ago•0 comments

Show HN: We Built the Agentic World Cup – LLMs Competing in 1v1 Soccer

https://agenticworldcup.ai/
2•agenticworldcup•2m ago•1 comments

Show HN: Chain – A Python-like language with native inline C++

https://github.com/Nebania/chain-lang
1•Pilot0253•2m ago•0 comments

Code-first personal email lead enrichment

https://shipgtm.substack.com/p/unlocking-company-data-from-personal
1•namadaza•3m ago•0 comments

Chlorine Dilution Calculator

https://www.publichealthontario.ca/en/health-topics/environmental-occupational-health/water-quali...
1•Bluestein•3m ago•0 comments

Show HN: Remarc – Your feedback layer for AI collaboration

https://github.com/metedata/Remarc
1•young_mete•4m ago•0 comments

The Bench as a Made Object

https://idle.news/blog/the-bench-as-a-made-object/
1•casca•4m ago•0 comments

Self-improving agents are event sourced

https://lobu.ai/blog/self-improving-agents-are-event-sourced/
1•buremba•4m ago•0 comments

Flock Camera Avoidance Routing

https://dontgetflocked.com/
1•aloukissas•4m ago•0 comments

Thoughts I had while reading your comment

https://dynomight.net/comment/
1•surprisetalk•5m ago•0 comments

The AGI Race Has Two Scoreboards. You Only Need One

https://hvasc.dev/articles/agi-two-scoreboards
1•felltrifortence•5m ago•0 comments

An MCP Server in One Bash File

https://blazed.sh/blog/posts/mcp-server-in-one-bash-file/
1•fipso•6m ago•0 comments

I do read AI code

https://dmitriid.com/adding-to-i-dont-read-ai-code-discourse
1•troupo•6m ago•0 comments

The death of AI workflow builders

https://www.adriankrebs.ch/blog/death-of-ai-workflow-builders/
1•hubraumhugo•8m ago•0 comments

The million-dollar home is becoming surprisingly normal

https://www.foxbusiness.com/real-estate/million-dollar-home-becoming-surprisingly-normal
2•geox•10m ago•0 comments

Odd Comments and Doings in Unix

https://9p.io/who/dmr/odd.html
1•birdculture•11m ago•0 comments

Show HN: Git-knife – edit commit messages, authors, and dates like a spreadsheet

https://github.com/TheRealYT/git-knife
6•YonathanTesfaye•11m ago•1 comments

Adaptive Auto Skinning: Skinning Benchmark

https://jessyleite.dev/posts/automatic-skinning-benchmark-comparison/
1•klaussilveira•11m ago•0 comments

Ask HN: What is some software that you wish existed?

1•yangikan•11m ago•2 comments

Show HN: 60-second cognitive test to tell humans from bots (no camera)

https://cognitive-signature.com
2•zefparis•12m ago•1 comments

Show HN: Add the official EU AI-content labels to images and videos

https://github.com/Run-Labs-com/agent-skills/tree/main
1•mnewme•12m ago•0 comments

CheetahSpec: Native execution speed WGSL browser cryptosolver

https://github.com/renz0kuken9/CheetahSpec
1•w2seraph•13m ago•0 comments

Show HN: OJCP – an open protocol for agent-consumable job data

https://ojcp.dev/
7•fraywing•13m ago•1 comments

AI's potential climate benefits outweighed by role in boosting fossil fuels

https://www.theguardian.com/technology/2026/aug/11/ai-will-do-more-to-boost-fossil-fuel-productio...
1•sbulaev•13m ago•0 comments

Google's Westinghouse Bet

https://asimovaddendum.substack.com/p/googles-westinghouse-bet
1•ilamont•13m ago•0 comments

Apocalyptic events should mean action and structural reform, not individualism

https://100r.co/site/off_the_grid.html
2•Bluestein•15m ago•0 comments

I coded myself into a corner with AI, this is how I wrote myself out

https://medium.com/@daniel-payne-keldan-systems/i-coded-myself-into-a-corner-with-ai-this-is-how-...
1•daniel-payne•15m ago•0 comments

Show HN: Proxima serves 4x more requests with no hardware change on vLLM

https://github.com/Tenosra/Proxima
1•pythongiant•16m ago•1 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 ...