Viewing profile — hermitdev
hermitdev
HN member- Joined
- Mon, Jun 13, 2016, 1:04 AM UTC
- HN karma
- 3,595
- Public activity
- 1,436 items
- HN profile
- View on Hacker News ↗
About hermitdev
No profile information was provided.
Recent public activity
-
comment
Comment #46531228
Every time see Mr Beast (I don't watch any of his stuff, just accidentally see promos on Prime sometimes), he reminds me of Homer Simpson's forced smile in the Simpsons' espiode "R…
-
comment
Comment #46328119
> to 4 GB packets Heh. Anyone remember the ping of death[0]? A lot (most?) of computers on the early internet didn't properly handle large packets, _especially_ from ICMP pings. On…
-
comment
Comment #45776939
While your example of `sum` is a nice, pure function, it'll unfortunately blow up in python on even moderately sized inputs (we're talking thousands of elements, not millions) due …
-
comment
Comment #44941283
> This is a terrible idea. No, it isn't. Any decent datacenter will have on-site generation in event of power grid failure, anyway. When I was an intern, the company I worked for w…
-
comment
Comment #44864301
> that EU regulation requires their timestamps to be within 100 microseconds of UTC, It's the same in the US. It's covered under CAT NMS (Consolidated Audit Trail, National Market …
-
comment
Comment #44130003
I started using C# towards the end of the 1.0 beta or maybe just after RTM...I embarrassingly called it "C pound" for quite a while. Because, even as someone born and raised in the…
-
comment
Comment #43798549
This is a vast, _vast_ over-simplification: The primary "feature" of HFT is providing liquidity to market. HFT firms are (almost) always willing to buy or sell at or near the curre…
-
comment
Comment #43796589
> We can use UB to refer to both. :) You can, but in the context of the standard, you'd be wrong to do so. Undefined behavior and unspecified behavior have specific, different, mea…
-
comment
Comment #43795813
> Would you rather have a HFT trade go correctly and a few nanoseconds slower or a few nanoseconds faster but with some edge case bugs related to variable initialisation ? As someo…
-
comment
Comment #43787237
> I realize this all probably sounds very silly to someone born before 1980 I was born after 1980 and I think you're beating a dead horse, here. You're conflating accessibility wit…
-
comment
Comment #43775181
Editting simcity saves was my introduction to hex editing...
-
comment
Comment #43772208
The problem is: it's infectious into the generated code, as well. Is that 3rd party or not? Yes, it was generated by a 3rd party tool, but from, ostensibly, _your_ protobuf file. e…
-
comment
Comment #43765532
> And I'd rather keep the library warning free instead of telling the users to switch warnings off. Thank you! Separately, but related: fuck you, Google! (every time I have to deal…
-
comment
Comment #43765452
Hey, at least Python is nowhere near Perl in terms of language creep. I don't need a Period Table of Operators [0] to keep Python straight in my head. [0] https://www.ozonehouse.co…
-
comment
Comment #43765307
> The reason it works is because Python functionally has no bool type. True and False are just integers with names. This has not been true since around 2.4 or 2.5. The oldest Pytho…
-
comment
Comment #43638725
> Meanwhile there is another reason why the number of government workers has gone down: Uh...excluding the very recent cuts this year under Trump; the number of civilians in the US…
-
comment
Comment #43550813
> because the simulator had a bug I had something similar happen when I was taking microcomputers (a HW/SW codesign class at my school). We had hand-built (as in everything was wir…
-
comment
Comment #43294316
> Which is redundant for most functions as they only have positional parameters. Huh? This is not true. def foo(a, b, c): ... This can be invoked as either `foo(1, 2, 3)` or `foo(c…
-
comment
Comment #43282940
A thought: maybe the pulse could be some sort of link status probing? e.g. "is this thing plugged in?"
-
comment
Comment #43063586
Caveat: I have not looked at the neither the API nor the implementation of Kreuzberg, this is purely from personal work. Even with CPU bound code in Python, there are valid reasons…
-
comment
Comment #42552349
It's not that they don't understand; it's that it causes more work for the lawyers, because someone has to review the license if it's not one of the standard boilerplate acceptable…
-
comment
Comment #42435560
Total stab in the dark here, but it could be the local time on the device. Your local clock needs to be relatively close to the actual clock. I've run into this more than a few tim…
-
comment
Comment #42401457
On desktop, the embedded video is also fairly small and annoyingly, they disallow full-screen. why?
-
comment
Comment #42274351
FWIW, you have some control over how this inference is done. Search your settings in vscode for `@ext:ms-python.vscode-pylance strict`.
-
comment
Comment #42215378
> That `String` leaks memory, [...] So does the clone...