frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Not in My Git Yard: Catching Backdoors at Commit and Release Time

https://arxiv.org/abs/2607.26719
1•matt_d•1m ago•0 comments

Apple Releases Firmware Update for 140W USB-C Power Adapter

https://www.macrumors.com/2026/09/08/apple-releases-140w-usb-c-charger-firmware-update/
2•hentrep•1m ago•0 comments

The Secret Life of Circuits: An Illustrated Guide to Electronic Circuit Design

https://nostarch.com/secret-life-of-circuits
1•teleforce•2m ago•0 comments

Show HN: LazyReader – Read ebooks and stream audiobooks directly from your cloud

https://lazyreader.lindocode.com
1•ekaftnuocca10•5m ago•0 comments

Vial contains a new drug called PAC-3310

https://twitter.com/douglasyaody/status/2097377733466800489
1•victor82•6m ago•0 comments

Open Parliamentary Accountability EXchange

https://opax.com.au/
1•jacobtracey•11m ago•0 comments

Practical PCB Design: From Breadboard to Production

https://nostarch.com/practical-PCB-design
1•teleforce•12m ago•0 comments

Gmail AI Threat Scanner–zero-infra email anomaly detection

https://github.com/ajaynyayapathi/Gmail-AI-Threat-Scanner
1•nvajay•13m ago•0 comments

Inflation is back around the world–as is the fight against it

https://www.economist.com/finance-and-economics/2026/09/06/inflation-is-back-around-the-world-as-...
1•andsoitis•15m ago•1 comments

How to search for long hashes and IDs with dict='keywords_32k'

https://medium.com/@s_nikolaev/how-to-search-for-long-hashes-and-ids-with-dict-keywords-32k-732e0...
1•snikolaev•17m ago•0 comments

Freelancers are getting buried with 'soulless' AI slop cleanup

https://www.theguardian.com/technology/2026/sep/02/ai-jobs-freelance-cleanup
2•oogali•20m ago•0 comments

Why OpenAI's NS Singularity Requires Forcing: Response Functionals and Clay B

https://reddawnacademicpress.org/2026/09/08/openai-camlin-clay-response/
2•jcamlin•22m ago•0 comments

A Case Study on Emergent Cheating, Whistleblowing in Autonomous Research Swarms

https://arxiv.org/abs/2609.04170
2•the-mitr•23m ago•0 comments

An Affair in the Nonlocality Community

https://mateusaraujo.info/2026/07/19/a-strange-affair-in-the-nonlocality-community/
3•brimtown•24m ago•1 comments

DHH's Omarchy Considering Replacing Arch/AUR with Nix

https://github.com/omacom/omarchy/blob/97a86af116b71ffd6b6dd0afc27cdefce5cacee2/plans/nix.md
2•djfergus•26m ago•0 comments

Inzerosight

https://github.com/inzerosight/inzerosight
1•planetrenox•29m ago•0 comments

The Architecture of Open Source Applications

https://aosabook.org/en/
2•zasz•30m ago•1 comments

Sex and Drugs and Guns and Code

https://third-bit.com/sdgc/
1•mooreds•32m ago•0 comments

Phoenix V2: persistent memory, emotional state, self-model for AI (MIT)

https://github.com/cleversonbrsantos-art/Phoenix
1•cleversonBr•41m ago•0 comments

Make your Mac displays work as one

https://displayspan.app/
1•ashing•43m ago•0 comments

Iran says it captured US submarine drone in Strait of Hormuz

https://www.reuters.com/world/middle-east/iran-says-it-captured-us-submarine-drone-strait-hormuz-...
19•harambae•46m ago•2 comments

Statement from AMS Leadership on Navier-Stokes Problem

https://www.ams.org/news?news_id=7686
5•wslh•46m ago•1 comments

A lab notebook of number theory results, including what didn't hold up

https://ras2045.github.io/reproducing-set/
1•rsardinifb•47m ago•0 comments

Driverless F-1 Competition Came to Italy [video]

https://www.yahoo.com/news/videos/driverless-cars-compete-f1-style-002939363.html
1•fuzzfactor•49m ago•1 comments

Harvard study predicts most suicide attempts a week in advance

https://current.fas.harvard.edu/stories/harvard-study-predicts-most-suicide-attempts-week-advance
65•jodacola•51m ago•25 comments

X402-trinity-gaming – Headless payment back end for the gaming economy

https://github.com/devmster/x402-trinity-gaming
1•devmster•52m ago•0 comments

Optimizing Your NFS Filesystem

https://www.admin-magazine.com/HPC/Articles/Useful-NFS-Options-for-Tuning-and-Management
1•ankitg12•54m ago•0 comments

CERN's migration path from CentOS Linux to Debian

https://lwn.net/SubscriberLink/1092512/0772b817c369632b/
2•signa11•57m ago•0 comments

Apple iPod Engraver (2019)

https://dunstanorchard.com/apple-ipod-engraver/
2•NaOH•1h ago•0 comments

HAE logged where the seconds go in coding-agent turn (TTFT vs. decode vs. tools)

1•Marvin_RunAI•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 ...