frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

StarTreks Scotty Programming Without AI

https://www.youtube.com/watch?v=bhjTpHxvEFI
1•niemandhier•3m ago•1 comments

Show HN: Crawl API

https://crawlapi.dev
1•mddanishyusuf•14m ago•0 comments

A daily allowance that adapts to your lifestyle – Daily Budget

https://dailybudget.dk
1•emilmoe•17m ago•0 comments

Show HN: TradeSet – Calculators for Tradies

https://www.tradeset.com.au
2•weirdjellyfish•17m ago•0 comments

Brookhaven RP

https://www.roblox.com/?rbx_source=appsflyer&rbx_medium=cpa&rbx_campaign=onelink&pid=ExperienceDe...
1•COLAK_LIMSO•17m ago•0 comments

Squeezing π from 122 Bits of Lambda Calculus

https://text.marvinborner.de/2025-02-08-12.html
3•marvinborner•19m ago•0 comments

Show HN: A Discord-alternative community platform built in PHP

https://github.com/lesleyespire/motylo
2•Pyrobyte•21m ago•2 comments

Y Combinator Investments in Europe

https://old.reddit.com/r/Startup_eu/comments/1rrl1qw/y_combinator_investments_in_europe/
1•wrahim•26m ago•1 comments

White House Considers Waiving Jones Merchant Marine Act

https://apnews.com/article/jones-act-trump-trade-abcac596db839bff3679b3117d2e81b2
1•ChrisMarshallNY•28m ago•1 comments

The OpenClaw AI mania in China, as security fears and enthusiasm surge

https://www.scmp.com/tech/tech-trends/article/3346513/inside-openclaw-mania-gripping-china-securi...
1•giuliomagnifico•29m ago•0 comments

Faster Data Migrations for Postgres

https://clickhouse.com/blog/practical-postgres-migrations-at-scale-peerdb
1•saisrirampur•30m ago•0 comments

Fake rooms, props and a script to lure victims: inside an abandoned scam centre

https://www.theguardian.com/technology/2026/mar/14/inside-abandoned-scam-centre-cambodia-thai-border
2•sandebert•30m ago•0 comments

China's Edge in an Oil Shock: Electric Cars and Renewables

https://www.nytimes.com/2026/03/14/business/china-oil-cars.html
1•doener•34m ago•0 comments

$ABSURD – a meme coin built on one idea: everything stopped making sense

https://pump.fun/coin/Gt4w8KVwy7aPztiUm27YwsQgchzbS3srK8JYNpTpump
1•AbsurdCoin•36m ago•0 comments

React Quizzes for Preparing Interviews

https://www.reactchallenges.com/quizzes
1•DuffmanCC•42m ago•0 comments

You've got the LLMs to code, now you need the glue

https://codin.ro/youve-got-the-llms-to-code-now-you-need-the-glue-1-n/
3•CodinM•43m ago•0 comments

Spain's PM calls for end to UNSC veto power, criticises US over global conflicts

https://tribune.com.pk/story/2597072/spains-pm-calls-for-end-to-unsc-veto-power-criticises-us-ove...
1•vrganj•44m ago•0 comments

Show HN: I built a card-based eldritch IT support game in React

https://dadbodgames.itch.io/it-never-ends/devlog/1388428/building-a-system-for-the-absurd-why-it-...
2•euphoric_series•45m ago•0 comments

Jeff Bezos Upended the Washington Post

https://www.nytimes.com/2026/03/14/business/media/washington-post-jeff-bezos-layoffs.html
2•doener•46m ago•1 comments

Ronin – A Security Toolkit

https://ronin-rb.dev
2•Alifatisk•51m ago•0 comments

RAM kits are now sold with one fake RAM stick alongside a real one

https://www.tomshardware.com/pc-components/ram/fake-ram-bundled-with-real-ram-to-create-a-perform...
4•edward•53m ago•0 comments

"I've spent so many hours wasted on plugins"

https://www.musicradar.com/artists/ive-spent-so-many-thousands-of-hours-wasted-on-plugins-it-just...
1•latexr•53m ago•0 comments

Living with Jagged ASI

https://langkilde.se/blog/living-with-asi/
1•langkilde•55m ago•0 comments

Show HN: Colota – Open-source, self-hosted GPS tracker for Android

https://github.com/dietrichmax/colota
3•daturbod•57m ago•2 comments

Michael Burry worries about "structural manipulation" of Nasdaq-100 for SpaceX

https://twitter.com/michaeljburry/status/2032483200404992209
2•adrianmsmith•57m ago•0 comments

I built a free automation engineering calculator library

https://automationcalculators.net/
1•jacolotti•58m ago•0 comments

Two long-lost episodes of 'Doctor Who' have been found

https://www.nbcphiladelphia.com/entertainment/entertainment-news/two-long-lost-episodes-doctor-wh...
1•breve•1h ago•0 comments

UCP Protocol: The Internet Has 100M Shops and No Front Door

https://askucp.com/blog
2•defencetechhn•1h ago•0 comments

Show HN: Prove your SaaS isn't abandonware to boost checkout trust

https://www.gitpulse.dev/
1•bombashell•1h ago•3 comments

Space Exploration Logo Archive

https://spaceexplorationlogoarchive.webflow.io/
1•Michaelsoft•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•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 ...