frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: A deadly simple tmux windows like start UI

https://github.com/liyu1981/tmux_start_ui
1•liyu1981au•41s ago•0 comments

Landslides kill 227 at Democratic Republic of Congo coltan mines

https://www.wsws.org/en/articles/2026/02/09/jndz-f09.html
1•PaulHoule•3m ago•0 comments

Paul Brainerd, conservationist who pioneered desktop publishing, dies at 78

https://www.seattletimes.com/business/local-business/paul-brainerd-conservationist-who-pioneered-...
1•dangle1•3m ago•1 comments

Global regulators say AI image tools don't get a free pass on privacy rules

https://www.theregister.com/2026/02/23/privacy_watchdogs_ai_images/
1•Bender•4m ago•0 comments

Dynamically making agents to monitor PRs

https://blog.firetiger.com/deploying-changes-faster-with-firetiger/
1•spenczar5•5m ago•0 comments

Show HN: Credit Units – A New Credit Market Primitive (Live on Solana Devnet)

https://github.com/zippy2261-lgtm/credit-units
1•CU-Soon•5m ago•0 comments

Those Who Can, Teach History

https://www.historytoday.com/archive/making-history/those-who-can-teach-history
1•samclemens•6m ago•0 comments

Acting Ethically in an Imperfect World

https://tante.cc/2026/02/20/acting-ethical-in-an-imperfect-world/
1•cratermoon•14m ago•0 comments

Add smooth cursor animation · zed

https://github.com/zed-industries/zed/pull/44770
1•dmmalam•15m ago•0 comments

Arcee-AI/Trinity-Large-Preview

https://huggingface.co/arcee-ai/Trinity-Large-Preview
1•handfuloflight•17m ago•0 comments

Show HN: Steerling-8B, a language model that can explain any token it generates

https://www.guidelabs.ai/post/steerling-8b-base-model-release/
2•adebayoj•19m ago•0 comments

The $200M Machine That Prints Microchips: The EUV Photolithography System [video]

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

Psychology suggests making a shopping list is a sign of sharper thinking

https://economictimes.indiatimes.com/news/international/us/still-making-a-shopping-list-psycholog...
6•ColinWright•20m ago•1 comments

CurveFit – Free browser-based scientific curve fitting with AICc model selection

https://calyphi.com/app
1•emsti•21m ago•0 comments

A reproducible VOID boundary across GPT, Claude, and Gemini (GPT-4o video)

https://doi.org/10.5281/zenodo.18750330
1•rayanpal_•22m ago•1 comments

Utah mom Kouri Richin Googled 'luxury prisons for the rich' after killing spouse

https://www.foxnews.com/us/utah-mom-kouri-richins-googled-luxury-prisons-rich-allegedly-killing-h...
1•randycupertino•22m ago•1 comments

Webflow Agent Skills by 224 Industries

https://github.com/224-Industries/webflow-skills
1•flashbrew•23m ago•0 comments

Shatner is making an album with 35 metal icons

https://www.guitarworld.com/artists/guitarists/william-shatner-announces-all-star-metal-album
5•mhb•24m ago•0 comments

Hegseth to meet Anthropic CEO as Pentagon threatens banishment

https://www.axios.com/2026/02/23/hegseth-dario-pentagon-meeting-antrhopic-claude
2•samsolomon•25m ago•0 comments

DeepSeek trained AI model on Nvidia's best chip despite US ban

https://www.reuters.com/world/china/chinas-deepseek-trained-ai-model-nvidias-best-chip-despite-us...
1•geox•34m ago•0 comments

iMessage AI Chatbot Demo

https://github.com/sibblegp/car-service-demo
1•gsibble•34m ago•0 comments

Enthusiasts used their home computers to search for ET

https://phys.org/news/2026-01-enthusiasts-home-scientists-homing.html
2•Anon84•36m ago•1 comments

ChatGPT finds an error in Terence Tao's math research

2•codexon•37m ago•0 comments

AWS says more than 600 FortiGate firewalls hit in AI-augmented campaign

https://www.theregister.com/2026/02/23/aws_fortigate_firewalls/
1•Bender•39m ago•0 comments

Firefox 148 Now Available with the New AI Controls / AI Kill Switches

https://www.phoronix.com/news/Firefox-148
6•Bender•42m ago•0 comments

Meta problem with URPF our bundle in Boca raton

https://metafixthis.com/
1•synthesis5x•44m ago•1 comments

Netflix sparks fury by cutting off access for almost 90M devices

https://www.dailymail.co.uk/sciencetech/article-15585211/netflix-cuts-support-older-devices-plays...
2•Bender•45m ago•1 comments

Paediatricians' blood used to make new treatments for RSV and colds

https://www.newscientist.com/article/2516079-paediatricians-blood-used-to-make-new-treatments-for...
1•colinprince•46m ago•0 comments

Ask HN: What Linux Would Be a Good Transition from Windows 11

2•Cyberis•46m ago•5 comments

U.S. Plans to Stop Funding Low-Earning Degrees. Indiana May Just End Them

https://www.insidehighered.com/news/government/state-policy/2026/02/23/indiana-bill-would-use-fed...
4•bikenaga•48m 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•9mo ago

Comments

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