frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why meaningful days look like nothing while you are living them

https://pilgrima.ge/p/the-grand-line
1•momentmaker•1m ago•0 comments

Show HN: Posse – Open-Source Web UI for Anthropic Managed Agents

https://github.com/oguzbilgic/posse
1•obilgic•4m ago•0 comments

Jury reaches no verdict on first day deliberating at Live Nation monopoly trial

https://www.boston25news.com/entertainment/jury-starts/V36MJOVVPA373JW3P5TFJZJ7OI/
1•1vuio0pswjnm7•6m ago•0 comments

Building a better crossword page for my daily cryptic hit – Whitebeard's Realm

https://whitebeard.blog/posts/building-a-better-crossword-page/
1•techbelly•7m ago•0 comments

How Ship Anchors Work [video]

https://www.youtube.com/shorts/X7bWj115UwY
1•modinfo•8m ago•0 comments

Building a Z-Machine in the worst possible language – Whitebeard's Realm

https://whitebeard.blog/posts/building-a-z-machine-in-elm/
1•techbelly•8m ago•0 comments

A Mac Studio for Local AI – 6 Months Later

https://spicyneuron.substack.com/p/a-mac-studio-for-local-ai-6-months
1•try-working•13m ago•0 comments

My research has build errors now and honestly should have always worked this way

https://github.com/grainulation/wheat
2•volatilityfund•16m ago•0 comments

Beyond Quantum with Khrennikov

https://scottlocklin.wordpress.com/2026/04/09/beyond-quantum-with-khrennikov/
1•MrBuddyCasino•17m ago•0 comments

The Dostoevskian Moment

https://www.palladiummag.com/2026/04/11/the-dostoevskian-moment/
1•MrBuddyCasino•22m ago•0 comments

Anthropic loses appeals court bid to pause supply chain risk label

https://www.politico.com/news/2026/04/08/d-c-circuit-rejects-anthropic-plea-to-pause-supply-chain...
7•1vuio0pswjnm7•26m ago•1 comments

LLM Time

https://graydon2.dreamwidth.org/322732.html
1•sho_hn•26m ago•0 comments

We spoke to the man making viral Lego-style AI videos for Iran

https://www.bbc.com/news/articles/cjd8jrd1vnyo
14•breve•27m ago•3 comments

Ask HN: Former grok-code-fast-1 users, what coding model are you using now?

1•whycombinetor•30m ago•0 comments

When career anxiety becomes gameplay: lessons in China 'young-faculty simulator'

1•mmarian•33m ago•0 comments

Samsamelo – Silicon Valley selling trolley problem lies [fixed link]

https://lgwnncpcqsloqa4sqqqq5osup2rlqp7iiqliyu4y6vveu5jy6tlq.arweave.net/WazWieKElugDkoQhDrpUfqK4...
1•awbvious•37m ago•1 comments

AI Can't Read an Investor Deck

https://www.mercor.com/blog/Finance-tasks-ai-failures-modes/
1•gmays•38m ago•1 comments

Upstreaming Patches and the Cyber Resilience Act

https://www.thomas-huehn.com/upstreaming-patches-and-cra/
2•Brajeshwar•43m ago•0 comments

Entropy as a Measure of Surprise

https://nchagnet.pages.dev/blog/entropy-as-measure-of-surprise/
2•Brajeshwar•44m ago•0 comments

Americans still opt for print books over digital or audio versions

https://www.pewresearch.org/short-reads/2026/04/09/americans-still-opt-for-print-books-over-digit...
22•thm•50m ago•9 comments

The 'Enshittification' of the Internet [video]

https://www.youtube.com/watch?v=dCVUCdg3Uqc
2•goekjclo•52m ago•0 comments

Walked dog, did groceries, folded laundry. Claude Code shipped. Thanks Farmer

https://github.com/grainulation/farmer
4•volatilityfund•55m ago•0 comments

How a dancer with ALS used brainwaves to perform live

https://www.electronicspecifier.com/products/sensors/how-a-dancer-with-als-used-brainwaves-to-per...
2•1659447091•56m ago•0 comments

FusionCore ROS 2 sensor fusion replacing deprecated robot_localization

https://github.com/manankharwar/fusioncore
1•kharwarm•1h ago•1 comments

Agentic Engine Optimization (AEO)

https://addyosmani.com/blog/agentic-engine-optimization/
1•cdrnsf•1h ago•0 comments

The End of Eleventy

https://brennan.day/the-end-of-eleventy/
32•ValentineC•1h ago•11 comments

Used Graphify to turn incidents into a queryable knowledge graph

https://github.com/Rootly-AI-Labs/rootly-graphify-importer
2•hamzmu•1h ago•1 comments

Ze networking tool you didn't know you were looking for

https://github.com/ze-software/ze
1•ccakes•1h ago•0 comments

Metro stop is Ancient Rome's new attraction

https://www.bbc.com/travel/article/20260408-a-150-metro-ticket-to-ancient-rome
1•1659447091•1h ago•0 comments

I propose a new programming language, CPC

2•tom_gi•1h 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•11mo ago

Comments

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