frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Do you still run Redis and workers just for background jobs?

1•sergF•1m ago•0 comments

Looking for a technical co-founder to build a group travel platform

https://www.booqall.com/
1•Gedtech•1m ago•1 comments

Proxima Fusion, the first commercial fusion power plant in Europe

https://www.proximafusion.com/press-news/proxima-fusion-rwe-the-free-state-of-bavaria-and-max-pla...
1•taubek•2m ago•0 comments

1,300-pound NASA satellite will crash to Earth on March 10

https://www.space.com/space-exploration/satellites/incoming-1-300-pound-nasa-satellite-will-crash...
2•Brajeshwar•3m ago•0 comments

SETI admits its search for alien life may be too narrowly focussed

https://www.theregister.com/2026/03/10/seti_admits_its_search_for/
1•samizdis•8m ago•0 comments

Billionaires are a danger to themselves and (especially) us

https://pluralistic.net/2026/03/09/autocrats-of-trade-2/
2•only_in_america•9m ago•0 comments

Spider-Man and Hydra

https://medium.com/luminasticity/spider-man-and-hydra-680a9306f599
1•bryanrasmussen•10m ago•0 comments

Meteorite Crashes Through Roof in Germany After Fiery Light Show

https://www.nytimes.com/2026/03/09/science/meteorite-europe-crash-germany-roof.html
1•Brajeshwar•10m ago•0 comments

Predbat Documentation

https://springfall2008.github.io/batpred/
1•DamonHD•11m ago•0 comments

What the EU's new industry and 'Made in Europe' rules mean for climate action

https://www.carbonbrief.org/qa-what-the-eus-new-industry-and-made-in-europe-rules-mean-for-climat...
1•doener•14m ago•0 comments

CSMWrap: Legacy BIOS booting on UEFI-only systems via SeaBIOS

https://github.com/CSMWrap/CSMWrap
1•_joel•14m ago•0 comments

The end of geo-blocking within the EU

https://www.europe-consommateurs.eu/en/shopping-internet/end-of-geoblocking.html
1•b13n1u•14m ago•0 comments

Redox OS has adopted a Certificate of Origin policy and a strict no-LLM policy

https://gitlab.redox-os.org/redox-os/redox/-/blob/master/CONTRIBUTING.md
12•pjmlp•15m ago•0 comments

Show HN: Hotwire Club – A Learning Community for Hotwire (Turbo/Stimulus/Rails)

https://hotwire.club
1•julianrubisch•17m ago•0 comments

Let your AI agents talk to each other

https://flam.im/
3•ano-dev•19m ago•0 comments

Nexperia China says it has begun producing its own chips

https://www.reuters.com/world/china/nexperia-china-announces-12-inch-wafer-breakthrough-tensions-...
2•mobilio•19m ago•0 comments

Plan 9 Style hosted OS for AI?

https://docs.mind-swarm.ai/Views/%F0%9F%95%B8+Introduction
1•DeanoC•20m ago•1 comments

Levels of Agentic Engineering

https://www.bassimeledath.com/blog/levels-of-agentic-engineering
1•bombastic311•21m ago•0 comments

Why Memgraph Infrastructure Was Moved to Hetzner

https://memgraph.com/blog/memgraph-infrastructure-move-to-hetzner
3•mbuda•22m ago•1 comments

Yann LeCun Raises $1B to Build AI That Understands the Physical World

https://www.wired.com/story/yann-lecun-raises-dollar1-billion-to-build-ai-that-understands-the-ph...
3•helloplanets•23m ago•2 comments

Against the unchecked growth of satellite mega constellations

https://www.scientificamerican.com/article/rampant-growth-of-satellite-mega-constellations-could-...
2•robtherobber•25m ago•0 comments

Offloading FFmpeg with Cloudflare

https://kentcdodds.com/blog/offloading-ffmpeg-with-cloudflare
3•heftykoo•28m ago•0 comments

Debug Infrastructure for Silicon R&D

1•bsethupathi•30m ago•1 comments

Show HN: Web-Based ANSI Art Viewer

https://sure.is/ansi/
2•lubujackson•30m ago•0 comments

Ltx AI

https://ltx23.net
1•cy20251210•31m ago•1 comments

Transnistria

https://en.wikipedia.org/wiki/Transnistria
2•pinkmuffinere•31m ago•0 comments

Media over QUIC: On a Boat

https://moq.dev/blog/on-a-boat/
1•birdculture•35m ago•0 comments

Dont Poison your Coding Agent with its own Hallucinations

https://github.com/anEntrypoint/gm-cc
1•lanmower•38m ago•0 comments

Made an AI agent out of Apple shortcuts

https://github.com/Twinkle661/TinyAgent
1•661•39m ago•1 comments

Remove invisible AI watermarks from Gemini images using reverse alpha math

https://github.com/denuwanpro/removebanana
2•zigmig•42m 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•10mo ago

Comments

qwertox•10mo ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•10mo 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•10mo 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•10mo ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•10mo 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•10mo ago
Who runs such an AI generated script without checking the code first?
qwertox•10mo 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•10mo 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•10mo 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•10mo 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 ...