frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A Free Cloud Container

https://usebench.dev/
1•saucepoint•42s ago•0 comments

Hillock – Local neuro-symbolic memory engine running in <1.2GB VRAM

https://github.com/roandejager/Hillock
2•roandejager5•1m ago•0 comments

Show HN: My first app got 97% on MacSources

https://bitvibelabs.com/tickernotch/
2•BitVibeLabs•3m ago•0 comments

Surfil On-device control plane for AI coding agents

https://surfil.com/
3•Samaradam•3m ago•0 comments

Gemini 3.7 Flash

https://ai.google.dev/gemini-api/docs/models/gemini-3.7-flash
16•thisisauserid•4m ago•4 comments

JDK 27 G1/Parallel/Serial GC Changes

https://tschatzl.github.io/2026/08/10/jdk27-g1-serial-parallel-gc-changes.html
2•0x54MUR41•5m ago•0 comments

Why Google killed its best argument for AI

https://www.hardresetmedia.com/p/why-google-killed-its-best-argument
3•pac0•5m ago•0 comments

From slow tests to slow production: Debugging with Stackprof

https://www.aha.io/engineering/articles/debugging-with-stack-prof
2•FigurativeVoid•6m ago•0 comments

Nine PBS sues Iron Mountain over blocked access to archival data

https://current.org/2026/08/nine-pbs-sues-iron-mountain-over-blocked-access-to-archival-data/
3•simonpure•7m ago•0 comments

Why and how to check your SSDs Trim correctly

https://eclecticlight.co/2026/08/13/why-and-how-to-check-your-ssds-trim-correctly/
2•Brajeshwar•7m ago•0 comments

Groupon founder Andrew Mason's farewell letter to employees (2013)

https://www.theguardian.com/technology/blog/2013/mar/01/groupon-andrew-mason-fired-letter
3•bobbiechen•9m ago•0 comments

Chasing an Elusive Rails SSE Bug/Hang

https://www.babylist.com/engineering/blog/rails-sse-hang
1•wpeterson•11m ago•0 comments

SpaceXAI debuts Grok 4.6, overtaking Kimi K3's and matching GPT-5.6 Sol

https://tracking.tldrnewsletter.com/CL0/https:%2F%2Fventurebeat.com%2Ftechnology%2Fspacexai-debut...
4•countbinface•12m ago•0 comments

Tocharian Online

https://lrc.la.utexas.edu/eieol/tokol/0
4•Bluestein•12m ago•0 comments

Runta SSH access for agent runtimes

https://runta.com/blog/ssh-access-for-runta-runtimes/
5•shiqimei•13m ago•0 comments

Anthropic in talks to buy Decart AI for $6B

https://www.reuters.com/technology/anthropic-talks-buy-decart-ai-source-says-2026-08-13/
5•adamhowell•14m ago•0 comments

Natural Language Processing (NLP) Explained – AI and Human Language

https://bytetality.com/reviews/86-natural-language-processing-nlp-explained-ai-human-language
3•lava-doe•16m ago•0 comments

Scientists Taught Living Brain Cells to Play a Game

https://www.rathbiotaclan.com/cultured-neurons-improve-at-simplified-pong-under-closed-loop-feedb...
2•Akasci•16m ago•0 comments

Before You Add Another Class, Make the Time Slot Prove Itself

https://www.usemojo.app/en/blog/test-a-new-class-time-slot
2•usemojoapp•16m ago•0 comments

A Preview of Roc 0.1.0 by Richard Feldman

https://www.youtube.com/watch?v=a7qEOtkkDb8
3•birdculture•17m ago•0 comments

UEFA takes inspiration from EU in plan to oust Gianni Infantino and reform FIFA

https://www.independent.co.uk/sport/football/gianni-infantino-news-latest-fifa-uefa-b3032292.html
2•vrganj•17m ago•0 comments

Your Coding Agent Keeps a Diary

https://www.sfrt.io/your-coding-agent-keeps-a-diary/
3•tosh•17m ago•0 comments

Rails Is Built for AI

https://rubyonrails.org/ai
7•cdnsteve•18m ago•1 comments

Trump's 401(k) Proposal Shows Evidence of Phony Public Support

https://www.bloomberg.com/news/features/2026-08-13/trump-401-k-proposal-shows-signs-of-phony-supp...
4•petethomas•19m ago•0 comments

Mistral lab started to sell competitors models in its inference platform

https://mistral.ai/news/regional-inference-open-models-new-compute/
3•samber•20m ago•0 comments

How U.S. Navy Pilots Really Get Their Callsigns

https://www.twz.com/how-u-s-navy-pilots-really-get-their-callsigns
2•bushwart•20m ago•0 comments

UK Train Derails

https://www.bbc.co.uk/news/live/cly5252xqdvt
4•m4tthumphrey•20m ago•0 comments

The SvelteKit 3 Release Candidate is here

https://svelte.dev/blog/sveltekit-3-release-candidate
2•pier25•21m ago•0 comments

Show HN: Deepmark – Search your bookmarks by what's inside them, not the title

https://usedeepmark.com/
2•shafkathullah•22m ago•0 comments

Mistral OCR 4.1

https://docs.mistral.ai/models/ocr-4-1
3•spelk•23m 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 ...