frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AgentBPF: eBPF-based observability for LLM agent trajectories

https://github.com/pandyamarut/AgentBPF
2•mwiki•1m ago•0 comments

Google says it will let UK publishers opt out of AI overviews

https://www.theregister.com/2026/03/19/google_opts_for_optout_on/
1•bundie•1m ago•0 comments

Ask HN: Is Google disabling accounts for using gws CLI with OpenClaw?

1•anandvc•1m ago•0 comments

Show HN: JobsByCulture – Find jobs where you'll enjoy working

https://jobsbyculture.com
1•saipradeep77•4m ago•0 comments

Show HN: Pocodex – Remote Control for Codex

https://github.com/davej/pocodex
1•davej•6m ago•0 comments

Cuba Is Going Dark

https://www.nytimes.com/interactive/2026/03/19/world/americas/cuba-blackout-electricity.html
2•saikatsg•6m ago•0 comments

Five more seated Gauls found in Dijon

https://www.thehistoryblog.com/archives/75639
1•speckx•7m ago•0 comments

Twin prime ramadan: crypto is borked

https://conferenceofthebirds.tiiny.site/
1•shaunxcode•9m ago•0 comments

Show HN: New hard science fiction novel

1•dufbugderopa•9m ago•1 comments

Not so diplomatic: Witkoff, Kushner, and Trump's march to war in Iran

https://responsiblestatecraft.org/witkoff-iran-war/
1•jamesgill•9m ago•1 comments

The ideological orientation of academic social science research 1960–2024

https://link.springer.com/article/10.1007/s11186-026-09690-2
1•bko•10m ago•1 comments

Video Effect Vibe – AI Motion Graphics in Seconds

https://videoeffectvibe.com
1•bruuuuuuuuh•10m ago•0 comments

Connecticut and the 1 Kilometer Effect

https://alearningaday.blog/2026/03/19/connecticut-and-the-1-kilometer-effect/
2•speckx•11m ago•0 comments

Restarting Fieldwide Shutdown for Middle East Oil and Gas Producers Is Not Easy

https://cyrusashayeri.substack.com/p/restarting-fieldwide-shutdown-for
2•toomuchtodo•11m ago•0 comments

Chrome endorsed READR organically in 16 days The algorithm made its verdict

https://wushu75.github.io/readr/
1•Ogbon•11m ago•0 comments

Ask HN: What do you think about Claude going down every day now?

1•scratchyone•14m ago•3 comments

Google details new 24-hour process to sideload unverified Android apps

https://arstechnica.com/gadgets/2026/03/google-details-new-24-hour-process-to-sideload-unverified...
2•MBCook•14m ago•0 comments

Why lab coats are white

https://www.asimov.press/p/lab-coat
1•bookofjoe•14m ago•0 comments

The fiery, deadly crashes involving the Tesla Cybertruck

https://www.theguardian.com/technology/2026/mar/18/tesla-cybertruck-crashes-battery-fires
4•fmihaila•15m ago•0 comments

US has "lost control of its own foreign policy", Oman says

https://www.theguardian.com/world/2026/mar/19/us-lost-control-of-its-own-foreign-policy-oman-fore...
24•prmph•15m ago•2 comments

A private space company has a new plan to bag an asteroid

https://arstechnica.com/space/2026/03/a-private-space-company-has-a-radical-new-plan-to-bag-an-as...
1•cryptoz•16m ago•0 comments

Claude Drexler

https://claudedrexler.com/
1•mattdionis•17m ago•0 comments

San Francisco's DNA is mischief

https://www.fieldnotes.nautilus.quest/p/san-franciscos-dna-is-mischief
3•zackoverflow•21m ago•1 comments

How the first electric grid was built

https://worksinprogress.co/issue/how-the-worlds-first-electric-grid-was-built/
2•deunamuno•21m ago•0 comments

Google announces Firebase Studio sunset and project migration

https://firebase.google.com/docs/studio/migrating-project
4•tmoertel•23m ago•0 comments

I Think a New Role Is Emerging in Tech

https://newsletter.thelongcommit.com/p/i-think-a-new-role-is-emerging-in
2•jcmartinezdev•23m ago•0 comments

Budgetbreeze – an AI centric personal finance tool

https://www.budgetbreeze.io/
1•boxstream•23m ago•1 comments

Imagined Unrealities

https://zuhayeer.com/writing/imagined-unrealities.html
1•zuhayeer•23m ago•0 comments

Why $4 gasoline is the tipping point for EVs

https://grist.org/energy/why-4-gasoline-is-the-tipping-point-for-evs/
1•speckx•24m ago•1 comments

Developer Spotlight: Somtochi Onyekwere from Fly.io

https://theconsensus.dev/p/2026/03/19/developer-spotlight-somtochi-onyekwere.html
1•eatonphil•25m 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 ...