frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Elm releases its first update since 2019

https://github.com/elm/compiler/releases
1•nor0x•29s ago•0 comments

Show HN: Building USoC Part 1: The Wishbone Bus

http://axiomfactory.co/wishbone
1•dvc94ch•1m ago•0 comments

We built a structured entity graph for an AI agent. Then we removed most of it

https://blog.getcassis.com/context-engineering-for-analytics-agents/
1•matthieu_bl•2m ago•0 comments

HelloAssembly The smallest possible complete Windows application

https://github.com/PlummersSoftwareLLC/HelloAssembly
1•Bluestein•5m ago•0 comments

At least 1-in-4 former NFL players who died between 2016-2021 had CTE

https://news.massgeneralbrigham.org/en/1-in-4-former-nfl-players-who-died-2016-2021-had-cte
1•geox•5m ago•0 comments

Show HN: Shepherdr – A mobile-first web UI for agents on Herdr

https://github.com/luiscleto/shepherdr
1•lfcc•7m ago•0 comments

Show HN: Turn any video into a scroll-controlled website with an Agent Skill

https://github.com/musoyangrigor/scroll-video-website-skill
1•MusoyanGrigor•7m ago•0 comments

Credit Card Rewards Became a $9.2B Wealth Transfer

https://www.library.hbs.edu/working-knowledge/how-credit-card-rewards-became-multibillion-dollar-...
2•conbrian•8m ago•0 comments

An Interesting AI Educational Animation Generator

https://fogsight.ai
1•redreamality•9m ago•0 comments

How to transfer Databricks certificates and Badges when changing employers

https://medium.com/databrickscommunity/how-to-transfer-databricks-certificates-and-badges-when-ch...
2•protmaks•12m ago•0 comments

The American People Hate Data Centers

https://thezvi.wordpress.com/2026/08/24/the-american-people-really-hate-data-centers/
4•zug_zug•13m ago•0 comments

British man charged in Singapore two years after alleged theft at airport

https://www.bbc.com/news/articles/ckg024vrzxjo
1•jonathanlydall•13m ago•0 comments

The data center era that's reshaping America

https://www.axios.com/2026/08/25/data-centers-ai-electricity-water-politics
3•1vuio0pswjnm7•14m ago•0 comments

RetroPad is a full-feature-parity version of Notepad from XP in just 2749 bytes

https://www.tomshardware.com/software/windows/retropad-is-a-full-feature-parity-version-of-notepa...
2•Bluestein•14m ago•1 comments

Local Privilege Escalation via the NetBird Client Daemon IPC

https://netbird.io/knowledge-hub/security-advisory-daemon-ipc-local-privilege-escalation
1•hollow-moe•14m ago•0 comments

Create videos for your products using your terminal/IDE

https://github.com/kritikmodi/product-video-as-code
1•kritikmodi•15m ago•1 comments

The Neumann Hangover from 1945

https://ussphoenix.substack.com/p/why-patching-and-triage-are-just
1•mavercik1337•15m ago•0 comments

Nostr vs. Fediverse vs. Bluesky: A Comparison of Decentralized Social Protocols

https://soapbox.pub/blog/comparing-protocols
2•Bluestein•18m ago•0 comments

Study's Alarming Finding: At Least 1 in 4 NFL Players Gets Brain Disease

https://www.nytimes.com/2026/08/25/us/nfl-cte-brain-disease.html
1•bookofjoe•18m ago•1 comments

The Move to Python 3 Begins

https://store.steampowered.com/news/app/8500/view/690892322235222263
2•dkpk•19m ago•1 comments

In solarpunk cities of the future tech follows natures lead

https://aeon.co/essays/in-solarpunk-cities-of-the-future-tech-follows-natures-lead
1•proudestmonkey•20m ago•0 comments

Offgrid Electric Car (2025)

https://joeyh.name/blog/entry/offgrid_electric_car/
2•birdculture•22m ago•0 comments

Hugging Face reportedly in talks to be acquired for $13B

https://techcrunch.com/2026/08/24/hugging-face-reportedly-in-talks-to-be-acquired-for-13b/
3•doppp•22m ago•0 comments

Helm Dashboard Sequence Diagrams

https://app.ilograph.com/demo.ilograph.Helm%2520Dashboard/Start%2520Dashboard
1•billyp-rva•23m ago•0 comments

Why we built an APFS filesystem version control tool for Mac?

https://scaleninja.com/blog/deltasnap/
1•yadvr•24m ago•0 comments

Meeting Seed7

https://genodians.org/nfeske/2025-12-22-meeting-seed7
1•mentalgear•25m ago•1 comments

SEC reportedly subpoenas Wall St banks over AI hedge fund Situational Awareness

https://www.cnbc.com/2026/08/25/sec-situational-awareness-hedge-fund-subpoenas.html
2•1vuio0pswjnm7•25m ago•0 comments

Why create a separate APFS volume for your data?

https://scaleninja.com/blog/deltasnap-apfs-volumes/
1•yadvr•25m ago•0 comments

Audio-visual language For Bitcoin covenant use-cases

https://getcofund.com/research/covenants-use-case-atlas
1•setzeus•26m ago•1 comments

The Genealogy of Eliza

https://sites.google.com/view/elizagen-org/#h.rle1hgawpigd
1•Bluestein•26m 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 ...