frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Ask your AI to start a business for you, resolved.sh

https://resolved.sh/
1•RancheroBeans•1m ago•0 comments

Solving Physics Olympiad via reinforcement learning on physics simulators

https://sim2reason.github.io/
1•ivansavz•3m ago•0 comments

Aurora

https://www.together.ai/blog/aurora
1•gmays•3m ago•0 comments

Observational constraints project a ~50% AMOC weakening by the end of century

https://www.science.org/doi/10.1126/sciadv.adx4298
2•ianrahman•5m ago•0 comments

Axol: Cheerful desktop companion that surfaces alerts from JSON payloads

https://roach.github.io/axol/
2•markchristian•6m ago•0 comments

How are you handling silent failures in multi-step agent workflows?

https://www.agentsentinelai.com/
1•skhatter•7m ago•1 comments

Anthropic in talks to give US Government access to its Mythos model

https://www.ft.com/content/c9f5b690-a10e-4c66-9245-017f8bfbc7b4
1•Cider9986•8m ago•1 comments

Software Is About to Get Cheap

https://www.bhusalmanish.com.np/blog/posts/ai-cheap-software-saas-future.html
1•okchildhood•13m ago•0 comments

The CTO of Barad-DûR: A Revisionist History of Mordor

https://heyslick.substack.com/p/the-cto-of-barad-dur-revisionist-history-mordor
2•wolfcola•14m ago•0 comments

Researchers Induce Smells with Ultrasound

https://www.uploadvr.com/researchers-induce-smells-with-ultrasound/
1•LorenDB•14m ago•0 comments

AST and LLM Navigation Tool

https://analect.dev/
1•ascent817•16m ago•0 comments

Realistic AI Avatars

https://percify.io
1•drepheus•16m ago•0 comments

Drive Without Gasoline – V8 Wood Gas Chevrolet Fleetside [video]

https://www.youtube.com/watch?v=bWnhtqDJwIU
1•johnnyApplePRNG•17m ago•0 comments

Stop Destroying Video Games

https://www.youtube.com/watch?v=xSla5vfGi3A
1•doppp•17m ago•0 comments

EU Parliament Hearing: Are Publishers Allowed to Disable Games You Bought? [video]

https://www.youtube.com/watch?v=oXcogLmxnJw
1•throwawayk7h•24m ago•0 comments

LLM inference infrastructure for a systems audience

https://blog.mihirnanavati.com
1•PaulHoule•26m ago•0 comments

Show HN: Valuepulse – search docs, query data, and build dashboards in one place

https://valuepulse.ai
1•ygudeta•28m ago•0 comments

Basic Intrusion Detection System with Mtree (FreeBSD)

https://henryleach.com/2026/03/basic-intrusion-detection-system-with-mtree/
1•DASD•37m ago•0 comments

Show HN: Hailuo 3.0 AI – AI Video Generator

https://hailuo30.net
1•danielmateo773•40m ago•0 comments

US Bill Mandates On-Device Age Verification

https://reclaimthenet.org/us-bill-mandates-on-device-age-verification
5•ronsor•42m ago•0 comments

Software Bonkers

https://craigmod.com/essays/software_bonkers/
1•mooreds•43m ago•0 comments

How AI changed your daily work at office?

1•XDataY•44m ago•0 comments

Opus 4.7 is horrible at writing

3•limalabs•46m ago•1 comments

Component "archive.ubuntu.com" and a few other components are Down

https://status.canonical.com/
1•SoftTalker•47m ago•2 comments

The first signed, drift-monitored W3C WebMCP manifest

https://getspeakable.ai/blog/webmcp-launch/
2•quickersilver•47m ago•0 comments

Has anyone used Claude Opus 4.7 API on Qubrid or another platform? Use case?

https://platform.qubrid.com/
1•tech_curator•53m ago•0 comments

Show HN: A collection of GPT-IMAGE-2 prompts from X(Twitter)

https://gptimage2.one/awesome-gpt-image-2-prompts
2•kevinhacker•57m ago•0 comments

IPC medley: message-queue peeking, io_uring, and bus1

https://lwn.net/Articles/1065490/
1•signa11•58m ago•0 comments

Robot golf vs. holes that keep getting harder [video]

https://www.youtube.com/watch?v=2OfjZ3ORJfc
1•Timothee•59m ago•0 comments

Parcae: Doing more with fewer parameters using stable looped models

https://www.together.ai/blog/parcae
1•gmays•1h 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 ...