frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why Kanji survived in Japan but not in Korea or Vietnam [video]

https://www.youtube.com/watch?v=61kf0AY5rzY
1•teleforce•1m ago•0 comments

Show HN: Convert Audio to Text – NeatScribe

https://neatscribe.com
1•kadeus•3m ago•0 comments

Show HN: Sayou: Open-source agent workspace with versioned files and MCP tools

https://github.com/pixell-global/sayou
1•syumpx•5m ago•1 comments

Elon Musk posted about race almost every day in January

https://www.theguardian.com/technology/2026/feb/12/elon-musk-posts-january-white-supremacists
6•tastyface•8m ago•0 comments

AI-recorded meetings can go horribly wrong

https://www.afr.com/world/europe/this-is-how-ai-recorded-meetings-can-go-horribly-wrong-20260223-...
2•KnuthIsGod•9m ago•0 comments

Bug Traceability: Translating Bugs to Business Impact

https://docs.testchimp.io/blog/ux_bug_traceability/
1•nsamarasekera•11m ago•0 comments

Show HN: Clocktopussheets generated from your Git commits

https://clocktopus.app
1•allanclempe•11m ago•0 comments

How close are we to a vision for 2010?

https://shkspr.mobi/blog/2026/02/how-close-are-we-to-a-vision-for-2010/
2•ColinWright•13m ago•1 comments

WebSR: Real-time AI Upscaling of videos and images on the web

https://github.com/sb2702/websr
1•avaer•16m ago•0 comments

Worldmonitor: Real-time global intelligence dashboard

https://github.com/koala73/worldmonitor
1•nreece•17m ago•0 comments

Ari Emanuel

https://en.wikipedia.org/wiki/Ari_Emanuel
1•barrister•19m ago•0 comments

Manage Git Worktrees with Ease

https://grove.safia.sh/
1•doomroot13•23m ago•0 comments

Show HN: Openslack – An open source version of Slack

https://github.com/BilalG1/openslack
2•bgwmj•24m ago•0 comments

The A.I. Evangelists on a Mission to Shake Up Japan

https://www.nytimes.com/2026/02/22/world/asia/japan-ai-politics-election.html
1•JumpCrisscross•24m ago•0 comments

Pinterest is drowning in a sea of AI slop and auto-moderation

https://www.404media.co/pinterest-is-drowning-in-a-sea-of-ai-slop-and-auto-moderation/
5•trinsic2•25m ago•1 comments

What I learned designing a barebones UI engine

https://madebymohammed.com/miniui
2•teleforce•27m ago•0 comments

Prompt Injection = 100% Unbeatable – Try for Yourself

https://memorylight.org
1•ed-aylward•27m ago•0 comments

Show HN: Tandem is a CLI to assist in reading Latin texts

https://github.com/TeamDei/tandem
2•anoncatholic3•28m ago•1 comments

Windows93.net

https://www.windows93.net/
1•mistat•28m ago•0 comments

Show HN: MeterFlow – Usage-based billing engine with fraud detection

https://github.com/ajithmanmu/meterflow
1•ajithmanmu•29m ago•1 comments

Crawling a billion web pages in just over 24 hours, in 2025

https://andrewkchan.dev/posts/crawler.html
2•pseudolus•34m ago•0 comments

Show HN: Goxe – Fast log clustering on an i5 (Reduced to 1 alloc/log, road to 0)

1•nxus_dev•36m ago•0 comments

Social media companies face legal reckoning over mental health harms to children

https://apnews.com/article/social-media-trials-meta-zuckerberg-youtube-tiktok-addiction-85c4d813c...
4•1vuio0pswjnm7•37m ago•0 comments

AI Assistant instructs staff to ignore fire alarm and keep working

https://mastodon.online/@tagir_valeev/116057271527521893
2•serial_dev•37m ago•0 comments

Show HN: Sprime – weather, crypto, news, forex all normalized to one JSON schema

https://sprime.us/
1•mario0318•43m ago•0 comments

EmberOT Releases OT PCAP Analyzer v2.0.4 with Major Asset Fidelity Enhancements

https://www.emberot.com/newsroom/emberot-introduces-ot-pcap-analyzer-v2-0-4/
1•TheWiggles•45m ago•0 comments

Videos from the Royal Society

https://royalsociety.org/videos/
2•gurjeet•46m ago•0 comments

RuBisCO

https://en.wikipedia.org/wiki/RuBisCO
3•handfuloflight•49m ago•0 comments

Wendy's franchise database allegedly exposed in data breach

https://databreach.io/breaches/wendys-data-breach-allegedly-exposes-franchise-database/
4•dbio•51m ago•0 comments

Linked List Basics

http://cslibrary.stanford.edu/103/
1•teleforce•53m 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 ...