frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Anthropic reveals changes to Claude's operating instructions caused degradation

https://venturebeat.com/technology/mystery-solved-anthropic-reveals-changes-to-claudes-harnesses-...
1•vednig•1m ago•0 comments

Aperture beta: better controls for the AI agent era

https://tailscale.com/blog/aperture-public-beta
1•Brajeshwar•1m ago•0 comments

termscp: a feature rich terminal UI file transfer and explorer

https://github.com/veeso/termscp
1•indigodaddy•2m ago•0 comments

85% of enterprises are running AI agents. Only 5% trust them enough to ship

https://venturebeat.com/security/85-of-enterprises-are-running-ai-agents-only-5-trust-them-enough...
1•vednig•2m ago•0 comments

The Download: supercharged scams and studying AI healthcare

https://www.technologyreview.com/2026/04/24/1136400/the-download-supercharged-scams-questionable-...
1•joozio•3m ago•0 comments

A 13-month-old LlamaIndex bug re-embeds unchanged content

https://sebastiantirelli.com/writing/llamaindex-embedding-churn/
1•tirelli•4m ago•0 comments

Show HN: Signova AI – DocuSign alternative for $7

https://signova.ai
1•parshi•4m ago•0 comments

Tensorlake is now an official Harbor environment runtime

https://www.tensorlake.ai/blog/tensorlake-harbor-environment-runtime
1•cooleel•8m ago•0 comments

AI Field Notes on the DGX Spark

https://manavsehgal.github.io/ai-field-notes/
1•manavsehgal2025•8m ago•0 comments

The Art of Crossword Creation

https://llama.gs/blog/index.php/2026/04/24/the-forgotten-art-of-crossword-creation/
2•major4x•8m ago•0 comments

Ask HN: I wanna hear about your experience with Claude Code and Codex

1•redaantar•8m ago•0 comments

Full Stack Open: Deep Dive into Modern Web Development

https://fullstackopen.com/en/
1•eustoria•9m ago•0 comments

Zodiac Killer may be tied to Black Dahlia case after 'code cracked,' DNA taken

https://www.foxnews.com/us/zodiac-killer-may-tied-black-dahlia-case-code-cracked-new-suspect-emerges
2•keepamovin•9m ago•0 comments

PIX – Share Images Without the Cloud

https://www.fainimade.blog/2026/03/pix-share-images-without-cloud.html
2•eustoria•12m ago•0 comments

Retrieval-Augmented Generation Is an Engineering Problem, Not a Model Problem

https://www.forbes.com/councils/forbestechcouncil/2026/04/24/retrieval-augmented-generation-is-an...
2•jamesgill•13m ago•0 comments

Variant – Endless designs for your ideas, just scroll

https://variant.com/
2•eustoria•13m ago•0 comments

Intel shutters open-source evangelism program, archives key community projects

https://www.tomshardware.com/software/intel-shutters-open-source-evangelism-program-and-archives-...
2•maxloh•15m ago•0 comments

A Catechism for Robots

https://kk.org/thetechnium/a-catechism-for-robots/
2•rafaelc•15m ago•0 comments

Show HN: Porting Open3D to Python without writing a LoC

https://chico.dev/Mirror-Bridge-Open3D-71-Lines/
2•fthiesen•18m ago•0 comments

Tesla (TSLA) discloses $2B AI hardware company acquisition buried

https://electrek.co/2026/04/23/tesla-tsla-quietly-discloses-2-billion-ai-hardware-acquisition-10q/
5•Bender•18m ago•2 comments

AI models, power, politics, and performance

https://dominiccummings.substack.com/p/1-ai-models-power-politics-and-performance
2•nowflux•18m ago•0 comments

A deep dive into the wild world of GitHub Actions' tagging formats

https://www.jvt.me/posts/2026/04/24/github-actions-tagging/
3•Brajeshwar•20m ago•0 comments

Relatives of dead or missing scientists grapple with impact of wild speculation

https://www.bbc.com/news/articles/cwyw9rpdl4po
4•cf100clunk•21m ago•1 comments

How do you handle context compression cloud workflows?

https://cloudgo.ai/
2•gtram20•23m ago•1 comments

'Scattered Spider' Member 'Tylerb' Pleads Guilty

https://krebsonsecurity.com/2026/04/scattered-spider-member-tylerb-pleads-guilty/
2•Bender•23m ago•0 comments

JackDanger/gzippy ·The fastest gzip on any hardware

https://github.com/JackDanger/gzippy
2•pkaeding•24m ago•0 comments

Redesigning the Recurse Center application to inspire curious programmers

https://www.recurse.com/blog/192-redesigning-the-recurse-center-application
2•nicholasjbs•24m ago•0 comments

Which one is more important: more parameters or more computation? (2021)

https://parl.ai/projects/params_vs_compute/
3•jxmorris12•25m ago•0 comments

Show HN: Claude proxy to record interactions-browse, search sessions, usage, MCP

https://github.com/tillahoffmann/cctape
2•tillahoffmann•25m ago•1 comments

Oral Argument Preview: Chatrie vs. United States

https://www.lawfaremedia.org/article/oral-argument-preview--chatrie-v.-united-states
2•hn_acker•29m 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•11mo ago

Comments

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