frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenAI offers $100 in free Codex credits to college students in US and Canada

https://chatgpt.com/codex/students
1•DanielHall•1m ago•0 comments

Construct's official 3D model object

https://www.construct.net/en/blogs/construct-official-blog-1/introducing-constructs-1900
1•AshleysBrain•2m ago•0 comments

Antibrittle Agents

https://www.southbridge.ai/blog/antibrittle-agents
1•vinhnx•5m ago•0 comments

The $3.5T Private Credit Crisis No One Is Talking About [video]

https://www.youtube.com/watch?v=8Qc5U00IiAk
2•u1hcw9nx•6m ago•0 comments

Pizza delivery driver built triple OS where folders SOLIDIFY at 5% capacity

1•Catanamu•8m ago•0 comments

Supermicro co-founder arrested, charged over $2.5B Nvidia GPU sales to China

https://www.theregister.com/2026/03/20/supermicro_nvidia_gpu_charges/
1•u1hcw9nx•12m ago•0 comments

Chinese AI videos used to look fake. Now they look like money

https://www.japantimes.co.jp/commentary/2026/03/20/world/chinese-ai-videos-used-to-look-fake/
1•mikhael•14m ago•0 comments

Now anyone can host a global AI challenge

https://blog.google/innovation-and-ai/technology/developers-tools/introducing-kaggle-community-ha...
1•T-A•14m ago•0 comments

Process vs. Result – Why Some Programmers Resist AI

https://isene.org/2026/01/AI-Coding.html
1•veltas•14m ago•0 comments

Show HN: Historical Atrocities Database

https://claude.ai/public/artifacts/b60a8f2e-cc65-47b2-b852-d5f350182692
1•cittadhammo•16m ago•0 comments

Top FEMA official said he once teleported to Waffle House

https://www.cnn.com/2026/03/20/politics/fema-official-gregg-phillips-violent-rhetoric-teleported-...
1•philbo•17m ago•0 comments

Tikfilmer.com – AI Filmmaking Workflow from Idea to Movie

https://tikfilmer.com/
1•aaron7yu•18m ago•0 comments

Intel Device Modeling Language for virtual platforms

https://github.com/intel/device-modeling-language
1•transpute•21m ago•0 comments

The Anatomy of "1,300 PRs per Week": What Stripe's AI Numbers Mean

https://trwa.substack.com/p/the-anatomy-of-1300-prs-per-week
1•cactaceae•24m ago•1 comments

Torch Geometric Pool – the library for hierarchical GNNs

https://github.com/tgp-team/torch-geometric-pool
1•fmb404•24m ago•1 comments

The links worth reading, chosen by the people you trust on Bluesky and Mastodon

https://murmel.social/
1•doener•25m ago•0 comments

CI CD Python workflow guide

https://thomasreid4.gumroad.com/l/pafvzf
1•tp_claw•32m ago•0 comments

Colosseum gets a fresh look recreates the footprints of long-gone columns

https://apnews.com/article/italy-colosseum-restoration-tourism-rome-032cac4377572b89263247a038395c11
1•noworld•41m ago•0 comments

Google internet service outage reports spike in San Francisco

https://www.sfchronicle.com/bayarea/article/google-fiber-outage-downdetector-22088107.php
3•mikhael•44m ago•0 comments

It is incorrect to "normalize" // in HTTP URL paths

https://runxiyu.org/comp/doubleslash/
3•birdculture•45m ago•0 comments

The Hot Mess Paper Conflates Three Distinct Failure Modes

https://www.lesswrong.com/posts/dMshzzgqm3z3SrK8C/the-hot-mess-paper-conflates-three-distinct-fai...
2•joozio•47m ago•0 comments

Blocks – 20% AWS cloud savings. Guaranteed

http://blocks.cloud/
1•l1am0•50m ago•0 comments

Gone Almost Phishin'

https://ma.tt/2026/03/gone-almost-phishin/
2•bryanrasmussen•53m ago•1 comments

Widely used Trivy scanner compromised in ongoing supply-chain attack

https://arstechnica.com/security/2026/03/widely-used-trivy-scanner-compromised-in-ongoing-supply-...
4•joozio•55m ago•0 comments

Hey YC F25, W26, X26 Founders

1•Hirun_w•56m ago•0 comments

Liberated Systemd

https://github.com/jeffrey-sardina/systemd
2•gasull•57m ago•0 comments

Sexual Harassment by Japan Railways Staff and Japan's Accessibility Barriers

5•LemurianHiro•1h ago•0 comments

The Black Sun

https://twitter.com/netcapgirl/status/2034472134022500462
1•tosh•1h ago•0 comments

Man pleads guilty to $8M AI-generated music scheme

https://therecord.media/man-pleads-guilty-8-million-ai-music-scheme
26•nstj•1h ago•23 comments

Show HN: Another open source photo management system

https://github.com/openphotos-ca/openphotos
4•apollo1213•1h 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 ...