Live data from Hacker News

Viewing profile — mlubin

mlubin

HN member
Joined
Wed, Feb 13, 2013, 12:51 AM UTC
HN karma
239
Public activity
27 items

About mlubin

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #23742757

    > I remember when using download statistics was enough. No download statistics are currently available for Julia packages. That's essentially the issue that the Pkg.jl telemetry is…

  3. comment
    Comment #10441972

    Very impressive work, here's the arxiv link: http://arxiv.org/abs/1508.04874

  4. comment
    Comment #10308944

    If you're interested in model generation time, have a look at JuMP ( https://github.com/JuliaOpt/JuMP.jl ). More discussions on the speed of modeling languages at http://arxiv.org/…

  5. story
  6. comment
    Comment #9554869

    The only PhD defense I've seen with standing room only. Congrats!

  7. story
  8. story
  9. comment
    Comment #8711108

    Some light reading for my next long flight.

  10. comment
    Comment #8506346

    I really would like to be able to see a proof of how Mathematica calculates a limit, for example. Doesn't need to be human friendly, just verifiable.

  11. comment
    Comment #8472821

    This is an impressive job. I'm curious why the arxiv paper uses Julia's benchmark suite but doesn't make any other mention of Julia in the discussion, given that it's quite relevan…

  12. comment
    Comment #8418982

    The exchange would be based on the counterparty protocol, which allows anyone with a BTC address to issue and back assets in a decentralized manner. We'll have to see how this dece…

  13. comment
  14. story
  15. comment
    Comment #8377877

    To follow up on this, a lot of the overhead from reverse-mode AD can be avoided by flattening out the expression graphs and compiling specialized functions (at runtime). A number o…

  16. story
  17. story
  18. comment
    Comment #7827499

    Should the IPLANG "compiler" try to detect multiple solutions?

  19. comment
    Comment #7461694

    A couple of projects have looked at solving the trust issue by implementing a distributed exchange without counterparty risk on top of the bitcoin blockchain: https://www.counterpa…

  20. comment
    Comment #7436601

    "Hack provides instantaneous type checking via a local server that watches the filesystem." What does this mean?

  21. comment
    Comment #7367559

    Very cool. Missing LGPL v3. I've been looking for a clear explanation of how it differs from LGPL v2.1.

  22. story
  23. comment
    Comment #7126394

    koding.com is another way to get an interactive REPL online: https://koding.com/Julia

  24. comment
    Comment #6749921

    For anyone interested in using Julia for numerical optimization/mathematical programming, see http://juliaopt.org/ . We have pure-Julia implementations of standard unconstrained me…

  25. comment
    Comment #6399464

    That's a good tip in general, but it's mostly aimed at addressing type instability. For example, if you have x = 1 f(x) x = "foobar" f(x) then each call to f will be optimized for …