frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Swift 6.3 Released

https://www.swift.org/blog/swift-6.3-released/
2•frizlab•1m ago•0 comments

Should I Start a Blog?

https://vote.williamangel.net/
1•datadrivenangel•2m ago•0 comments

Ask HN: Is there a secret satellite war?

1•_justinfunk•2m ago•0 comments

ChatGPT's optimal route to cross the US in the 1800s

https://twitter.com/austinzhenley/status/2036570186552385672
1•azhenley•2m ago•0 comments

Google's Android Automotive Is Moving from the Dashboard to the Car's 'Brain'

https://www.theverge.com/tech/899034/google-android-automotive-os-software-defined-vehicle
1•m463•4m ago•0 comments

Show HN: Lexplain – AI-powered Linux kernel change explanations

https://lexplain.net
1•daisydevel•5m ago•0 comments

Meta misled users about its products' safety, jury decides

https://www.theverge.com/policy/899910/meta-new-mexico-jury-verdict
1•donohoe•7m ago•0 comments

Why does QA → implementation still feel so broken in modern dev work?

https://github.com/chadsly/knit
1•chadsly•7m ago•0 comments

DeepMind listed a "Post-AGI" research job

https://twitter.com/SamuelAlbanie/status/2034299673356259497
2•marojejian•7m ago•1 comments

Claude can now control your Mac

https://claude.com/blog/dispatch-and-computer-use
1•champagnepapi•8m ago•1 comments

At Protocol Roadmap (Spring 2026)

https://atproto.com/blog/2026-spring-roadmap
3•Kye•8m ago•0 comments

OLED Sleeper – A per-monitor idle dimming tool for Windows

https://github.com/Quorthon13/OLED-Sleeper
1•Quorthon13•9m ago•1 comments

Show HN: Palettepoint.com, AI palette generator with 120K+ curated palettes

https://palettepoint.com
1•latentio•11m ago•0 comments

Apple's Worldwide Developers Conference returns the week of June 8

https://www.apple.com/newsroom/2026/03/apples-worldwide-developers-conference-returns-the-week-of...
1•alwillis•12m ago•0 comments

History of transportation: dominant modes and innovations, 1600-2100, by decade

https://claude.ai/share/43e9753a-caa4-499d-bcef-f9f1eac2f439
3•legel•14m ago•0 comments

Show HN: Origin – Git blame for AI agents (track which AI wrote every line)

https://getorigin.io
1•dolobanko•14m ago•0 comments

ReactOS Presented to President Putin (2012)

https://reactos.org/project-news/reactos-presented-president-putin/
1•alhazrod•15m ago•1 comments

Samsung Brings AirDrop Support to Quick Share with Galaxy S26 Series

https://news.samsung.com/us/samsung-airdrop-quick-share-galaxy-s26-series/
2•alwillis•15m ago•0 comments

Show HN: RentDataNow – free rent data for 4k US cities and 8k ZIP codes

https://rentdatanow.com/
3•misterinfo•17m ago•1 comments

The economics of language choice in the LLM area

https://felixbarbalet.com/simple-made-inevitable-the-economics-of-language-choice-in-the-llm-era/
2•jgrodziski•18m ago•0 comments

Show HN: Konform Browser v140.9.0-100

https://codeberg.org/konform-browser/source/releases/tag/140.9.0.100
2•konform•19m ago•0 comments

Meta must pay $375M for violating New Mexico child exploitation law

https://www.cnbc.com/2026/03/24/jury-reaches-verdict-in-meta-child-safety-trial-in-new-mexico.html
5•cdrnsf•19m ago•1 comments

Working with Coders

https://www.pablo.pm/p/working-with-coders-is-worth-your
2•pablito•21m ago•1 comments

Nvidia Quantitative Portfolio Optimization

https://build.nvidia.com/nvidia/quantitative-portfolio-optimization
1•skogstokig•21m ago•0 comments

Restoring Bleve search in Mattermost v11 with a fork and Claude Code

https://danielhnyk.cz/restoring-bleve-search-mattermost-v11/
1•yread•22m ago•0 comments

Diedream, a solo RPG to play just before falling asleep

https://libraryofwords.com/diedream-a-sleep-ttrpg/
1•ui301•22m ago•0 comments

Now Available: Depot CI

https://depot.dev/blog/now-available-depot-ci
1•paddy_m•23m ago•0 comments

Analyze Y Combinator Data

https://camelai.com/tools/yc-data-analyzer
1•bellareed•23m ago•0 comments

United Relax Row

https://www.united.com/en/us/newsroom/elevated.html
1•totaldude87•23m ago•0 comments

Adding evals to a satelite image agent with a Claude Skill

https://medium.com/warike/making-your-multi-modal-agent-reliable-aeebfe03e85e
2•jangletown•23m 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 ...