frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google's Hassabis calls for new US-led global AI watchdog "before year end"

https://www.axios.com/2026/07/14/demis-hassabis-ai-regulation-google-deepmind
1•simonpure•30s ago•0 comments

Google's Gemini is sued for summarizing a Hungarian news article

https://mrkt30.com/dolphins-ai-and-copyright-the-strange-case-heading-to-europes-top-court/
1•emsidisii•41s ago•0 comments

Red cards have more than tripled since the last World Cup, data show

https://phys.org/news/2026-07-red-cards-tripled-world-cup.html
1•speckx•42s ago•0 comments

Open-Source Reflect Rewrite

https://github.com/team-reflect/reflect-open
1•swah•1m ago•0 comments

Squiggle: A minimalist programming language for probabilistic estimation

https://www.squiggle-language.com/docs
1•theblazehen•1m ago•0 comments

Show HN: bigdraw, a big shared canvas anyone can draw on

https://bigdraw.party/
1•alexpls•1m ago•0 comments

Notes on Network Signal Congestion Control

https://dipsingh.github.io/NSCC-Deep-Dive/
1•ankitg12•2m ago•0 comments

Equana – Numerical Computing

https://equana.dev/
1•quebi•3m ago•0 comments

SQLite Is All You Need

https://www.dbpro.app/blog/sqlite-is-all-you-need
1•upmostly•3m ago•0 comments

WorkerDeck – Run one isolated background process per user (Python, zero deps)

https://github.com/gritfeld-design/workerdeck
1•Reiney•3m ago•0 comments

Show HN: Parametric 3D models created using JavaScript

https://muffinman.io/3d-models/
1•stanko•4m ago•0 comments

Most intellectual labour is proof of work

https://blog.jsbarretto.com/post/pow
3•ibobev•5m ago•0 comments

Intuition for Distribution Differences

https://entropicthoughts.com/distribution-differences
1•ibobev•5m ago•0 comments

Sorted Rank Coding

https://purplesyringa.moe/blog/sorted-rank-coding/
1•ibobev•6m ago•0 comments

The Gentle Art of Making Enemies (1890) [pdf]

https://web.english.upenn.edu/~cavitch/pdf-library/Whistler_Gentle_Art_of_Making_Enemies.pdf
1•jruohonen•6m ago•1 comments

Show HN: AI mock-interview coach that scores how you sound, not just your words

https://www.stanrose.com/mondaus
1•mondaussupport•7m ago•0 comments

Kittygram – An anonymous, privacy-friendly and open-source Instagram front end

https://kittygr.am/
2•keks24•8m ago•1 comments

The database wars and where LLMs are (maybe) headed

https://rruxandra.github.io/the-database-in-the-room.html
2•rruxandra_l•8m ago•0 comments

Show HN: GitBiased – your team development dashboard

https://gitbiased.com/
2•skyfantom•9m ago•0 comments

Org Charts of the Big Tech Companies (2011)

https://www.globalnerdy.com/2011/07/03/org-charts-of-the-big-tech-companies-plus-an-enhancement/
2•surprisetalk•10m ago•0 comments

What does "playing politics" mean for software engineers?

https://www.seangoedecke.com/playing-politics/
5•mltvc•10m ago•0 comments

Python Is So Slow. Can Julia Solve the Two-Language Problem?

https://www.wired.com/story/python-is-so-slow-can-julia-solve-the-two-language-problem/
2•theanonymousone•11m ago•1 comments

Show HN: An AI Duolingo for your income goals

https://thrivez.io/thrivez-ai-mentor/
3•Fotis-Karmpas•11m ago•1 comments

How to Overengineer a Project with AI

https://www.pablols.com/posts/049_i_overengineered_a_website/
2•wanderdust•14m ago•0 comments

The SaaSpocalypse Maybe Ending, but SaaS Will Never Be the Same Again

https://www.forbes.com/sites/timkeary/2026/06/30/the-saaspocalypse-maybe-ending-but-saas-will-nev...
3•jruohonen•16m ago•0 comments

Show HN: I built a deterministic check for fabricated quotes in LLM output

https://github.com/pierreolivierbonin/verbatimeter
2•pobonin•16m ago•0 comments

At CERN, AI will drive future discoveries

https://www.swissinfo.ch/eng/research-frontiers/at-cern-ai-will-drive-future-discoveries/91723774
2•giuliomagnifico•18m ago•0 comments

Wonder Window

https://thekidshouldseethis.com/share/
2•smallerize•19m ago•0 comments

Germany set to restrict its Freedom of Information Act

https://www.dw.com/en/germany-freedom-of-information-act/a-77939695
14•robtherobber•20m ago•0 comments

ATProto for Distributed Systems Engineers

https://atproto.com/articles/atproto-for-distsys-engineers
2•typical182•21m 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 ...