frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Story Lab

https://story-lab.ai/
1•Aftermidn8•2m ago•0 comments

China plans to spend $295B on AI buildout

https://www.bloomberg.com/news/articles/2026-06-09/china-prepares-295-billion-plan-to-fund-nation...
1•loandbehold•2m ago•0 comments

Plane Launch Week Gallery

https://plane.so/launch-week/q2-2026
1•bbor•2m ago•1 comments

Nearly Everyone, Everywhere, Veers Left When Walking

https://www.nytimes.com/2026/06/10/science/humans-walking-veer-left-counterclockwise.html
1•donohoe•5m ago•0 comments

The Device Paradigm [pdf]

https://web.cs.ucdavis.edu/~rogaway/classes/188/spring04/projects/5.pdf
1•burnto•5m ago•0 comments

Fable 5 creates full Swiss lever watch movement in Three.js

https://twitter.com/quanghuynt14/status/2064509430650065278
2•mhb•5m ago•0 comments

Nuts – pip/NPM for Java with first-class workspaces and JDK provisioning (9y+)

https://github.com/thevpc/nuts
1•thevpc•6m ago•0 comments

AI-review: reviewing AI code before it lands

https://www.jackfranklin.co.uk/blog/ai-review-plan/
1•mooreds•6m ago•0 comments

Whole Earth Garden

https://wholegarden.falso.net/
1•gdss•7m ago•0 comments

How to enter side doors: guide to jobs, cold emails, and making yourself legible

https://velvetnoise.substack.com/p/how-to-enter-side-doors
1•nowflux•7m ago•0 comments

Who runs the ransomware group 'The Gentlemen?'

https://krebsonsecurity.com/2026/06/who-runs-the-ransomware-group-the-gentlemen/
2•krebsonsecurity•8m ago•0 comments

T9 Texting Is Back on iPhone

https://apps.apple.com/us/app/t9-keyboard-text-like-its-04/id6765738931
1•ItsMeDavidV•8m ago•0 comments

Ongoing attempt to standardise a DOM Templating API in browsers

https://github.com/justinfagnani/dom-templating-api-proposal
1•llcooliovice•11m ago•0 comments

Show HN: Kctx – A read-only Kubernetes context engine for SREs and AI Agents

https://github.com/lucasepe/kctx
2•lucasepe•13m ago•0 comments

Anthropic's Self Governance Is an Act of Social Violence

https://cezarbabin.com/notes/anthropic-self-governance-is-an-act-of-social-violence.html
1•nibab•13m ago•1 comments

Google Liable for Hallucinations (In Germany)

https://garymarcus.substack.com/p/breaking-google-liable-for-hallucinations
1•PaulDavisThe1st•14m ago•1 comments

The maths behind a leopards spots

https://www.bbcearth.com/news/the-maths-behind-a-leopards-spots
2•marysminefnuf•17m ago•0 comments

Jumping spiders inspire ultra-efficient 3D camera

https://news.northwestern.edu/stories/2026/06/jumping-spiders-inspire-ultra-efficient-3d-camera
1•gmays•19m ago•0 comments

US stock market to stop shrinking for first time in 23 years

https://www.ft.com/content/f7dae4e1-d650-45ab-ac97-043c7a965d24
4•JumpCrisscross•20m ago•0 comments

Ask HN: What are your thoughts on your critical thinking abilities and AI?

2•ciwolex•21m ago•5 comments

Piano Learning App focused on Sight-reading

http://virtuoso.host.eco.br/app/
2•ltouro•21m ago•2 comments

Show HN: LocksBet – a price comparison tool for prediction markets

https://locksbet.com
1•at-w•22m ago•0 comments

What Is It Like to Be a Bat? [pdf]

https://www.sas.upenn.edu/~cavitch/pdf-library/Nagel_Bat.pdf
5•shadow28•23m ago•0 comments

Apple Announces Maps Feature That Could Bring CarPlay to Tesla

https://www.notateslaapp.com/news/4278/could-this-new-apple-feature-finally-bring-carplay-to-tesla
2•dabinat•23m ago•0 comments

The Music Understanding framework [video]

https://developer.apple.com/videos/play/wwdc2026/253/
2•gok•24m ago•0 comments

Show HN: CtxGov – a local claim firewall for AI memory claims

https://ctxgov.github.io/ctxgov/try-in-5-minutes.html
1•LuxBennu•25m ago•0 comments

Beyond Enumerable: For Want of Better Windows

https://baweaver.com/writing/2026/05/31/beyond-enumerable-for-want-of-better-windows/
1•kurinikku•25m ago•0 comments

Breaking the Ice: Analyzing Cold Start Latency in vLLM

https://arxiv.org/abs/2606.07362
2•matt_d•27m ago•0 comments

They Tried to Catch a Predator. They Trapped Themselves Instead

https://www.nytimes.com/2026/06/10/technology/predator-catcher-vitaly-mistake.html
3•_tk_•29m ago•0 comments

Sharper context. Fewer tokens. Open-source middleware for Claude Code

https://github.com/cytostack/openwolf
1•momentmaker•30m 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 ...