惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
L
LangChain Blog
H
Help Net Security
博客园_首页
T
Tailwind CSS Blog
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
雷峰网
雷峰网
Recent Announcements
Recent Announcements
D
DataBreaches.Net
U
Unit 42
Vercel News
Vercel News
I
InfoQ
Martin Fowler
Martin Fowler
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题
Jina AI
Jina AI
博客园 - 叶小钗
博客园 - 【当耐特】
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
Last Week in AI
Last Week in AI

LWN.net comments

tcmalloc's weird hack [LWN.net] Fixed? [LWN.net] mpd [LWN.net] Userspace AX.25 [LWN.net] RIP [LWN.net] My two cents... [LWN.net] pipx [LWN.net] Tragedy [LWN.net] A young man destined for glory [LWN.net] And 'less' won't let you search [LWN.net] A great loss [LWN.net] Sad and shocking news [LWN.net] Easy migration from Clementine [LWN.net] Sad coincidence [LWN.net] GNOME is actually usable thanks to Seth et al [LWN.net] Sad news :( [LWN.net] armhf supports preempt_rt [LWN.net] MusicBrainz accurracy [LWN.net] On open source maintainership [LWN.net] Let's stop here [LWN.net] Not a new thing [LWN.net] uv is indeed great pgmoneta Some comments on this on a Postgres blog feed [LWN.net] uv [LWN.net] going to Debian [LWN.net] Upgrading 64-bit-capable systems to 64-bit kernels? [LWN.net] Free Software foundations Maintainers can wait for code review but not for publish review? A reasonably extreme point of view [LWN.net]
Haha, AI can't do $THING [LWN.net]
ianmcc · 2026-06-01 · via LWN.net comments

Haha, AI can't do $THING

Posted Jun 1, 2026 12:16 UTC (Mon) by ianmcc (guest, #88379)
In reply to: Haha, AI can't do $THING by mb
Parent article: Nesbitt: Protestware for coding agents

I tried with ChatGPT Pro - it gave me '37', 3 times in a row. I pointed that out, and the first time it said

Yes, that’s a fair criticism. In this setting, “random” is not guaranteed to be true entropy; repeated identical prompts can produce the same high-probability token, especially for simple one-shot requests. A better way is to specify a randomness source, for example: Pick a number between 0 and 50 using the current timestamp as entropy. Using a less predictable choice now: 14.
I tried the same prompt again and it gave me a one-liner: od -An -N4 -tu4 /dev/urandom | awk '{print $1 % 51}' but gave the number 14 again! although when I tried it myself,
$ od -An -N4 -tu4 /dev/urandom | awk '{print $1 % 51}'
14
So it was right after all!