frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple Copland D11E4 Booting in the Browser

https://www.pagetable.com/300
1•luu•4m ago•0 comments

Avoiding the babbling-idiot failure in a time-triggered communication system

https://ieeexplore.ieee.org/document/689473
1•ronfriedhaber•4m ago•0 comments

Kara (2012) [video]

https://www.youtube.com/watch?v=TDxOUD7AgJk
1•18al•5m ago•0 comments

Five stages of grief AI edition

https://operationsoptimist.substack.com/p/i-think-im-going-through-the-five
1•dianalace•5m ago•0 comments

Show HN: Four-Leaf MCP, open-source job search and interview prep

https://github.com/fourleafai/clover-public
2•frank_clover•6m ago•0 comments

ReadWhile. read while you work

https://apps.microsoft.com/detail/9nq6tdqbntt2?hl=en-US&gl=US
1•ammarahmad111•6m ago•1 comments

Maybe Meta Is Right About AI, or at Least Jeremy Stern Is

https://philippdubach.com/posts/maybe-meta-is-right-about-ai/
1•7777777phil•7m ago•0 comments

Anthropic at $2T isn't far-fetched

https://www.ft.com/content/01a7b883-452c-4902-b40e-e3957de5d89e
1•7777777phil•8m ago•2 comments

Physics in the Age of LLMs

https://ozamram.substack.com/p/physics-in-the-age-of-llms
1•thunderbong•8m ago•0 comments

Hermes Agent now supports Claude Pro/Max subscriptions

https://hermes-agent.nousresearch.com/docs/plugins/claude-subscription-directsdk
2•rob•11m ago•0 comments

You Probably Don't Need Another Infrastructure Project

https://medium.com/@majid.fekri/youre-building-an-ai-startup-you-probably-don-t-need-another-infr...
1•supportm•11m ago•0 comments

Measurements for understanding the pace of AI development inside frontier labs

https://www.anthropic.com/institute/measuring-pace-of-ai-development
1•gmays•12m ago•0 comments

Saudi CEER just launched 2 EVs

https://ceermotors.com/individuals/en-sa
1•abdullahalharir•12m ago•0 comments

Show HN: Artwork List – map of artworks near you

https://artworklist.com/nearby/
1•ekerstein•13m ago•0 comments

Show HN: Combinators in Array Languages

https://blog.softwarewrighter.com/2026/09/21/rabbit-hole-sage-y-combinator/
2•softwarewright•15m ago•0 comments

Writing Without Spaces with Jev

https://levmiseri.com/nospace/
3•levmiseri•15m ago•0 comments

I gave an autonomous AI company $0 and $200 of debt

https://autonomouscompany.substack.com/p/i-gave-an-autonomous-ai-company-0
2•effelima•16m ago•0 comments

AI-Induced Dehumanization

https://myscp.onlinelibrary.wiley.com/doi/full/10.1002/jcpy.1441
2•lantry•19m ago•0 comments

State attorneys general agree to settle Paramount-Warner Bros merger lawsuit

https://www.cnn.com/2026/09/21/media/paramount-wbd-settlement-cnn-ellison-bonta-lawsuit
2•shscs911•19m ago•0 comments

Halo: Post-train LLMs 3x faster than TRL and Megatron

https://twitter.com/whitecircle/status/2102087563913609534
5•ovyan•19m ago•1 comments

A (necessarily) brief history of the reminder of mathematics

https://cofault.com/series_timeline_compact_reverse_flat.html#math-remainder-00000
2•nikita_d•21m ago•0 comments

Grok 4.7

https://twitter.com/SpaceXAI/status/2102069815225586149
2•tosh•22m ago•0 comments

Show HN: Gitstats – compare commits and lines with your friends

https://gitstats.org
1•yarikbuilds•22m ago•0 comments

David Pogue: '125 Tests of the New AI Siri'

https://daringfireball.net/linked/2026/09/21/pogue-siri-ai-125
2•frizlab•22m ago•0 comments

The Long Dream of the Googlebook

https://www.theverge.com/tech/997972/googlebook-laptop-chromeos-android-history
1•dmitrygr•23m ago•1 comments

The Next AI Infrastructure Challenge Is Before the First Token

https://radicaldatascience.wpcomstaging.com/2026/09/16/the-next-ai-infrastructure-challenge-is-be...
2•ddgutierrez•25m ago•0 comments

Show HN: I made a Pomodoro timer that speeds up time

https://arsh.zip/timer/what
1•arshxyz•25m ago•0 comments

Show HN: Viaduct – C4 models that coding agents can read and update

https://c4.quietgridlabs.com/
1•igrlgkv•29m ago•0 comments

OpenAI Urges U.S. Government to Create Global AI-Safety Standards

https://www.wsj.com/tech/ai/openai-urges-u-s-government-to-create-global-ai-safety-standards-a8af...
3•thm•29m ago•0 comments

Apple M6 SoC Analysis's 2 nm chip crushes AMD, Intel and Qualcomm

https://www.notebookcheck.net/Apple-M6-SoC-Analysis-Apple-s-2-nm-chip-crushes-AMD-Intel-Qualcomm....
3•cromka•30m 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 ...