Viewing profile — zabzonk
zabzonk
HN member- Joined
- Fri, Apr 25, 2014, 11:07 AM UTC
- HN karma
- 5,137
- Public activity
- 3,181 items
- HN profile
- View on Hacker News ↗
About zabzonk
Recent public activity
-
comment
Comment #49222112
Well, I don't know. Most of the Myst games seem to be background, painted, with a bit of moving art. Comparing this with (say) an isometric RPG (think BG3, Pillars of Eternity) and…
-
comment
Comment #49214173
Thanks, but I think that is more gardens that are owned by people with professional gardeners and other caretakers. The scheme I was thinking of was more individuals. I remember lo…
-
comment
Comment #49213993
Perhaps including one that is scooting across the universe (Dr Becky): https://www.youtube.com/watch?v=EHLF6sgLdrs&t=4s
-
comment
Comment #49210497
Too much web stuff.
-
comment
Comment #49209967
I remember back in the mid 1980s there was a scheme in Lincolnshire UK where you could just turn up at a house and go into their back garden to admire their plants - only gardens o…
-
comment
Comment #49208857
FORTH parsers are ultra simple - get the next space-separated token, if it is a number, push it on the stack, otherwise it's a word - look it up in the dictionary and (if it exists…
-
comment
Comment #49196949
but also much slower - people tended to be interested in speed (and the price of the hardware) not determinism
- comment
-
comment
Comment #49195694
Never heard of Madge before. AFAIK, our token ring networking (at a big 6 accountancy) was all supplied by IBM, but I could be wrong. In any case, I despised it for poor speed and …
-
comment
Comment #49194424
Ah yes, back when caring about hardware was a thing. Early 90s, new top-of-line Compaq arrives, for me, project manager. We open it to install network card - token ring (yes, it su…
-
comment
Comment #49190008
Mostly in my life, it has been beautiful or not so beautiful women. But I do draw the line at pin-heads.
- comment
-
comment
Comment #49183304
innovation in what areas are you talking about?
-
comment
Comment #49183279
> Every time I leave the US, I’m always struck by how happy other people seem to be. Seems more than a little rose-tinted. I live in the UK and I can certify that there is a lot of…
-
comment
Comment #49182264
[flagged]
-
comment
Comment #49182186
Obviously not a flying fish.
-
comment
Comment #49181972
> I literally have never found a place where `std::variant` has any positives that can't be written a different, clearer way with drastically better compile time and run time perfo…
-
comment
Comment #49181409
> stuff you shouldn't need to care about Such as? I don't believe any C++ compilers are producing extra machine code just for the fun of it.
- story
-
comment
Comment #49175580
> If you aren't writing it in assembler, you're writing slow code. Depends in part in how good you are at writing assembler.
-
comment
Comment #49076058
> would return 7 more pedantically, it would push 7 onto the stack
-
comment
Comment #49048123
Dr Who and the Silurians had this covered: https://tardis.fandom.com/wiki/Silurian
-
comment
Comment #49035944
Bah, people who use .CC or .cc for C++ files deserve to be beaten about the head with a baseball bat. It's not clever.
-
comment
Comment #49034853
What happened to the little tramp with the walking stick? I had one of those sticks (as a biro) off an IBM salesperson, early to mid 80s, and IBM must have paid an ungodly amount t…
-
comment
Comment #49032522
> PIMPL is the typical solution here, since the inner/impl class is not part of the public ABI. Yep, that's what I've used it for. Didn't find it too difficult to implement it myse…