frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Fields Medal Video: Maryna Viazovska

https://www.simonsfoundation.org/2022/07/05/fields-medal-video-maryna-viazovska/
1•ganitam•6s ago•0 comments

The LLM costs are not going up

https://simianwords.bearblog.dev/conclusive-proofs-that-llm-costs-are-going-down/
1•simianwords•12s ago•0 comments

How Cybercrime Became a Leading Industry in 'Scambodia'

https://www.wsj.com/world/asia/cambodia-cybercrime-rise-why-2f2c03cc
1•fortran77•30s ago•1 comments

Welcome to the World of Machine Audiences

https://economist.com/by-invitation/2026/04/16/welcome-to-the-world-of-machine-audiencesfromTheEc...
1•andsoitis•2m ago•0 comments

AgileLog: A Forkable Shared Log for Agents on Data Streams

https://arxiv.org/abs/2604.14590
1•yingjunwu•3m ago•0 comments

Autoharness: Self-Improving Agents

https://www.neosigma.ai/blog/self-improving-agentic-systems
1•dujuku•6m ago•0 comments

Rock carving facts – Tanum Sweden

https://www.tanumworldheritage.se/rock-carving-facts/?lang=en
1•janandonly•9m ago•0 comments

The Art of Craftsmanship (Monozukuri) in the Age of AI

https://rapha.land/the-art-of-craftsmanship-monozukuri-in-the-age-of-ai/
1•signa11•19m ago•0 comments

Show HN: FeralHq – The funniest AI driven content generation engine

https://feralhq.com/
1•creature_x•21m ago•0 comments

Stripe's Payment APIs: the first 10 years (2020)

https://stripe.dev/blog/payment-api-design
2•tibbar•24m ago•0 comments

NSA using Anthropic's Mythos despite blacklist

https://www.axios.com/2026/04/19/nsa-anthropic-mythos-pentagon
2•rayval•24m ago•0 comments

Theoretical physicist explains why humanity likely won't see all forces unified

https://www.livescience.com/space/cosmology/the-chances-of-you-living-50-years-are-very-small-the...
1•mikhael•27m ago•0 comments

How to Wage Economic Warfare

https://engelsbergideas.com/essays/how-to-wage-economic-warfare/
2•bryanrasmussen•27m ago•0 comments

Vale: A fast, safe, and easy programming language

https://vale.dev/
2•tosh•27m ago•0 comments

Glyph Protocol for Terminals

https://rapha.land/introducing-glyph-protocol-for-terminals/
3•signa11•29m ago•0 comments

Boston Dynamics and Google DeepMind Teach Spot to Reason

https://spectrum.ieee.org/boston-dynamics-spot-google-deepmind
2•geox•29m ago•0 comments

Real estate investors are buying up long-term care facilities

https://www.npr.org/2026/04/19/nx-s1-5786242/profit-landlord-real-estate-investment-trust-nursing...
2•mikhael•31m ago•0 comments

Can your AI rewrite your code in assembly?

https://lemire.me/blog/2026/04/05/can-your-ai-rewrite-your-code-in-assembly/
3•signa11•31m ago•0 comments

DIDs Are Cool. We Didn't Need Them

https://www.inamoon.com/blog/dids-vs-subjects
9•mankins•33m ago•2 comments

Ask HN: Why is splitting bills still so painful in 2026?

1•allenalux•35m ago•0 comments

The shape of Vision – a cognitive architecture for AI agents

https://iampneuma.com/the-shape-of-vision/
1•barronai•35m ago•1 comments

Robot smashes human record in half-marathon – as another self-destructed

https://newatlas.com/ai-humanoids/robots-outrun-humans-half-marathon/
1•omer_k•39m ago•0 comments

Robots Are Quietly Building the Future of Renewable Energy

https://oilprice.com/Energy/Energy-General/Robots-Are-Quietly-Building-the-Future-of-Renewable-En...
2•thelastgallon•1h ago•0 comments

OSS agents that kill idle cloud clusters before they eat your budget

https://github.com/CruiseAI/digitaltap-oss
2•digitaltap•1h ago•0 comments

Luanjo

1•luanjo•1h ago•0 comments

AI is about to make the global e-waste crisis worse

https://restofworld.org/2026/global-ewaste-crisis/
4•i7l•1h ago•1 comments

Show HN: Lfk – a yazi inspired, Vim-like keyboard focused fast Kubernetes TUI

https://github.com/janosmiko/lfk
1•mixe3y•1h ago•0 comments

Washington DC on track for most volatile temperature year since 1959

https://www.williamangel.net/blog/2026/04/19/Washington_DC_On_Track_For_Stormy_2026.html
1•datadrivenangel•1h ago•0 comments

Theseus, a Static Windows Emulator

https://neugierig.org/software/blog/2026/04/theseus.html
2•zdw•1h ago•0 comments

Choice Against Cost: Sparse Autoencoder Findings in Three Small Language Models

https://substack.com/home/post/p-194758516
3•sourdoughbob•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 ...