frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Beating DeepMind AlphaEvolve [video]

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

CBP updated its electronic device search directive in Jan 2026

https://www.mayerbrown.com/en/insights/publications/2026/04/traveling-abroad-your-phone-may-be-th...
2•Ember_Wipe•3m ago•0 comments

I bypassed AWS API Gateway auth with a trailing slash. Got $12K bounty

https://guptalog.free.nf/2026/04/10/i-bypassed-aws-api-gateway-auth-with-a-trailing-slash-got-12k...
1•ofcyes•6m ago•0 comments

Codex CLI Goal Mode: Define Done, Not Next

https://blog.danielvaughan.com/codex-cli-goal-mode-define-done-not-next-c8d13213ea7c?postPublishe...
2•dvaughan•13m ago•0 comments

The fourth independent assessment of UK climate risk

https://www.theccc.org.uk/publication/a-well-adapted-uk/
1•fanf2•14m ago•1 comments

Tokyo's 'Sagrada Familia' stands defiant after 20 years of building

https://www.asahi.com/ajw/articles/16531098
1•Kaibeezy•15m ago•0 comments

Hundreds demand halt on Box Elder data center plan

https://utahnewsdispatch.com/2026/05/23/hundreds-demand-halt-on-box-elder-data-center-plan/
1•mooreds•16m ago•0 comments

The Many Faces of the Security Poverty Line

https://www.chrisfarris.com/post/security-poverty-cliff/
1•mooreds•16m ago•0 comments

Find where your AI coding tokens went: local TUI for Codex/Claude logs

https://github.com/peterxcli/ccost
1•peterxcli•17m ago•0 comments

Ask HN: Niche Uses for Disused Phone

1•hyperific•17m ago•0 comments

Ask HN: What is your daily AI stack?

1•dockerd•21m ago•0 comments

Neuro; An AOT-compiled language for AI workloads built on LLVM 20

https://github.com/PanzerPeter/Neuro
1•PanzerPeter•21m ago•0 comments

Tell HN: Claude Code now allows Anthropic to remotely inject system prompts

4•matheusmoreira•22m ago•0 comments

Show HN: Context-drop – CLI tool to to share files/images between remote agents

https://github.com/mupt-ai/context-drop
1•avyvar•23m ago•0 comments

You don't have to use Substack

https://www.natemeyvis.com/you-really-dont-have-to-use-substack/
1•Brajeshwar•23m ago•0 comments

Show HN: WorkTop – Different desktops with different files. (Windows only)

https://worktop.dev/
1•Nystik•24m ago•0 comments

"Magnifica Humanitas": Pope Leo XIV Rejects Transhumanism

https://dianemontagna.substack.com/p/inside-magnifica-humanitas-pope-leo
3•layer8•27m ago•0 comments

Resyl – AI memory that ties your notes to people instead of folders (Android)

https://play.google.com/store/apps/details?id=com.muragun.resyl&hl=en_US
1•thisisaman408•29m ago•0 comments

Zerostack v1.3.2 Released

https://github.com/gi-dellav/zerostack/releases/tag/v1.3.2
2•gidellav•31m ago•0 comments

Building Pi with Pi

https://lucumr.pocoo.org/2026/5/24/pi-oss/
3•mplanchard•33m ago•0 comments

Life with locked-in syndrome: 'Despite everything, you are alive'

https://www.thetimes.com/uk/healthcare/article/life-with-locked-in-syndrome-despite-eveything-you...
2•bookofjoe•33m ago•2 comments

Does the human still make the decision?

https://benjosaur.substack.com/p/does-the-human-still-make-the-decision
1•benjosaur•34m ago•0 comments

Don't know where your data is from? Bayesian modeling for unknown coordinates

https://christopherkrapu.com/blog/2026/dont-know-where-your-data-is-from/
2•ckrapu•37m ago•0 comments

Preventing AI agents from executing destructive terminal commands

https://github.com/7Majesty-M/terminal-guardian-mcp
1•majesty-m•40m ago•0 comments

Enhanced Games CEO insists 'Doping Olympics' is safer than traditional sport

https://www.dailymail.com/sport/othersports/article-15844011/enhanced-games-maximilian-martin-dop...
1•Bender•41m ago•0 comments

The Wizard with the Defensible Pond

https://worksonmymachine.ai/p/the-wizard-with-the-very-defensible
2•pkilgore•44m ago•0 comments

Advancing Mathematics Research with AI-Driven Formal Proof Search

https://arxiv.org/abs/2605.22763
2•tamnd•46m ago•0 comments

Agents Dont Want VMs

https://zachsmith.ai/blog/agents-dont-want-vms/
3•zachdev1•51m ago•2 comments

The Energy Transition Is Happrning Faster Than You Think

https://www.youtube.com/watch?v=HgBTARXEfxU
1•InitialBP•51m ago•1 comments

Topo Designs Rover Trail Pack Is the Best Backpack I've Ever Used

https://www.wired.com/story/topo-designs-rover-trail-pack/
1•joozio•53m 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•1y ago

Comments

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