Viewing profile — Skeime
Skeime
HN member- Joined
- Thu, Aug 23, 2018, 9:01 AM UTC
- HN karma
- 269
- Public activity
- 136 items
- HN profile
- View on Hacker News ↗
About Skeime
No profile information was provided.
Recent public activity
-
comment
Comment #48641728
The rectangle case is just choose(w+h, h), with w, h being the width and height, respectively. (Or choose(w+h, w), which is the same.) Depending on how well you know binomial coeff…
-
comment
Comment #48020540
Lots of formatters also unify things like trailing commas, so it would be slightly more involved than this.
-
comment
Comment #47959698
I feel like you are describing that the parser is too lenient rather than too picky. It could just require you to always put `let` and `in` on their own lines, in which case the in…
-
comment
Comment #47749195
Isn't the Macintosh desktop (with Cmd as the modifier for standard shortcuts) older than Windows and Linux desktops? So historically, it's not Apple that deviated but the others? (…
-
comment
Comment #47749108
I think modern browsers are actually quite good here. They show a template in the form TT.MM.JJJJ for me (so the German equivalent of MM/DD/YYYY, with the usual order and separator…
-
comment
Comment #47748931
Mobile keyboards also do have the advantage that they can at least change the label of the button; so writing Submit on the Enter key if it submits.
-
comment
Comment #47440875
I am also at the office almost every day because I think it's better for my mental health and food. But I also appreciate that for many, it's different, so actually having the choi…
-
comment
Comment #47348061
Wouldn't it also be much better to evaluate the Taylor polynomials using Horner's method, instead? (Maybe C++ can do this automatically, but given that there might be rounding diff…
-
comment
Comment #47163895
I wrote "predominant", not "official". And I think that is still true. Also, from what I can tell using the site, it does not serve as a full dictionary. Rather, it lists the gener…
-
comment
Comment #47151319
Fun fact: I looked this up in the online version of the Duden (the predominant German dictionary). It does have an entry "Black Hole" (so the English term!) but not for "schwarzes …
-
comment
Comment #46972426
I don't quite get what you mean here. While you need to allow infinite expansions without repeating patterns, you also need to expansions with these pattern to get all reals. Maybe…
-
comment
Comment #46899419
I think that's basically the same reason, right? XML itself is bloated if you use it as a format for data that is not marked-up text, so it comes with bloated APIs (which where pus…
-
comment
Comment #46702817
This article is weird. It wants to shoot against JSON, but then has to make half of its arguments against YAML instead. JSON has no "ambiguity in parsing", JSON has no indentation-…
-
comment
Comment #46509995
I assume that "all the different levels" might not exist yet. The author is probably creating them a bit in advance, and will keep going as long as they're motivated. Having a regu…
-
comment
Comment #45977407
There is also the problem that they decided to make all references nullable, so `NullPointerException`s could appear everywhere. This "forced" them to introduce the escape hatch of…
-
comment
Comment #45721398
And here I was, thinking everybody already knew XKCD 1053 ...
-
comment
Comment #45566400
But XML was designed as a markup language. That is was often used for configuration is not its fault. (And it works much better for its original purpose, where the otherwise strang…
-
comment
Comment #45488637
(Without knowing the precise nature of these laws) I would expect that they don't forbid you to store backups elsewhere. It's just that they mandate that certain types of data be b…
-
comment
Comment #45411172
I generally agree that treating substrings that are numbers as numbers is a good default for most users in most situations. However, for hex numbers this simply won't give good res…
-
comment
Comment #45374480
I did have one or two math professors who would use x_0 and x_1 instead of x_1 and x_2 when they had to name two objects. But I have also seen places where 1-based indexing was use…
-
comment
Comment #45357271
Dijkstra is right, of course. However, most math texts still use 1-based indexing. If you want to translate them into code, it's easier when the conventions match. (Now, if you had…
-
comment
Comment #45167315
But the second interpretation only makes sense if the last item somehow deserves special treatment (over, say, the second-to-last item). Otherwise, you should similarly argue that …
-
comment
Comment #44363584
Even with a keyboard shortcut, I never found it to be truly satisfying. I cannot quite recall what was annoying, though. Maybe you cannot space back into the formula after closing …
-
comment
Comment #44353143
Last time I checked, Word was also basically untenable for math-heavy writing because there was too much procedure involved in setting a formula. This is fine if you need one here …
-
comment
Comment #44189117
RST disqualifies itself immediately by making inline markup un-nestable, though.