frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Form and Function of Enterprise Humanoid Design

https://bostondynamics.com/webinars/form-function-enterprise-humanoid-design/
1•prathje•1m ago•1 comments

The Are.na Digital Picture Frame

https://store.are.na/products/are-na-frame
2•ewf•1m ago•0 comments

BBC – Eric Schmidt booed by graduates at mention of AI

https://www.bbc.co.uk/news/articles/ce8pqd54qneo
1•lozzo•3m ago•0 comments

Tell HN: Don't make your startup multilingual

1•theorchid•3m ago•1 comments

Can psilocybin alleviate phantom limb pain? 5 questions with Fadel Zeidan

https://themicrodose.substack.com/p/can-psilocybin-alleviate-phantom
1•bushwart•4m ago•1 comments

Anduril and Meta's quest to make smart glasses for warfare

https://www.technologyreview.com/2026/05/18/1137412/inside-anduril-and-metas-quest-to-make-smart-...
1•joozio•4m ago•0 comments

Anthropic Acquires Stainless

https://www.anthropic.com/news/anthropic-acquires-stainless
3•tomeraberbach•4m ago•1 comments

Starlink raises prices across satellite internet plans

https://www.theverge.com/science/932294/starlink-price-increase-standby-mode
1•Brajeshwar•5m ago•0 comments

CoffeeScript

https://coffeescript.org
1•tosh•5m ago•0 comments

OpenAI Bought Company That Offered A.I. Tools for Cloning Voices

https://www.nytimes.com/2026/05/15/technology/openai-weightsgg-voice-cloning.html
1•JumpCrisscross•7m ago•0 comments

Justice Department announces a $1.7B fund to compensate Trump allies

https://apnews.com/article/trump-lawsuit-irs-leak-3729de38770b558be01712a143437bf8
3•Kapura•8m ago•0 comments

Aether: High-performance, formally-verified storage engine written in Rust

https://codeberg.org/gregburd/aether
2•dboreham•9m ago•0 comments

M1: Agents should generate UI that persists, scales, and hosts itself

https://www.usemontage.ai/
1•aaravmakadia•9m ago•0 comments

How to deal with your kid leaving

https://buttondown.com/monteiro/archive/how-to-deal-with-your-kid-leaving/
1•Tomte•9m ago•1 comments

Cargo-Crap: Finding Untested Complexity in AI-Generated Rust Code

https://minikin.me/blog/cargo-crap
1•koburan•10m ago•0 comments

Trump Administration Live Updates: $1.8B Fund Could Funnel to Trump Allies

https://www.nytimes.com/live/2026/05/18/us/trump-news
3•duxup•10m ago•1 comments

Jan Łukasiewicz

https://en.wikipedia.org/wiki/Jan_%C5%81ukasiewicz
1•tosh•12m ago•0 comments

AI Is Theft

https://dissentmagazine.org/article/ai-property-data-theft-anthropic/
2•cdrnsf•14m ago•0 comments

MmWave vs. Wi-Fi Sensing

https://community.home-assistant.io/t/mmwave-vs-wi-fi-sensing/1010785
1•mike2872•14m ago•0 comments

Show HN: Elmo (Open Source AEO)

https://github.com/elmohq/elmo
1•jrhizor•17m ago•0 comments

The Prehistory of A.I. Slop

https://www.newyorker.com/magazine/2026/05/25/the-prehistory-of-ai-slop
2•Brajeshwar•17m ago•0 comments

Composer 2.5

https://cursor.com/blog/composer-2-5
6•meetpateltech•18m ago•0 comments

AI Eats The World – Benedict Evans macro trends in tech

https://www.ben-evans.com/presentations
2•nilen•18m ago•0 comments

How We Hacked Our Way to Free 4.0s and Took Over a uWaterloo & UofT Grading Tool

https://xtra.sh/blog/markus/
3•xtra1•19m ago•0 comments

Email belongs on YOUR disk, not a cloud server

https://mailvaulty.com
1•khaledsabae•19m ago•2 comments

US countertop workers could have damaged lungs, safety expert says

https://www.npr.org/2026/05/18/nx-s1-5691570/silicosis-beyond-california-quartz-countertop-cambria
2•mikhael•19m ago•0 comments

Amiga 68000 (SEKA) → portable C transpiler

https://bitbucket.org/rhinoid/convert68000toc/src/main/
1•ibobev•22m ago•0 comments

Lawyers in Brazil caught for prompt injection on a legal case

https://www.jota.info/trabalho/juiz-multa-em-r-84-mil-advogadas-por-prompt-injection-para-manipul...
2•cfontes•22m ago•0 comments

The Thing Protecting You Is Now the Target

https://thetechvillain.substack.com/p/the-thing-protecting-you-is-now-the
2•interrupt86•24m ago•0 comments

MinusPod self-hosted podcast ad remover learns from opt-in crowdsourced patterns

https://github.com/ttlequals0/MinusPod/blob/main/patterns/README.md
1•Ttlequals0•24m 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 ...