Viewing profile — helgie
helgie
HN member- Joined
- Tue, Jul 18, 2017, 1:08 AM UTC
- HN karma
- 25
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About helgie
No profile information was provided.
Recent public activity
-
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 …
- comment
-
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.
-
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.
-
comment
Comment #26608274
If your boss sucks you can't fire them, but if the union sucks you CAN vote out the officers.
-
comment
Comment #26362171
You can write them in python using numba
-
comment
Comment #26189821
Stopping celebration of a thing is not the same thing as erasing it.
-
comment
Comment #26176570
You can use numba to define functions that do not need to hold the GIL to run.
-
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…
-
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?
-
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…
-
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…
-
comment
Comment #19708310
Some thinkpads have them.
-
comment
Comment #19663383
Exploiting people is exploiting people, no matter how you spin it.
-
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…