frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

USB for Software Developers: An introduction to writing userspace USB drivers

https://werwolv.net/posts/usb_for_sw_devs/
1•WerWolv•2m ago•0 comments

Core Flight System

https://etd.gsfc.nasa.gov/capabilities/core-flight-system/
1•jonbaer•3m ago•0 comments

Expanding Swift's IDE Support

https://swift.org/blog/expanding-swift-ide-support/
1•frizlab•4m ago•0 comments

Calling a Rust library from Go with CGO_ENABLED=0

https://stoolap.io/blog/2026/04/08/calling-a-rust-library-from-go-with-cgo-disabled/
1•murat3ok•13m ago•0 comments

Show HN: Safari MCP – Native macOS browser automation (80 tools)

https://github.com/achiya-automation/safari-mcp
2•Achiyacohen•14m ago•0 comments

I run three AdGuard Home instances (two local, one on a VPS)

https://the.unknown-universe.co.uk/privacy-security/the-dns-safety-net/
2•TheIPW•17m ago•1 comments

Show HN: An open-source Go CLI to generate local AWS cost reports

https://awsdoctor.compacompila.com/docs/reporting/
1•elC0mpa•17m ago•1 comments

I build a MCP-Tool to Give ChatGPT and Claude real access to your Linux servers

https://github.com/farukalpay/mcp-nexus
5•vivileo•24m ago•0 comments

Show HN: PostgreSQL running in a browser tab, persisting to S3

https://www.zerofs.net/postgresql-in-the-browser
1•Eikon•26m ago•0 comments

Record-Breaking Octopus Fossil Isn't an Octopus After All

https://nautil.us/this-record-breaking-octopus-fossil-isnt-an-octopus-after-all-1279608
2•Brajeshwar•27m ago•0 comments

Mac Plus Emulator on ESP32-S3

https://github.com/epatel/esp32_mac
2•epatel99•27m ago•1 comments

Aspect oriented data quality for dataflows

https://docs.tabsdata.com/latest/guide/data_quality/main.html
1•immortan_dag•30m ago•0 comments

RShow HN: Runiq – a composable diagram DSL with clean SVG output

https://docs.runiq.org/
1•jgreywolf•33m ago•1 comments

How to play Chopin piano pieces in just one year

https://docs.google.com/document/d/1G9MBPFnRx0pElZVMMPjOrEdZZptabEYYqhq7d-aDQvM/edit?usp=drivesdk
1•ronakmystery•33m ago•1 comments

The blue light from your phone isn't ruining your sleep

https://www.bbc.com/future/article/20260407-the-blue-light-from-your-phone-isnt-ruining-your-sleep
9•devonnull•36m ago•2 comments

With Orion still flying, NASA is nearing key decisions about Artemis III

https://arstechnica.com/space/2026/04/with-orion-still-flying-nasa-is-nearing-key-decisions-about...
6•LorenDB•38m ago•0 comments

Gmail / Google Workspace Incendent Underway

https://www.google.com/appsstatus/dashboard/incidents/224ozRqzW4sFBDK8hLnT
6•vapemaster•38m ago•2 comments

No financial instrument has ever put a root in the ground

https://thismightbetrue.substack.com/p/no-one-gets-rich-planting-trees
3•BrendanNestor•39m ago•0 comments

Markus the Open-Source AI Marketer for OpenClaw, Claude Code, Cursor, and Manus

https://github.com/joshchoi4881/dropspace-agents
1•jclvsh•39m ago•1 comments

Dario – Get Opus back in OpenClaw (uses your existing Claude subscription)

https://github.com/askalf/dario
1•askalf•39m ago•0 comments

Securing OpenClaw with OpenVPN

https://openvpn.net/cloud-docs/tutorials/use-case-tutorials/remote-access---ztna/tutorial--secure...
1•addybojangles•40m ago•0 comments

Scott Hanselman on AI-Assisted Development Tools

https://se-radio.net/2026/03/se-radio-711-scott-hanselman-on-ai-assisted-development-tools/
2•rakel_rakel•41m ago•0 comments

GitHub Copilot CLI combines model families for a second opinion

https://github.blog/ai-and-ml/github-copilot/github-copilot-cli-combines-model-families-for-a-sec...
3•saikatsg•42m ago•0 comments

Astropad Workbench: Remote desktop made for the AI era

https://astropad.com/product/workbench/
1•mlenz•42m ago•0 comments

A century-long argument over light's true nature came to an end

https://www.newscientist.com/article/2522105-how-a-century-long-argument-over-lights-true-nature-...
3•Brajeshwar•42m ago•0 comments

Show HN: Better Agent – A composable AI agent framework in TypeScript

https://www.better-agent.com/
3•probiruk•43m ago•0 comments

The Luxury Playbook for Online Businesses

https://news.alvaroduran.com/p/what-approach-to-building-an-online
1•ohduran•44m ago•0 comments

Encrypted, bot-free meeting notes in 90 languages

https://getloreo.com/
1•fnel•46m ago•1 comments

OpenClaw and the Dream of Free Labour

https://entropytown.com/articles/2026-03-12-openclaw-sandbox/
1•chaosprint•50m ago•0 comments

Show HN: Eclipse Linux Alpha - Void-based with custom init

https://github.com/TheCodeVerseHub/EclipseLinux
4•SinisterMage2•51m ago•2 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•11mo ago

Comments

qwertox•11mo ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•11mo 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•11mo 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•11mo ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•11mo 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•11mo ago
Who runs such an AI generated script without checking the code first?
qwertox•11mo 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•11mo ago
Right so lets just always run the code as is ?
qwertox•10mo 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•11mo 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•11mo ago
In which Roko's Basilisk fires a warning shot.
jethronethro•10mo ago
This is why you test code or a script before running it for real. Live and learn, I guess ...