frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why the US Navy Won't Blast the Iranians and 'Open' Strait of Hormuz

https://responsiblestatecraft.org/iran-strait-of-hormuz/
1•KoftaBob•55s ago•0 comments

Semlib: Semantic Data Processing

https://anishathalye.com/semlib/
1•vismit2000•3m ago•0 comments

I built an O(1) physics engine to stop LLM hallucinations in construction

https://flooring-ai-matrix.streamlit.app/
1•svid•7m ago•0 comments

"An Endless Stream of AI Slop"

https://arxiv.org/abs/2603.27249
2•jruohonen•13m ago•0 comments

Cursor rules that prevent AI from hallucinating bad Next.js code

https://github.com/vibestackdev/vibe-stack
1•vibestackdev•14m ago•0 comments

Positron Flux: from DORA dashboards to explaining what changed

https://sklivvz.com/posts/introducing-positron-flux
3•sklivvz1971•15m ago•0 comments

Engineering Blog Posts from Top Tech Companies

https://www.engineering.fyi
1•abracos•17m ago•0 comments

Prompt intensity threshold effect on AI-generated invention quality (preprint)

https://zenodo.org/records/19347700
1•h_hasegawa•17m ago•0 comments

Causality optional? Testing the "indefinite causal order" superposition

https://arstechnica.com/science/2026/03/getting-formal-about-quantum-mechanics-lack-of-causality/
1•rbanffy•18m ago•0 comments

The Horrors That Could Lie Ahead If Vaccines Vanish

https://projects.propublica.org/childhood-vaccines-deaths-modeling/
3•littlexsparkee•23m ago•0 comments

Does RAG Help AI Coding Tools?

https://www.mikeayles.com/blog/rag-coding-tools/
1•mikeayles•23m ago•1 comments

What Happened to Procomm Plus

https://dfarq.homeip.net/what-happened-to-procomm-plus/
1•zoidb•24m ago•0 comments

HN: AI-native investing app that builds and adapts thematic portfolios to you

https://basketsai.com
1•pranav6226•25m ago•1 comments

The Racket Programming Language

https://www.racket-lang.org/
3•h4ch1•27m ago•0 comments

Golang Constmap by Daniel Lemire

https://twitter.com/lemire/status/2038320406432494059
2•pjf•27m ago•1 comments

What are the best resources to learn about Harness Engineering?

1•udayan_w•27m ago•0 comments

After 16 years and $8B, the military's new GPS software still doesn't work

https://arstechnica.com/space/2026/03/after-16-years-and-8-billion-the-militarys-new-gps-software...
2•rbanffy•28m ago•0 comments

Claude Code's source code has been leaked via a map file in their NPM registry

https://twitter.com/Fried_rice/status/2038894956459290963
37•treexs•30m ago•14 comments

LibreTranslate: Free and Open Source Machine Translation API

https://github.com/LibreTranslate/LibreTranslate
2•ahamez•33m ago•0 comments

David Foster Wallace and the problem of loneliness [video]

https://www.youtube.com/watch?v=FCfpOugmd9E
1•simonebrunozzi•35m ago•0 comments

£5M Funding for supply chain security innovation in UK

https://apply-for-innovation-funding.service.gov.uk/competition/2421/overview/3d6991fa-73b2-48c0-...
4•anonhaven•43m ago•0 comments

Tell HN: DeepL Moving Data to AWS

3•bilekas•44m ago•1 comments

The First Bullshit

https://www.joanwestenberg.com/the-worlds-first-bullshit/
2•viermalbe•44m ago•0 comments

Monitor Claude Code Usage with Grafana

https://braw.dev/blog/2026-03-28-monitor-claude-usage-with-grafana/
2•kisamoto•45m ago•1 comments

Databricks Compromised by TeamPCP

https://www.cryptika.com/teampcp-supply-chain-attack-allegedly-compromised-databricks-platform/
2•debarshri•46m ago•0 comments

Show HN: Stochos – Keyboard driven mouse control

https://github.com/museslabs/stochos
1•ploMP4•48m ago•0 comments

Fast and Gorgeous Erosion Filter

https://blog.runevision.com/2026/03/fast-and-gorgeous-erosion-filter.html
1•runevision•50m ago•1 comments

Tell HN: If your agent can create a PR, it can merge it too

https://github.com/orgs/community/discussions/182732
1•jamesfisher•52m ago•0 comments

The Reed and Pickup – The early internet was a feeling

https://reedandpickup.com/2026/03/30/the-early-internet-was-a.html
1•viermalbe•53m ago•0 comments

Caltech quantum startup Oratomic launches with achieving scaling breakthrough

https://www.oratomic.com/news/launch-announcement
1•chrysander•55m ago•1 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 ...