frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DJB Netstrings

https://cr.yp.to/proto/netstrings.txt
1•signa11•55s ago•0 comments

Easy Acceleration with Distributed Arrays

https://arxiv.org/abs/2508.17493
1•teleforce•4m ago•0 comments

Whale – 98% Cache Hit with DeepSeek

https://github.com/usewhale/Whale
1•arikrahman•7m ago•1 comments

AI That Never Forgets – Dendritron Transformer Explained [video]

https://www.youtube.com/watch?v=6zwuTqGweJE
1•ilaksh•7m ago•1 comments

Google and Epic Abandon Settlement

https://www.macrumors.com/2026/07/15/google-third-party-app-stores/
2•tosh•9m ago•0 comments

DeepCleanAudio AI-powered audio denoising that restores clarity in seconds

https://steelsoft.site/software/DeepCleanAudio_home.html
1•billqu0001•10m ago•0 comments

Precociality and Altriciality

https://en.wikipedia.org/wiki/Precociality_and_altriciality
1•num42•11m ago•0 comments

Chaos and confusion bring US no closer to resolution on Strait of Hormuz

https://www.theguardian.com/world/2026/jul/15/chaos-confusion-no-closer-resolution-strait-hormuz-...
2•hebelehubele•14m ago•0 comments

What happened to our climate extinction?

https://cerebusthefirst.substack.com/p/what-happened-to-our-climate-extinction
1•joanwestenberg•16m ago•0 comments

The First Compiler: How Alan Jay Perlis Made Programming Human

https://nirmalutwani.substack.com/p/the-first-compiler-how-alan-jay-perlis
1•nutwani91•17m ago•1 comments

Emil and the Detectives (1929)

https://www.gutenberg.org/ebooks/79102
1•petethomas•18m ago•0 comments

Ex-Fed advisor gets over three years in prison for lying about China ties

https://www.cnbc.com/2026/07/16/ex-fed-adviser-gets-jailtime-lying-about-china-ties-economic-espi...
3•shinryudbz•22m ago•0 comments

Open source voice runtime with WebRTC and semantic endpointing

https://github.com/byte271/Openlive
1•byte1•23m ago•0 comments

GSAP – A robust JavaScript animation library built for professionals

https://gsap.com/
1•gurjeet•24m ago•0 comments

Locals and Tourists

https://www.flickr.com/photos/walkingsf/albums/72157624209158632/
2•phreeza•24m ago•0 comments

EU officials peeved after Anthropic sends junior staffer to testify about safety

https://www.politico.eu/article/anthropic-european-parliament-donny-greenberg-artificial-intellig...
3•intunderflow•26m ago•0 comments

A Universe from Three Sectors: Recovering TradeWars 2002's Map from Its RNG Seed

https://mattmichie.com/2026/07/14/a-universe-from-three-sectors/
2•influx•31m ago•0 comments

Looking for a remote internship (Fall/Winter/Spring 2026)

1•cnnadozi•32m ago•1 comments

JOBCV.IO - Free Resume Maker Online – Build Your Professional CV

https://jobcv.io/en
1•grossos•32m ago•1 comments

Cross sectioning insects in an electron microscope with a femtosecond laser

https://www.youtube.com/watch?v=NwhVJ7cv9B4
2•fallinditch•33m ago•0 comments

Casberi: Apps in one feed, no account, everything on-device

https://casberi.app
1•alexchopan•34m ago•0 comments

Manage your Claude Code agents in Raycast

https://github.com/vmc-7645/claude-fleet
1•vmc_7645•35m ago•1 comments

Laptop touchpad stopped registering clicks? try this

2•LandOfMightDev•37m ago•0 comments

Deep dive: Quad storage for optimal throughput and latency

https://blog.canoozie.net/four-integers-and-a-lot-of-wrong-assumptions/
1•jtregunna•37m ago•1 comments

OpenAI Launches Hardware for Codex

https://www.theverge.com/ai-artificial-intelligence/965901/openai-hardware-codex-micro-launch
1•thunderbong•39m ago•0 comments

Consultant Bench

https://innolitics.com/articles/consultant-benchmark/
1•innolitics•40m ago•1 comments

The lost joy of music piracy

https://www.pigeonsandplanes.com/read/music-piracy-what-cd-oink-nine-inch-nails-streaming
7•mcgin•48m ago•0 comments

How TypeScript devs can avoid getting pwned by malicious packages

https://builtbystef.com/blog/supply-chain-security/
1•builtbystef•51m ago•0 comments

Reynard: A real Firefox web browser for iOS 13 or later

https://github.com/minh-ton/reynard-browser
1•AbuAssar•58m ago•0 comments

Stop saying that AI is just a tool and it only matters how it is used

https://www.frank.computer/blog/2025/05/just-a-tool.html
7•cratermoon•1h ago•6 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 ...