frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Closing in on the Markdown Book

https://www.thurrott.com/paul/340890/closing-in-on-the-markdown-book
1•theanonymousone•3m ago•0 comments

A mysterious drone. A Mercedes RV. A Chinese intelligence puzzle in the New Mexi

https://www.cnn.com/2026/08/31/politics/drone-incursions-us-bases-chinese-spies
3•pir8life4me•15m ago•1 comments

AMD unveils next-generation RDNA and PlayStation tech with Sony (2025)

https://overclock3d.net/news/gpu-displays/amd-unveils-next-generation-rdna-and-playstation-tech-w...
2•peter_d_sherman•18m ago•1 comments

Dissociation Isn't Always a Trauma Response

https://www.psychologytoday.com/us/blog/the-neurodivergent-psychologist/202608/dissociation-isnt-...
4•thebeardisred•18m ago•0 comments

Vermell – Minimal, dependency-free C++ web framework using epoll

https://github.com/vermellcc/vermell
2•standar-donkey•21m ago•0 comments

Lapce – fast and powerful code editor

https://lap.dev/lapce/
3•jcbhmr•22m ago•0 comments

Agency and Agents

https://www.oneusefulthing.org/p/agency-and-agents
2•saikatsg•24m ago•0 comments

Everyone Was Right About the Button

https://medium.com/@gurvinder372/article-1-everyone-was-right-about-the-button-c2daf899396e
2•gps372•24m ago•0 comments

HuggingFace Attack Postmortem: Fleshing Out the Facts

https://thezvi.substack.com/p/huggingface-attack-postmortem-fleshing
3•paulpauper•29m ago•0 comments

ATLAS MITRE

https://atlas.mitre.org/matrices/ATLAS
3•saikatsg•30m ago•0 comments

Google Ads vs. Facebook Ads: Which Is Better for Small Businesses?

https://www.hostiqen.com/2026/08/google-ads-vs-facebook-ads-which-is.html
2•reviewhub•30m ago•0 comments

Building Without Predicting

https://sive.rs/fit
5•Curiositry•31m ago•0 comments

Show HN: A Bluesky bot that shares Wikipedia links from the HN front page

https://bsky.app/profile/hnwiki.bsky.social
3•doctoboggan•32m ago•0 comments

Wrong Tools for Clients

https://www.moodlenstodo.info
2•Amine000•32m ago•0 comments

expect-native: Jest's expect with Node's native node:test runner

https://www.npmjs.com/package/expect-native
2•ramblingenzyme•33m ago•0 comments

Ollama's Transparent Pricing

https://ollama.com/blog/transparent-pricing
3•wertyk•36m ago•0 comments

What Happened to Yoga?

https://www.theatlantic.com/culture/2026/08/yoga-america-culture-decline/688461/
3•fortran77•36m ago•0 comments

Malicious Virtualizor update served via BGP hijacking

https://www.virtualizor.com/blog/security-incident-bgp-hijacking/
2•MallocVoidstar•36m ago•0 comments

Show HN: Compute.cheap – the cheapest H100/H200 compute in the world

https://compute.cheap/
2•EmiCorleone•36m ago•0 comments

Show HN: Kagelin – offline-first tasks/habits/focus/calendar, AGPL

https://www.kagelin.app/
1•achyuth072•37m ago•0 comments

Show HN: Clippy Vision – local AI that remembers your screen across apps

https://github.com/protocorn/clippy-vision/issues/53
1•sahil2412•39m ago•0 comments

Nowledge Mem

https://nowledge-labs.ai/blog/nowledge-mem
1•jinqueeny•43m ago•0 comments

Listers: A Glimpse into Extreme Birdwatching

https://en.wikipedia.org/wiki/Listers:_A_Glimpse_Into_Extreme_Birdwatching
1•vismit2000•44m ago•0 comments

Ask HN: Why do people get mad at AI pastes

5•ThinkAboutItt•46m ago•5 comments

Why is Arrays.fill 265 times slower on G1GC?

https://krzysztofslusarski.github.io/2026/08/19/g1barrier.html
2•ejboy•48m ago•0 comments

Don't be the Vitamin B guy

https://hedonicescalator.substack.com/p/dont-be-the-vitamin-b-guy
2•paulpauper•48m ago•0 comments

How Much Is That Gene-Edited Dog in the Window?

https://www.nytimes.com/2026/08/31/science/dog-breeding-gene-editing-crispr.html
1•paulpauper•49m ago•0 comments

Rust Implementation of Tailscale

https://github.com/tailscale/tailscale-rs
5•hazira•49m ago•0 comments

ArXiv has almost 600 submissions today and most are AI slop

https://arxiv.org/list/math/new
6•marysminefnuf•53m ago•1 comments

Show HN: Eatheria – Self-hosted AppSec platform with AI false-positive filtering

https://github.com/MartinCrespoC/Security-Team---Workspace-
3•ikharoz•56m 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 ...