Viewing profile — hndc
hndc
HN member- Joined
- Thu, Mar 07, 2013, 10:39 PM UTC
- HN karma
- 89
- Public activity
- 18 items
- HN profile
- View on Hacker News ↗
About hndc
No profile information was provided.
Recent public activity
- comment
-
comment
Comment #48152034
> The structural correspondence is the point. > The choice of @form(vec) here is itself a real design decision, not an arbitrary one. > The point of the surface isn’t completeness …
-
comment
Comment #46936837
Compiler artifact is still deterministic. Clearly not referring to runtime behavior that is input-dependent
-
comment
Comment #46931246
Deterministic compilation, aka reproducible builds, has been a basic software engineering concept and goal for 40+ years. Perhaps you could provide some examples of compilers that …
-
comment
Comment #46170117
> I'm coming to the view that Rust mostly requires less cognitive load than other languages. This view is only remotely within the bounds of plausibility if you intended for "other…
-
comment
Comment #45747209
> DevOps was a reaction to the fact that even outsourcing ops to AWS doesn’t entirely solve all of your ops problems DevOps, conceptually, goes back to the 90s. I was using the ter…
-
comment
Comment #42757272
That was one of the most frustrating seasons of any television show I’ve ever watched, right up until the finale—which completely redeemed it for me! What an ending.
-
comment
Comment #42570006
This is one of the better applications of an Apple Watch, which will detect when you haven’t stood for a while and pester you to do so. Of course, the watch comes with a giant bund…
-
comment
Comment #39527143
Wild? Using it in dialogue seems perfectly reasonable. It's a common malapropism.
-
comment
Comment #39080626
You've misunderstood the theorem. It doesn't say you can't achieve any combination of mostly C/A/P; it says you can't have perfect C, A, and P at the same time.
-
comment
Comment #34764412
This completely misapprehends the point of writing essays.
-
comment
Comment #31866196
> "in my experience" Here's some data: https://benchmarksgame-team.pages.debian.net/benchmarksgame/... Ignoring the programs using x86 intrinsics to do vectorized math, the top-per…
-
comment
Comment #27700568
The entire selling point of pair programming is that your copilot would point out errors like this, not introduce them. Pairing works when you either pair two strong programmers or…
-
comment
Comment #22382895
In "But I think we can aim...", "but" is a conjunction, not a preposition Also, his writing is fine: simple but clear and effective. "Many of his sentences are phrases" — literally…
- comment
-
comment
Comment #22261485
Among the drawbacks of excessive syntactic sugar is that it is often difficult or impossible to look up
-
comment
Comment #22117350
It's as though you didn't even read the very article you linked
-
comment
Comment #5340869
You're using integer arithmetic in Ruby and floating-point arithmetic in Go. Try replacing math.Mod(float64(i), float64(j)) with i%j My results: $ time go run primes.go Found them!…