frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What is it like to be a Thermostat?

https://consc.net/notes/lloyd-comments.html
2•andsoitis•1m ago•0 comments

Anthropic tells investors it will be profitable for second straight quarter

https://www.ft.com/content/4564e6a5-69e9-40a6-bf0f-a888f2f4f002
2•theahura•6m ago•0 comments

Sunsetting Remove.bg

https://www.remove.bg/faq
1•sh_tomer•7m ago•0 comments

Tork: A lightweight, distributed workflow engine

https://github.com/runabol/tork
1•saikatsg•8m ago•0 comments

One UI 9 Beta 2 update is rolling out to the Galaxy S24

https://www.sammobile.com/news/galaxy-s24-one-ui-9-beta-2-update-released/
1•kuuuzya•8m ago•0 comments

The Matrix as Metaphysics

https://consc.net/papers/matrix.html
1•andsoitis•10m ago•0 comments

Build to Delete: When a model release makes your work redundant

https://softwareguru.substack.com/p/build-to-delete
1•ssamptur•11m ago•0 comments

Show HN: Meta neural band PoC connected to Mac without needing the glasses

https://github.com/callbacked/neural-band-poc/
1•callbacked•12m ago•0 comments

Ambition Is Frozen Desire

https://pmillerd.com/david-whyte-ambition/
1•bwest87•12m ago•0 comments

Show HN: Chrome Extension to Save, Organize and Switch Bookmarks

https://chromewebstore.google.com/detail/leotabs-—-tab-manager-swi/heolckkdeandgagkiefggcneodni...
1•ringlochid•13m ago•0 comments

Ask HN: Why AI is giving biased Racist/Misandrist answers?

1•skwasimin•13m ago•1 comments

Crystal Compass – Direct Support from the Crystal Team at Manas.Tech

https://manas.tech/projects/crystal/crystal-compass/
1•TheWiggles•20m ago•0 comments

Show HN: Anti-AI-slop: a 4 staged skill to detect and remove any AI writing slop

https://github.com/misbahsy/anti-ai-slop
1•misbahsy•21m ago•0 comments

Show HN: Like LeetCode, but multi-file and multi-step

https://loopprep.dev/
1•mrtie•25m ago•1 comments

AI is breaking our proxies for expertise

https://www.seangoedecke.com/ai-is-breaking-our-proxies-for-expertise/
3•vismit2000•26m ago•0 comments

New AI fake text generator may be too dangerous to release, say creators (2019)

https://www.theguardian.com/technology/2019/feb/14/elon-musk-backed-ai-writes-convincing-news-fic...
1•mrtksn•26m ago•0 comments

Sciquark Official

1•Sciquark_offici•32m ago•1 comments

PWA-install component got a long-awaited major release

https://github.com/khmyznikov/pwa-install/releases/tag/v0.7.0
2•khmyznikov•33m ago•0 comments

The Beauty of Roundabouts

https://gruhn.me/blog/2026-09-14/
1•ngruhn•38m ago•0 comments

JPEG-XL as default in AppStream, and better media processing

https://blog.tenstral.net/2026/09/jpeg-xl-appstream-and-better-media-processing.html
1•F3nd0•41m ago•0 comments

Moodle – Open-source learning management system

https://moodle.org/
2•doodlesdev•42m ago•0 comments

Show HN: Subsmap, mapping audience overlap across 126k subreddits

https://subsmap.com/
1•knivef•42m ago•0 comments

Ask HN: Is opaque over-engineering with frontier AI the future of software?

2•reacharavindh•46m ago•1 comments

Infineon RISC-V for Automotive at Hot Chips 2026

https://www.servethehome.com/infineon-risc-v-for-automotive-at-hot-chips-2026/
2•fork-bomber•50m ago•0 comments

Show HN: Kepil – passport, mandate and tamper-evident journal for AI agents

https://github.com/oleg-vdv/kepil
2•ipgleg•1h ago•0 comments

Dynamically add programs to PATH on Windows

https://abhij.it/dynamically-add-programs-to-path-on-windows/
2•thunderbong•1h ago•0 comments

Byblos AI: AI co-founder sharing context across product, brand, and campaigns

https://byblosai.app
1•Sharanxxxx•1h ago•0 comments

Airbnb Preventing the Use of BnB

https://www.theguardian.com/technology/2026/sep/14/portland-bnb-airbnb-silicon-valley-legal-battl...
11•cycomanic•1h ago•2 comments

Engineering Confidence

https://www.developing.dev/p/engineering-confidence
1•AntonZ234•1h ago•0 comments

$300M financing for 10-satellite edge-computing constellation

https://spacenews.com/sophia-space-and-sli-agree-on-300-million-financing-for-10-satellite-edge-c...
2•KinetiNode•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 ...