frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Roblox Released the Biggest AI World Model in Gaming. Everyone Hates It

https://kuber.studio/blog/AI/Roblox-Released-the-Biggest-AI-World-Model-in-Gaming.-Everyone-Hates...
1•kuberwastaken•2m ago•0 comments

Multi-Robot Cooperative Spatial Reasoning with Multimodal Large Language Models

https://arxiv.org/abs/2605.18431
2•yogthos•4m ago•0 comments

Revenge of the AI Bubble

https://www.axios.com/2026/06/06/ai-bubble-economy-growth
2•1vuio0pswjnm7•6m ago•0 comments

If LLMs Have Human-Like Attributes, Then So Does Age of Empires II

https://arxiv.org/abs/2605.31514
2•gekoxyz•6m ago•0 comments

Auburn college student missing in Japan argued with mom over ChatGPT usage

https://www.cbsnews.com/news/james-weston-higginbotham-missing-japan-mom-chatgpt/
2•llboston•8m ago•0 comments

Benchmarks in Leipzig

https://arxiv.org/abs/2606.05818
3•root-parent•8m ago•1 comments

Arc Fusion Power Plant Physics Basis

https://www.cambridge.org/core/journals/journal-of-plasma-physics/collections/arc-fusion-power-pl...
2•mpweiher•8m ago•0 comments

Ask HN: Were CS profs right to look down on programming in light of modern AI?

3•amichail•10m ago•0 comments

The First SMS Message

https://spacedaily.com/d-on-december-3-1992-a-22-year-old-british-software-engineer-named-neil-pa...
3•ultratalk•12m ago•0 comments

CreatorL.ink Now Live

https://creatorl.ink
3•BiltlyAdm•14m ago•1 comments

Fooling Go's X.509 Certificate Verification

https://danielmangum.com/posts/fooling-go-x509-certificate-verification/
3•hasheddan•16m ago•0 comments

Better Prompting LLMs Through Analogies

https://thecodeartist.github.io/better-prompting-llms-using-analogies/
2•cvs268•19m ago•0 comments

Show HN: Facebook cover photo resizer that shows the mobile crop before upload

https://allimgtools.app/resize/for-facebook-cover
2•samidurbar•19m ago•0 comments

Smack – AI personas that run UX tests on any URL local

https://smck.ai/
2•adiv_maimon•23m ago•0 comments

FokosDB: Strongly consistent storage DB ontop of Cloudflare Durable Objects

https://www.lambrospetrou.com/articles/fokosdb/
2•jicea•23m ago•0 comments

I built a black-and-white e-ink display to stop checking my phone 60 times a day

https://old.reddit.com/r/webdev/comments/1tyabcg/i_built_a_blackandwhite_eink_display_so_id_stop/
3•taubek•28m ago•0 comments

US House lawmakers release draft bill to prohibit state AI rules

https://www.reuters.com/business/us-house-lawmakers-release-draft-bill-regulate-ai-2026-06-04/
4•1vuio0pswjnm7•28m ago•0 comments

Instead of Taking Your Job, A.I. Might Transform It

https://www.newyorker.com/culture/open-questions/instead-of-taking-your-job-ai-might-transform-it
2•fortran77•29m ago•1 comments

SETI Panel Revises Recommendations for Dealing with 'Disclosure Day'

https://www.universetoday.com/articles/seti-panel-revises-recommendations-for-dealing-with-disclo...
2•root-parent•30m ago•1 comments

Open Loops – a tiny tool to track what you're waiting on from people

https://mypeakplanner.com/products/open-loops-follow-up-tracker
3•seamagu•30m ago•0 comments

Lego Reseller Bricks and Minifigs Will Return 'Stolen' Star Wars Sets

https://www.ign.com/articles/lego-reseller-bricks-and-minifigs-will-return-stolen-star-wars-sets-...
3•AdmiralAsshat•32m ago•1 comments

Embodied Cognition and Agentic AI

https://lemire.me/blog/2026/05/28/embodied-cognition-and-agentic-ai/
3•tosh•33m ago•0 comments

Projections for the Ebola Disease Outbreak Caused by Ebola Virus, 2026

https://www.cdc.gov/mmwr/volumes/75/wr/mm7522e1.htm
2•bookofjoe•33m ago•0 comments

Chatbots May Need a Cult Deprogrammer

https://www.wsj.com/opinion/chatbots-may-need-a-cult-deprogrammer-48f25568
1•1vuio0pswjnm7•33m ago•0 comments

120k Lines of Rust: Inside the Nosdesk Backend

https://kyle.au/blog/nosdesk-backend-rust
1•kylephillipsau•34m ago•0 comments

CodersBud – a terminal-first social network for developers

https://codersbud.dev/
1•ugurabb•36m ago•1 comments

I Turned Reckless Driving into a Captcha [video]

https://www.youtube.com/shorts/zRQjh4aogsE
1•Cider9986•41m ago•0 comments

What TTS Throws Away

https://amaldavid.com/writing/what-tts-throws-away/
1•amaldavid•43m ago•0 comments

Win16 Memory Management

https://www.os2museum.com/wp/win16-memory-management/
1•atan2•45m ago•0 comments

Bezos Funding Hunt for Brain's 'Core Algorithm'

https://www.wired.com/story/jeff-bezos-is-funding-a-wild-hunt-for-the-brains-core-algorithm/
1•bookofjoe•46m ago•3 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 ...