frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What is your craziest idea to launch in this AI era?

1•Clikdeo•5m ago•0 comments

Show HN: SeaTicket – AI agent that resolve issues from GitHub, email and forums

1•Daniel-Pan•17m ago•0 comments

SalaryPeel – A fast, visual, ad-free net salary calculator for expats

https://salarypeel.com/
1•SprekendStefan•22m ago•1 comments

Exercises in benchmarking, evals, and experimental design, part 6

https://www.patreon.com/posts/exercises-in-and-160473058
1•mfrw•23m ago•0 comments

OpenAI plots biggest ChatGPT overhaul since launch

https://www.ft.com/content/ca0f5f5e-fb9a-41a0-a2a9-0127e15b7db9
1•mmarian•24m ago•1 comments

China is killing Europe's chemicals industry. Brussels wants to intervene

https://www.politico.eu/article/europes-fightback-against-china-may-come-too-late-for-its-chemica...
1•leonidasrup•27m ago•0 comments

Google Neglects Android

https://bsky.app/profile/grapheneos.org/post/3mnpog5jpk223
2•maelito•28m ago•0 comments

Giulioz: MMO-CHIP: From Microscope to Verilog in an hour [video]

https://www.youtube.com/watch?v=5211iYEqnzo
1•rasz•33m ago•0 comments

A Technical Deep Dive into the New Raycast

https://www.raycast.com/blog/a-technical-deep-dive-into-the-new-raycast
1•GeneralMaximus•34m ago•0 comments

What's the best AV1 encoder in 2025? I encoded four thousand GIFs to find out

https://catskull.net/libaom-vs-svtav1-vs-rav1e-2025.html
1•RMPR•35m ago•0 comments

Sycophantic LLMs Mislead Novices in Problem-Solving Tasks [pdf]

https://dl.acm.org/doi/pdf/10.1145/3772318.3791365
1•azhenley•38m ago•0 comments

Cannibalism

https://b-ark.ca/2026/06/07/cannibalism.html
1•srijan4•41m ago•0 comments

Guardian Angels: LLM Personalization for Productivity and Security

https://gwern.net/guardian-angel
1•reasonableklout•41m ago•0 comments

Do agents.md files help coding agents?

https://twitter.com/rasbt/status/2063649136323252397
2•smushback•41m ago•0 comments

Sparsely gated tiny linear experts

https://arxiv.org/abs/2606.07414
1•E-Reverance•43m ago•0 comments

99.9999% of you should in fact not being "looping" your agent

https://xcancel.com/ThePrimeagen/status/2063746333023043966
1•tempaccount420•45m ago•0 comments

We must not grant AI agents legal personhood

https://www.ft.com/content/b8cc4bf4-6d3c-4974-8428-9a091983c473
1•petethomas•45m ago•0 comments

RFC for 700 HTTP Status Codes

https://github.com/joho/7XX-rfc
1•edent•46m ago•0 comments

Show HN: 100fasttools – small, fast browser tools

https://100fasttools.com/
1•haoya•46m ago•0 comments

Automatia Update: Unbalanced Skills

https://libriscv.no/blog/unbalanced-bills/
1•fwsgonzo•47m ago•0 comments

Arconia for Spring Boot: DevEx, Observability, Multitenancy, GenAI, Cloud Native

https://arconia.io/
2•thomasvitale•50m ago•0 comments

What to read to understand your next employer

https://www.economist.com/business/2026/06/04/what-to-read-to-understand-your-next-employer
1•petethomas•52m ago•0 comments

Bug Fixes for Larkos

1•Okerew•54m ago•0 comments

Wow, if it's this easy in 1998, I bet it'll be even easier in 2026

https://retro.social/@ifixcoinops/116711332505710610
32•rihegher•54m ago•6 comments

How to transform your social life

https://www.bitsofwonder.co/p/how-to-make-a-lot-of-friends
1•eatitraw•57m ago•0 comments

Denmark midfielder Eriksen collapses on pitch during international friendly

https://www.theguardian.com/football/2026/jun/07/denmark-midfielder-christian-eriksen-collapses-o...
3•teleforce•57m ago•0 comments

Ask HN: What do you do with LLM articles?

2•sirnicolaz•1h ago•0 comments

Show HN: Envguard – Like ESLint but for your environment variables

https://github.com/Vamshavardhan50/envguard
1•Vamsha50•1h ago•0 comments

Today I disabled IPv6 on my home router entirely

https://xcancel.com/geerlingguy/status/2063803351343472992
4•commandersaki•1h ago•0 comments

Jevons Paradox

https://en.wikipedia.org/wiki/Jevons_paradox
4•chynkm•1h 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 ...