frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

From one-shot to agentic diagnostic analysis

https://haulos.com/blog/agentic-diagnostics-analysis/
1•hardsnow•1m ago•0 comments

Patriot Copy

https://chromewebstore.google.com/detail/patriot-copy/kamombliggehkgokinomjcjboicemmio
1•very_good_man•1m ago•1 comments

Remote MCP Servers: Hosting, Authentication and Best Practices

https://www.kapa.ai/blog/remote-mcp-servers-hosting-authentication-best-practices
1•mooreds•2m ago•0 comments

Giving our AI agent 100k tools made it worse

https://getviktor.com/blog/what-breaks-when-your-agent-has-100000-tools
1•peteralbert•2m ago•1 comments

First Brands row hints at banks' shadow exposure

https://www.reuters.com/commentary/breakingviews/first-brands-row-hints-banks-shadow-exposure-202...
1•petethomas•2m ago•0 comments

3DIMLI – Sell Software and Video, Zero Commission, Direct Payments

https://www.3dimli.com
1•arpit077•3m ago•1 comments

Hugging Face Storage Buckets: Mutable, non-versioned object storage at $12/TB

https://huggingface.co/blog/storage-buckets
1•victormustar•3m ago•0 comments

Show HN: Server Automation in TypeScript

https://www.ignition.sh/
1•tibozaurus•4m ago•0 comments

The 'number station' sending mystery messages to Iran

https://www.ft.com/content/86c4a4ca-ca06-4fc8-90fe-4f46357b804f
1•g-mork•4m ago•0 comments

Show HN: I reproduced the CL1 DOOM policy in 132 parameters

https://www.mikeayles.com/blog/its-just-weights/
1•mikeayles•6m ago•0 comments

Day Week Job Board

https://fourdayweek.co.uk/
1•robtherobber•6m ago•0 comments

Auto-accept everything and nothing else

https://github.com/HalfEmptyDrum/press-one
1•Kai20211111•7m ago•1 comments

Windows 11 taskbar's new Internet Speed Test tool is a shortcut to Bing.com

https://www.windowslatest.com/2026/03/10/windows-11-taskbars-new-internet-speed-test-tool-is-a-sh...
3•akyuu•8m ago•1 comments

The Process of Movie Casting Has Changed Drastically

https://www.nytimes.com/2026/03/09/movies/oscars-casting-award-auditions-movies.html
2•ripe•9m ago•0 comments

New multimodal Gemini embeddings from Google (videos and PDFs supported)

https://haystack.deepset.ai/blog/multimodal-embeddings-gemini-haystack
1•kacperlukawski•13m ago•0 comments

Ten Thoughts on Government Data

https://www.statecraft.pub/p/ten-thoughts-on-government-data
1•casca•13m ago•0 comments

Show HN: MoveAlerts.ai – AI that distills stock news in real-time

https://www.movealerts.ai/
1•pyfreak182•13m ago•0 comments

SQLite Concurrency in Go: What We Learned Building a Desktop AI IDE

https://chatml.com/blog/sqlite-concurrency-in-go-desktop-ai-ide
1•mcastilho•14m ago•0 comments

YouTube Now Worlds Largest Media Company, Topping Disney

https://www.hollywoodreporter.com/business/digital/youtube-worlds-largest-media-company-2025-tops...
2•speckx•14m ago•0 comments

Show HN: SnapDrift – a pluggable visual regression workflow for GitHub Actions

https://github.com/ranacseruet/snapdrift
1•ranacseruet•15m ago•0 comments

Judge blocks Perplexity's bot Amazon shopping in early test of agentic commerce

https://www.geekwire.com/2026/judge-blocks-perplexitys-ai-bot-from-shopping-on-amazon-in-early-te...
2•spenvo•16m ago•0 comments

Ask HN: What would a developer-first alternative to Shopify look like?

1•google_mfg•16m ago•0 comments

Benchmarking Culture

https://www.argmin.net/p/benchmarking-culture
1•bearseascape•18m ago•0 comments

Slate Auto switches CEOs ahead of launch later this year

https://sherwood.news/tech/tesla-killer-slate-auto-switches-ceos-ahead-of-launch-later-this-year/
1•avonmach•19m ago•0 comments

New ways to learn math and science in ChatGPT

https://openai.com/index/new-ways-to-learn-math-and-science-in-chatgpt
1•meetpateltech•21m ago•0 comments

Show HN: Emotive Engine – I wrote 8 elemental shaders to prove one pattern works

https://github.com/joshtol/emotive-engine
1•emotiveengine•21m ago•1 comments

Turbopuffer: Object Storage-native Database for Search [video]

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

Who's a Better Writer: A.I. Or Humans? Take Our Quiz

https://www.nytimes.com/interactive/2026/03/09/business/ai-writing-quiz.html
2•tiahura•24m ago•0 comments

Tommy DeCarlo, Boston Fan Who Became Their Lead Singer, Dead at 60

https://www.rollingstone.com/music/music-news/tommy-decarlo-boston-singer-dead-obituary-1235527355/
2•bookofjoe•25m ago•2 comments

The Bay Area Considers the Unthinkable: Life Without BART

https://www.nytimes.com/2026/03/10/us/bart-bay-area-san-francisco-transit.html
2•mitchbob•26m 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 ...