frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Trouble with Seizing Kharg Island

https://www.theatlantic.com/international/2026/03/iran-trump-kharg-island/686487/
1•Anon84•46s ago•0 comments

Moonless Earth Theory

https://en.wikipedia.org/wiki/Alexander_Abian
1•kkoncevicius•1m ago•0 comments

Show HN: Antorum Online, an MMORPG Built with Rust and Unity

https://ratwizard.dev/dev-log/antorum
1•dooskington•4m ago•0 comments

Show HN: P-book – an interactive book for kids about recommendation algorithms

https://recsysbook-kids.vercel.app/
1•kordikp•5m ago•1 comments

PQ Onion Router

https://twitter.com/encrypted_past/status/2035847637711389054
1•sickthecat•5m ago•0 comments

Secure Linear Alignment of Large Language Models

https://arxiv.org/abs/2603.18908
1•walterbell•7m ago•1 comments

Show HN: I built AI native linktree app

https://linkroot.space
3•IsruAlpha•15m ago•3 comments

Can the world get its supply of oil by bypassing the Strait of Hormuz?

https://www.firstpost.com/explainers/iran-war-strait-of-hormuz-blocked-possible-alternatives-oil-...
3•bitwank•16m ago•0 comments

Ask HN: How to get free/cheap Claude and AWS credits

2•jacAtSea•22m ago•2 comments

Tetris and Reimplementation (2015)

https://brennan.io/2015/06/12/tetris-reimplementation/
1•notagoodidea•22m ago•0 comments

Does HN have a DR plan for censorship?

3•m0d0nne11•22m ago•3 comments

Gen Z Stare

https://en.wikipedia.org/wiki/Gen_Z_stare
3•vrganj•25m ago•1 comments

Noteriv – Open-source Obsidian alternative with MCP server for AI

https://github.com/thejacedev/Noteriv
2•JaceDev•26m ago•0 comments

Elon Musk Launches Terafab: $25B Chip Factory in Austin

https://www.businessworld.in/article/elon-musk-terafab-25-billion-chip-factory-austin-tesla-space...
5•simonebrunozzi•29m ago•0 comments

Rust Project Perspectives on AI

https://nikomatsakis.github.io/rust-project-perspectives-on-ai/feb27-summary.html
30•weinzierl•30m ago•2 comments

How the Iran war has seen the return of Cold War spycraft

https://www.rte.ie/brainstorm/2026/0312/1563034-iran-war-number-stations-cold-war-spying-spycraft/
2•austinallegro•34m ago•0 comments

Bootstrap-Consistency Regularization (BCR)

https://github.com/finite-sample/bcr
2•neehao•35m ago•0 comments

Test cases took my AI router from 82% to 98% accuracy

https://github.com/copycat-main/browser-assistant/tree/main/evals
1•a8hi•36m ago•1 comments

They're Vibe-Coding Spam Now

https://tedium.co/2026/02/25/vibe-coded-email-spam/
2•raybb•37m ago•0 comments

The Necessity of Being | An essay beyond the simulation.

https://simontlbt.substack.com/p/the-necessity-of-being
1•simontlbt•41m ago•0 comments

The First Time I Saw a Calculator: On Modernity and Newness

https://peterhimmelman.substack.com/p/the-first-time-i-saw-a-calculator
1•myth_drannon•42m ago•0 comments

The Diminished Art of Coding

https://nolanlawson.com/2026/03/22/the-diminished-art-of-coding/
2•MindGods•43m ago•0 comments

AI DevOps Actions: 9 GitHub Actions for CI/CD in AI-Native Repos

https://github.com/ollieb89/ai-devops-actions
2•trivexiai•43m ago•0 comments

WTDW Your Innovation Fails?

https://www.brettmacfarlane.com/blog/2026/failure
1•mooreds•47m ago•0 comments

Iran war energy crisis is a renewable energy wake-up call

https://apnews.com/article/middle-east-wars-renewable-energy-asia-4b5fe0693ce5816472c905db85f7da6e
10•mooreds•48m ago•0 comments

The Tale of My Retrocomputing Infrastructure

https://plbrault.com/blog-posts/the-tale-of-my-retrocomputing-infrastructure/
2•drfreckles•48m ago•0 comments

Show HN: Kitty.cards – Create Apple Wallet cards online (no login)

https://kitty.cards/
2•xenodium•55m ago•0 comments

O2Fail – What You Need to Know About Mobile Phone Content Control (2010)

https://shkspr.mobi/blog/2011/03/o2fail-what-you-need-to-know-about-mobile-phone-content-control/
1•worldofmatthew•55m ago•0 comments

Kash Patel's Nike Shoes Weren't Customized by Nike

https://www.yellopolitics.com/p/kash-patels-garish-custom-shoes-werent
4•spacebarshift•56m ago•1 comments

Fun crafts done by AI agents – humans subscribe to read

https://crafthunt.ai/
1•forest0xia•1h ago•2 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 ...