frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I completed my cross platform C++ 17 fiber job system

https://github.com/jay403894-bit/JLib-Scheduler
1•jay403894•17m ago•0 comments

Swiss tourist sentenced to year in jail for insulting Bali sacred Day of Silence

https://www.euronews.com/my-europe/2026/08/20/swiss-tourist-sentenced-to-year-in-jail-for-insulti...
1•Markoff•18m ago•0 comments

OpenCode go provides Hy3 with 8X usage

https://opencode.ai/go
1•dares2573•19m ago•0 comments

Changes in shadow-utils password-expiration features

https://lwn.net/Articles/1086949/
1•pykello•20m ago•0 comments

Why Is Everyone in Silicon Valley Talking Like That?

https://www.theatlantic.com/technology/2026/08/ai-jargon-in-everday-speech/688358/
1•jonah•24m ago•0 comments

Limitless Telepresence with Minds to Space

https://limitlesstelepresence.com/
1•MaysonL•25m ago•0 comments

Indigenous Circuits

https://computerhistory.org/blog/indigenous-circuits/
1•lying4fun•27m ago•0 comments

The Sloppiest Thing About AI

https://blog.oxplot.com/the-sloppiest-thing-about-ai/
1•oxplot•30m ago•0 comments

Meta's app for creating generative AI minigames is now available in the US

https://www.engadget.com/2241098/meta-pocket-app-for-creating-generative-ai-minigames-available-i...
1•thm•31m ago•0 comments

Tesla discontinues its Solar Roof tiles, not economically viable

https://electrek.co/2026/08/20/tesla-discontinues-solar-roof-panels-only/
2•mfiguiere•38m ago•0 comments

Kafka Flow – An interactive visualization of Kafka

https://kafka-flow.com/
1•bytegogogo•38m ago•0 comments

Advertising Is Hard – a pay-to-rank leaderboard that resets every 90 days

https://advertisingishard.com
1•dylan_builds•44m ago•0 comments

Compress and Forget: Bitsandbytes Quantization Amplifies Proactive Interference

https://arxiv.org/abs/2608.18578
1•sbulaev•44m ago•0 comments

People prefer A.I. art because people prefer bad art (2024)

https://maxread.substack.com/p/people-prefer-ai-art-because-people
2•gavinsyancey•45m ago•2 comments

A Claude Code plugin that shows an English rewrite of each assistant message

https://github.com/gvzdv/claudish-to-english
1•iacguy•48m ago•0 comments

'The Data Center Has Taken Everything: Our Lands, Future, Happiness'

https://behanbox.com/2026/08/20/the-data-center-has-taken-everything-our-lands-future-happiness/
2•akbarnama•51m ago•0 comments

Guggenheim loan trades in distressed territory after investor call

https://www.ft.com/content/7069ffff-9534-489d-bf25-9965a1bc48bc
2•petethomas•54m ago•0 comments

Lot #4006: Steve Jobs 8th Grade Science Fair Project

https://www.rrauction.com/auctions/lot-detail/351632607484006-steve-jobs-personally-built-8th-gra...
1•rgovostes•56m ago•0 comments

Micron announces $10B research hub in Boise

https://investors.micron.com/news/press-release/2026/Micron-Unveils-Micron-Research-Labs-a-U-S--B...
1•osnium123•1h ago•0 comments

US debt is rising by about $90k every second, or $7.8B a day

https://www.bbc.co.uk/news/articles/c9d8z72nn02o
2•CircuitSeuss•1h ago•2 comments

Open source a book "Representation, Structure and Transformation"

https://github.com/bfzhao/rst
1•bingfeng•1h ago•0 comments

Trump wants to make a trade deal with Canada

https://asiaviewnews.com/gigabots/Threads?p=130067
1•mark336•1h ago•1 comments

Apple Music to Label AI-Generated Songs

https://www.macrumors.com/2026/08/20/apple-music-to-label-ai-generated-songs/
4•thm•1h ago•3 comments

Sweden became a country of big-state libertarians

https://www.economist.com/europe/2026/08/20/how-sweden-became-a-country-of-big-state-libertarians
1•andsoitis•1h ago•0 comments

Grimshaw vs. Ford Motor Co

https://en.wikipedia.org/wiki/Grimshaw_v._Ford_Motor_Co.
1•vismit2000•1h ago•0 comments

The Horse and Sparrow Economic Theory

http://the13thtribe.blogspot.com/2025/03/the-horse-and-sparrow-economic-theory.html
1•thunderbong•1h ago•0 comments

Anolisa – Agentic OS with runtime, security, observability and token compression

https://github.com/alibaba/anolisa
3•forrestly•1h ago•0 comments

Show HN: I built a permission layer for AI agents, then spent a day breaking it

1•rmanish2000•1h ago•0 comments

Stock indices no longer reflect equity reality

https://www.economist.com/finance-and-economics/2026/08/18/stock-indices-no-longer-reflect-equity...
3•andsoitis•1h ago•2 comments

Show HN: Fifteen – buy a spot on a board where your position decays 5% a day

https://fifteen.show
1•pevide•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 ...