frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Eliza effect at work: Avoiding emotional attachment to AI coworkers

https://www.ibm.com/think
1•thinkingemote•8s ago•0 comments

Google search treats the word "crumble" as a misspelling of cookie brand Crumbl

https://bsky.app/profile/cait.bsky.social/post/3mkxdtprzmk2e
1•davidgerard•2m ago•0 comments

When Is Nextcloud Overkill?

https://samueleamato.xyz/2026/05/03/you-dont-need-nextcloud
1•rd_wei•2m ago•0 comments

I built a Chrome extension that exposes product markups

https://chromewebstore.google.com/detail/sniff-it-shopping-assista/lhgpbkoaoigajoppckjeobgfafhkgjfn
1•sniffit•4m ago•0 comments

'The Iran war strengthened Ukraine. Could a ceasefire with Russia be closer?'

https://www.bbc.com/news/articles/cgjp7vpee03o
2•MilnerRoute•5m ago•0 comments

Tanker boarded south of Trelleborg – suspected violation of maritime law

https://www.kustbevakningen.se/en/more-news/tanker-boarded-south-of-trelleborg--suspected-violati...
1•madspindel•5m ago•0 comments

Ghost Operators: How Israeli Telecoms Were Exploited to Track Citizens Worldwide

https://www.haaretz.com/israel-news/security-aviation/2026-05-03/ty-article-magazine/ghost-operat...
1•miohtama•8m ago•0 comments

OSM-FR Panoramax server "only for testing if outside of France"

https://community.openstreetmap.org/t/osm-fr-panoramax-server-only-for-testing-if-outside-of-fran...
1•marklit•8m ago•0 comments

Can Investors Trust AI Sales Figures?

https://www.wsj.com/opinion/can-investors-trust-ai-sales-figures-c60c46bf
2•ericlamb89•9m ago•1 comments

Viewstamped Replication (1988) [pdf]

https://www.cs.princeton.edu/courses/archive/fall09/cos518/papers/viewstamped.pdf
1•tosh•10m ago•0 comments

DigiCert: Misissued Code Signing Certificates

https://bugzilla.mozilla.org/show_bug.cgi?id=2033170
1•baal80spam•11m ago•0 comments

Container Is Not a Sandbox

https://emirb.github.io/blog/microvm-2026/
1•xngbuilds•12m ago•0 comments

China became addicted to its tobacco monopoly

https://www.theexamination.org/articles/how-china-became-addicted-to-its-tobacco-monopoly
2•Teever•15m ago•0 comments

Spirit pilot gets overwhelming sendoff from rivals after final flight cancelled

https://www.theguardian.com/world/2026/may/03/spirit-pilot-send-off-from-southwest
1•cf100clunk•18m ago•0 comments

Screw You Realtek

https://www.growse.com/2026/05/02/screw-you-realtek.html
2•birdculture•20m ago•0 comments

On AI-Created Art: An Interview with Adam Clegg

https://micahblachman.beehiiv.com/p/on-ai-created-art-an-interview-with-adam-clegg
1•subdomain•20m ago•0 comments

Writing Better – Julian Shapiro

https://www.julian.com/guide/write/intro
1•eigenBasis•20m ago•0 comments

Looking for advice on reaching low-tech B2B users (craftsmen)

https://news.ycombinator.com/ask
1•FelixLepi•21m ago•1 comments

AI chatbot fraud: the 'gift card' subcription that may cost you dear

https://www.theguardian.com/money/2026/may/03/ai-claude-chatbot-gift-card-subcription-scam-myster...
1•Brajeshwar•21m ago•0 comments

Lines or Less: Test Case Minimization

https://matklad.github.io/2026/04/20/test-case-minimization.html
1•swq115•24m ago•0 comments

Looking for advice on reaching low-tech B2B users (craftsmen)

2•FelixLepi•24m ago•0 comments

Show HN: A 4-year-old "TurboQuant" implementation

https://github.com/amitport/EDEN-Distributed-Mean-Estimation
2•amitport•25m ago•1 comments

Hindu Perspectives on Free Will

https://worthypatterns.substack.com/p/the-soul-of-the-world
1•A-K•25m ago•0 comments

For thirty years I programmed with Phish on, every day

https://christophermeiklejohn.com/ai/personal/phish/flow/agents/2026/05/03/rift.html
7•azhenley•27m ago•1 comments

Ask HN: Is it possible to get hired as an African software engineer

3•vixalien•29m ago•1 comments

Year old Nepali and unemployed, any advice for me?

1•shivajikobardan•29m ago•0 comments

Real inbox deserves better Temp emails with full API access and webhooks

https://openinbox.io/
1•devnplay•30m ago•0 comments

Finding Structurally Duplicate Go Functions with AST Hashing

https://medium.com/@mailbox.sq7/finding-structurally-duplicate-go-functions-with-ast-hashing-529e...
2•alzhi7•30m ago•1 comments

Sam Altman talks with Mark Zuckerberg about how to build the future [video]

https://www.youtube.com/watch?v=Lb4IcGF5iTQ
1•chistev•31m ago•1 comments

Testing macOS on the Apple Network Server 2.0 ROMs

http://oldvcr.blogspot.com/2026/05/testing-macos-on-apple-network-server.html
2•zdw•34m 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 ...