frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

TX Tesla driver narrowly avoids disaster when autopilot engages at RR crossing

https://www.fox4news.com/news/texas-tesla-autopilot-drives-through-railroad-crossing
1•1vuio0pswjnm7•1m ago•0 comments

The Great AI Layoff Boomerang. 55% of companies regret their AI-drven layoffs

https://medium.com/@curiouser.ai/the-great-ai-layoff-boomerang-68e38c88fa7d
1•aussieguy1234•1m ago•0 comments

The Infinity Man

https://thechipletter.substack.com/p/the-infinity-man
1•gmays•1m ago•0 comments

Robot club vs. 5 crazy holes [video]

https://www.youtube.com/watch?v=2OfjZ3ORJfc
1•JKCalhoun•1m ago•0 comments

Aggregated interviews on how YC W26 founders build internal AI employees

https://www.humanbehavior.co/blog/topic/ai-employees-inside-founders-agent-workflows
1•SkylerJi•5m ago•1 comments

I embedded Sigil's docs in its CLI so LLMs can write Sigil

https://inerte.github.io/sigil/articles/sigil-ships-embedded-docs-for-llm-cold-starts/
1•inerte•6m ago•0 comments

PeonPing: Sound packs for Claude, Codex, Cursor, and other AI coding agents

https://www.peonping.com/
1•tawb•6m ago•0 comments

Energy and Human Ambitions on a Finite Planet (2021)

https://escholarship.org/uc/item/9js5291m
1•measurablefunc•10m ago•0 comments

Context Lake: A System Class Defined by Decision Coherence

https://arxiv.org/abs/2601.17019
1•alexkimball•11m ago•0 comments

From apps to infrastructure: martech's most important migration

https://newsletter.chiefmartec.com/p/from-apps-to-infrastructure-martech-s-most-important-migration
1•mooreds•12m ago•0 comments

Introduction to Recursive-Mode

https://recursive-mode.dev/introduction
1•gmays•13m ago•0 comments

Tesla "Full Self-Driving" drives through RR crossing barriers in viral video

https://electrek.co/2026/03/09/tesla-fsd-drives-through-railroad-crossing-barriers-viral-video/
2•1vuio0pswjnm7•14m ago•0 comments

Show HN: Sudomake Friends, personalized AI personas in a Telegram group chat

https://github.com/audiodude/sudomake-friends/
1•audiodude•15m ago•0 comments

"Epicaricacy" (2025)

https://thisbugslife.com/2025/04/24/297655/
1•thomassmith65•17m ago•0 comments

On the scientific method and its application to the science of deep learning

https://jamiesimon.io/blog/on-the-scientific-method/
1•jamie-simon•20m ago•0 comments

"attention is all you need" in screen recording [video]

https://www.youtube.com/watch?v=FMucMp2kU-8&list=PLbUXLHqCDLr3j_WrCB6q5EkEZmimqcGVC&index=2
1•jiabins0303•22m ago•0 comments

MacBook Neo isn't innovation: It's Apple correcting a story it pushed for years

https://www.windowscentral.com/hardware/apple/the-macbook-neo-isnt-innovation-its-apple-finally-o...
2•bentocorp•24m ago•1 comments

The Expensive Thing

https://ajeygore.in/content/the-expensive-thing
2•vinipolicena•25m ago•0 comments

Agent - Native Mac OS X coding ide/harness

https://github.com/macOS26/Agent
2•jv22222•32m ago•0 comments

The AI Market Is Hitting Peak Absurdity

https://garymarcus.substack.com/p/peak-absurdity-part-ii
8•drob518•34m ago•3 comments

Robot Police Dogs Powered by AI Take over Atlanta's Streets

https://www.newsweek.com/robot-police-dogs-powered-by-ai-take-over-atlantas-streets-11782889
2•xoa•36m ago•0 comments

Show HN: I built a Wikipedia based AI deduction game

https://sleuththetruth.com/
2•brikym•38m ago•0 comments

Claude.md Scorer: paste your file, get rubric score and rewrites

https://claude-md-scorer.surge.sh
1•autonomykit•39m ago•0 comments

Durable Object alarm loop: $34k in 8 days, zero users, no platform warning

6•thewillmoss•42m ago•0 comments

Entasis

https://en.wikipedia.org/wiki/Entasis
1•nomilk•45m ago•0 comments

How the Bitcoin protocol works (2013)

https://michaelnielsen.org/ddi/how-the-bitcoin-protocol-actually-works/
1•downbad_•45m ago•0 comments

The first graffiti wall (online)

https://freestencilmaker.com/the-wall
1•superluvdub•47m ago•1 comments

Chinese Electrotech Is the Big Winner in the Iran War

https://paulkrugman.substack.com/p/chinese-electrotech-is-the-big-winner
4•MaysonL•53m ago•0 comments

Pentagon Approaches Automakers, Manufacturers to Boost Weapons Production

https://www.wsj.com/politics/national-security/pentagon-approaches-automakers-manufacturers-to-bo...
3•cwwc•55m ago•0 comments

WebODM – Free and open source drone mapping software

https://webodm.org
1•alligray•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•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 ...