Viewing profile — msully4321
msully4321
HN member- Joined
- Wed, Jul 14, 2021, 2:14 AM UTC
- HN karma
- 153
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About msully4321
No profile information was provided.
Recent public activity
-
comment
Comment #47744868
I'm not sure where that number comes from but I don't think it's right, and I don't think that's how La Liga is structured anyway. It's governed by an association of all of the tea…
-
comment
Comment #47646677
I am a huge sucker for games/lessons like this. I feel like I've played one every 5 years for the last almost 25 years.
-
comment
Comment #47602191
They have not! If I am scrolled up while more output is produced, the scrollback jumps to the top pretty consistently.
-
comment
Comment #47463803
I took a look at the test bench, and the Unlambda interpreter used supports like a third of unlambda, not including input. Since 79/80 of the tests require input, it isn't really p…
-
comment
Comment #47450516
Doing something like that is basically the only way to write unlambda: you start with a lambda calculus (or scheme or whatever) and reduce the lambdas away mechanically. (This is i…
-
comment
Comment #42806971
I go through periods of loving em dashes--but I always just write them as two dashes! (And LaTeX at least does the right thing.)
-
comment
Comment #42805903
> Have people lost the ability to build and debug their code locally, without clouds and containers? No, of course not, but it didn't crash on our machines!
-
comment
Comment #42797851
With a fixed implementation that leaks environments (like the one that just landed in glibc)?
-
comment
Comment #42797486
Yeah, the cows have certainly gotten out already.
-
comment
Comment #42797012
Because it can still race with C code using the standard library. getenv calls are common in C libraries; the call to getenv in this post was inside of strerror.
-
comment
Comment #42796965
Yeah, setenv should probably just not exist, and environment variables should be only set when spawning new processes.
- story
-
comment
Comment #30303966
I talked a bit about this in my release day talk ( https://www.youtube.com/watch?v=WRZ3o-NsU_4&t=8151s ), but: * Every edgedb type has a postgres table * "single" properties and li…
-
comment
Comment #30295755
What colin said, or (in every terminal emulator I've used), ctrl-d to send end of file, which will close it.
-
comment
Comment #27828844
The most direct implementation of what you want would be: SELECT (Table1.id, Table1.name, Table2.level, Table2.table1_id) FILTER Table1.id = Table2.table1_id; (This has a somewhat …