Live data from Hacker News

Viewing profile — jwmerrill

jwmerrill

HN member
Joined
Thu, Apr 05, 2012, 5:01 PM UTC
HN karma
1,598
Public activity
274 items

About jwmerrill

Physicist, probability and geometry enthusiast, and software developer at https://www.desmos.com.

You can reach me at jwmerrill@gmail.com

Recent public activity

  1. 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…

  2. comment
    Comment #43879879

    The article is a four part series.

  3. 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

  4. comment
    Comment #43692593

    My mistake! It seems clear in hindsight…

  5. 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…

  6. story
  7. 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…

  8. comment
    Comment #41782921

    ` ` is not an html opening tag. It is a preamble. https://html.spec.whatwg.org/multipage/syntax.html#writing

  9. 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…

  10. 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 …

  11. 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 …

  12. 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…

  13. story
  14. 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/…

  15. comment
    Comment #31642307

    That paper discusses ways of computing a matrix exponential, rather than ways of computing polynomial zeros.

  16. 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…

  17. comment
    Comment #30964832

    O’Neil has responded to those criticisms here: https://www.pcg-random.org/posts/on-vignas-pcg-critique.html

  18. 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).

  19. story
  20. 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…

  21. comment
    Comment #29592385

    Decimal floating point still doesn’t have associative addition or multiplication.

  22. 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…

  23. 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

  24. 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…

  25. 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 …