frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Wi.kifa.st

https://wi.kifa.st/
1•jasoncartwright•1m ago•0 comments

Why scheduled VM shutdowns in Azure become harder than they look

https://www.cloudtoggle.com/blog-en/azure-start-stop-alternative/
1•dwitherden•1m ago•0 comments

Movie poster artist Tony Stella dies

https://mixnmojo.com/news/Movie-poster-artist-Tony-Stella-dies
1•LaSombra•1m ago•0 comments

Plasticity and language in the anaesthetized human hippocampus

https://www.nature.com/articles/s41586-026-10448-0
1•bookofjoe•2m ago•0 comments

UFO Release 1: Presidential Unsealing and Reporting System for UAP Encounters

https://www.war.gov/UFO/#release
1•thinkingemote•3m ago•0 comments

How LLM Inference Works

https://twitter.com/akshay_pachaar/status/2050941458614751327
1•gmays•6m ago•0 comments

The $50B Layer Sitting on Top of Salesforce That Nobody's Built Yet

https://revkit.ai/
1•TaylorGr•7m ago•1 comments

First async A2A framework, needs someone who cares

https://github.com/GiulioSurya/Obelix
2•GiulioSurya•8m ago•1 comments

Ask HN: Which memory systems are you using in your agents?

3•dennisy•8m ago•0 comments

A Context Editor Is All Codex Needs

https://github.com/HaShiShark/context-editor-agent
1•HaShiShark•8m ago•0 comments

The Boring Part of Bell Labs

https://acesounderglass.com/2025/11/15/the-boring-part-of-bell-labs/
1•surprisetalk•10m ago•0 comments

Robot Monk at a Buddhist Temple in South Korea

https://www.smithsonianmag.com/smart-news/meet-gabi-the-new-robot-monk-at-a-buddhist-temple-in-so...
1•andsoitis•11m ago•0 comments

Show HN: Crit – local review tool for agent plans and code diffs

https://crit.md/
4•tomasz-tomczyk•13m ago•2 comments

Space: Large difference in efficiency between what was possible & what was done

https://twitter.com/ID_AA_Carmack/status/2052486841174049113
1•tosh•15m ago•0 comments

Phishing Arena – multi-agent LLM tournament to study adversarial email security

https://github.com/Krabby24/phishing-arena
1•krabby24•16m ago•0 comments

Let's Standardize the 1970 Epoch

https://github.com/billpg/1970EpochalTime/
2•billpg•19m ago•0 comments

Git LFS server with affordable storage

https://github.com/unknwon/git-lfs-server
2•joe2010xtmf•20m ago•0 comments

US Adds 115,000 Jobs in April

https://www.ft.com/content/245e5c30-0a0b-43cd-b4b5-13f023c0b42d
2•alephnerd•20m ago•0 comments

InMusic will acquire Native Instruments, as NI joins brands from Akai to Moog

https://cdm.link/inmusic-will-acquire-native-instruments/
1•robenkleene•20m ago•0 comments

We're mapping the global peptide market

https://peptel.co/
2•mattg_•23m ago•0 comments

What Is an AI Control Plane

https://www.speakeasy.com/resources/ai-control-plane
1•ritzaco•23m ago•0 comments

SocialCrawl – search what people are saying across Reddit, X, TikTok, and 25

https://www.socialcrawl.dev
2•vaaselene•24m ago•0 comments

The human cost of unsafe abortions

https://ourworldindata.org/the-human-cost-of-unsafe-abortions
2•surprisetalk•25m ago•0 comments

Omerbenamram/mft: A parser for the MFT (Master File Table) format

https://github.com/omerbenamram/mft
1•ankitg12•28m ago•0 comments

HST – shape mapping via one eigenfunction, +42% ZoomOut, +52% FMaps

https://github.com/sel8888/harmonic-shape-transform-2026-koncept
1•sel8888•28m ago•0 comments

The terminal is still the integration point: why I built Workdash

https://amolnotes.substack.com/p/the-terminal-is-still-the-integration
1•amol-•30m ago•1 comments

Show HN: An agent that tunes its own cache

5•kaliades•30m ago•0 comments

Cargo Cult Bureaucracy

https://graphthinking.blogspot.com/2026/05/cargo-cult-bureaucracy.html
1•physicsgraph•31m ago•0 comments

Claude Says No

https://wadetregaskis.com/claude-says-no/
1•colejohnson66•32m ago•0 comments

A web page that shows you everything the browser told it without asking

https://sinceyouarrived.world/taken
2•mwheelz•33m 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•12mo ago

Comments

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