Viewing profile — JZumun
JZumun
HN member- Joined
- Sat, Aug 11, 2018, 11:49 AM UTC
- HN karma
- 36
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About JZumun
No profile information was provided.
Recent public activity
-
comment
Comment #37379196
It's really quite cool how we can implicitly know all these linguistic rules without consciously being aware of them. Just another reminder that our conscious self is just a layer …
- story
-
comment
Comment #36845055
I think they added multi-page support in the previous point release[0]. I only use inkscape to make graphics though, so I'm not sure how user friendly the implementation is. [0] ht…
-
comment
Comment #36612377
I think the badge isn't for the reaction, but for posting comments whose text is solely "+1" or " "
-
comment
Comment #36548396
Cryptic crosswords usually provide the lengths of each word in the solution as part of the clue. If that were done here it would have spoiled the ambiguity because either answer wo…
-
comment
Comment #29104912
{ [Key in KeysType]-?: ... } TIL that you can disable ? and readonly in mapped types using -. So in the above code, every Key will be mandatory (-?) even if the original one in Key…
-
comment
Comment #29037646
In this formulation, isn't p^N the probability that ALL places where life is possible, actually has life? It makes sense for that to approach zero. What we want is the probability …
-
comment
Comment #29010379
I think an extreme example might help: if there are 100 software developers but 98 are single, and 2 are married to each other, then 100% of software developers(that are married co…
-
comment
Comment #28437726
Modern browsers partition caches by site nowadays - at least, Chrome started doing it last year[0], and Firefox followed soon after I think [1]. That means there's no longer any ca…
-
comment
Comment #28209330
When I read about Peano axioms I mentally think of Sn as the function S(n) = n+1 and that helps me understand them better. As a non mathematician sometimes I wonder if this substit…
-
comment
Comment #28128596
You can never go faster than c, so you can never reach anything that's being moved faster away.
-
comment
Comment #28128492
(Assuming space expands evenly) we don't notice the expansion of space inside objects because the electromagnetism and gravity are vastly more powerful on the scales we care about …
-
comment
Comment #27723402
According to petite-vue's readme, it supports the `v-cloak` directive [0], which is how vue recommends you hide the unprocessed template before it is mounted. For more complicated …
-
comment
Comment #26859675
This reminds me of how Adobe Photoshop branding guidelines [1] explicitly forbid the use of "photoshop" as a verb or common noun, and yet I don't think anyone considers these to be…
-
comment
Comment #26205214
It's like a recursive function, where you resolve to stop interfering with the lower universe once the upper universe stops interfering with you. You run it N times until nothing h…
-
comment
Comment #24845830
> for (let elem : arr) { ... } Do you mean: for (let elem of arr) { ... } Unless this is a joke about writing in Java & C++ (for which the colon syntax is valid) instead of javascr…