frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I built a margin tracker for builders after watching them guess in spreadsheets

https://tryobra.com/
1•mytinyrocket•1m ago•0 comments

Donald Trump boxed his party in

https://www.economist.com/united-states/2026/09/10/how-donald-trump-boxed-his-party-in
1•Anon84•1m ago•0 comments

The Kirkversary: An AI Carnival

https://thecarrierwave.substack.com/p/kirkversary-a-bizarre-ai-carnival
1•throwawayq3423•4m ago•0 comments

Setting up OpenCode with Ollama and sbx on Mac

https://tensorsandtokens.com/posts/opencode-ollama/
2•etoxin•5m ago•0 comments

Easter egg: binary code on top of Golden Gate Bridge

https://week-of-ai.com/
1•Scouttie•7m ago•0 comments

Google will buy half the electricity of a nuclear power plant

https://www.bbc.com/news/articles/c8r6y4me2g6o
3•lukaspetersson•8m ago•0 comments

Abu Dhabi buys into China's Luckin Coffee with $1B deal

https://www.ft.com/content/7f9a5140-e3f5-45a9-9620-08b8e819ba41
2•teleforce•9m ago•0 comments

The New Cinema Camera Dominating the Film Industry

https://www.indepthcine.com/videos/new-popular-cinema-camera-2026
3•gwill•12m ago•0 comments

Parameter

https://www.parameter.ai
1•handfuloflight•14m ago•0 comments

ClassicPress: Forked from WordPress without the block editor

https://www.classicpress.net/
1•thunderbong•14m ago•0 comments

DeepSeek 4.1 Flash

https://www.deepseek.com/en/news/deepseek-v4-1-flash/
2•thatxliner•16m ago•0 comments

YuE2 · Frontier Music with Symbolic Planning

https://map-yue2.github.io/
3•sexy_seedbox•17m ago•1 comments

I turned off my algorithm for 24 hours. Is this how social media used to be?

https://www.theguardian.com/media/2026/sep/11/i-turned-off-my-instagram-algorithm-opt-out-social-...
5•billybuckwheat•21m ago•0 comments

FunClock – Relaxing Tick, Animated Clock for Focus and Sleep

https://play.google.com/store/apps/details?id=com.yugakhan.funclock&hl=en_US
1•cflsdf•23m ago•0 comments

Details.so

https://www.details.so/inspo
2•handfuloflight•23m ago•0 comments

Release 13.1.5 · Grafana/Grafana

https://github.com/grafana/grafana/releases/tag/v13.1.5
2•kyisaiah47•23m ago•0 comments

LightSleep – Gentle Sounds for Better Sleep App

https://play.google.com/store/apps/details?id=com.yugakhan.lightsleep&hl=en_US
1•cflsdf•24m ago•0 comments

Kinapod: Throw metrics from an AirPod in your disc

https://kinapod.com/disk
2•inickt•27m ago•0 comments

New audit combo for AI agents

https://lexifina.com/blog/new-audit-for-ai-agents
2•alansaber•29m ago•1 comments

Show HN: Learn programming by building something you want

https://codeset.ai/
1•Nfsaavedra•30m ago•0 comments

Nari Labs: Multimodal inference at the speed of light

https://narilabs.com/
1•handfuloflight•30m ago•0 comments

Where Learning Becomes the Next Problem

https://medium.com/@gurvinder372/article-16-where-learning-becomes-the-next-problem-883e76699613
1•gps372•31m ago•0 comments

My CCPA Dialog with OpenAI (2023)

https://www.dbreunig.com/2023/12/27/openai-ccpa-request.html
1•dbreunig•33m ago•0 comments

Ask HN: Where is your red line for an AI provider?

1•soundworlds•39m ago•0 comments

Just a VLM Agent Can Play Robots

https://arxiv.org/abs/2609.10522
2•thedreammachine•40m ago•0 comments

Three Weeks in a Village of Builders

https://www.edventures.co/edgecity
1•measurablefunc•43m ago•0 comments

Image Dithering in R (2019)

https://www.sumsar.net/blog/2019/01/image-dithering-in-r/
1•atan2•46m ago•0 comments

AI Agent Builder gives memory across voice, SMS, email, web chat and social

https://boldagents.co
5•howdoweknowit•47m ago•0 comments

Stardust Store – An independent Android app marketplace

3•zishutron•48m ago•0 comments

Self-hosting your own agent infrastrcuture (centaur)

https://www.youtube.com/watch?v=993XrWfg34U
3•bradwmorris•51m 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 ...