Viewing profile — dbrueck
dbrueck
HN member- Joined
- Mon, Apr 23, 2018, 1:45 PM UTC
- HN karma
- 1,672
- Public activity
- 450 items
- HN profile
- View on Hacker News ↗
About dbrueck
Recent public activity
-
comment
Comment #42091860
Not when talking about geometry - the idea is a 4th spatial dimension.
-
comment
Comment #42013417
> I don't know why this isn't part of HTTP already It could probably be improved, but HTTP does support this already: https://datatracker.ietf.org/doc/html/rfc2616#section-14.15
-
comment
Comment #42013180
Interesting! It's worth noting though that HTTP actually works very well for reliably downloading large immutable files. And since this proposed protocol operates over TCP, there's…
-
comment
Comment #42003084
Sorry for not being more clear, I was referring to the advertising or promotion that comes via the elite players. Take Valorant, for example. Riot Games leveraged their League of L…
-
comment
Comment #42003002
Relevancy filtering is more for network traffic optimization, it doesn't really help with cheating in most cases. In a FPS, for example, the actors the cheater most wants to know a…
-
comment
Comment #42002912
Hmm... isn't Blizzard's main FPS title Overwatch though? Cheating seems pretty common in that game (and there are tons of forum threads where people are complaining about it).
-
comment
Comment #42002067
I appreciate the feedback - I've edited the comment to hopefully do better. Thank you for taking the time!
-
comment
Comment #42001449
The anti-cheat problem is long-running and complicated. If you choose not to run anti-cheat because you understand that these are opaque rootkits, good for you! That's a totally, 1…
-
comment
Comment #41970754
It's fun to experiment and try out ideas - kudos to the author for doing this and sharing the results with the community, I love that. As far as the results go, though, I don't see…
-
comment
Comment #41949221
Amit Patel has been my hero since Solar Realms Elite.
-
comment
Comment #41899010
Not the OP, but the appeal of languages like JS has a lot to do with developer productivity. I write gobs of JS and Python code and the finished programs and libraries can be stron…
-
comment
Comment #41891661
We don't run node servers.
-
comment
Comment #41889541
I agree with this recommendation - they work great with Wireguard. And if you're travelling, some of the features like handling captive portals are handy.
-
comment
Comment #41888458
> Honestly this feels like an indictment of privatizing space travel NASA has involved the private sector for over half a century. Taking that out of the equation leaves you with S…
-
comment
Comment #41818860
I enjoyed the Pitch Meeting summary at least: https://www.youtube.com/watch?v=pPL7OZF1iI4
-
comment
Comment #41809667
> The interconnection of “the divine” and science was central to the scientific revolution Agreed. Even today, for many people there is no fatal tension between science and religio…
-
comment
Comment #41791615
> ELI5: Why do people love Python so much? Developer productivity. > Maintainers seem happy to introduce breaking changes without major version bumps Nah. Keep in mind that this is…
-
comment
Comment #41791264
Mal: "We got work to do, dong ma?"
-
comment
Comment #41765879
Chunked transfer encoding can be a pain, but it's a reasonable solution to several problems: when the response is too big to fit into memory, when the response size is unknown by t…
-
comment
Comment #41765834
The HTTP 1.1 spec isn't 175 pages long just for the fun of it. :)
-
comment
Comment #41757712
Agreed, and so far the replies to your question are (for me at least) deeply unsatisfying. We already had SSR back in the CGI days, and it was awesome when we moved a lot of that s…
-
comment
Comment #41682526
Nim uses it too. IIRC, Python's predecessor (ABC) didn't have the trailing colon but they did some experiments and found it increased readability.
-
comment
Comment #41682513
...yes? Sorry, I'm not sure I understand what you're getting at. :) (funny enough, that particular scenario is actually harder to miss in Python since it often produces an error th…
-
comment
Comment #41682480
Oh, I thoroughly understand the parent's point, I'm just disagreeing that it is a problem that needs to be "addressed". Most language design decisions involve tradeoffs, and for me…
-
comment
Comment #41679964
Whitespace is semantically significant in nearly all modern programming languages, the difference is that with Python it is completely significant for both the humans and the tools…