Viewing profile — mlubin
mlubin
HN member- Joined
- Wed, Feb 13, 2013, 12:51 AM UTC
- HN karma
- 239
- Public activity
- 27 items
- HN profile
- View on Hacker News ↗
About mlubin
No profile information was provided.
Recent public activity
- story
-
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…
-
comment
Comment #10441972
Very impressive work, here's the arxiv link: http://arxiv.org/abs/1508.04874
-
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/…
- story
-
comment
Comment #9554869
The only PhD defense I've seen with standing room only. Congrats!
- story
- story
-
comment
Comment #8711108
Some light reading for my next long flight.
-
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.
-
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…
-
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…
- comment
- story
-
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…
- story
- story
-
comment
Comment #7827499
Should the IPLANG "compiler" try to detect multiple solutions?
-
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…
-
comment
Comment #7436601
"Hack provides instantaneous type checking via a local server that watches the filesystem." What does this mean?
-
comment
Comment #7367559
Very cool. Missing LGPL v3. I've been looking for a clear explanation of how it differs from LGPL v2.1.
- story
-
comment
Comment #7126394
koding.com is another way to get an interactive REPL online: https://koding.com/Julia
-
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…
-
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 …