frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Drift

https://samuria.online/drift/
1•samuria•5m ago•0 comments

Tutorial: Python MCP Internal API > LLM

https://www.devclubhouse.com/a/ship-an-mcp-server-in-python-that-exposes-your-internal-api-to-llms
1•marcpope1•11m ago•0 comments

An Embedded Linux on a Single Floppy

https://github.com/w84death/floppinux
4•modinfo•15m ago•0 comments

How the US vs. Anthropic Standoff on Claude Fable Will End

https://futuresearch.ai/claude-fable-ban-forecast/
1•ddp26•17m ago•0 comments

Everyone got replaced [video][23 mins]

https://www.youtube.com/watch?v=WQyMujc7Vik
1•Bender•18m ago•1 comments

Show HN: BeamWeaver – LangChain/DeepAgents-style agents and workflows for Elixir

https://github.com/caudena/beam_weaver
1•caudena•18m ago•0 comments

Amazon Workers Say They're Under Investigation for Speaking About Data Centers

https://www.wired.com/story/amazon-workers-under-internal-investigation-after-speaking-out-about-...
3•1vuio0pswjnm7•23m ago•0 comments

Show HN: Mrs-Hybride-PQC – Hybrid Kyber1024 KEM 5-6x Faster Than HKDF-SHA256

https://github.com/A19dammer91/MRS-Hybride-PQC
1•A19dammer91•26m ago•0 comments

GLM-5.2: The Most Powerful Open Model yet and the Brutal Reality of Running It

https://vettedconsumer.com/glm-5-2-the-most-powerful-open-weight-model-yet-and-the-brutal-reality...
25•ermantrout•27m ago•2 comments

A modest proposal: Reformat everything to make documents more palatable to AI

https://www.theregister.com/ai-and-ml/2026/06/16/a-modest-proposal-reformat-everything-to-make-do...
2•gmays•28m ago•1 comments

Plop Linux

https://www.plop.at/en/ploplinux/index.html
1•modinfo•30m ago•0 comments

Prospective clinical study assumes one trial. What if there are two?

https://pubpeer.com/publications/A4D2D6AD194572CFA62BACD99C46D1
1•appleridge•30m ago•0 comments

Ask HN: Multi-LLM orchestration frameworks that collaborate?

1•ch3coohlink•32m ago•0 comments

CBC to stop airing NHL games after 74 years, end of free hockey on Canadian TV

https://www.theglobeandmail.com/sports/hockey/article-cbc-to-no-longer-air-nhl-hockey-ending-74-y...
3•1vuio0pswjnm7•37m ago•0 comments

Russian Dandelion plant offers solution to global rubber shortage

https://www.theguardian.com/science/2026/jun/17/plantwatch-russian-dandelion-solution-global-rubb...
1•oliculipolicula•41m ago•0 comments

Olympic Cyclist vs. Toaster: Can He Power It? [video]

https://www.youtube.com/watch?v=S4O5voOCqAQ
1•thunderbong•49m ago•0 comments

Apple allows alternative app stores, payments in Brazil

https://www.reuters.com/world/americas/apple-allows-alternative-app-stores-payments-brazil-after-...
1•virgulino•51m ago•0 comments

Coding Theory

https://en.wikipedia.org/wiki/Coding_theory
3•binyu•52m ago•0 comments

Went from zero interviews this year to landing 3 interviews this week

https://resume.metashark.io/
3•grantespo•53m ago•0 comments

AI has granted America new power

https://www.economist.com/leaders/2026/06/18/ai-has-granted-america-vast-new-power
2•andsoitis•54m ago•1 comments

Finally MCP's Tool Poisoning Gap Solved: A Protocol-Level Defense

https://github.com/modelcontextprotocol/modelcontextprotocol/discussions/2913
1•Raj_Sidwadkar•1h ago•0 comments

From Dream Job to 'The Gulag': Inside Staff Revolt Zuckerberg's Brutal AI Push

https://www.inc.com/bruce-crumley/from-dream-job-to-the-gulag-inside-the-meta-staff-revolt-over-z...
2•1vuio0pswjnm7•1h ago•1 comments

Datasette-apps: Apps that live inside Datasette

https://github.com/datasette/datasette-apps
2•doppp•1h ago•0 comments

Meta's AI agent for WhatsApp Business is now available globally

https://techcrunch.com/2026/06/03/metas-ai-agent-for-whatsapp-business-is-now-available-globally/
1•doppp•1h ago•0 comments

Datasette Apps: Host custom HTML applications inside Datasette

https://simonwillison.net/2026/Jun/18/datasette-apps/
23•lumpa•1h ago•6 comments

Observation is the layer under taste. We built it for AI runtime

https://twitter.com/damnventures/status/2067394719756251468
14•Cherepukhin•1h ago•0 comments

How to Build ChatGPT from Scratch: Understanding LLMs Step by Step

https://nextweekai.com/blog/build-chatgpt-from-scratch-guide/
1•javatuts•1h ago•0 comments

AI Governance Cannot Be a Tool Call

https://tenureai.dev/writing/ai-governance-cannot-be-a-tool-call/
5•jflynt76•1h ago•0 comments

Captcha audio going nuts (concerning) [video]

https://www.youtube.com/shorts/lbPwZyNsCR0
1•threaderr•1h ago•1 comments

What I Learned from Being Burned Alive

https://www.wsj.com/lifestyle/what-i-learned-from-being-burned-alive-95e91c88
4•Anon84•1h ago•1 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 ...