Live data from Hacker News

Viewing profile — spacedome

spacedome

HN member
Joined
Tue, Mar 21, 2017, 10:12 PM UTC
HN karma
120
Public activity
40 items

About spacedome

No profile information was provided.

Recent public activity

  1. comment
    Comment #42546256

    A small writeup on the Fast Fourier Transform and implementing it in functional languages.

  2. story
  3. comment
    Comment #32962116

    Thanks for writing this up, Chris! I took a break from Julia a year or two ago because of some of these issues, one of the big ones being I didn't want to write and maintain a set …

  4. comment
    Comment #27962052

    I love Julia and choose to work in it almost exclusively, but I agree with the points in the article. I've run into a lot of issues just writing numerical linear algebra type algor…

  5. comment
    Comment #27045582

    Why not just use fixed point? That's specifying how much precision you need in a fixed way and has the benefit of being quite simple

  6. comment
    Comment #26455313

    You can do operator overloading in fortran to add a new number type, don't remember the details but I wrote a quaternion library once.

  7. comment
    Comment #26415668

    I meant doing day trades of long term puts, but yes I agree any money here is a huge gamble.

  8. comment
    Comment #26415208

    It looks good, I'll definitely give it a real try if I start trading options more, the order flow data alone looks like it would make it worthwhile. Do you incorporate L2 data? Cou…

  9. comment
    Comment #26415088

    You can make big money trading the volitility, if you get really lucky. The price of some puts I looked at went up 500%+ during the drop today. Would not try this personally lol

  10. comment
    Comment #26414976

    Looking right now some of the options a few months out have implied volitility of 1000%+, your best bet might be selling them off on big crashes instead of waiting it out? Some of …

  11. comment
    Comment #26414765

    What kind of premiums did you pay on those puts though? Last I looked the prices were pretty insane.

  12. comment
    Comment #26414722

    What do you think of tradytics? Looks really interesting, though I mainly trade OTC, which I sort of doubt it has much support for.

  13. comment
    Comment #25821706

    You absolutely can use regular jupyter notebooks for julia! Pluto has some advantages, like being stored as a normal julia file. The julia startup time issues affect both.

  14. comment
    Comment #25544910

    You are making a lot of ontological and epistemological assumptions that are contentious in the philosophy of math. Not saying you are wrong in thinking this, metaphysical question…

  15. comment
    Comment #25544828

    I agree this is a common sentiment among mathematicians, but this is a very modern perspective. If you look back 100 years ago to Hilbert, there was less distinction between physic…

  16. comment
    Comment #25483206

    As an 'academic' who has done plenty of physical labor, I find this argument reductive and offensive. You can disagree with the author without painting this negative picture of the…

  17. comment
    Comment #25267782

    On demand printing has also been horrible for textbooks/monographs, Springer being one of the worst. Very few copies are printed, but they serve as an important means of preserving…

  18. comment
    Comment #24852377

    It is entirely possible, but is not trivial, especially for the user who then needs to know "arcane knowledge" of BLAS/LAPACK work array sizes and flags. There was some discussion …

  19. comment
    Comment #24844827

    Yes, many of these are "in-place" but will still allocate. I typically use the geev!/ggev!/geevx! routines, if you look at the source code you will see that the work arrays are sti…

  20. comment
    Comment #24842685

    Higher level BLAS operations, such as solving a linear system, or computing svd/eigen, cannot be done in-place the way matrix multiplication can, and require additional memory of a…

  21. comment
    Comment #24841990

    As much as I like Julia, I think "trivial to write allocation free code" is a bit of an overstatement. Depending on what you are doing, it can be difficult, for example iteratively…

  22. comment
    Comment #24841179

    This is good to know, thanks Chris. I mostly solve sparse PDEs, being able to always use LU makes everything much simpler, especially with quaternions.

  23. comment
    Comment #24840875

    I found this approach to work well for linear systems, here is some rough code I used for the representation map (note the jmag/kmag functions are part of my implementation, not su…

  24. comment
    Comment #24840700

    My experience with various linear solvers (which a diffeq solver typicaly relies on) is that if they assume commutivity anywhere at all, which they often do, they almost definitely…

  25. comment
    Comment #24840571

    I think the functionality of Julia's sparse arrays is mostly on par with scipy.sparse, it's just a bit rough around some edges still, and spread out into non-base packages (e.g. in…