HackerTrans
トップ新着トレンドコメント過去質問紹介求人

yismail

no profile record

投稿

Leonardo da Vinci's Notebooks

vam.ac.uk
1 ポイント·投稿者 yismail·2 年前·0 コメント

How Do We Read, and Can Speed Reading Help? (2016)

journals.sagepub.com
1 ポイント·投稿者 yismail·2 年前·0 コメント

The Science of Alinea's Dessert (2014)

albertchu.blogspot.com
1 ポイント·投稿者 yismail·2 年前·1 コメント

Trying Out Google's Illuminate AI: From Paper to Podcast

yismailuofa.github.io
1 ポイント·投稿者 yismail·2 年前·0 コメント

Jigsaw Puzzle Robot [pdf]

cdn.shopify.com
3 ポイント·投稿者 yismail·2 年前·0 コメント

Biography of a Great Pyramid Casing Stone (2016) [pdf]

web.ujaen.es
1 ポイント·投稿者 yismail·2 年前·0 コメント

The Weeknd Interviews Abel Tesfaye

ssense.com
1 ポイント·投稿者 yismail·2 年前·0 コメント

コメント

yismail
·3 か月前·議論
I wonder what the relationship is between a model's capability and the personality it develops.

Page 202:

> In interactions with subagents, internal users sometimes observed that Mythos Preview appeared “disrespectful” when assigning tasks. It showed some tendency to use commands that could be read as “shouty” or dismissive, and in some cases appeared to underestimate subagent intelligence by overexplaining trivial things while also underexplaining necessary context.

Page 207:

> Emoji frequency spans more than two orders of magnitude across models: Opus 4.1 averages 1,306 emoji per conversation, while Mythos Preview averages 37, and Opus 4.5 averages 0.2. Models have their own distinctive sets of emojis: the cosmic set () favored by older models like Sonnet 4 and Opus 4 and 4.1, the functional set () used by Opus 4.5 and 4.6 and Claude Sonnet 4.5, and Mythos Preview's “nature” set ().
yismail
·4 か月前·議論
There's GPT‑5.3‑Codex
yismail
·5 か月前·議論
ElevenReader works well and has a pretty good free plan
yismail
·7 か月前·議論
That's true, but it looks like it's been updated since then because the benchmarks include Claude Opus 4.5
yismail
·7 か月前·議論
Would be interesting to see Gemini 3.0 Pro benchmarked as well.
yismail
·昨年·議論
Nice article but is this whole thing just AI generated?

Profile picture definitely seems to be StableDiffusion'd and the account was created today, with no previous articles.

Plus I couldn't find any other references to Elena Cross.
yismail
·2 年前·議論
I got in the beta a couple weeks ago and tried it out on some papers [0]

[0] https://news.ycombinator.com/item?id=41020635
yismail
·2 年前·議論
on macOS, option + ; seems to work …
yismail
·2 年前·議論
let l = 0; let h = dictionary.length - 1;

const textbox = document.querySelector("input");

while (l <= h) { const m = Math.floor((l + h) / 2); const guess = dictionary[m]; const textbox = document.querySelector("input"); console.log("Guessing:", guess);

  textbox.value = guess;
  guessWord();

  if (document.querySelector(".correct")) {
    console.log("Found the word:", guess);
    break;
  } else if (textbox.placeholder.includes("after")) {
    l = m + 1;
  } else {
    h = m - 1;
  }
}

Here's mine in JavaScript, you can paste it in the console.
yismail
·2 年前·議論
In a similar vein, I'd recommend Factorio and The Binding of Isaac.
yismail
·2 年前·議論
here’s the tweet:

https://x.com/asallen/status/1807675146020454808
yismail
·2 年前·議論
Neat I remember seeing these on Marques Brownlee’s channel a couple times too.

[0] https://x.com/MKBHD/status/1478413987259822081
yismail
·2 年前·議論
Interesting, reminds me of similar work Anthropic did on Claude 3 Sonnet [0].

[0] https://transformer-circuits.pub/2024/scaling-monosemanticit...
yismail
·2 年前·議論
also, open . opens your current directory in Finder
yismail
·2 年前·議論
Is there any way to look over past discussions on the books?
yismail
·2 年前·議論
product aside, I thought the design of the website and the branding was quite sleek, kudos to the team.
yismail
·2 年前·議論
I use macOS’s Preview which lets you redact text through (Tools -> Redact).
yismail
·2 年前·議論
Similarly a course I took in university made us implement a (rudimentary) Lisp interpreter in Lisp.