frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A New Chess Benchmark for Language Models

https://chessbench.ai/timeline
1•soltanov•36s ago•0 comments

The iPhone Duo, the Intelligent Personal Hub, Apple Watch Audio Intelligence

https://stratechery.com/2026/the-iphone-duo-the-intelligent-personal-hub-apple-watch-audio-intell...
1•swolpers•1m ago•0 comments

A New Observable

https://observablehq.com/@observablehq/a-new-observable
1•bluemanshoe2•1m ago•0 comments

Practices I Abandoned with Agents: An Ode to Test-Driven Development

https://adamtornhill.substack.com/p/practices-i-abandoned-with-agents
2•nephrenka•4m ago•0 comments

God Help Us, Let's Try to Learn About Mechanistic Interpretability Techniques

https://www.astralcodexten.com/p/god-help-us-lets-try-to-learn-about
1•andyjohnson0•5m ago•0 comments

Arm Neoverse CSS N4 Launched for Next-Gen CPUs and DPUs – ServeTheHome

https://www.servethehome.com/arm-neoverse-css-n4-launched-for-next-gen-cpus-and-dpus/
1•rbanffy•6m ago•0 comments

What happens in practice if the P=NP problem is solved?

https://heather.cafe/posts/what-if-p-is-np-is-solved/
1•CJefferson•6m ago•0 comments

How Would AI Kill Us All? What to Know About the AI Doomsday Debate

https://www.wsj.com/tech/ai/how-would-ai-actually-kill-us-all-what-to-know-about-the-ai-doomsday-...
1•doener•6m ago•0 comments

The Dress

https://en.wikipedia.org/wiki/The_dress
1•thunderbong•8m ago•0 comments

Arista Networks Arbitrary RCE Vulnerability

https://www.arista.com/en/support/advisories-notices/security-advisory/24730-security-advisory-0174
2•joeblubaugh•9m ago•0 comments

The $2k Phone Should Be Free

https://victorantos.com/posts/the-2000-dollar-phone-should-be-free/
3•victorbuilds•9m ago•0 comments

AI agents that QA-test your web app like real users

https://www.sanitycheck.dev/
1•russellvancuren•9m ago•0 comments

LeMap – Learning Enterprise Map

https://datasong.app
1•thallukrish•10m ago•1 comments

Healthcare AI's next test is integration

https://www.technologyreview.com/2026/09/10/1141421/healthcare-ais-next-test-is-integration/
1•joozio•13m ago•0 comments

Ask HN: What is the proper way of preventing AI labs to use your private data

1•ozgung•14m ago•0 comments

Humble Bundle – 24 Linux, Cloud and Agentic AI Books

https://www.humblebundle.com/books/ultimate-linux-cloud-infrastructure-bundle-packt-books
1•kartikeypan•15m ago•0 comments

Static hosting a coding agent can drive end to end

https://novence.ai
1•LincChad•15m ago•0 comments

Yemen's Houthis Seize Strategic Red Sea Port, Officials Say

https://www.nytimes.com/2026/09/10/world/middleeast/yemens-houthis-seize-strategic-red-sea-port-o...
2•ceejayoz•15m ago•0 comments

Search engine may access the user's location without prompting them

https://chromium.googlesource.com/chromium/src.git/+/main/docs/x_geo_header.md
1•kozika•18m ago•0 comments

iPhone Pro Materials, Ranked

https://volatileinputs.com/2026/04/iphone-pro-materials-ranked/
1•simonebrunozzi•22m ago•0 comments

Keyword Research Tools

https://topkeywordresearchtools.com/
1•Keywordstat•23m ago•0 comments

The Einstein test: what happens when AI tries to rediscover relativity?

https://www.nature.com/articles/d41586-026-02804-x
1•bookofjoe•25m ago•0 comments

The Limits of Miles Driven as AV Safety Evidence

https://muraiki.github.io/av_safety/limit_miles_evidence/
1•muraiki•25m ago•0 comments

Test your agent in a simulation of your stack before it touches prod

https://sonatalabs.ai/
1•matildagh•26m ago•1 comments

Neuriva

https://www.facebook.com/NeurivaTry/
1•rafygabu•26m ago•0 comments

AI isn't going to kill us

https://thecritic.co.uk/the-1-5-billion-ai-doomsday-cult/
2•romaniitedomum•27m ago•0 comments

TrustDento | India's Trusted Dental Care Network

1•nxtoffer•29m ago•0 comments

Caltech mathematicians call for suspension of AI Mathathon

https://proofsandprompts.com/2026/09/10/open-letter-about-the-mathathon/
1•doubledamio•31m ago•0 comments

PrimalLift

https://www.facebook.com/PrimalLiftTry/
1•najudasy•31m ago•0 comments

DeepJIT: Header-Only C++20 JIT Runtime for Nvidia CUDA and Huawei Ascend

https://github.com/deepseek-ai/DeepJIT
1•mehmetoguzderin•38m 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 ...