frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Agentic AI Design Patterns for Developers (2026)

https://learnagenticpatterns.com
1•ankitg12•54s ago•0 comments

Local-First Twitter Workspace

https://birdclaw.sh/
1•cat-whisperer•1m ago•0 comments

Beyond Senior: Consider the staff path

https://hawksley.org/2026/01/14/beyond-senior.html
2•RyeCombinator•1m ago•0 comments

Your Function's Doppelgänger (Fenchel Conjugate)

https://fedemagnani.github.io/math/2025/07/04/fenchel.html
1•drunello•2m ago•0 comments

Spec-Drive Development (SDD) compressed with math-glyphs

https://lab5.ca/blog/spec-driven-development/
1•kborovik•3m ago•0 comments

Awesome: Lists about all kinds of interesting topics

https://github.com/sindresorhus/awesome
1•danborn26•5m ago•0 comments

Show HN: I made a compiler/VM for untrusted scripts

https://autolang.vercel.app/docs/philosophy-vision
1•hoansdz•6m ago•0 comments

Nendo's Wonderful Toru, an Electric Kettle for Alessi

https://www.core77.com/posts/143823/Nendos-Wonderful-Toru-an-Electric-Kettle-for-Alessi
1•surprisetalk•7m ago•0 comments

Search engines alternatives now that Google isn't Google anymore

https://techcrunch.com/2026/05/21/six-search-engines-worth-trying-now-that-google-isnt-really-goo...
2•elorant•11m ago•0 comments

Happy Towel Day HN

https://en.wikipedia.org/wiki/Towel_Day
1•salutis•17m ago•0 comments

PEEK: Give Your Agent an Orientation Cache (MIT CSAIL, Khattab group)

https://zhuohangu.github.io/blog-post-peek/
2•galsapir•17m ago•0 comments

Ask HN: Local model experiences with 'high-reasoning distill' finetunes

1•sleepyeldrazi•17m ago•0 comments

Agents Just Need APIs

https://agent-data.dev/blog/benchmarking-ai-agent-web-access/
2•jb_hn•18m ago•0 comments

Velocity in Every Voxel – Perception in Robotics

https://atomsfrontier.substack.com/p/velocity-in-every-voxel
1•jpatel3•19m ago•0 comments

Facebook's Flow is being ported to Rust

https://github.com/facebook/flow/blob/main/rust_port/rust_port_status.md
1•mirekrusin•20m ago•0 comments

Pope Leo warns AI revolution driven by 'idolatry of profit'

https://www.ft.com/content/12313f08-991d-4079-9631-9ce7ae70c3e3
2•1vuio0pswjnm7•20m ago•0 comments

Ask HN: Did agentic coding change the way you think about commit granularity?

1•luodaint•21m ago•0 comments

Show HN: Stumpy – StumbleUpon Re-Created

https://chromewebstore.google.com/detail/stumpy/blfpeiakahiemhdiaaaacfgmdmdocfem
1•postatic•21m ago•0 comments

China launches 'human artificial embryos' into space: off-world reproduction?

https://www.livescience.com/space/space-exploration/china-launches-human-artificial-embryos-to-sp...
1•bookofjoe•21m ago•0 comments

Code Golf

https://code.golf/
1•alabhyajindal•21m ago•0 comments

Unitree Develops Production-Ready Mech Suit

https://www.core77.com/posts/144165/Unitree-Develops-Production-Ready-Mech-Suit
1•surprisetalk•22m ago•0 comments

FuguIta – An OpenBSD-Based Live System

https://fuguita.org/
2•ska80•23m ago•0 comments

The generation vs. verification delta explains why LLM's are useful

https://simianwords.bearblog.dev/the-generation-vs-verification-delta-explains-why-llms-are-useful/
1•simianwords•24m ago•0 comments

The Evolution of Program State – Queue

https://spawn-queue.acm.org/doi/10.1145/3799737
1•rbanffy•25m ago•0 comments

I saw the future of Android Auto, and now Google has me dreading my own car

https://www.techbuzz.ai/articles/i-saw-the-future-of-android-auto-and-now-google-has-me-dreading-...
2•teleforce•28m ago•0 comments

How to Migrate from Vimeo to Bunny Stream

https://bunny.net/blog/how-to-migrate-from-vimeo-to-bunny-stream/
1•m_nalikowski•31m ago•0 comments

The Social Contract of Writing

https://jola.dev/posts/the-social-contract-of-writing
1•shintoist•32m ago•0 comments

Notebooklm-guide.com – 1k Battle-Tested Prompts and 59 Power Workflows (2026)

https://notebooklm-guide.com/
1•ZeroshotCraft•32m ago•0 comments

Silicon Valley takes its AI pitch to the pope

https://www.politico.eu/article/pope-leo-xiv-ai-meetings-silicon-valley-vatican/
2•vrganj•34m ago•0 comments

Leave Me Behind

http://androidessence.com/leave-me-behind/
2•mooreds•34m 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•1y ago

Comments

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