frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Police officer investigated over AI-generated evidence

https://www.theguardian.com/technology/2026/jun/12/police-officer-under-criminal-investigation-ov...
1•notRobot•48s ago•0 comments

Windows-Style Taskbar for macOS

https://lawand.io/taskbar/
1•mysterydip•1m ago•0 comments

TMax: A Simple RL Recipe for Terminal Agents

1•anon373839•5m ago•0 comments

Uyuni Joins OpenSUSE Project Ahead of Annual Conference

https://news.opensuse.org/2026/06/22/uyuni-joins-opensuse/
1•TheWiggles•5m ago•0 comments

A physical clock that shows your yield ticking up in real time

https://vaultleap.com/moneyclock
1•GregReve•6m ago•0 comments

VSE Engine: Deterministic hardware-level impulse modulation

https://github.com/Morphsec88/vse-compute-over-storage
1•Morphsec88•8m ago•0 comments

SharpeBench: A luck-robust benchmark for AI trading agents

https://generalliquidity.com/blog/sharpebench
1•ReverseZoom2151•8m ago•0 comments

seven39

https://www.seven39.com/
1•bookofjoe•11m ago•0 comments

The Ceiling Is Your Taste

https://hari.computer/the-ceiling-is-your-taste
2•markovblanket•11m ago•0 comments

Generative AI is cursing renters with the promise of impossible homes

https://www.theverge.com/report/953888/ai-virtual-staging-real-estate-apartment-listings
1•donohoe•12m ago•0 comments

From GAA to 3D Stacked FET: Expanding the Transistor into the Third Dimension

https://semiconductor.samsung.com/news-events/tech-blog/from-gaa-to-3d-stacked-fet-expanding-the-...
1•hasheddan•20m ago•0 comments

The Reversal Curse: LLMs trained on "A is B" fail to learn "B is A"

https://arxiv.org/abs/2309.12288
1•Anon84•21m ago•0 comments

Company-Wide Agents.md

https://alignbase.ai/
1•abewheeler•21m ago•0 comments

The Coming Loop

https://lucumr.pocoo.org/2026/6/23/the-coming-loop/
2•ingve•22m ago•0 comments

Elephant alert AI warning systems aim to avoid deadly clashes

https://www.technologyreview.com/2026/06/23/1138562/elephant-alert-ai-warning-systems-avoid-deadl...
1•joozio•26m ago•0 comments

Ratchets Run Faster with Resharp

https://danverbraganza.com/writings/ratchets-run-faster-with-resharp
1•nvader•27m ago•0 comments

My decade-old budget Android phone is faster than my 2024 flagship iPhone

https://jstpst.net/f/technology/15047/rant-it-s-crazy-how-much-faster-computers-were-10-years-ago
2•mimasama•27m ago•0 comments

Halvar's Guide to Entrepreneurship

https://thomasdullien.github.io/guides/entrepreneurship/
1•tdullien•27m ago•0 comments

Money Is Middleware

https://pilgrimsage.substack.com/p/the-middleman
1•momentmaker•30m ago•0 comments

Who Owns the Model of You?

https://0set0set.github.io/articles/alma-a-self-model-for-ai-agents/
2•0set0set•32m ago•0 comments

Apple Is Going to Raise Device Prices – But When?

https://daringfireball.net/linked/2026/06/22/apple-device-prices-when
4•tosh•33m ago•0 comments

EV demand powers Europe car market in May, Chinese rivals expand share

https://www.reuters.com/world/china/ev-demand-powers-europe-car-market-may-chinese-rivals-expand-...
1•JumpCrisscross•34m ago•0 comments

Object Oriented Semantic Layer

https://medium.com/@tkfbcny/object-oriented-semantic-layer-5e57ac66af53
1•kassette•34m ago•0 comments

Recommendations for Using LLM-Backed Generative AI in FOSS Contributions

https://sfconservancy.org/llm-gen-ai/llm-backed-generative-ai-recommendations.html
1•pella•35m ago•0 comments

Show HN: Aharness – Enforce coding-agent workflows as state machines on Codex

https://github.com/Alfredvc/aharness
1•alfredvc•36m ago•1 comments

MicroSphere – The indie web on your device

https://micro.mjanssen.nl/microsphere/
1•marc0janssen•36m ago•1 comments

It's Only When You Look Back

https://www.markround.com/blog/2026/06/17/25-its-only-when-you-look-back/
1•mark_round•36m ago•0 comments

Unlimited OCR Works

https://arxiv.org/abs/2606.23050
1•ilreb•37m ago•0 comments

What Are AI Agents? A 2026 Definition, Types, and Why 95% Never Reach Production

https://news.ycombinator.com/submit
1•Deepyanti•39m ago•0 comments

Chatting with an AI Won't Make You a Top Programmer

https://lemire.me/blog/2026/06/21/chatting-with-ai-wont-make-you-a-top-programmer/
2•ibobev•39m 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 ...