frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI tools are making me lose interest in CS fundamentals

1•Tim25659•1m ago•0 comments

Show HN: OpenClaiming, a tiny protocol for verifiable claims that works anywhere

https://github.com/OpenClaiming/Documentation
1•EGreg•1m ago•0 comments

Couvade syndrome makes fathers feel pregnant

https://www.bbc.com/future/article/20260313-the-mysteries-of-couvade-syndrome
2•1659447091•4m ago•0 comments

Federal Right to Privacy Act

https://righttoprivacyact.github.io
2•pilingual•5m ago•0 comments

Your AI Agent Is Building Shadow IT and Nobody Noticed

https://geoffstearns.com/blog/your-ai-agent-is-building-shadow-it/
2•tensafefrogs•9m ago•0 comments

We Say You Want a Revolution (2025)

https://citizenlab.ca/research/2025-10-ai-enabled-io-aimed-at-overthrowing-iranian-regime/
1•caaqil•11m ago•0 comments

Show HN: Argazer – detect outdated Helm charts in ArgoCD applications

https://github.com/k-krew/argazer
1•kreicer•11m ago•0 comments

Building a high-end, documentation-first API for DualHeart Financial Association

1•DualHeartNEWS•12m ago•0 comments

Different Cultures Pair Food

https://pmc.ncbi.nlm.nih.gov/articles/PMC12026603/
1•jlauf•13m ago•0 comments

Gstack-auto: automated gstack builds with parallelized runs

https://github.com/loperanger7/gstack-auto
1•josh2600•15m ago•1 comments

We built HIGHTITAN instead of using heavy orchestrators

1•HIGHTITAN•19m ago•0 comments

Show HN: AutoBlogWriter – drop-in blog automation SDK for Next.js and React

https://autoblogwriter.app
1•autoblogwriter•23m ago•0 comments

Pulsed High-Power Radio Energy Can Cause Harmful Effects on the Brain (2024)

https://pmc.ncbi.nlm.nih.gov/articles/PMC10914144/
4•greesil•26m ago•0 comments

Cybeetle – AI-powered security scanning and threat intelligence for developers

https://cybeetle.com
1•angeltimilsina•26m ago•1 comments

Eliminating UI Bloat in the EraMix Financial Union Dashboard

1•EraMixOfficial•27m ago•0 comments

Show HN: Clsh – Real terminal on your phone (works with Claude Code)

https://github.com/my-claude-utils/clsh
2•clsh_dev•28m ago•0 comments

VibeSDK: I ported all features of Pydantic AI to TypeScript in 5hrs

https://github.com/a7ul/vibes
1•atulanand94•32m ago•0 comments

Ask HN: Critique the published validation work for my blackjack simulator

1•emerkel•33m ago•0 comments

King Kong: Behind the Scenes Photos That Show the Making of 1933's Classic

https://rarehistoricalphotos.com/king-kong-behind-the-scenes-photos/
1•1659447091•38m ago•0 comments

"How I write software with LLMs"

https://www.stavros.io/posts/how-i-write-software-with-llms/
6•indigodaddy•39m ago•0 comments

The Others

https://dark.ronacher.eu/2026/3/14/the-others/
1•lumpa•40m ago•0 comments

In search of Banksy, Reuters found the artist took on a new identity

https://www.reuters.com/investigates/special-report/global-art-banksy/
4•bookstore-romeo•41m ago•2 comments

AIx is an open standard for disclosing AI involvement in software projects

https://github.com/QAInsights/AIx
2•qainsights•42m ago•2 comments

Man's dog riddled with tumors. He used ChatGPT to design a cancer vaccine

https://finance.yahoo.com/news/mans-dog-riddled-tumors-dying-210500037.html
1•jwilliams•44m ago•0 comments

Show HN: Voxlert – SHODAN and the StarCraft Adjutant narrate my agent sessions

https://github.com/settinghead/voxlert
1•settinghead•46m ago•0 comments

AppFinish – Generate App Store screenshot packs from your raw screenshots

https://appfinish.com/upload
1•nykylomedia•46m ago•0 comments

Easy Way Out RL

https://twitter.com/signulll/status/2033205282717741395
2•razodactyl•46m ago•0 comments

Ask HN: How is your team collaborating while working with coding agents?

2•wek•48m ago•0 comments

Nan Da on Ethics of AIs as Engines of Transductive Inference

https://humanscodes.com/quote/da-transductive-inference
1•ethanmiller•51m ago•1 comments

I built an ephemeral P2P chat with WebRTC, without servers

https://ephemchat.vercel.app/
3•zRinexD•52m 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•10mo ago

Comments

qwertox•10mo ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•10mo 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•10mo 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•10mo ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•10mo 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•10mo ago
Who runs such an AI generated script without checking the code first?
qwertox•10mo 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•10mo ago
Right so lets just always run the code as is ?
qwertox•10mo 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•10mo 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•10mo ago
In which Roko's Basilisk fires a warning shot.
jethronethro•10mo ago
This is why you test code or a script before running it for real. Live and learn, I guess ...