frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bookmarks, done right: Give your bookmarks a shape worth keeping

https://chromewebstore.google.com/detail/kosh-bookmark-manager/meldjdfnfgefeoegccphimkmgmeamcce
2•havu12•9m ago•0 comments

Being a Doctor Will Never Be the Same After A.I

https://www.nytimes.com/2026/09/25/opinion/ai-doctor-medical-students.html
1•bookofjoe•13m ago•1 comments

OpenAI to Halt Training of Some Models

https://gizmodo.com/openai-to-halt-training-of-some-models-2000817912
2•HiroProtagonist•15m ago•0 comments

US power companies scramble to secure equipment

https://www.reuters.com/business/energy/us-power-companies-scramble-secure-equipment-surging-data...
1•JumpCrisscross•17m ago•0 comments

A Quick Guide on Creating a Design System

https://www.andrewcoyle.com/blog/a-quick-guide-on-creating-a-design-system
1•SenHeng•18m ago•0 comments

Free Space Bunny Model playground, no signup

https://spacebunnymodel.com/
1•jeyzolo•19m ago•1 comments

Locked out: Why young Europeans can't afford to buy homes

https://www.euronews.com/2026/09/23/locked-out-why-young-europeans-cant-afford-to-buy-homes
1•JumpCrisscross•20m ago•0 comments

Washington Challenges Brussels' Authority over X

https://reclaimthenet.org/washington-challenges-brussels-authority-over-x
1•miohtama•21m ago•0 comments

Five Million Robots Now Operate in Factories Globally

https://ifr.org/ifr-press-releases/news/five-million-robots-now-operate-in-factories-globally
1•JumpCrisscross•23m ago•0 comments

Advice to a Beginning Software Engineer

https://www.seangoedecke.com/advice-to-a-beginning-software-engineer/
1•donsquibio•23m ago•0 comments

SpaceX Pivots Away from Space

https://www.ft.com/content/0fd15797-ac89-4222-a4bb-03a6a1330f48
3•kristianp•23m ago•2 comments

Diagnosing and Mitigating Tool-Call Repetition in MiMo-v2.6

https://mimo.xiaomi.com/blog/mimo-v2-6-tool-call-repetition
1•bashtoni•26m ago•1 comments

3D necroprinting: Leveraging biotic material as the nozzle for 3D printing

https://www.science.org/doi/10.1126/sciadv.adw9953
1•ColinWright•26m ago•0 comments

How many strings can you create per second?

https://lemire.me/blog/2026/09/25/how-many-strings-can-you-create-per-second/
2•kristianp•32m ago•0 comments

VevDB

https://vevdb.com/
1•DASD•32m ago•1 comments

Show HN: Vanish moves heavy computation off your laptop

https://vanishcompute.com/
3•fcesco•33m ago•1 comments

Machine Learning Systems

https://mlsysbook.ai/
1•7777777phil•34m ago•0 comments

Eyes on Asteroids (NASA)

https://eyes.nasa.gov/apps/asteroids/
1•vetchzero•41m ago•0 comments

My Ansible Plugin Had a Jail Escape: CVE-2026-55074

https://blog.hofstede.it/my-ansible-plugin-had-a-jail-escape-cve-2026-55074/
1•zdw•42m ago•0 comments

Why Retail Stores are closing across America in 2026

https://www.youtube.com/watch?v=sD5uzN5Q0F0
2•ViktorRay•43m ago•0 comments

George Hotz’s opinion on AI coding

https://twitter.com/__tinygrad__/status/2044354852663558370
3•sashank_1509•44m ago•2 comments

Save Your Time with These Agentic RAG Patterns

https://medium.com/@ZikoZero011/rag-is-easy-until-the-questions-stop-being-easy-a76186e11394
3•Natashiiy•47m ago•1 comments

Thieves steal Nvidia-labeled trailers – yields 20 tons of sand

https://www.tomshardware.com/pc-components/gpus/thieves-steal-nvidia-labeled-trailers-expecting-m...
1•toss1•48m ago•0 comments

AI Has Cracked the Most Diabolical Problems in Math. Why Can't It Solve Chess?

https://www.wsj.com/tech/ai/chess-artificial-intelligence-ai-e969a830
2•Anon84•49m ago•2 comments

Show HN: ShotCandy – Turn any screenshot into a beautiful share-ready image

https://github.com/btahir/shotcandy
2•bilater•49m ago•0 comments

Latency reduction for consumer facing AI applications

1•akiimehta•50m ago•0 comments

Show HN: InkVec Studio – In-browser, SOTA, WASM based (rust) vectorizer

https://logolabs-inkvec.static.hf.space/studio/index.html
2•stefatorus•52m ago•0 comments

Fundamentals still worth learning when AI writes the code

https://flaviocopes.com/fundamentals-ai-era/
1•ibobev•55m ago•0 comments

A thesis isn't enough for a PhD

https://lemire.me/blog/2026/09/26/a-thesis-isnt-enough-for-a-phd/
3•ibobev•58m ago•0 comments

How fast can you fix a UTF-16 string in C#?

https://lemire.me/blog/2026/09/26/how-fast-can-you-fix-a-utf-16-string-in-c/
1•ibobev•58m 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 ...