frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Weather Channel RetroCast Now Behind the Scenes and Technical / Design

1•leemartin•1m ago•0 comments

Bring Back Buddy – A Consolidated Plea from the [Claude Code] Community

https://github.com/anthropics/claude-code/issues/45596
1•rickcarlino•2m ago•0 comments

CoreWeave Announces Multi-Year Agreement with Anthropic

https://www.coreweave.com/news/coreweave-announces-multi-year-agreement-with-anthropic
1•skogstokig•2m ago•0 comments

Former NASA Astronaut Charles Camarda on the Artemis II Heatshield Decision

https://docs.google.com/document/d/1ddi792xdfNXcBwF8qpDUxmZzIksrs0jy/edit
1•nickvec•2m ago•0 comments

V1.21 Update for Gpumkat

1•Okerew•4m ago•0 comments

Valence and HYVE, RT Physics Attention and a "Synthetic Organism"

1•PaperScarecrow•4m ago•0 comments

YouTube Premium's US pricing is going up

https://www.engadget.com/social-media/youtube-premiums-us-pricing-is-going-up-132121683.html
2•bookofjoe•6m ago•0 comments

My Picture of the Present in AI

https://www.greaterwrong.com/posts/WjaGAA4xCAXeFpyWm/my-picture-of-the-present-in-ai
1•gmays•7m ago•0 comments

Ask HN: Its either I or Agent code. Both of us on same codebase is a disaster

1•zane__chen•8m ago•0 comments

Artemis 2 LIVE: NASA's Artemis 2 astronauts prepare for splashdown today

https://www.space.com/news/live/artemis-2-nasa-moon-mission-updates-april-10-2026
2•thinkingemote•9m ago•0 comments

Dad stuck in support nightmare after teen lied about age on Discord

https://arstechnica.com/tech-policy/2026/04/dad-stuck-in-support-nightmare-after-teen-lied-about-...
1•Brajeshwar•10m ago•0 comments

The Key to Stealing Subway Trains: A $10 Skeleton Key

https://www.nytimes.com/2026/04/10/nyregion/nyc-subway-conquesting-joyride.html
1•jbredeche•10m ago•0 comments

The first photograph of a human being (1838)

https://mashable.com/archive/first-photograph-of-a-human
1•downbad_•11m ago•1 comments

Show HN: I got tired, so I built an offline desktop job tracker + resume builder

https://github.com/ruslanora/kin
3•ruslanora•12m ago•0 comments

Neural sequences underlying directed turning in Caenorhabditis elegans

https://www.nature.com/articles/s41593-026-02257-5
1•bookofjoe•14m ago•0 comments

Ask HN: Does Sam Altman know how to code?

2•shchess•14m ago•1 comments

Show HN: Kitted: Local inventory and production management for small businesses

https://kitted.site/
1•ed_•15m ago•0 comments

Show HN: I run AI background removal in the browser–no upload,no server

https://www.allplix.com/en/background-remover
2•shadoxise•16m ago•0 comments

Autonomy Is Real Now

https://steelforfuel.substack.com/p/autonomy-is-real-now
5•simonebrunozzi•19m ago•0 comments

We Developed Zeta2

https://zed.dev/blog/how-we-developed-zeta2
3•ms7892•19m ago•0 comments

Agent to stress-test Wall Street analyst reports: Chipotle (CMG) Example

https://static-www.revelata.com/assets/for-ai-builders/EXAMPLE-CMG_Analysis_Stress_Test.html
2•sjt-at-rev•21m ago•1 comments

The end of the 1B active user ad-supported consumer startup

https://twitter.com/andrewchen/status/1832114119207743984
1•iNeedMoneyFast•22m ago•0 comments

Applications of AI at OpenAI

https://openai.com/academy/applications-of-ai/
1•surprisetalk•23m ago•0 comments

MenuSearch: Search Anywhere in One Click

https://microsoftedge.microsoft.com/addons/detail/menusearch-search-anywhe/deobjdclccahgllgpgdmjk...
1•hassananayi•23m ago•0 comments

"Not Even Government Agencies" - Proton's misleading marketing

https://blog.ppb1701.com/not-even-government-agencies
2•leotravis10•23m ago•0 comments

WAL as a Data Distribution Layer

https://richyen.com/postgres/2026/04/06/wal_archiving.html
1•tanelpoder•23m ago•0 comments

Responsible and Safe Use of AI

https://openai.com/academy/responsible-and-safe-use/
2•surprisetalk•24m ago•0 comments

Malware analysis report: CPU-Z 2.19 supply chain attack

https://gist.github.com/N3mes1s/b5b0b96782b9f832819d2db7c6684f84
1•bundie•25m ago•0 comments

Timothy Ray Brown: the accidental AIDS icon (2015)

https://www.fredhutch.org/en/news/center-news/2015/02/aids-icon-timothy-ray-brown.html
1•Tomte•25m ago•0 comments

Automated Changelog for Open-Source Contributions

https://medium.com/@paragekbote23/from-commits-to-impact-building-an-automated-changelog-for-open...
1•gmays•25m 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•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 ...