frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

LoongForge End-to-End Optimization for GR00T N1.6 Delivers 2.3× Throughput

https://baidu-baige.github.io/LoongForge/blog/2026-06-loongforge-groot-n16-acceleration.html
1•mindzzz•3m ago•0 comments

SpaceX Just Made the AI Infrastructure War Public

https://www.forbes.com/sites/robertszczerba/2026/06/13/spacex-just-made-the-ai-infrastructure-war...
1•cyrc•3m ago•0 comments

Sentencing the Innocent

https://www.craigmurray.org.uk/archives/2026/06/sentencing-the-innocent/
1•jjgreen•4m ago•0 comments

GLM 5.2 Is Out

https://digg.com/tech/ii9xibgn
2•aloknnikhil•5m ago•0 comments

When We Cease to Understand the World

https://en.wikipedia.org/wiki/When_We_Cease_to_Understand_the_World
1•petethomas•7m ago•0 comments

Show HN: Brightdeck – an OOXML-compatible AI presentation maker

https://brightdeck.ai/
2•mfn-throw•8m ago•1 comments

Cross-System Constraint Collisions: The Governance Gap in Enterprise Agentic AI [pdf]

https://himalaian.com/publications/CrAIg_WhitePaper_Public_v1.0.pdf
1•michaelmallon•9m ago•0 comments

Hacker Scripts

https://github.com/NARKOZ/hacker-scripts
1•skogstokig•9m ago•0 comments

The Wayland Protocol

https://wayland-book.com/protocol-design/design-patterns.html
2•tosh•9m ago•0 comments

Arch Linux AUR affected-package list after malicious commits were deleted

https://md.archlinux.org/s/SxbqukK6IA
1•tjek•11m ago•0 comments

SpaceX IPO made Musk a trillionaire. The old rules of capitalism no longer apply

https://www.theguardian.com/commentisfree/2026/jun/12/spacex-ipo-elon-musk-trillionaire
3•jmngomes•13m ago•1 comments

GameBoy Emulation in JavaScript (2010)

https://imrannazar.com/series/gameboy-emulation-in-javascript
2•tosh•18m ago•0 comments

As a woman thinks by Corra Harris (1926)

https://gutenberg.org/cache/epub/78847/pg78847-images.html
1•petethomas•19m ago•0 comments

Warning from our state to yours about process used to fast track the data center [video]

https://www.youtube.com/shorts/ntQOb2H__M8
3•Bender•24m ago•1 comments

The Bombardment of Ellwood During World War II

https://en.wikipedia.org/wiki/Bombardment_of_Ellwood
1•MilnerRoute•24m ago•0 comments

Show HN: Kaupang – deploy one config to Docker Compose, Swarm, or Kubernetes

1•witnz•24m ago•0 comments

Stanford Scientists Regrow Lost Cartilage and Reverse Arthritis

https://www.sciencedaily.com/releases/2026/06/260612021604.htm
3•karakoram•27m ago•0 comments

Gas Prices Wipe Out More Than a Year of Wage Gains

https://www.wsj.com/economy/inflation-wages-american-workers-cbe3f187
4•karakoram•33m ago•1 comments

Ask HN: What is the AI adoption approach at your org?

1•iExploder•34m ago•1 comments

The Strategic Oil Reserves Are Running Out Fast

https://www.economist.com/finance-and-economics/2026/06/11/the-worlds-strategic-oil-reserves-are-...
3•karakoram•35m ago•1 comments

The FBI built its own replica small town to simulate real-world cyberattacks

https://techcrunch.com/2026/06/13/the-fbi-built-its-own-replica-small-town-to-simulate-real-world...
2•Brajeshwar•35m ago•0 comments

Python 3.14 garbage collection rigamarole

https://theconsensus.dev/p/2026/06/06/python-3-14-garbage-collection-rigamarole.html
4•azhenley•40m ago•0 comments

List of Planetary Nebulae

https://en.wikipedia.org/wiki/List_of_planetary_nebulae
1•chasil•40m ago•0 comments

A Visualization of Unfathomable Wealth

https://fzakaria.github.io/trillion-wut/
2•setheron•40m ago•1 comments

Any Thoughts?

https://anankesmirror.blogspot.com/2026/06/highly-enriched-polonium-white-paper.html
1•boredthoughts•42m ago•0 comments

Rental Rush – an open-source board game about running rentals

https://playrentalrush.com
1•cankoseoglu•44m ago•0 comments

Show HN: Velo, a fast, non-linear video editor

https://github.com/notune/velo
2•leumon•47m ago•0 comments

Show HN: Reality Kernel – A causal containment sandbox for autonomous AI agents

https://www.realitykernel.dev/
1•Tabrez416•48m ago•0 comments

Did anyone went to YC directly from Sri Lanka?

2•geethikaisuru•50m ago•0 comments

PhantomBench: Benchmarking the Non-Existential Threat of Language Models

https://arxiv.org/abs/2606.11105
1•root-parent•51m 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 ...