frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Iran Moved Billions Through Binance to Fund Regime–Continuing into This Month

https://www.wsj.com/world/middle-east/iran-binance-crypto-military-e755b218
2•JumpCrisscross•2m ago•0 comments

Title: Tax season felt chaotic at my accounting firm, so I built this

https://taxassembly.com/
1•jaychooo•3m ago•1 comments

Why does it look like LLMs consistently overestimate implementation time?

1•bridgettegraham•3m ago•0 comments

Crypto and AI-Funded Super PACs Are Metastasizing

https://www.thenation.com/article/politics/crypto-ai-super-pacs-election-spending-big-tech-dark-m...
1•petethomas•12m ago•0 comments

'Broadview Six' defendants have all remaining charges dismissed

https://www.nbcchicago.com/news/local/chicago-politics/broadview-six-defendants-have-all-remainin...
1•petethomas•13m ago•0 comments

Consumer groups file complaint against Meta, TikTok and Google running scam ads

https://www.beuc.eu/press-releases/consumer-groups-file-complaints-against-meta-tiktok-and-google...
1•benoau•13m ago•0 comments

Merkel Urges EU to Keep Regulating Social Media Speech

https://reclaimthenet.org/merkel-eu-speech-regulation-censorship
1•Cider9986•15m ago•0 comments

Homemade robot fluff ball with a realistic eye

https://www.instagram.com/reel/DYnsNwlzxG5/
1•authorisedfrog•15m ago•0 comments

The AI Bubble – No One's Happy

https://nooneshappy.com/article/the-ai-bubble/
3•diebillionaires•19m ago•0 comments

FCC Extends Update Deadline for Foreign-Made Routers, Drones Until 2029

https://www.pcmag.com/news/fcc-extends-update-deadline-for-foreign-made-routers-drones-until-2029
1•gnabgib•20m ago•0 comments

Convert between 30 color formats in one tool (HEX, RGB, Tailwind, Flutter, etc)

https://colorcx.com/
1•hkdb•23m ago•0 comments

How you probably will find Satoshi

https://foxchapelresearch.substack.com/p/how-you-probably-will-find-satoshi
1•lalaland1125•24m ago•0 comments

Condé Nast expects search to become a single-digit of its traffic

https://searchengineland.com/conde-nast-search-single-digit-traffic-477358
1•gnabgib•28m ago•0 comments

Fork Your Dependencies

https://twitter.com/mitchellh/status/2057171518027887035
3•nreece•35m ago•0 comments

Stocks Are Not an Effective Inflation Hedge

https://financialpost.com/pmn/business-pmn/repeat-after-me-stocks-are-not-an-effective-inflation-...
2•littlexsparkee•36m ago•0 comments

The Rise of Build-to-Rent Housing

https://www.construction-physics.com/p/the-rise-of-build-to-rent-housing
2•JumpCrisscross•38m ago•0 comments

Trump's IRS "settlement" is not limited to $1.776B [video]

https://www.youtube.com/watch?v=tIBCjzz-bmk
1•mdnahas•38m ago•1 comments

Woman files lawsuit after arrest for Facebook post concerning Trinidad water

https://www.fox4news.com/news/woman-arrested-facebook-post-concerning-trinidad-water-poisoning
2•ki4jgt•39m ago•0 comments

San Francisco woman gets photographer's old number. It changes both their lives

https://www.nbcbayarea.com/news/local/bay-area-proud/san-francisco-woman-gets-photographers-old-p...
1•gnabgib•41m ago•0 comments

Making sure what your code does you think it does, with Vet

https://robocall.github.io//bouncing-balls
2•d0able•50m ago•0 comments

EHRC guidance puts women first, which may upset people

https://millihill.substack.com/p/ehrc-guidance-puts-women-first-which
1•appreciatorBus•52m ago•1 comments

Nginx-poolsip: new RCE 0-day and ASLR bypass in mainline Nginx

https://twitter.com/nebusecurity/status/2057071579876753643
2•negura•54m ago•1 comments

Yet Another AI Teammate

https://yaat.sh/
1•c4pt0r•56m ago•0 comments

JPMorgan Fights over Comic Books Locked in a Mississippi Warehouse

https://www.bloomberg.com/news/features/2026-05-21/jpmorgan-publishers-fight-over-bankrupt-comic-...
1•petethomas•1h ago•0 comments

Human Urine Becomes Option for Farmers in Fertilizer Supply Crunch

https://www.bloomberg.com/news/articles/2026-05-22/farmers-turn-to-human-urine-after-fertilizer-c...
2•petethomas•1h ago•0 comments

U.S. bears brunt of Israel's missile defense, Pentagon assessments show

https://www.washingtonpost.com/national-security/2026/05/21/us-bears-brunt-israels-missile-defens...
6•Teever•1h ago•1 comments

Reptyr: attach a running process to a new terminal (2011)

https://blog.nelhage.com/2011/01/reptyr-attach-a-running-process-to-a-new-terminal/
2•Curiositry•1h ago•0 comments

The San Francisco $10k treasure chest has been found

https://old.reddit.com/r/sanfrancisco/comments/1tjv11f/we_found_a_10000_treasure_chest
3•notknifescience•1h ago•0 comments

Tell HN: Gemini 3.5 Flash breaks in stupid ways

5•XCSme•1h ago•1 comments

Design Notes: Local Lifetimes for Kotlin

https://github.com/Kotlin/KEEP/blob/main/notes/0007-local-lifetimes.md
1•LelouBil•1h ago•1 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•1y ago

Comments

qwertox•1y ago
Rule #1: Always put deletions behind a flag which is disabled for the first couple of test runs.
turtleyacht•1y 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•1y 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•1y ago
Oh, I see. Having a flag to skip deletion during test runs is a good rule then.
rvz•1y 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•1y ago
Who runs such an AI generated script without checking the code first?
qwertox•1y 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•1y ago
Right so lets just always run the code as is ?
qwertox•1y 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•1y 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•1y ago
In which Roko's Basilisk fires a warning shot.
jethronethro•1y ago
This is why you test code or a script before running it for real. Live and learn, I guess ...