frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I Read the Bonsai 27B Paper. What You Gain–and Lose–With 1-Bit Compression

https://medium.com/@deshpandetanmay/a-27b-ai-model-ran-on-an-iphone-heres-what-survived-compressi...
1•tanmaydesh5189•3m ago•0 comments

Show HN: A self-hosted AI that turns Hacker News into a daily briefing

https://github.com/RecNes/hn-ai-summarizer
1•SencerH•3m ago•0 comments

Self-evolving repo for team and coding agent collaboration

https://www.sepo.sh/
2•liangqiyao99•4m ago•0 comments

Ancient Roman farm women made wine, oil and profits; dismissed as 'housekeepers'

https://phys.org/news/2026-07-ancient-roman-farm-women-wine.html
1•1659447091•4m ago•0 comments

Show HN: Rate A Human – AI agents review the humans they work for

https://rateahuman.xyz/
1•ziadhussein•5m ago•0 comments

A real SAT solution. P is not always hard

https://zenodo.org/records/21445865
1•GeometryKernel•6m ago•0 comments

Tripplet AI – a new era of smarter AI

https://www.getsonoma.lol/
1•htmghrceceg•9m ago•0 comments

Godot Benchmark: Sol > K3 > Fable

https://ziva.sh/blogs/godot-ai-benchmark
1•OsrsNeedsf2P•10m ago•0 comments

Ask HN: Run Kimi in Claude Code?

1•Exorust•11m ago•0 comments

We built an open-source static AI risk analyzer in 5 days using AI coding agents

https://github.com/ikaruscareer/SafeAI
1•ikaruscareer•11m ago•0 comments

Meet The Companies Shelling Out for Top AI Models

https://www.wsj.com/cio-journal/meet-the-companies-shelling-out-for-top-ai-models-e1fe3375
1•pixelcort•11m ago•0 comments

Boeing says it will be ready to fund new plane programme by 2030

https://www.ft.com/content/c688ea11-c066-44a3-9372-2e2293e9e6f9
3•JumpCrisscross•20m ago•0 comments

Principia Artificialis – Mathematical Foundations of Artificial Thought

https://github.com/holland202/Principia-Artificialis
2•badatchess•21m ago•0 comments

Gaia Skill Tree: a registry where every agent skill ships with an evidence chain

https://github.com/gaia-research/gaia-skill-tree
1•nova-gaia•26m ago•0 comments

Show HN: Ticker-line.com – embeddable market sparkline SVGs

https://ticker-line.com/
1•kahtaf•27m ago•0 comments

Scientists are regrowing human teeth

https://www.bbc.com/future/article/20260717-goodbye-implants-scientists-are-regrowing-teeth
2•dabinat•29m ago•1 comments

Is it a slop if it's not sloppy?

https://mkagenius.substack.com/p/is-it-a-slop-if-its-not-sloppy
2•mkagenius•32m ago•1 comments

Jurassic Park packed $4M of legit 1993 computer hardware

https://www.tomshardware.com/desktops/jurassic-park-packed-usd4-million-of-legit-1993-computer-ha...
5•sbulaev•36m ago•2 comments

xAI's first lawsuit against a user tests who is responsible for what Grok makes

https://thenextweb.com/news/xai-sues-grok-user-csam-terms-of-service
7•nyku•37m ago•1 comments

We want Texans to know their rights

https://www.eff.org/deeplinks/2026/07/we-want-texans-know-their-rights-qa-mayday-health-impact-su...
23•amarcheschi•40m ago•5 comments

The Control Group Is Out of Control (2014)

https://slatestarcodex.com/2014/04/28/the-control-group-is-out-of-control/
4•downbad_•42m ago•0 comments

Ask HN: How are you doing threat modeling for Terraform/IaC?

2•PotatoFy•44m ago•1 comments

On Creativity

https://twitter.com/bekhovsgun/status/2078959026004471973
3•reb•44m ago•0 comments

Grok-iOS – remote Grok Build from your iPhone over ACP

https://github.com/Pedroshakoor/grok-build-ios
3•pedroshakoor•52m ago•0 comments

Biggest Probabilistic Computer Turns Noise into Answers

https://spectrum.ieee.org/biggest-probabilistic-computer
2•rbanffy•1h ago•0 comments

Bad roads act as filters (1967)

https://wist.info/krutch-joseph-wood/53557/
2•dredmorbius•1h ago•1 comments

Is AI Progress Real? Four Independent Metrics Show It

https://skepticcto.substack.com/p/is-ai-progress-real-a-skepticcto
2•rbuccigrossi•1h ago•0 comments

Offload: Parallelize your test suite across 200 cloud sandboxes

https://imbue.com/product/offload
2•nvader•1h ago•0 comments

Show HN: A canvas-based note taking and organizer app

https://www.passinote.app/
12•passiflora96•1h ago•4 comments

Fayetteville officers fired for misusing license plate system

https://www.fox5atlanta.com/news/3-fayetteville-officers-fired-misusing-license-plate-system
8•pir8life4me•1h 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 ...