Viewing profile — qsort
qsort
HN member- Joined
- Tue, Sep 22, 2020, 10:05 PM UTC
- HN karma
- 9,006
- Public activity
- 1,798 items
- HN profile
- View on Hacker News ↗
About qsort
spunky.greener-0n@icloud.com
Recent public activity
-
comment
Comment #49215676
That's actually ok. In virtually all Latin dictionaries verbs are listed in the first singular person of the present indicative (e.g. you would find "sum" and not "esse"). It's jus…
-
comment
Comment #49182856
> When OpenAI posted about their 10 breakthroughs, I saw lots of career research mathematicians say things mostly along the lines of “I don’t understand any of this it’s way over m…
-
comment
Comment #49182798
> I wonder if national, institutional, or otherwise "eccentric" sponsorships (encouraging a similar migrant-madman approach to academic cultivation) of some of the folks on HN woul…
-
comment
Comment #49153229
I've had similar conversations with a client recently while discussing estimates for a large project. Senior leadership has a mental model where AI makes everything X% faster, but …
-
comment
Comment #49142399
Counterpoint: the problem is actually HTML and most of webtech is increasingly elaborate cope mechanisms to deal with the original sin.
-
comment
Comment #49142372
I'm not a frontend guy so take this with a pinch of salt, but for a few personal projects I've done my approach is now "ai pls generate css". I thought it would be inconsistent and…
-
comment
Comment #49134208
> guidance or missing context issue I mean yeah, that's mostly what I'm saying? The only parts where I would disagree are that capabilities are spiky, and also the fact that they'r…
-
comment
Comment #49125277
I'm not saying I don't get any use out of them, fwiw. In a lot of ways they write perfectly fine code, I'm just saying without some guidance at the macro-level they lose the forest…
-
comment
Comment #49125175
5.6 Sol on Codex, Opus 5 on Claude Code. (See sibling message, I'm not saying they're useless)
-
comment
Comment #49121079
Very hard to say anything definitive on this because it's a moving target, but last time I tried models still had a distinct sense of "consistently good, sometimes great at micro, …
-
comment
Comment #49119952
I completely agree with you that the chat interface is very undercooked and there's a big untapped space for agent-first interfaces, perhaps even replacing traditional desktop meta…
-
comment
Comment #49086777
"Torture" is definitely hyperbolic, but being forced to listen to the heartbeat of the fetus is not something that's based on any kind of science or rational argument, it's quite t…
-
comment
Comment #49076065
> The big Cantorian leap that we make is when we use the diagonal argument to argue that the rationals are countable. Again, I don't think your position is indefensible, but this d…
-
comment
Comment #49075537
I don't think your position is silly, but this is not a great argument for it. > But when we say things like "the rationals are discrete" In the usual topology they are not? > In t…
-
comment
Comment #49049650
Many of my friends are mathematicians, they are saying pretty much the same thing the article is saying. Unfortunately, even the "I have wondered if it is the express goal of these…
-
comment
Comment #48995358
> you're being bitchy Honestly you're right, I'm sorry. I'm not having a great day and ended up venting online. Logging off.
-
comment
Comment #48995144
Yes, did you read that section? It's using different terminology but it's saying exactly what I'm saying (of course it does, it's elementary computer science). There is no accepted…
-
comment
Comment #48994317
Rogers "Theory of Recursive Functions and Effective Computability", page 1, emphasis is the author's: § 1.1 The informal notion of algorithm In this chapter we give a formal (i.e.,…
-
comment
Comment #48993735
> A compiler is an algorithm and Claude isn't "Algorithm" is not a word with a definition, so I can't say that you're wrong, but I struggle to see how you conceptualize "algorithm"…
-
comment
Comment #48979412
I wouldn't say that "over-engineering means solving the wrong problem". It's possible that the idea is basically correct, but people are directing effort towards optimizing for con…
-
comment
Comment #48975032
It's tedious, but you could literally even do this by hand. I'm pretty sure I've done worse coordinate bash back when I did math competitions in high school.
-
comment
Comment #48934072
> I will just point out the benefit is not as obvious as you think. Developers have consistently overestimated LLM I think there are two different claims here: - developers overest…
-
comment
Comment #48893416
I'll admit I have a bit of a skill issue here. I'm letting go of reading every single line, especially within well-scoped modules that don't affect anything else. On the other hand…
-
comment
Comment #48789174
I agree that the Bun rewrite is much more reasonable than knee-jerk reactions imply, however: - I don't think Claude Code is using the Rust version yet in their official build - Cl…
-
comment
Comment #48634806
It always divides it evenly, that's why it works. After the i-th iteration of the for loop, ans will contain n!/((n-i)!i!) which is exactly \binom{n}{i}, an integer. Technically "a…