frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Convert Any API Documentation into a CLI for AI Agents

https://github.com/giorgioleonardi/pug
1•giorgiolc•2m ago•1 comments

Many US states planning or have operating system age verification laws

https://www.gamingonlinux.com/2026/03/many-more-us-states-are-planning-or-already-have-operating-...
1•20after4•2m ago•0 comments

A retention mechanic for intrinsic learning that isn't Duolingo manipulation?

https://www.dailylabs.co/
1•aidanadd•4m ago•1 comments

Xkcd: Change in Slope

https://xkcd.com/2701/
3•ravenical•10m ago•1 comments

TLAi+ Benchmarks for Evaluating LLMs

https://github.com/tlaplus/TLAiBench
1•alhazrod•11m ago•0 comments

The Unison Language – The Big Idea

https://www.unison-lang.org/docs/the-big-idea/
1•deterministic•13m ago•0 comments

Two Years of Emacs Solo: 35 Modules, Zero External Packages, and a Full Refactor

https://www.rahuljuliato.com/posts/emacs-solo-two-years
2•celadevra_•14m ago•0 comments

Anthropic sues Pentagon claiming supply chain risk label could cost billions

https://www.ft.com/content/af404e0a-7abc-49bc-9584-cd4690152f86
1•Jimmc414•15m ago•0 comments

Iran's attacks on Amazon data centers in UAE, Bahrain signal a new kind of war

https://fortune.com/2026/03/09/irans-attacks-on-amazon-data-centers-in-uae-bahrain-signal-a-new-k...
3•rawgabbit•19m ago•0 comments

I will pay you if you ship a bug

https://www.getautonoma.com
1•Escafati•21m ago•2 comments

Trump says Iran war is 'complete, pretty much'

https://www.theguardian.com/world/2026/mar/09/us-israel-strikes-iran-supreme-leader
2•hedayet•23m ago•0 comments

Anti-stringing device for a coin acceptor (1996)

https://patents.google.com/patent/US5511645A/en
2•exvi•24m ago•0 comments

Sally, by Isaac Asimov (1953)

https://lecturia.org/en/short-stories/isaac-asimov-sally/8602/
2•antognini•24m ago•0 comments

Why software supply-chain review shouldn't be split across five tools

https://github.com/ferxalbs/rainy-updates
1•ferxalb•26m ago•1 comments

Porting MacPaint to Swift with Claude Code

https://weirdvibes.net/posts/2026-03-07-macpaint-part-1/
1•minorbug•26m ago•2 comments

White House blocks intelligence report warning of rising homeland terror threat

https://www.dailymail.co.uk/news/article-15622933/White-House-blocks-warning-rising-threat-linked...
3•heavyset_go•26m ago•0 comments

FreeBSD 14.4-Release Now Available

https://lists.freebsd.org/archives/freebsd-announce/2026-March/000228.html
2•cperciva•27m ago•0 comments

TrueNAS build system going closed source

https://github.com/truenas/scale-build
2•Teever•29m ago•0 comments

The little shipping company that's making Europe's sanctions look silly

https://www.politico.com/news/2026/03/07/mail-tracking-tariffs-berlin-moscow-00798601
2•thebeardisred•30m ago•0 comments

I Tried to Write a HTTP Service in Zig and Failed

https://maori.geek.nz/i-tried-to-write-a-http-service-in-zig-and-failed-72c4ce581e1d
1•grahar64•35m ago•0 comments

Leap Second

https://en.wikipedia.org/wiki/Leap_second
1•pinkmuffinere•38m ago•1 comments

Ask HN: Read‑only LLM tool for email triage and knowledge extraction?

1•maille•38m ago•0 comments

Show HN: Theme SaaS – Silicon Valley Meets Theme Hospital

https://themesaas.com/
1•fmfamaral•39m ago•0 comments

Ask HN: Any informed guesses on the actual size/architecture of GPT-5.4 etc.?

2•dsrtslnd23•39m ago•0 comments

ThinkPad X14 with Magic Bay

https://www.notebookcheck.net/A-ThinkPad-laptop-with-modules-Unannounced-slim-Lenovo-ThinkPad-X14...
1•bpierre•45m ago•0 comments

Is this the right approach to go from zero to designing quantum algorithms?

https://darshanfofadiya.com/zero-to-quantum/
1•DARSHANFOFADIYA•46m ago•1 comments

AI-powered 10-minute habit that taught my kid to read (and made me a better dad)

https://talperry.com/en/posts/genai/learning-to-read-with-ai/
1•teleforce•46m ago•0 comments

Getting Started in Common Lisp

https://lisp-stat.dev/blog/2026/03/09/getting-started/
1•oumua_don17•48m ago•0 comments

Would America be in recession without the super-rich?

https://www.economist.com/finance-and-economics/2026/03/08/would-america-be-in-recession-without-...
4•javanissen•48m ago•1 comments

Tesla FSD deteriorating "city miles to critical disengagement" 4,109 down to 809

https://twitter.com/GordonJohnson19/status/2031037879732883842
5•toss1•49m 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 ...