frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pixelrag: Web Screenshots Beat Text for Retrieval-Augmented Generation

https://arxiv.org/abs/2606.28344
1•rldjbpin•51s ago•1 comments

Show HN: FormGrid – Forms that can look like CLIs, pixel art, GeoCities and more

https://www.formgrid.com/
1•bjoernm•2m ago•0 comments

Codapult – Modular Next.js SaaS boilerplate with 70 modules and adapter pattern

https://codapult.dev
2•vladzoff•3m ago•0 comments

Pulse Best workout routine Song

https://open.spotify.com/album/4LhiT8dgLHlth64MgcijZr
1•mjbachhav•4m ago•0 comments

Show HN: 0-A.D. A free, open-source game of ancient warfare

https://play0ad.com/
1•smalltorch•4m ago•0 comments

macOS 28 will drop support for encrypted Mac OS Extended (HFS+) volumes

https://9to5mac.com/2026/07/08/psa-macos-28-will-drop-support-for-encrypted-mac-os-extended-volumes/
1•donatj•4m ago•0 comments

Show HN: On This Day

https://otd.dhimantparekh.com/
1•dhimant•4m ago•0 comments

TLS certificates for internal services done right

https://tuxnet.dev/posts/tls-for-internal-services/
2•mrl5•6m ago•1 comments

Are Bug Bounties Cooked?

https://hakluke.com/are-bug-bounties-cooked
1•speckx•6m ago•0 comments

My burner email blocklist blocked me

https://benjamin.piouffle.com/blog/burner-email-blocklists/
1•betree•8m ago•0 comments

New "Revenue Larping Trend" is this real?

https://www.larp.website/
1•noahjohnson1•9m ago•0 comments

LinkedIn and X Are Flooded with AI Spam, Browsing Data Suggests

https://www.404media.co/linkedin-and-x-are-flooded-with-ai-spam-browsing-data-suggests/
2•Brajeshwar•11m ago•0 comments

Google's new remote attestation scheme is every bit as terrible as its old one

https://www.eff.org/deeplinks/2026/07/googles-new-remote-attestation-scheme-every-bit-terrible-it...
1•hn_acker•11m ago•1 comments

Ask HN: What would you do if you had coded a better web browser than Firefox?

3•roschdal•11m ago•0 comments

The console wars have been lost

https://xeiaso.net/notes/2026/console-wars-lost/
2•ExMachina73•11m ago•0 comments

The app that deleted itself – The story of Instagram

https://stratnotes.substack.com/p/the-app-that-deleted-itself
1•swastikanayak•12m ago•0 comments

Agents Attacking Documents with CRDTs

https://404wolf.com/posts/AgentsAttackTheDocument/
6•404wolf•12m ago•0 comments

'Siri AI' Lawsuit Update: Apple to Pay Owners of These iPhone Models

https://www.macrumors.com/2026/07/09/siri-ai-lawsuit-settlement-claims-timing/
1•thm•13m ago•0 comments

Why the Next Era of AI Is About Infrastructure, Not Just Models

https://blog.mozilla.ai/the-control-layer-why-the-next-era-of-ai-is-about-infrastructure-not-just...
1•royapakzad•13m ago•0 comments

Vintage IKEA Began as Cheap Furniture. Now It Commands Thousands of Dollars

https://www.wsj.com/real-estate/luxury-homes/vintage-ikea-furniture-collectors-49a073b7
1•bookofjoe•13m ago•1 comments

Ask HN: Factory_boy hasn't shipped in about a year, what do Python devs use now?

https://github.com/FactoryBoy/factory_boy
1•rasinmuhammed•14m ago•0 comments

Gear Post 2026

https://tynan.com/gear2026/
1•surprisetalk•17m ago•0 comments

Why we're moving off Cloudflare Durable Objects

https://usewire.io/engineering/why-were-moving-wire-off-cloudflare-durable-objects/
3•jitpal•18m ago•0 comments

'I'm not a programmer' anymore: Linus Torvalds on the only two tools he uses now

https://www.zdnet.com/article/open-source-summit-linus-torvalds/
3•CrankyBear•19m ago•0 comments

Show HN: Snowscroll – remove reels, shorts, short-form

https://snowscroll.com/
1•junnam586•19m ago•0 comments

How to feel safe delegating to AI agents?

1•danicuki•19m ago•0 comments

We cannot wait for better post-quantum signature algorithms

https://blog.cloudflare.com/ml-dsa-will-have-to-do/
2•some_furry•20m ago•0 comments

DeepSeek aims to make its own AI chip

https://www.proactiveinvestors.com/companies/news/1095178/deepseek-makes-pivot-that-should-put-si...
1•FinnLobsien•21m ago•0 comments

Replay the history of R/place in the browser

https://replace.wintercore.xyz/
1•0xAstro•23m ago•0 comments

Lockpicking

https://github.com/fabacab/awesome-lockpicking
1•toomuchtodo•24m 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 ...