frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GMass CEO Ajay Goel grew to $8.6M revenue and 200K customers in 2024

https://getlatka.com/companies/gmass
1•mmarian•1m ago•0 comments

Conquering Recursion

https://nsl.com/misc/Conquering_Recursion.html
1•tosh•3m ago•0 comments

ExpensePal - AI expense tracker & budget planner

https://play.google.com/store/apps/details?id=com.expenseiq.app&hl=en_US
1•sandeepannandi•3m ago•1 comments

Paint it blue: Attacking the Bluetooth stack (2025)

https://www.synacktiv.com/en/publications/paint-it-blue-attacking-the-bluetooth-stack
1•D4Ha•6m ago•0 comments

An unofficial solution to a obvious wayfinding problem

https://highcapacityhayden.substack.com/p/the-djerring-trail-disappears-at
1•Nition•6m ago•0 comments

Show HN: Chess in SQL

https://swingbit.github.io/quackmate/
1•swingbit•9m ago•0 comments

I mined 224 transcripts to salvage a model too good to be legal

https://johnkueh.com/articles/borrowed-intelligence
1•johnkueh•9m ago•0 comments

Buying Britain: overseas buyers pile into UK companies

https://www.ft.com/content/2b475640-0ea6-4c25-8511-116eca6b78c5
1•mmarian•10m ago•1 comments

White House's export limits on Anthropic linked to concerns about Chinese access

https://www.semafor.com/article/06/13/2026/white-house-move-to-limit-anthropic-linked-to-concerns...
2•dsr12•17m ago•1 comments

The Jailbreak That Got Fable 5 Pulled Exists in Every Model

https://eigenwise.io/writing/the-jailbreak-in-every-model
1•KennyVan•18m ago•1 comments

Have we made a unicorn? Continuous SVG-pelican style benchmark

https://havewemadeaunicorn.com/
1•curioussquirrel•19m ago•1 comments

Naismith's Rule

https://en.wikipedia.org/wiki/Naismith%27s_rule
2•samuel2•22m ago•0 comments

Surpassing Frontier Performance with Fusion

https://openrouter.ai/blog/announcements/fusion-beats-frontier/
2•jcfrei•22m ago•1 comments

Demystifying phone unlocking tools: A technical overview – Osservatorio Nessuno

https://osservatorionessuno.org/blog/2026/05/demystifying-phone-unlocking-tools-a-technical-overv...
1•Cider9986•23m ago•0 comments

The Machine Stops (1909)

https://en.wikipedia.org/wiki/The_Machine_Stops
1•tosh•31m ago•0 comments

Telegram filter bot and Bluesky poster

https://github.com/bananaosint/bsky-poster
1•bananaosint•32m ago•0 comments

Show HN: Sabela – A Reactive Notebook for Haskell

https://sabela.datahaskell.com/
2•mchav•33m ago•0 comments

AI Slop flooding maths YouTube [video]

https://www.youtube.com/watch?v=mRO_QonhC2c
1•soupspaces•39m ago•0 comments

Bims: Biomed News

https://biomed.news/
1•XzetaU8•42m ago•0 comments

Travel preparation for parents with young kids

https://www.traveltods.world/
1•Yantso•43m ago•2 comments

General-purpose large language models outperform specialized clinical AI

https://www.nature.com/articles/s41591-026-04431-5?brid=YWdncwFKdLH5ne5BLVS2Tb5UQSQa&utm_id=97757...
3•doener•47m ago•0 comments

A zero-copy C/Python DFA engine that scrubs logs at 571 MB/s

https://github.com/thedevilhimselfcodes/guardog
1•LuciferLK•49m ago•0 comments

'A man of great appetites': what's it like to be a dictator's personal chef?

https://www.theguardian.com/film/2026/jun/09/how-to-feed-a-dictator-film
2•Michelangelo11•49m ago•0 comments

The Last Open Frontier

https://www.mikehyland.com/blog/frontier-model-government-shutdown
1•mjhyl•52m ago•0 comments

Right to Repair: The Battle You Didn't Know You Were Fighting (video)

https://www.youtube.com/watch?v=ZaX20zv-Xw4
1•mdp2021•52m ago•0 comments

Ask HN: Could someone please invite me to Lobste.rs?

1•ML0037•55m ago•0 comments

AI inequality: from GPU-poor to token-poor

https://adlrocha.substack.com/p/adlrocha-ai-inequality-from-gpu-poor
1•adlrocha•56m ago•0 comments

Show HN: Memoriq – Open-source encrypted vault for saving and searching AI chats

https://github.com/memoriqme/memoriq
1•giekaton•57m ago•0 comments

RoleDecoder

https://roledecoder.com/
1•Mohammad_1ta•58m ago•0 comments

SemanticSourceCode – Local semantic code search with Ollama and SQLite

https://github.com/TheEifelYeti/SemanticSourceCode
1•EifelYeti•1h 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 ...