frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Does it scale? Who cares (2011)

https://jacquesmattheij.com/does-it-scale-who-cares/
1•downbad_•2m ago•0 comments

IRGC to generate revenue from undersea internet cables in Strait of Hormu

https://twitter.com/IranIntl_En/status/2053206979330392414
1•us321•3m ago•0 comments

Trump Media and Technology Group lost $406M in first three months of 2026

https://www.theguardian.com/us-news/2026/may/09/trump-media-and-technology-group-loses-406m-first...
2•vinni2•5m ago•0 comments

An Excerpt from "Go the Fuck to College" by Adam Mansbach

https://www.fatherly.com/parenting/go-the-fck-to-college-essay-adam-mansbach
1•johntfella•9m ago•0 comments

Consumer AI's ARPU Problem

https://twitter.com/SashaKaletsky/status/2051366803897766236
1•gmays•9m ago•0 comments

Can I Copyright a Song I Made with AI?

https://www.musicologize.com/can-i-copyright-a-song-i-made-with-ai/
1•speckx•12m ago•0 comments

ScalaTimes – A Free, Once-Weekly Scala News Flash

https://scalatimes.com
1•TheWiggles•12m ago•0 comments

Show HN: Sigma Guard – deterministic contradiction checks for graph memory

1•invariantjason•15m ago•0 comments

RustChat is a minimal team messenger, alternative to Slack, Mattermost, Zulip

https://rustchat.io/
2•xvilka•16m ago•0 comments

PostgresBench: A Reproducible Benchmark for Postgres Services

https://clickhouse.com/blog/postgresbench
1•saisrirampur•17m ago•0 comments

Show HN: AI Design Taste – Design.md Generator

https://chromewebstore.google.com/detail/ai-design-taste-designmd/peclkdlolmcclhhgpoehpikgknbmkknc
1•novateg•20m ago•0 comments

The Mismeasure of Open Source

https://nesbitt.io/2026/05/09/the-mismeasure-of-open-source.html
1•bmitch3020•22m ago•0 comments

RL Benchmark "Ant" in Hardware

https://github.com/Openmind-Research-Institute/open-ant
1•lupusorina•23m ago•0 comments

TypeScript checker and language service written in Rust

https://tsz.dev/
2•jcbhmr•24m ago•0 comments

Startup Skills

https://github.com/dhruvhanda15-dev/startupskills
1•dhruvh3•26m ago•0 comments

A happy 150th birthday to the Otto Cycle internal combustion engine

https://twitter.com/iowahawkblog/status/2053100736309809319
1•delichon•27m ago•0 comments

Show HN: Draw Battle

https://vidzert.com/draw-battle
2•vidzert•29m ago•0 comments

Why do Oregon farms plant red clover every spring?

https://a.wholelottanothing.org/why-do-oregon-farms-plant-red-clover-every-spring/
2•speckx•30m ago•0 comments

The Fast Way to Sweden – BGP Routing Experiments

https://alastairbarber.com/Fast-Way-to-Sweden-Optimal-BGP-Prefix-Announcement/
1•alibarber•34m ago•0 comments

Primary-source deep-dive of The Pentagon's PURSUE UAP release (Top findings)

https://gist.github.com/Pantheon-Investigations/77e9d88041a0a60e45a650eded607cf1
2•pantheon_inv•34m ago•0 comments

API Hell

https://neonwalker.dev/posts/api-hell/
2•neonwalker•37m ago•0 comments

The Atari 800 – By Paul Lefebvre

https://www.goto10retro.com/p/inside-the-atari-800
3•rbanffy•37m ago•0 comments

LM Link: Use your local models, remotely

https://lmstudio.ai/link
1•Olshansky•40m ago•0 comments

FreeBSD: Local Privilege Escalation via Execve()

https://www.freebsd.org/security/advisories/FreeBSD-SA-26:13.exec.asc
23•Deeg9rie9usi•42m ago•11 comments

I Caught the Car

https://undecidability.net/senior/
8•holden_nelson•42m ago•0 comments

Show HN: Simple Exif an App that allows creators take control of their metadata

https://simpleexif.com/
1•0x10ca1h0st•43m ago•0 comments

Blink – AI Assistant. A knowledge destination

https://blink-oi.vercel.app
1•Pascal1997•43m ago•0 comments

The Middle East had everything data center builders and hyperscalers wish for

https://www.tomshardware.com/tech-industry/the-middle-east-had-everything-data-center-builders-an...
3•flyaway123•43m ago•0 comments

Lobotomized Claude Code and it works better

https://github.com/skrabe/lobotomized-claude-code
3•skrabe•44m ago•0 comments

7 days of public development are complete; Thanks to everyone

https://github.com/sel8888/harmonic-shape-transform-2026-koncept
1•sel8888•44m 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•12mo ago

Comments

qwertox•12mo ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•12mo 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•12mo 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•12mo ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•12mo 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•12mo ago
Who runs such an AI generated script without checking the code first?
qwertox•12mo 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•12mo ago
Right so lets just always run the code as is ?
qwertox•12mo 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•12mo 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•12mo ago
In which Roko's Basilisk fires a warning shot.
jethronethro•12mo ago
This is why you test code or a script before running it for real. Live and learn, I guess ...