Live data from Hacker News

Viewing profile — JZumun

JZumun

HN member
Joined
Sat, Aug 11, 2018, 11:49 AM UTC
HN karma
36
Public activity
16 items

About JZumun

No profile information was provided.

Recent public activity

  1. 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 …

  2. story
  3. 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…

  4. comment
    Comment #36612377

    I think the badge isn't for the reaction, but for posting comments whose text is solely "+1" or " "

  5. 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…

  6. 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…

  7. 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 …

  8. 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…

  9. 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…

  10. 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…

  11. comment
    Comment #28128596

    You can never go faster than c, so you can never reach anything that's being moved faster away.

  12. 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 …

  13. 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 …

  14. 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…

  15. 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…

  16. 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…