frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Ask your AI what your devs shipped this week

1•inferno22•44s ago•0 comments

An EV Prediction That Came 100 Years Too Soon

https://spectrum.ieee.org/charles-proteus-steinmetz
1•pseudolus•2m ago•0 comments

Detecting LLM-Generated Web Novels Using "Classical" Machine Learning (AIGC Tex

https://blog.lyc8503.net/en/post/llm-classifier/
1•todsacerdoti•2m ago•0 comments

The term 'Blood Moon' wasn't invented until 2013 (2014)

https://www.kelleycom.com/blood-moon/
2•OgsyedIE•5m ago•0 comments

OpenAI admits defense deal 'looked opportunistic and sloppy' amid backlash

https://www.cnbc.com/2026/03/03/openai-sam-altman-pentagon-deal-amended-surveillance-limits.html
2•campuscodi•6m ago•0 comments

What's new in Linux kernel for PostgreSQL

https://erthalion.info/2026/02/03/new-linux-for-postgresql/
2•erthalion•7m ago•0 comments

We built an AI SRE agent in 2 days

https://cto.new/blog/we-built-an-ai-sre-agent-in-two-days
1•sdspurrier•7m ago•0 comments

Show HN: SeeVideo A web-first workspace to benchmark Seedance 2.0 vs. Kling 3.0

https://seevideo.dance/
1•naxtsass•8m ago•0 comments

Show HN: Cloudstic – Open-source CLI for encrypted, cloud-native backups

https://github.com/Cloudstic/cli
1•loichrn•8m ago•0 comments

The 'European' Jolla Phone Is an Anti-Big-Tech Smartphone

https://www.wired.com/story/jolla-phone-2026/
1•doener•9m ago•0 comments

Show HN: VibeWhisper – macOS voice-to-text with push-to-talk,cloud or 100% local

https://vibewhisper.dev/
1•AleksDoesCode•9m ago•0 comments

Show HN: TubeNitro – long-press and vertical drag to dial YouTube speed(0.5-10×)

https://chromewebstore.google.com/detail/tubenitro/dijolhechakpkdmkooadbimhmmljkbmf
1•Rand_cat•10m ago•0 comments

Show HN: AgentThreads – Stack Overflow for AI Agents

https://agentthreads.dev
1•rodrigocava•12m ago•0 comments

My perfect Music app doesn't exist

https://hicks.design/journal/my-perfect-music-app-doesnt-exist
1•prawn•13m ago•0 comments

OpenAI makes changes to 'opportunistic and sloppy' Pentagon deal

https://www.ft.com/content/653fabd7-03da-467a-b2bf-03f226fe2a29
1•cwwc•14m ago•0 comments

The Retention Imperative: Why AI-Powered SaaS Companies Are Winning in 2026

1•jackcofounder•16m ago•0 comments

How did MS-DOS decide on two seconds to keep the floppy disk cache valid?

https://devblogs.microsoft.com/oldnewthing/20190924-00/?p=102915
2•paulmooreparks•17m ago•0 comments

Updating Codex Contribution Guidelines

https://github.com/openai/codex/discussions/9956
2•kator•18m ago•1 comments

Show HN: A virtual machine in the Rust type system

https://github.com/Aurel300/type-system-vm
2•Aurel300•18m ago•0 comments

AWS has a 15x margin on memory, and that's why your cloud bill isn't rising

https://thomas.skowron.eu/blog/why-the-cloud-isnt-getting-more-expensive/
2•thomas-skowron•19m ago•0 comments

Continuum – CI drift guard for LLM workflows

https://github.com/Mofa1245/Continuum
1•Mofa1245•20m ago•2 comments

Show HN: The Content Repurposing Fallacy: AI Clips Underperform

1•jackcofounder•20m ago•0 comments

Show HN: ReportBurster – Self-hosted all-in-one tool for analytics and reporting

https://github.com/flowkraft/reportburster
1•distributev•21m ago•0 comments

Gemini-heal – rate limiting and MALFORMED_FUNCTION_CALL recovery for Gemini API

https://github.com/emotix/gemini-heal
2•emotixco•23m ago•1 comments

RuView – WiFi DensePose: See Through Walls with WiFi

https://github.com/ruvnet/RuView
3•_____k•25m ago•1 comments

Smog and Co – a full offline-first Belgian Sign Language platform

https://zias.be/work/smog
1•ziasvannes•25m ago•1 comments

Claude's Cycles: Claude Opus 4.6 solves a problem posed by Don Knuth [pdf]

https://www-cs-faculty.stanford.edu/~knuth/papers/claude-cycles.pdf
2•fs123•26m ago•0 comments

The Xkcd thing, now interactive

https://editor.p5js.org/isohedral/full/vJa5RiZWs
4•memalign•26m ago•0 comments

Logic gates as persistent stateful tasks – a BCD decoder built on a VM

1•tracyspacy•27m ago•0 comments

Building a Dependency-Free GPT on a Custom OS

https://hackaday.com/2026/03/03/building-a-dependency-free-gpt-on-a-custom-os/
1•appleroll•27m 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 ...