Live data from Hacker News

Viewing profile — helgie

helgie

HN member
Joined
Tue, Jul 18, 2017, 1:08 AM UTC
HN karma
25
Public activity
15 items

About helgie

No profile information was provided.

Recent public activity

  1. comment
    Comment #41525844

    Yes, there was a bidding process, you can see some of the entrants that lost here: https://jalopnik.com/here-are-all-the-mail-trucks-that-didn-... In any case, even if the process …

  2. comment
  3. comment
    Comment #35167410

    Simpler answer that doesn’t require weird psychoanalysis: bro is used because of the perception (possibly reality?) of the ratio of men to women in tech.

  4. comment
    Comment #31294951

    I use pods because, of the options available at my grocery store, the only ones available that I know won't etch glass are sold as pods.

  5. comment
    Comment #26608274

    If your boss sucks you can't fire them, but if the union sucks you CAN vote out the officers.

  6. comment
    Comment #26362171

    You can write them in python using numba

  7. comment
    Comment #26189821

    Stopping celebration of a thing is not the same thing as erasing it.

  8. comment
    Comment #26176570

    You can use numba to define functions that do not need to hold the GIL to run.

  9. comment
    Comment #25059597

    If you use numba (or cython, c extensions, etc) you can make them run without requiring that they hold the GIL, and they can run in parallel. Here's an example that should keep a C…

  10. comment
    Comment #25022402

    Why should me playing a game be more restricted than me watching someone else (and anything else their commentary/antics might entail) play the very same game on twitch?

  11. comment
    Comment #24090664

    You can just do 'pip install the-package' in python if you aren't using a virtual environment. Ruby does have the equivalent of virtual environments, using RVM or rbenv (similar bu…

  12. comment
    Comment #23767761

    Natively parallel? From https://docs.julialang.org/en/v1/base/multi-threading/ : "Julia is not yet fully thread-safe. In particular segfaults seem to occur during I/O operations an…

  13. comment
    Comment #19708310

    Some thinkpads have them.

  14. comment
    Comment #19663383

    Exploiting people is exploiting people, no matter how you spin it.

  15. comment
    Comment #14793716

    Using the 'cuda.jit' method as linked does require you to do things like manually setting threads and blocks, though one could argue it makes it easier than doing it in CUDA C. How…