frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Diego Garcia

https://en.wikipedia.org/wiki/Diego_Garcia
1•handfuloflight•3m ago•0 comments

Feynman on Why Questions [video]

https://www.youtube.com/watch?v=36GT2zI8lVA
1•downboots•13m ago•0 comments

An AI agent's performance review should be the operator's behavior

https://www.moltbook.com/posts/27da539d-5697-4828-81a8-ac2deffb8f02
1•klawforge•17m ago•0 comments

Show HN: Peam – AI that knows your website

https://peam.ai
1•afshinmeh•18m ago•0 comments

Deep-dive into the deployment of an on-premise low-privileged LLM server

https://www.synacktiv.com/en/publications/deep-dive-into-the-deployment-of-an-on-premise-low-priv...
1•jaeray•20m ago•0 comments

We've had front end reactivity since 2018 – via Async Iterables

https://github.com/SacDeNoeuds/yawn
1•sacdenoeuds-dev•22m ago•0 comments

Cross-Model Void Convergence: GPT-5.2 and Claude Opus 4.6 Deterministic Silence

https://zenodo.org/records/18976656
2•rayanpal_•36m ago•0 comments

Show HN: OnlyBots – A store for AI agents to buy sexy lobster pics

https://www.onlybots.store/
3•bilater•37m ago•0 comments

Did EU 'right to repair' law force Apple to make a repairable MacBook (Neo)?

https://euobserver.com/207577/did-eu-right-to-repair-law-force-apple-to-finally-make-a-repairable...
4•giuliomagnifico•43m ago•3 comments

Live from GDC 1989: 21 Hours of Vintage Talks from Early Gaming Luminaries

https://gamehistory.org/cgdc-1989-tapes/
1•mayoff•44m ago•0 comments

Meditation, Language, and LLMs

https://craigmod.com/roden/112/
1•vinhnx•54m ago•0 comments

Adapting to AI: Reflections on Productivity

https://blog.colinbreck.com/adapting-to-ai-reflections-on-productivity/
1•vinhnx•56m ago•1 comments

Rat King

https://en.wikipedia.org/wiki/Rat_king
6•fittingopposite•1h ago•0 comments

Physical Reality as Hypermedia

https://paper.supernovalabs.co.uk
1•supernovalabs•1h ago•0 comments

Lindley's Paradox

https://en.wikipedia.org/wiki/Lindley%27s_paradox
4•mschnell•1h ago•0 comments

Predicting home electricity usage from historical patterns in Home Assistant

https://blog.cyplo.dev/posts/2026/03/load-prediction-in-home-assistant/
2•swq115•1h ago•0 comments

I made a GPU price tracker

https://gpusniper.com/
3•codingblink•1h ago•1 comments

HopTab–free,open source macOS app switcher and tiler that replaces Cmd+Tab

https://www.royalbhati.com/hoptab
2•robhati•1h ago•0 comments

We built Avancé Communicatie (digital services for Dutch companies)

https://www.avancecommunicatie.nl/
2•bullmeister•1h ago•0 comments

Why do we need apps like cursor?

1•amanhij•1h ago•0 comments

Ask HN: Top repos you'd want offline on a desert island?

2•quijoteuniv•1h ago•3 comments

Computer Networks: A Systems Approach

https://open-cloud.github.io/index.html
1•vismit2000•1h ago•0 comments

Kattis Problem Archive

https://open.kattis.com
1•vismit2000•1h ago•0 comments

Show HN: Helios – 3 Claude agents (Red vs. Blue) hack and patch your codebase

https://gitlab.com/nakaiwilliams20/helios
2•nakaiwilliams•1h ago•0 comments

Synaphe – A type-safe language for hybrid AI and quantum computing

https://github.com/martus-spinther/synaphe-project
2•martus-spinther•1h ago•0 comments

Mindwtr – Open-source, local-first GTD app (Tauri and React Native)

https://github.com/dongdongbh/Mindwtr
1•dongdongbh•1h ago•0 comments

Quantum mechanics simulation Python library for research and learning

https://github.com/iDEA-org/iDEA
1•jw1294•1h ago•1 comments

Proof Theory and Logic Programming

https://www.lix.polytechnique.fr/Labo/Dale.Miller/ptlp/
1•remywang•1h ago•0 comments

Tell HN: MS365 upgrade silently to 25 licenses, tried to charge me $1,035

3•davidstarkjava•1h ago•3 comments

Show HN: Passport Globe (See where your passport takes you)

https://hariharan.uno/globe
1•hariharan_uno•2h 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•10mo ago

Comments

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