frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SecurityPolicy restrictions unenforced by default sandbox back end in PraisonAI

https://github.com/MervinPraison/PraisonAI/security/advisories/GHSA-5r6c-gj4g-r697
1•LHMisme•1m ago•0 comments

Linux 7.3 Adding Support for MCTP-over-USB v1.1

https://www.phoronix.com/news/Linux-7.3-MCTP-Over-USB-1.1
1•Bender•1m ago•0 comments

What You'd See During an AI World War [video]

https://www.youtube.com/watch?v=Gw_hnD7m00M
1•freakynit•1m ago•0 comments

VictorTaelin/Nanoproof

https://github.com/VictorTaelin/nanoproof
1•surprisetalk•5m ago•0 comments

Pavel Durov – Communication Technology and the Struggle for Freedom [video]

https://www.youtube.com/watch?v=1Yq_5aDdJ24
1•rzk•6m ago•0 comments

The AI bubble is popping; we just don't know it yet

https://www.theregister.com/ai-and-ml/2026/08/03/the-ai-bubble-is-already-popping-we-just-dont-kn...
3•Bender•7m ago•0 comments

ERP and MES Integration for US Pharma Manufacturers

https://geekyants.com/blog/erp-and-mes-integration-for-us-pharma-manufacturers-a-roadmap-to-achie...
1•varda_62892•9m ago•0 comments

The Grass Is Greener

https://www.bassfinity.com/blog/the-grass-is-greener-reading-summer-vegetation
1•jequals5•9m ago•0 comments

Show HN: Ccbeam – Teleport your Claude Code sessions to and from the cloud

https://github.com/sahilmahendrakar/ccbeam
1•smahendrakar•10m ago•0 comments

North Korea NullReceiver Hides Malware in NPM

https://opensourcemalware.com/blog/nullreceiver-dprk-c2-technique
2•6mile•11m ago•1 comments

How Europeans are struggling to balance work and personal time

https://www.euronews.com/business/2026/08/03/how-europes-working-day-is-increasingly-encroaching-...
1•rustoo•14m ago•0 comments

Show HN: Analytics Tycoon: I built an Age of Empires like game for data

https://analytics-tycoon.netlify.app/
1•12ian34•15m ago•0 comments

Ask HN: Future of junior level software developers outside US and UK

1•shashubansal247•16m ago•0 comments

Valetudo Camera Streaming (FOSS for Vacuum Robots)

https://github.com/Hypfer/Valetudo/discussions/2547
1•gempir•16m ago•0 comments

Before Plug and Play Worked

https://comuniq.xyz/post?t=1488
1•01-_-•17m ago•0 comments

Show HN: AgentCodeGUI – Multi-Account Desktop GUI for Claude Code and Codex

https://github.com/UnrealFactory/AgentCodeGUI
1•asdsa112•18m ago•0 comments

The Potomac River Midair Collision

https://admiralcloudberg.medium.com/reaping-the-whirlwind-inside-the-potomac-river-midair-collisi...
1•mplanchard•25m ago•0 comments

Ollee Watch: giving a 30-year-old Casio A158W a new life

https://www.kulman.sk/en/casio-a158w-ollee-watch/
2•ig0r0•25m ago•0 comments

Wolfpack – Private control room for coding agents

https://github.com/almogdepaz/wolfpack
2•wolfmaster•27m ago•0 comments

The Catholic Church's Progressive Revival

https://harpers.org/archive/2026/08/radical-reformation-jack-hanson-catholic-church-progressive/
1•mplanchard•31m ago•0 comments

What are your Thoughts on AI Agents?

1•Harish_0089•33m ago•0 comments

Codes, Chess and Kubrick: The Life of Jack Good – GCHQ

https://www.gchq.gov.uk/information/codes-chess-and-kubrick-life-jack-good
1•rbanffy•35m ago•2 comments

Show HN: A beautiful web app for writing novels and stories

https://github.com/jpmoo/brigid
2•jpmoo•36m ago•0 comments

Cell Network Is Learning to See: ISAC Explained

https://mkadri85.github.io/blog/isac-cell-towers-as-sensors/
1•Mkadri•36m ago•0 comments

Critical CVE issued for hallucinated SQLite vulnerability

https://research.jfrog.com/post/sqlite-critical-cves-or-llm-slops/
69•ymir_e•37m ago•17 comments

Scientists find method to convert factory CO2 emissions directly into fuel

https://adelaide.edu.au/about/news/2026/new-technology-could-turn-dirty-factory-exhaust-directly-...
2•giuliomagnifico•41m ago•0 comments

Twelve Years Without a VPN

https://khessin.de/twelve-years-without-a-vpn/
1•truxs•41m ago•0 comments

Xkcd: Earth Temperature Timeline

https://xkcd.com/1732/
8•thunderbong•41m ago•1 comments

Knowledge Collapse

https://www.bostonreview.net/articles/knowledge-collapse/
1•danielam•42m ago•0 comments

Reality cannot be turned into mathematics

https://iai.tv/articles/reality-cannot-be-turned-into-mathematics-auid-3529
2•danielam•43m 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 ...