frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

IPFS Bot AI Agent Content

https://ipfs.bot/
1•sucid•25s ago•0 comments

Relics of the Heroic Age of Manned Space Flight

http://heroicrelics.org/index.html
1•zdgeier•35s ago•0 comments

Securing ECC Cryptocurrencies Against Quantum Vulnerabilities

https://arxiv.org/abs/2603.28846
1•u1hcw9nx•7m ago•1 comments

Premium: The Hater's Guide to OpenAI

https://www.wheresyoured.at/hatersguide-openai/
1•mc-serious•7m ago•0 comments

Being-as-Appearing Under Articulation

https://jimiwen.substack.com/p/a4
1•jimiwen•8m ago•0 comments

The Gombe Chimpanzee War

https://en.wikipedia.org/wiki/Gombe_Chimpanzee_War
3•creamyhorror•11m ago•0 comments

Abundance for All – Not Just the Few

https://github.com/dileeppandey/abundance-manifesto
1•ai_psychosis•15m ago•0 comments

Session-roam – Resume Claude Code conversations from any machine via Syncthing

https://github.com/VirelNode/session-roam
1•JDaily•17m ago•1 comments

Conservationists teach young regent honeyeaters how to sing their unique song

https://www.abc.net.au/news/2026-04-05/saving-the-regent-honeyeaters-love-song/106515178
3•bryanrasmussen•18m ago•0 comments

I put my cognitive field based AI's runtime on GitHub

https://github.com/AuraCoreCF/AuraCoreCF.github.io/tree/main/AuraRuntime
1•AuraCoreCF•19m ago•1 comments

What's in a name? Moderna's "vaccine" vs. "therapy" dilemma

https://www.technologyreview.com/2026/04/10/1135631/whats-in-a-name-modernas-vaccine-vs-therapy-d...
3•joozio•21m ago•0 comments

Crying Salute Emoji

https://github.com/achristmascarl/crying-salute
1•achristmascarl•23m ago•1 comments

Your Startup Is Probably Dead on Arrival

https://steveblank.com/2026/03/17/your-startup-is-probably-dead-on-arrival/
1•tie-in•24m ago•0 comments

Pulsar – Lightweight cross-platform GUI for FFmpeg and yt-dlp, built with Tauri

https://github.com/FuzjaJadrowa/Pulsar
2•FuzjaJadrowa•30m ago•2 comments

VC Money and Israel Outrage Derailed a Hot Hollywood Startup

https://www.wsj.com/business/media/how-vc-money-and-israel-outrage-derailed-a-hot-hollywood-start...
3•RestlessMind•32m ago•1 comments

Moooooonitoring the Cow.txt Herd

https://moooo.farm/
3•pabs3•33m ago•0 comments

Is Numble the first AI-proof game?

https://medium.com/@shauntrennery/is-numble-the-first-ai-proof-game-b0de302d2ed0
1•shauntrennery•33m ago•0 comments

I collected startup ideas. It changed how I think about ideas completely

3•vibecoder21•33m ago•1 comments

A Secret Grand Jury Is Seeking the Identity of a Reddit User Who Criticized ICE

https://www.jezebel.com/grand-jury-reddit-user-identity-ice-criticism-freedom-of-speech-first-ame...
5•HotGarbage•34m ago•0 comments

A3: Kubernetes for autonomous AI agent fleets

https://www.leonidasr.com/posts/a3-kubernetes-for-autonomous-ai-agent-fleets/
4•leonidas1712•41m ago•0 comments

Ramp Up AI Skills

https://soundcloud.com/robenfarzad/deepali-vyas-the-elite
1•nytesky•41m ago•1 comments

Trump administration releases new renderings of 'Arc de Trump' [pdf]

https://www.cfa.gov/system/files/meeting-materials/1-CFA-16APR26-1-EOP_DOI_Arch-pres%20%5BApr9%5D...
2•fittingopposite•42m ago•0 comments

How I made the most intrusive Firefox extension

https://www.arnevogel.com/firefox-permissions/
1•ArneVogel•47m ago•0 comments

Neural Computer

https://metauto.ai/neuralcomputer/
1•georgestrakhov•48m ago•0 comments

Show HN: RelayFreeLLM — Free AI Gateway with Auto-Failover (Updates)

https://github.com/msmarkgu/RelayFreeLLM
2•markfront•50m ago•0 comments

Code Democracy the Big Lie

https://medium.com/@aatel.license/ai-has-democratized-coding-just-not-for-everyone-555d2767fce8
3•aatel-license•50m ago•0 comments

Show HN: Provepy – A Python decorator that proves your code using Lean and LLMs

1•spaccy05•50m ago•0 comments

Crawl Code – because prompting was a text adventure

https://github.com/machinarii/crawl-code/
3•datalater•54m ago•0 comments

Even Hungary's skewed elections might not save Viktor Orban

https://economist.com/graphic-detail/2026/04/09/even-hungarys-skewed-elections-might-not-save-vik...
3•andsoitis•55m ago•0 comments

Tesla's supervised self-driving software gets Dutch okay, first in Europe

https://www.reuters.com/business/teslas-self-driving-software-gets-dutch-go-ahead-boost-eu-ambiti...
13•nsoonhui•1h ago•7 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•11mo 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•11mo ago
This is why you test code or a script before running it for real. Live and learn, I guess ...