frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

US Army gives chaplains 90 days to remove rank insignia

https://www.militarytimes.com/news/your-military/2026/06/26/us-army-gives-chaplains-90-days-to-re...
1•Jimmc414•1m ago•0 comments

Why Carbon Capture Can't Conceivably Solve Climate Change

https://projects.propublica.org/why-carbon-capture-cant-solve-climate-change/
2•wstrange•2m ago•0 comments

Smart Link – Free link shortener with AI analytics, A/B testing and QR codes

https://www.by-smartlink.com/
1•smartlink30•3m ago•0 comments

Eugen Rochko – My disappointment is immeasurable, and my day is ruined

https://mastodon.social/@Gargron/116824070810525978
1•backlit4034•3m ago•0 comments

German Button Maker Searched Rivers of American Midwest for Valuable Shells

https://www.smithsonianmag.com/smithsonian-institution/how-one-german-button-maker-searched-the-r...
1•bookofjoe•3m ago•0 comments

GLP-1 drugs led to weight loss and reversed depression-like behavior in mice

https://www.psychologytoday.com/au/blog/mood-by-microbe/202606/what-ozempic-does-to-the-gut-brain...
3•randycupertino•7m ago•0 comments

XPI Release

https://www.xpi.lol/
1•johnnsellers•7m ago•0 comments

MobileGuard: A Mobile-Native Governance Framework for Agentic AI

https://zenodo.org/records/20970167
1•jsingh2525•8m ago•0 comments

Pakistan's solar miracle – how the hell did they do it?

https://www.thenewworld.co.uk/jan-rosenow-pakistans-solar-miracle-how-the-hell-did-they-do-it/
2•coloneltcb•8m ago•0 comments

Show HN: Autonomous CAD design and OpenFOAM optimization loop using local LLMs

https://github.com/ostenjap/LLM-Agent-generated-Quadcopter-Prop
1•ostenjap•12m ago•0 comments

The Harm in Hate Speech Laws

https://wysr.substack.com/p/the-harm-in-hate-speech-laws
1•paulpauper•13m ago•0 comments

Enhancing X11 Application Security with LXC

https://dobrowolski.dev/article/enhancing-x11-application-security-with-lxc/
2•shirozuki•14m ago•0 comments

How Claude Code and Codex Sandbox Untrusted Code

https://medium.com/@Koukyosyumei/how-claude-code-and-codex-sandbox-untrusted-code-ba39b493046a
2•syumei•15m ago•1 comments

Pkgxray

https://github.com/adamsjack711-ux/pkgxray
1•jadamsl•16m ago•0 comments

Peppa Pig studio wants to clone child actors' voices with AI indefinitely

https://www.gadgetreview.com/peppa-pigs-ai-voice-clause-draws-nearly-1000-industry-objections
4•yayitswei•18m ago•1 comments

Show HN: A benchmark for the failure modes of agent memory

https://github.com/Kausha3/agent-memory-bench
1•Pankhi123•18m ago•0 comments

Sony Drops Studio Canal Movies from PS Store

https://www.playstation.com/en-gb/legal/psvideocontent/
1•tau255•20m ago•0 comments

What Happens When AI Agents Refuse to Work Until They're Paid

https://blog.owulveryck.info/2026/06/25/from-isolated-agents-to-agentic-mesh-orchestrating-sdlc-w...
3•owulveryck•27m ago•0 comments

'Careless People' author claims Meta surveilled her for 12mos to enforce silence

https://fortune.com/2026/06/26/meta-wynn-williams-surveillance-gag-order-lawsuit-2026/
28•1vuio0pswjnm7•27m ago•1 comments

Grok Is More Important Than Clean Air, DOJ Says

https://www.motherjones.com/environment/2026/06/grok-doj-justice-naacp-clean-air-act-gas-turbine-...
5•Planktonne•29m ago•0 comments

Roach PHP – The complete webscraping toolkit for PHP

https://roach-php.dev/docs/introduction/
1•ms7892•29m ago•0 comments

Wikipedia Cofounder Larry Sanger Banned from Site for 'Canvassing'

https://www.404media.co/wikipedia-cofounder-larry-sanger-banned-from-site-for-canvassaing/
2•donohoe•31m ago•0 comments

The prime your computer finds while you sleep

https://primecrunch.com/blog/3/the-prime-your-computer-finds-while-you-sleep
2•andyhedges•32m ago•0 comments

Show HN: Kiso, an open-source publishing engine for Open Knowledge Format

https://oak-invest.github.io/kiso/
1•straumat•33m ago•0 comments

Should European housing politics be Americanized?

https://worksinprogress.co/issue/should-european-housing-politics-be-americanized/
2•JumpCrisscross•34m ago•0 comments

OpenZL

https://openzl.org/
2•enz•37m ago•0 comments

Datavessel – ecommerce and marketing agents of new age

https://www.datavessel.io/
1•djr4•37m ago•0 comments

NSA's SIGINT Enabling Project includes sabotaging cryptographic standards

https://nsa.2026.action.cr.yp.to/
3•rasengan•39m ago•1 comments

The $546,000 Door

https://housingimpact.substack.com/p/the-546000-door
1•JumpCrisscross•40m ago•0 comments

Stroustrup's Rule (2024)

https://buttondown.com/hillelwayne/archive/stroustrups-rule/
2•bmacho•40m 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 ...