frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Official Sidekiq TUI

https://www.mikeperham.com/2026/03/10/sidekiq-in-the-terminal/
1•manu3569•56s ago•0 comments

Show HN: Argo – Turn Playwright scripts into polished demos with AI voiceover

1•shreyask•1m ago•0 comments

Free Email List Cleaner – Improve Email Deliverability and Campaign Performance

1•Johnhenryer•1m ago•0 comments

AI, Layoffs and the Shifting Tech Job Landscape

https://inc42.com/buzz/ai-layoffs-and-the-shifting-tech-job-landscape/
1•saikatsg•5m ago•0 comments

Made-in-Canada Circuit Boards

https://www.reilindustrial.com/
2•jbm•9m ago•0 comments

The MacBook Air 13 (M5) is still the best ultraportable I've ever used

https://www.techradar.com/computing/macbooks/apple-macbook-air-13-inch-m5-review
1•mounram•10m ago•0 comments

Precious metals boom catches the attention of organized crime in Mexico

https://english.elpais.com/international/2026-02-21/precious-metals-boom-catches-the-attention-of...
2•PaulHoule•10m ago•0 comments

How Safe Is Plasma Donation?

https://www.nytimes.com/2026/03/13/health/plasma-donation-safety.html
1•koolba•10m ago•0 comments

Most EU startups use US hosting services

https://www.cloudinfraatlas.eu/scan/
1•domdaddydo•11m ago•2 comments

The anxiety driving AI's brutal work culture is a warning for all of us

https://www.theguardian.com/technology/ng-interactive/2026/feb/17/ai-startups-work-culture-san-fr...
5•saikatsg•13m ago•0 comments

The Boom in Autism Therapy Is Medicaid's Fastest-Growing Jackpot

https://www.wsj.com/health/healthcare/autism-therapy-medicaid-payments-640aa435
1•impish9208•13m ago•1 comments

Show HN: Anthrology – Time-Traveling Radio

https://anthrology.site/
3•airstrike•14m ago•0 comments

U.S. Tech Giants Flocked to the Persian Gulf. Now They Are Targets

https://www.nytimes.com/2026/03/13/technology/amazon-google-persian-gulf-war.html
9•standardUser•17m ago•0 comments

A one-question experiment to measure trust

https://trust-ledger-11.preview.emergentagent.com/trust-test
1•roeik•18m ago•0 comments

Show HN: Mutate – free inline text replacement for Mac

https://github.com/robert-v/Mutate-public
2•rob3rth•18m ago•1 comments

Evan You shows VOID: Vite-native deployment platform [video]

https://www.youtube.com/watch?v=Bp86buftbX8
1•CharlesW•19m ago•0 comments

Digg: A Hard Reset, and What Comes Next

https://digg.com/
2•pavel_lishin•21m ago•2 comments

Florida's New "Thought Police" Bill Is Real (HB 945) [video]

https://www.youtube.com/watch?v=9wjnBWnL8bM
1•hrimfaxi•21m ago•1 comments

AI engineer uses ChatGPT+AlphaFold to develop cancer vaccine for his dog

https://www.theaustralian.com.au/business/technology/tech-boss-uses-ai-and-chatgpt-to-create-canc...
4•bensandcastle•23m ago•1 comments

Right to Compute Act (NH HB1124)

https://legiscan.com/NH/text/HB1124/id/3286560
1•maxwell•25m ago•0 comments

GitHub infuriates students by removing some models from free Copilot plan

https://www.theregister.com/2026/03/13/microsoft_github_removes_models_student_plan/
2•raybb•28m ago•0 comments

Who Goes Nazi? (1941)

https://harpers.org/archive/1941/08/who-goes-nazi/
12•Anon84•29m ago•2 comments

Reverse-engineering Claude's generative UI – then building it for the terminal

https://michaellivs.com/blog/reverse-engineering-claude-generative-ui/
1•gmays•29m ago•0 comments

coming soon: fashion critique newsletter

https://igasped.substack.com/about
2•kholiflower•31m ago•1 comments

Show HN: I save £300/mo by auto-scaling my staging cluster at night

https://github.com/tiny-systems/desktop-client
1•gtpoxa•32m ago•0 comments

Claude Visual and Interactive Content

https://support.claude.com/en/articles/13641943-visual-and-interactive-content
2•droidjj•33m ago•0 comments

Accidental complexity, essential complexity, and Kubernetes (2022)

https://jamsocket.com/blog/complexity-kubernetes
1•Tomte•35m ago•0 comments

US Gas spending increase since Feb 28

https://gas-cost-of-iran-war.netlify.app/
2•loss_flow•35m ago•2 comments

Show HN: DJX – Convention over Configuration for Django (Rails-Inspired CLI)

2•RedsonNgwira•36m ago•0 comments

Waller: A game teaching the fundamentals of drystone walling

https://www.orthodoxmasonry.com/waller
4•CGMthrowaway•37m 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 ...