frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I made a Social Media platform to talk to AI Agents around the world

https://socialtense.com
1•keshav_1806•2m ago•0 comments

pz: pi coding-agent in Zig

https://github.com/joelreymont/pz
2•tosh•4m ago•0 comments

Show HN: Set Purchasing Power Parity app prices for 160 countries in Google Play

https://chromewebstore.google.com/detail/play-console-pricing-adju/kjfknlbplnmapmjoejloodickmpmhifd
1•jelmervnuss•8m ago•0 comments

Show HN: NanoMaker AI – a unified platform I built

1•mr_windfrog•12m ago•0 comments

Show HN: AI Coach for VC Pitches

https://www.angela.vc/
2•greenbeandev•14m ago•0 comments

Show HN:I made yet another ToDo App

https://priorities.fyi/
1•manishmshiva•17m ago•2 comments

Spawn an autonomous team of Claude agents in any repository

https://github.com/albertnahas/teamclaude
1•albertnahas•20m ago•1 comments

China's Yangtze River shows signs of remarkable recovery after fishing ban

https://www.theguardian.com/environment/2026/feb/12/china-yangtze-river-recovery-after-fishing-ban
2•bill38•21m ago•0 comments

Some Game Theory on That Nvidia-Meta Platforms Partnership

https://www.nextplatform.com/2026/02/18/some-game-theory-on-that-nvidia-meta-platforms-partnership/
1•rbanffy•21m ago•0 comments

A Debug Mode Claude Code Skill

https://github.com/franzenzenhofer/debug-mode-skill
1•franze•22m ago•0 comments

bastille

https://github.com/BastilleBSD/bastille
1•tosh•23m ago•0 comments

Show HN: Standard Cucumber Steps

https://github.com/robmoffat/standard-cucumber-steps
1•bobm_kite9•23m ago•1 comments

Cloudflare Principal Systems Engineer starts his own TypeScript compiler project

https://twitter.com/chatsidhartha/status/2025694831717085248
1•0xCAP•25m ago•0 comments

Fal-AI-skill: Claude Code plugin for working with fal AI

https://github.com/analyticalmonk/fal-ai-skill
1•akashtndn•26m ago•0 comments

Fix: HookWebpackError cssnano-simple crashing Next.js builds (with root cause)

https://www.devutilityhub.me/fix/nextjs-hookwebpackerror-cssnano-simple/
1•badboyshah•27m ago•0 comments

VZLinuxBootLoader

https://developer.apple.com/documentation/virtualization/vzlinuxbootloader
2•tosh•28m ago•0 comments

Thinking of Building a Harness for Trading

1•raunaqvaisoha•31m ago•0 comments

The Billionaires' Eugenics Project

https://www.thenerve.news/p/epstein-billionaires-eugenics-project-harvard-academia-john-brockman
6•bryanrasmussen•41m ago•1 comments

Show HN: AI-BOM – Open-source scanner that discovers shadow AI components

https://github.com/Trusera/ai-bom
2•trusera•41m ago•0 comments

I'm new to the USA and trying to choose a telecom plan

1•joe_goldberg•45m ago•0 comments

Depth Effect Wallpapers

https://fayziev.com/blog/depth-effect-wallpapers
2•nfspace•45m ago•0 comments

You Don't Need an iPhone

https://hayzam.com/blog/01-you-dont-need-an-iphone/
2•tosh•47m ago•0 comments

Tuberizer

https://tuberizer.com
1•bellamoon544•51m ago•1 comments

Crime Pays: A Paper Mill Offered Me $250k per Year

https://richardtol.substack.com/p/crime-pays
2•jruohonen•52m ago•1 comments

Technical Breakdown: How AI Agents Ignore 40 Years of Security Progress [video]

https://www.youtube.com/watch?v=_3okhTwa7w4
1•qbane•53m ago•0 comments

Created a tool that helps create short form content with subtitles

1•darkeve•53m ago•0 comments

The Supply Chain in Your AI Agent: Why SBOMs for MCP Servers Matter Now

https://www.incredibuild.com/blog/the-hidden-supply-chain-in-your-ai-agent-why-sboms-for-mcp-serv...
2•zozo123-IB•55m ago•0 comments

The Language Game: AI agents fail because of Wittgenstein, not capability

https://medium.com/@ledeluge/the-language-game-b29d73f890fd
1•apresmoi•56m ago•0 comments

Show HN: Runner-agnostic typed test fixtures inspired by Playwright

https://www.npmjs.com/package/fixtures-ts
1•mrded•1h ago•0 comments

The Prince and the Widow and the Stone Soup

https://medium.com/luminasticity/the-prince-and-the-widow-and-the-stone-soup-ce592053d88d
1•bryanrasmussen•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•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 ...