Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
thechewanater
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
thechewanater
3mo ago
Elden Ring quests are implemented in a totally different set of systems from the one described in TFA, mostly something called EzState (dialogue trees) and EMS (map events). These are basically very primitive bytecode interpreters with unus
2.
▲
by
thechewanater
9y ago
python3 seems to do much better than either of those for me when using an unbuffered write(1, ...) syscall (plus it prints the correct thing) $ cat yes3.py stdout = open(1, 'wb') while True: stdout.write(b&#x
3.
▲
by
thechewanater
9y ago
In coffeescript 1.x fat arrow functions already bound "this", although binding "arguments" is an actual change. http://coffeescript.org/#breaking-change-fat-arrow
4.
▲
by
thechewanater
10y ago
No it's not, it's illegal to use _ as a lambda parameter.