frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Quicktipp #118: curl can be used to send emails with SMTP

https://mastodon.social/@chr1stian/116924759058231144
1•21sys•1m ago•0 comments

Roger Summit, Early Search Pioneer, Dies at 95

https://www.nytimes.com/2026/07/17/technology/roger-summit-dead.html
1•furytrader•1m ago•0 comments

I built a lockfree(where applicable) fibers workstealing jobs system

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

Judge a book by its first pages

https://uncovered.ink
2•bookofjoe•4m ago•0 comments

Classic Amiga titles, free to download

https://amigafreeware.downer.tech/
1•doener•11m ago•0 comments

Next UK prime minister Andy Burnham drops digital ID scheme

https://www.reuters.com/world/uk/next-uk-prime-minister-andy-burnham-drops-digital-id-scheme-2026...
1•lemoncookiechip•11m ago•1 comments

World Cup France England 0:4 halftime

3•pm2222•13m ago•0 comments

Hardcore IndieWeb: Run your own website 100% independently for only $0.01/day

https://www.neatnik.net/hardcore-indieweb
2•cdrnsf•21m ago•0 comments

Fable 5 finds major bugs in 10 year old open source game networking libraries

https://www.patreon.com/MasBandwidth/posts/important-news-164199395
4•gafferongames•25m ago•0 comments

Pico W firmware creates driverless USB WiFi bridge (Layer-2)

https://www.cnx-software.com/2026/07/16/pico-usb-wifi-converts-the-raspberry-pi-pico-w-into-a-dri...
3•whiteblossom•26m ago•0 comments

Frontier and Center: Who evaluates the evaluations?

https://cloud.google.com/blog/products/data-analytics/evaluate-agent-performance/
2•gmays•28m ago•0 comments

What Makes a Volume Bootable?

https://eclecticlight.co/2026/07/18/what-makes-a-volume-bootable/
2•frizlab•34m ago•0 comments

Klong for the Web

https://tailrecursion.com/klong/
2•wooby•35m ago•0 comments

The Swiss Cheese model, pt. 1

https://unsung.aresluna.org/the-swiss-cheese-model-pt-1/
3•frizlab•36m ago•0 comments

UnifiedIR for Julia

https://github.com/JuliaLang/julia/pull/62334
2•vimarsh6739•38m ago•0 comments

Show HN: PKPass Inspector

https://www.getleal.com/tools/pkpass-inspector
2•rikkipitt•38m ago•0 comments

High-scale web apps in any language

https://velixir.net/
2•dbContext•39m ago•0 comments

Recause – complex interactive flows as ordinary functions over explicit state

https://recause.org/
2•Ruebennase•39m ago•0 comments

Andy Burnham to scrap digital ID in first major policy pledge

https://www.bbc.co.uk/news/articles/c5y08z25q8eo
4•Lio•41m ago•1 comments

Wp2shell (CVE-2026-63030): Pre-Auth RCE Chain in WordPress Core

https://fullhunt.io/blog/2026/07/17/wp2shell-wordpress-core-pre-auth-rce-cve-2026-63030.html
2•mazen160•43m ago•0 comments

Engineered Enzyme Reverses Age-Related Protein Damage

https://lifespan.io/engineered-enzyme-reverses-age-related-protein-damage/
2•littlexsparkee•43m ago•0 comments

AI for Bug Bounty with VulneraMCP

https://www.zaproxy.org/blog/2025-11-28-enhancing-zap-with-ai-for-bug-bounty-hunting/
2•Fermino•45m ago•0 comments

$20/Month: The Price Ceiling Every AI Company Copied

https://qainsights.com/20-month-the-price-ceiling-every-ai-company-copied/
2•qainsights•47m ago•0 comments

Neoclouds owe their customers years of compute

https://www.solvimon.com/blog/neoclouds-owe-customers-years-of-compute
3•arnon•48m ago•0 comments

Heaven's IT Guy – Design Complaints

https://www.youtube.com/watch?v=--Twuo6rgIE
1•quantummagic•52m ago•0 comments

I asked a psychiatrist I know about the effects of AI

https://teadrivendevelopment.substack.com/p/i-asked-a-psychiatrist-i-know-about
1•ghassenfaidi•54m ago•0 comments

Show HN: Graph Context Engine for Reliable AI

https://kritama.com
1•zacksiri•56m ago•0 comments

Yodel Extreme

https://music.apple.com/fr/album/yodel-extreme-single/6789486724
1•frizlab•56m ago•0 comments

Co-evolution of self-replication and function in a digital primordial soup

https://arxiv.org/abs/2607.09211
2•vicgalle_•57m ago•1 comments

SmartTAR – STAR 1.3.1

https://github.com/eco-by-different/smarttar-star
1•e_b_d•59m ago•1 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 ...