frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Million Agents Is a Distributed System Problem

https://www.instacloud.com/blogs/a-million-agents-is-a-distributed-systems-problem
1•tonychang430•54s ago•0 comments

The Pitești Experiment

https://undevaincomunism.com/the-pitesti-experiment-darkest-chapter-of-reeducation-torture-and-be...
1•jruohonen•1m ago•0 comments

Jensen Huang vs. the A.I. Doomers [the Ezra Klein Show]

https://www.nytimes.com/2026/09/23/opinion/ezra-klein-podcast-jensen-huang.html
1•paulpauper•2m ago•0 comments

From the Voice of Dickie Jones

https://blog.nathanlangley.dev/posts/dickie-jones.html
1•ninjahawk1•3m ago•1 comments

Lifelogging with Large Language Models

https://jaan.io/lifelogging-with-large-language-models
1•paulpauper•3m ago•0 comments

Mysteries of AI Generalization

https://www.astralcodexten.com/p/mysteries-of-ai-generalization
1•paulpauper•3m ago•0 comments

The Power of AI: Mass Collaboration

https://www.cppdepend.com/blog/ai-real-power-mass-collaboration/
2•cppfirst•3m ago•0 comments

Show HN: DeutschDNA – German Tutor Skill for Claude Code and Codex

https://github.com/ahmtsahin/deutsch-dna
1•impala64•4m ago•0 comments

Show HN: Busbar self-hosted execution boundary for Agentic Apps

https://github.com/GetBusbar/busbar
1•mangatgoyal•4m ago•0 comments

Show HN: Whiteboard (YC W26) – an open-source IDE for thoughtful software design

https://github.com/devdotfast/whiteboard
4•sidharthkmenon•5m ago•0 comments

Show HN: Devc – an alternate CLI for launching devcontainers

https://github.com/rameshvarun/devc
1•varunramesh•10m ago•0 comments

Open AI in the Wild: Adoption and Adaptation of Open Models on R/LocalLLaMA

https://dl.acm.org/doi/abs/10.1145/3805689.3812421
1•theanonymousone•11m ago•0 comments

Return-to-office policy in 2026: 8 of 75 top UK employers require 5 office days

https://www.wfhjobs.co.uk/wfh-jobs-research/rto-policy-facts-and-statistics
2•FreddieSO•11m ago•1 comments

Paper2agent Turns Static Papers into Live AI Tools

https://spectrum.ieee.org/paper2agent-ai-agents-research-papers
2•rbanffy•11m ago•0 comments

35 years ago I did it all myself

https://twitter.com/jasonfried/status/2103170272467767753
2•tosh•11m ago•0 comments

For Computer Use, the harness matters as much as the model

https://www.stagehand.dev/evals
10•MiguelG719•13m ago•3 comments

Meta employees don't like to be filmed with there own glasses [video]

https://www.youtube.com/shorts/6Abwd13odL4
2•pixvi•13m ago•0 comments

Show HN: Guardmcp – I scanned the official MCP registry with a config scanner

https://github.com/BerkantACUN/guardmcp
1•melalonsra•13m ago•0 comments

Developer ported Word for Windows 1.1a from 1990 to run natively on Windows 11

https://www.neowin.net/news/developer-ported-word-for-windows-11a-from-1990-to-run-natively-on-wi...
2•bundie•14m ago•0 comments

Does Georgism Work? Five Years Later

https://www.astralcodexten.com/p/does-georgism-work-five-years-later
2•iamnothere•14m ago•0 comments

"Antedisciplinary" Science (2005)

https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.0010006
1•the-mitr•14m ago•0 comments

Why does a Nix store path survive garbage collection?

https://www.labcraft.dev/blog/nix-gc-roots
1•anandsuresh•14m ago•0 comments

Show HN: ThimbleDb, an encrypted lightweight low latency open source database

https://github.com/Jason-Doyle/thimble
2•randomlurker2•14m ago•0 comments

We Have Named Arguments at Home

https://corrode.dev/blog/named-arguments-at-home/
2•dimonomid•16m ago•1 comments

OpenRouter: Server Tools Marketplace

https://openrouter.ai/tools
1•theanonymousone•17m ago•0 comments

Shared Memory for Coding Agents

https://getbelay.vercel.app/
1•doplexlabs•17m ago•0 comments

Lifestreams: A storage model for personal data: ACM SIGMOD Record: Vol 25, No 1

https://dl.acm.org/doi/10.1145/381854.381893
1•rbanffy•18m ago•0 comments

US plan for 90 day diesel export ban could have significant impact on Europe

https://www.politico.eu/article/eu-launches-diplomatic-offensive-to-stop-trumps-diesel-export-ban/
1•ck2•19m ago•1 comments

Open OCI spec for agent sandboxes

https://www.linux.com/featured/docker-commits-to-bringing-the-sandbox-kit-spec-to-the-cncf/
1•pploug•19m ago•0 comments

LLMs can write tool workflows. Will they choose to?

https://github.com/kukushko/agent/blob/main/agent_workflows_exploratory_benchmark.md
1•kukushko•20m 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 ...