frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Tech Reclaimers: A Community Bicycle Repair Club for the Internet

https://www.techreclaimers.club
1•jonasced•2m ago•0 comments

What if new proofs are included in LLM training so LLM rediscover it?

1•folderquestion•3m ago•0 comments

Essential Capabilities Insight Teams Need in a Modern Market Research Platform

https://figshare.com/articles/journal_contribution/_b_7_Essential_Capabilities_Insight_Teams_Need...
1•anasteciadunu•13m ago•0 comments

I built godom: Go owns the DOM and the browser is just a rendering surface

https://www.anupshinde.com/why-i-built-godom/
1•anupshinde•13m ago•0 comments

LLMs Corrupt Your Documents When You Delegate

https://arxiv.org/abs/2604.15597
1•rbanffy•17m ago•0 comments

Was Back‑to‑Office Enforced?

1•xchip•17m ago•0 comments

Show HN: Hum – ad-free terminal music player (Rust, no API keys)

https://github.com/Devendra116/hum/
1•devendra116•20m ago•0 comments

Closure of Radio 4 on Long Wave

https://www.bbc.co.uk/reception/work-warning/news/radio4lw
2•fredley•21m ago•0 comments

I've replaced my Claude subscription with a sleep control app

https://twitter.com/patoroco/status/2053031292594225641
1•patoroco•24m ago•0 comments

I returned to AWS, and was reminded why I left

http://fourlightyears.blogspot.com/2026/05/i-returned-to-aws-and-was-reminded-hard.html
2•andrewstuart•24m ago•1 comments

Big Tech's $725B AI spending spree sends free cash flow to a decade low

https://www.ft.com/content/b3dfaba9-17a2-4fac-90fe-4ab3ca7c9494
3•1vuio0pswjnm7•26m ago•0 comments

Meta is dying. It's about time

https://www.nytimes.com/2026/05/08/opinion/meta-facebook-zuckerberg.html
5•LucidLynx•30m ago•1 comments

Hacktoberfest 2025

https://hacktoberfest.com
1•Bikash755043•31m ago•0 comments

Impossible Assumptions

https://blog.jakobschwichtenberg.com/p/impossible-assumptions
1•unknown1111•33m ago•0 comments

Cloudflare Stock Tumbles. An Earnings Beat Wasn't Enough

https://www.barrons.com/articles/cloudfare-earnings-stock-price-be96c90f
3•1vuio0pswjnm7•34m ago•0 comments

Counting Fast in Erlang with:counters and:atomics

https://andrealeopardi.com/posts/erlang-counters-and-atomics/
1•malmz•35m ago•0 comments

Free Gpt.im

https://freegpt.im
2•Evan23345•36m ago•0 comments

International cyber attack disrupts swathe of universities and schools

https://www.bbc.com/news/articles/ce3pq0136eqo
2•1vuio0pswjnm7•37m ago•0 comments

A Man Who Almost Never Succeeded (2012)

https://www.lensrentals.com/blog/2012/10/the-man-who-almost-never-succeeded/
1•downbad_•39m ago•1 comments

Help Needed Seeking Contributors for a Pure C Compiler and Runtime

https://github.com/heikowagner/nela-lang/issues/1
1•heikowag•39m ago•1 comments

Simplifying camera trap image analysis with AI

https://addaxdatascience.com/addaxai/
2•bryanrasmussen•41m ago•1 comments

Yesterday I had some news that has left me feeling

https://mylightstillshines.wordpress.com/2026/05/09/yesterday-i-had-some-news-that-has-left-me-fe...
1•jaygirl•43m ago•0 comments

Show HN: I Built a Retro Survival RPG in Vanilla JavaScript

2•jasonkester•46m ago•0 comments

Astroberry – OS for controlling astronomy equipment

https://astroberry.io/
1•NKosmatos•48m ago•0 comments

Show HN: Digits – Encrypted calls from gutted vintage desk phones

https://digits.family
1•justinlindh•54m ago•1 comments

IPO: Lime (SEC S-1 Form, Neutron Holdings)

https://www.sec.gov/Archives/edgar/data/1699963/000162828026032523/neutronholdingsinc-sx1.htm
2•wuschel•1h ago•0 comments

Hondurasgate: US, Israeli Plot to Destabilize Mexico, Latin America

https://english.elpais.com/international/2026-05-07/hondurasgate-the-alleged-us-and-israeli-inter...
6•vrganj•1h ago•0 comments

Everything you need to know about recently released UFO files by Dow

https://sourceryintel.com/reports/dow-ufo-files-may-2026
1•freakynit•1h ago•0 comments

Is Opus 4.7 a Downgrade?

https://www.vincentschmalbach.com/is-opus-4-7-a-downgrade/
4•vincent_s•1h ago•1 comments

Instagram DMs Lose End-to-End Encryption Starting Today

https://www.macrumors.com/2026/05/08/instagram-end-to-end-encryption/
2•7777777phil•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•12mo ago

Comments

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