frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Low-effort THC usage tracker and visualizer

https://chronic-chronicler.com/
1•scienceisneato•2m ago•0 comments

Nora (Cat)

https://en.wikipedia.org/wiki/Nora_(cat)
1•dvrp•5m ago•0 comments

Ask HN: If HTML supersedes Markdown, Will it be performant across UIs?

1•zameermfm•6m ago•0 comments

Ask HN: Feedback on a verifiable shared-state protocol for inter-org systems

1•abhishek2580•8m ago•0 comments

How to get yourself to do things (2015)

https://www.raptitude.com/2015/03/how-to-get-yourself-to-do-things/
1•N-Krause•10m ago•0 comments

Agent-Friendly Documentation Spec

https://agentdocsspec.com/
1•taubek•11m ago•0 comments

Some Japanese snack packages are turning black and white as war depletes ink

https://apnews.com/article/iran-war-hormuz-color-ink-japan-3ce00fb5e9e9abeb6dd8116522272cec
3•petethomas•23m ago•0 comments

Show HN: Voting and Governance is now decentralized across all regions

https://www.youtube.com/watch?v=PXr1zrASF14
1•gaze272•24m ago•0 comments

Cortical Cloud – Code to Real Neurons

https://corticallabs.com/cloud
1•oldfuture•24m ago•1 comments

AMD Crafts Custom EPYC CPU with 128GB HBM3 (EPYC 9V64H) (2024)

https://www.tomshardware.com/pc-components/cpus/amd-crafts-custom-epyc-cpu-for-microsoft-azure-wi...
1•peter_d_sherman•24m ago•0 comments

Deterministic Fully-Static Whole-Binary Translation Without Heuristics

https://arxiv.org/abs/2605.08419
6•matt_d•26m ago•0 comments

Google introduces measure to stop doom scrolling

https://blog.google/products-and-platforms/platforms/android/pause-point/
2•paglaghoda•30m ago•1 comments

ZML: Between Jax and Llama.cpp

https://jaco-bro.github.io/blog/?post=zml_chat_250613.md
1•jaco-bro•31m ago•0 comments

Refactoring as Algebra: Small Steps to Clarity

https://ignition.github.io/posts/refactoring-as-algebra/
1•taubek•31m ago•0 comments

NEET UG – a med school exam is cancelled (India)

https://twitter.com/NTA_Exams/status/2054089524347871736
1•mfrw•32m ago•0 comments

I Want to Be a von Neumann Probe: Why We Need to Fix AI Safety

https://justinldew.substack.com/p/i-want-to-be-a-von-neumann-probe
1•jldew93•34m ago•0 comments

We tested super-resolution pre-filter for LPR OCR. It did nothing

https://www.wink.co/documentation/Neural-Super-Resolution-Pre-Filter-LPR-2026
1•xmichael909•38m ago•0 comments

How LLMs Work

https://arpitbhayani.me/blogs/how-llms-work/
1•skydiver7373•39m ago•0 comments

Show HN: One memory layer across every MCP-compatible AI tool

https://subvault.ai
1•gavinb-code•46m ago•0 comments

Reasoning-core: 130M-param guardrail keeping AI agents honest

https://github.com/jakubkrzysztofsikora/reasoning-core
1•mnvibe26x7•51m ago•0 comments

Show HN: SWEny, YAML workflows for AI agents I'm running in prod (triage, E2E)

https://github.com/swenyai/sweny
1•wickdninja•52m ago•0 comments

Hex: Introducing Generative Data Apps

https://hex.tech/blog/introducing-generative-data-apps/
1•tomtomau•54m ago•1 comments

The Space Shuttle and the Horse's Rear End

https://astrodigital.org/space/stshorse.html
1•thunderbong•57m ago•0 comments

Jupiter supercomputer breaks world record with 50-qubit quantum simulation

https://www.sciencedaily.com/releases/2026/05/260510234715.htm
1•jldew93•57m ago•0 comments

SSHD Log Security Analysis - popular languages SDKs

https://github.com/melezhik/Sparrow6/blob/master/task.check
1•melezhik•58m ago•6 comments

Prompting Patterns (Groq Documentation)

https://console.groq.com/docs/prompting/patterns
1•tacone•1h ago•0 comments

AI was made for junk mail

https://junkmailmagic.com
1•husky8•1h ago•0 comments

I got tired of realizing "discounts" weren't discounts

https://apps.apple.com/us/app/silicon-ai-price-comparison/id6764054291
2•stayoneup•1h ago•0 comments

Show HN: SelfCertForge, manage root CAs and self-signed certs on macOS/Windows

https://github.com/rbonestell/SelfCertForge
3•rbonestell•1h ago•0 comments

I vibecoded a game and got my first paying supporter

https://gunguesser.com
1•salad_v•1h 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•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•12mo 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•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.

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•12mo ago
In which Roko's Basilisk fires a warning shot.
jethronethro•12mo ago
This is why you test code or a script before running it for real. Live and learn, I guess ...