Live data from Hacker News

Viewing profile — level3

level3

HN member
Joined
Thu, Nov 12, 2015, 3:43 PM UTC
HN karma
306
Public activity
131 items

About level3

No profile information was provided.

Recent public activity

  1. comment
    Comment #45122816

    You only need to buy it at the airport if you want a Welcome Suica. You can buy a regular Suica at any station with a multi-function machine. The only real differences between the …

  2. comment
    Comment #44886919

    These sequences are also known as "cubefree," so you might want to continue researching along those lines. In particular, the game discussed is trying to find cubefree words over a…

  3. comment
    Comment #43598349

    I memorized it as "c" for "ceiling" and "g" for "ground."

  4. comment
    Comment #42516216

    The "positive" surface already contains all the necessary points. It's hard to prove that this surface on its own intersects with itself, but turning it into a Klein bottle makes t…

  5. comment
    Comment #36567858

    "Confession" is fine as a translation. 告白 can be used for admitting to crimes, confessing one's love, revealing a secret, etc. It would never be used for a declaration where there …

  6. comment
    Comment #34424009

    I tried searching to see what I could find, and it seems like the channels are run by a Korean living in Japan. (I suppose it could be multiple individuals) For example, here's an …

  7. comment
    Comment #30537302

    Not all fonts are monospace. For example, on Windows you have MS PGothic and MS PMincho, which are the proportional versions of MS Gothic and MS Mincho.

  8. comment
    Comment #29759402

    It's a lot of different kinds of stationery in the form factor of a card, presumably for easier portability. For example, the top of the list has a ballpoint pen and a mechanical p…

  9. comment
    Comment #29759052

    This might be pedantic, but your rewriting seems to assume intent where there may have been none. The phrase "in such a way" is adverbial, modifying "surmounted" in the original, b…

  10. comment
    Comment #29305607

    One problem with grapheme clusters as length is that you can't do math with it. In other words, string A (of length 1) concatenated with string B (of length 1) might result in stri…

  11. comment
    Comment #28612253

    You mentioned a studio/1br, which you can totally do in Tokyo under $2k, including food and other daily expenses. However, it will largely depend on what you consider a decent soci…

  12. comment
    Comment #28446873

    Hm? There are lots of copyright-infringing sites using Cloudflare, and Cloudflare seems pretty content to generally ignore infringement notices.

  13. comment
    Comment #28446732

    Publishers definitely don't see it that way; that's mostly an extension of a myth in order to justify the piracy. Most manga publishers will see relatively little revenue from inte…

  14. comment
    Comment #28446525

    They get plenty of takedown notices, but they mostly get to hide behind services like Cloudflare who won't take action regarding these notices anyway. From the publishers/creators …

  15. comment
    Comment #28190354

    Just to note, technically you can buy resin with money (you can replenish your resin with primogems, up to 6 times a day), but it's not very cost efficient so you're generally bett…

  16. comment
    Comment #28190297

    Being unable to maximize a specific character's potential is pretty far from where you said "there are certain important ways in which you simply cannot progress without spending m…

  17. comment
    Comment #28190270

    It's generous enough if you aren't aiming for every premium character. If you play all the story content and events, and are doing the daily quests, you'll pretty much earn enough …

  18. comment
    Comment #26247632

    Unless you can point out where the statistics say that, your belief is just speculation. I've skimmed over the data and didn't see anything about attributing depression to work pro…

  19. comment
    Comment #26238496

    This is definitely not true. Here's the 2020 report from the Ministry of Health, Labour and Welfare: https://www.mhlw.go.jp/content/r2h-1-5.pdf The leading reason for suicide is, b…

  20. comment
    Comment #26091972

    Let's Encrypt also mitigates this by validating from multiple vantage points, so a single man-in-the-middle is insufficient.

  21. comment
    Comment #24045408

    Regarding hiring actors to appear as family members at events: it's not common nor thought of as normal in Japan either.

  22. comment
    Comment #23685390

    It seems like a lot of people in this thread might be interested in a place like Bunkitsu: https://www.japantimes.co.jp/culture/2019/03/30/books/enter-... It's a bookstore in Tokyo…

  23. comment
    Comment #23112297

    The way it was done before without cookies was including the user's session ID as a query parameter in the URL. Adding things to your cart was also done through query parameters. I…

  24. comment
    Comment #22790513

    It looks like you're not escaping single quotes in the find pattern, so the command output gets malformed. Also, you're reading in the whole file before replacing, even though most…

  25. comment
    Comment #22328136

    No, the point of radix sort is that you don't have to do comparisons. Radix sort on strings is the same as radix sort on numbers, just with more buckets.