Viewing profile — jwmerrill
jwmerrill
HN member- Joined
- Thu, Apr 05, 2012, 5:01 PM UTC
- HN karma
- 1,598
- Public activity
- 274 items
- HN profile
- View on Hacker News ↗
About jwmerrill
You can reach me at jwmerrill@gmail.com
Recent public activity
-
comment
Comment #45732297
“Passive voice” is a grammatical term. “Amazon confirms 14,000 job losses,” is not an example of the passive voice. “14,000 workers were fired by Amazon,” is an example of the pass…
-
comment
Comment #43879879
The article is a four part series.
-
comment
Comment #43746550
This is also the inverse Gudermannian function [1]. That Wikipedia page has some nice geometrical insights. [1] https://en.m.wikipedia.org/wiki/Gudermannian_function
-
comment
Comment #43692593
My mistake! It seems clear in hindsight…
-
comment
Comment #43682351
The next pointer doesn’t have to go first in the structure here. It can go anywhere, and you can use @fieldParentPtr to go back from a reference to the embedded node to a reference…
- story
-
comment
Comment #42432307
For problems in the plane, it's natural to pick two coordinate functions and treat other quantities as functions of these. For example, you might pick x and y, or r and θ, or the d…
-
comment
Comment #41782921
` ` is not an html opening tag. It is a preamble. https://html.spec.whatwg.org/multipage/syntax.html#writing
-
comment
Comment #41155447
Instead of differentiating c^(-xn) w.r.t. x to pull down factors of n (and inconvenient logarithms of c), you can use (z d/dz) z^n = n z^n to pull down factors of n with no inconve…
-
comment
Comment #40977402
From later in [1] > Mind that all of this does not impose how we actually scale temperature. > How we scale temperature comes from practical applications such as thermal expansion …
-
comment
Comment #40156754
KaTeX supports server side rendering to an html string. If you do this, the client only needs to load the css component of katex, and not the js component. I believe MathJax has a …
-
comment
Comment #39191006
Entropy in Statistical Mechanics is a quantity associated with a probability distribution over states of the system. In classical mechanics, this is a probability distribution over…
- story
-
comment
Comment #34710568
Raku interprets decimal literals (like 0.1) as limited-precision rational numbers (Rats) [0-1]. I think this is a pretty user-friendly compromise. [0] https://docs.raku.org/syntax/…
-
comment
Comment #31642307
That paper discusses ways of computing a matrix exponential, rather than ways of computing polynomial zeros.
-
comment
Comment #31211532
I’d recommend a language with automatic memory management for the AST walking interpreter in the first half of the book so you don’t have to worry about how everything gets allocat…
-
comment
Comment #30964832
O’Neil has responded to those criticisms here: https://www.pcg-random.org/posts/on-vignas-pcg-critique.html
-
comment
Comment #30777657
Pratt parsing and precedence climbing are the same or very similar, but they are not the same as recursive descent (and the linked article does not claim this).
- story
-
comment
Comment #29592705
> All you need to do is ensure that your calculations are in no danger of blowing past the max significant digits If you have a lot of control of the scale of the numbers you’re co…
-
comment
Comment #29592385
Decimal floating point still doesn’t have associative addition or multiplication.
-
comment
Comment #29199448
> Interesting that the author assumes that US equity dominance will continue. The author does not assume this—rather this is held up as an assumption that might be wrong. The artic…
-
comment
Comment #28027069
Here’s a conversation about tree shaking in Lisp from 1994 [1] (from the posted Wikipedia page). [1] https://groups.google.com/g/comp.lang.lisp/c/pspFr1XByZk
-
comment
Comment #26691757
> what actually happens if you mix sulfuric acid with lye This reaction produces sodium sulfate (a salt) plus water and heat [1]. No idea if this is practical, though. Maybe it’s d…
-
comment
Comment #26556346
I don’t think they’re actually intending to refer to physics here—they could have said “as fast as theoretically possible” instead. A square matrix with n rows and columns has n^2 …