frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Doubling of Kobo's U.S. sales in both 2025 and 2026, 70% US female customer base

https://www.reddit.com/r/kobo/comments/1w20azv/the_doubling_of_kobos_us_sales_in_both_2025_and/
1•seam_carver•38s ago•0 comments

Free Online Tools and Apps

https://actuallyfreeonlinetools.com
1•bobby2shorts•1m ago•0 comments

ArchUnit for Python

https://github.com/LukasNiessen/ArchUnitPython
1•amai•1m ago•0 comments

ChatGPT to face tougher regulation in the EU

https://www.theverge.com/ai-artificial-intelligence/986682/openai-chatgpt-eu-dsa
1•dataking•1m ago•0 comments

Playa Phone

https://playaphone.com/
1•cutoff•1m ago•0 comments

C++26: Standard Library Hardening Experiments

https://www.cppstories.com/2026/hardening-experiments/
1•ibobev•1m ago•0 comments

Building a decentralized bulletin board (and accidentally reinventing Nostr)

https://en.andros.dev/blog/4c4e1b40/building-a-decentralized-bulletin-board-and-accidentally-rein...
1•ibobev•3m ago•0 comments

Culture Clash

https://aeon.co/essays/at-the-heart-of-the-snow-leavis-two-cultures-clash
2•Hooke•3m ago•0 comments

Recreating a 2010 Experiment

https://xania.org/202608/recreating-a-2010-experiment
1•ibobev•4m ago•0 comments

WikiSkill: Compiling Agent Experience into Persistent KB for Skill Evolution

https://academy.dair.ai/papers/wikiskill-compiles-agent-experience-into-a-persistent-wiki-2608.27454
1•omarsar•4m ago•0 comments

Following Google, Apple Maps Expected to Rename Lake Ontario as Lake America

https://macdailynews.com/2026/08/31/following-google-maps-apple-maps-expected-to-rename-lake-onta...
1•Noaidi•5m ago•0 comments

Two men charged following AFP-FBI disruption of alleged cybercrime syndicate

https://www.afp.gov.au/news-centre/media-release/two-wa-men-charged-following-afp-fbi-wapf-disrup...
1•hyperionplays•6m ago•0 comments

Docker Hardened Images

https://docs.docker.com/dhi
1•tosh•6m ago•0 comments

Show HN: Slotstream, run Qwen3.8-Flash-Next 4-bit on a low-memory Mac

https://github.com/carloslfu/slotstream
1•carloslfu•7m ago•0 comments

Treasury Announces the Quantum-Readiness Task Force

https://home.treasury.gov/news/press-releases/sb0615
1•mooreds•8m ago•0 comments

Rediscovering Sublime Text

https://blakewatson.com/journal/rediscovering-sublime-text/
1•blakewatson•9m ago•1 comments

Skills of the Future – The Human Toolkit

https://filipblagojevic.substack.com/p/skills-of-the-future-the-human-toolkit
1•SinEater•9m ago•0 comments

QR Creator that runs in the browser, nothing uploaded

https://free-qr.fyi/
1•postgres•11m ago•0 comments

Trump Goes After Anonymous Email Provider. The Real Target Is Free Speech

https://theintercept.com/2026/08/28/trump-antifa-terrorist-websites-free-speech/
1•SigmundurM•11m ago•0 comments

A one-handed clock on the hyperbolic plane

https://jpivarski.github.io/hyperbolic-map/clock.html
1•fanf2•12m ago•0 comments

MIT building 18 closed after possible dimethylmercury contamination

https://thetech.com/2026/08/30/building-18-closure-2026
2•ilamont•12m ago•0 comments

Review: Aztecs, by Inga Clendinnen

https://www.thepsmiths.com/p/review-aztecs-by-inga-clendinnen
2•jger15•12m ago•0 comments

Google Labs Aptitude Test (GLAT)

https://googleblog.blogspot.com/2004/09/pencils-down-people.html
2•tlyleung•12m ago•0 comments

Why "Just Upgrade It" Is Terrible Security Advice

https://tuxcare.com/blog/just-upgrade-it-advice/
2•mooreds•12m ago•0 comments

The Mighty Duck

https://redmonk.com/rstephens/2026/08/27/the-mighty-duck/
3•mooreds•13m ago•0 comments

Show HN: WOML – an HTML-like language for building workflows

https://woml.org/
2•dalibenothmen•15m ago•0 comments

I found two Shopify plugin vulns with GLM-5.3 Flash

https://alec.is/posts/i-found-two-shopify-plugin-zero-days-in-a-bathtub/
3•arm32•16m ago•0 comments

My Experience Has Nuance, Yours Is a Data Point

https://blog.jim-nielsen.com/2026/nuance-for-me-none-for-you/
5•Brajeshwar•16m ago•0 comments

The Hugging Face incident from a security engineering perspective

https://uphack.io/blog/post/the-hugging-face-incident-is-not-an-ai-story/
3•birdculture•17m ago•0 comments

FSB Chair's Letter to G20 Finance Ministers and Central Bank Governors

https://www.fsb.org/2026/08/fsb-chairs-letter-to-g20-finance-ministers-and-central-bank-governors...
2•wasting_time•17m 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 ...