Live data from Hacker News

Viewing profile — mmaldacker

mmaldacker

HN member
Joined
Thu, Dec 27, 2012, 2:26 PM UTC
HN karma
84
Public activity
58 items

About mmaldacker

No profile information was provided.

Recent public activity

  1. comment
    Comment #19053412

    https://github.com/mmaldacker/Vortex2D It should work on macOS/iOS via MoltenVK, but I haven't tested it extensively. It's a hybrid simulation with particles for the advection and …

  2. comment
    Comment #11861048

    1. The "reverse-complement" problem here is simply about reading a file, reversing strings and mapping a small set of characters to another one and printing the result. This is rea…

  3. comment
    Comment #10893539

    This falls in the very specialized fields, but traders/brokers certainly need to be good at mental calculations.

  4. comment
    Comment #9763851

    > the Netherlands has fewer than 17 million residents and a language that nobody else speaks If you don't count the flemish in Belgium (about 6-7 million people). In addition, (alm…

  5. comment
    Comment #9617264

    Technological advancements are made. UDP Broadcast was completely broken in the 90s in Linux and was fixed by people in the finance industry. High speed network cards are constantl…

  6. comment
    Comment #9563282

    dictionary is not necessary, the C++ impl just counts the number of words. This can be written as: int word_count(const char *const filename) { std::ifstream file{filename}; return…

  7. comment
    Comment #9420652

    Upgrading and maintaining a transport infrastructure is necessary for big cities regardless of the wall circumstances. You don't think London, Paris and other big metropolitan citi…

  8. comment
    Comment #9413870

    >Back in the 70s, you could rock up at the airport twenty minutes before your flight left This still exists, for example Tegel airport in Berlin. Also, in the 70s there was waaaaaa…

  9. comment
    Comment #9413746

    >and also remember Berlin's system is essentially new and was rebuilt after reunification so you are looking at a modern system. After the reunification, they only had to reconnect…

  10. comment
    Comment #9413373

    Berlin had a maglev metro for a short while back in 1989: http://en.wikipedia.org/wiki/M-Bahn

  11. comment
    Comment #9354544

    The barcelona chair is a classic furniture from the bauhaus period designed in 1929, which is not even close to the "midcentury" period defined in the article.

  12. comment
    Comment #9288832

    > While implicit operator overload was probably a C++ mistake are you talking about the implicit conversion operator or operator overloading in C++? For the former, it has been vas…

  13. comment
    Comment #9225847

    If you want to read up more on this, look up third culture kids. The wikipedia page is a good start.

  14. comment
    Comment #9136918

    Not a single data point in this theory. The reason you sometimes wake up just before the alarm (at least I wake up before my alarm because I actually check the time) is because of …

  15. comment
    Comment #8813866

    It's a low pass filter. And I'm assuming the low-pass is used in the DAC to cut off high frequencies it cannot handle.

  16. comment
    Comment #8762035

    or just calculate the eigenvalues & eigenvectors of Q.

  17. comment
    Comment #8739447

    In this case, it makes no difference. The array is used instead of a struct to save a few lines of code and making the title of this post more impressive.

  18. comment
    Comment #8686680

    It's worth a lot. M&A or quarterly results can move stock prices quite significantly and knowing about those before they are public will allow you to bet against it on the market.

  19. comment
    Comment #8589544

    They do deprecate things, e.g. exception specification and the auto keywords was re-purposed.

  20. comment
    Comment #8556787

    copying the data was probably the bottleneck, not malloc.

  21. comment
    Comment #8393764

    Calculating greeks is not very difficult and bandwidth is going to be the bottleneck due to the high number of inputs necessary to calculate them. So no wonder that CPUs outperform…

  22. comment
    Comment #8388631

    Apple doesn't even tell you how much RAM their phone have. Or what the CPU/GPU frequencies are.

  23. comment
    Comment #8372261

    Legal problems and technical problems aside, what are you going to gain by intercepting the traffic? Most of the traffic is going to be market data and order data which are public …

  24. comment
    Comment #8354941

    Front running is something else, http://en.wikipedia.org/wiki/Front_running

  25. comment
    Comment #8329557

    >The "nascent payment system" which is Apple Pay is better supported by the credit card companies than Google Wallet. It only remains to be seen how many retailers will switch to N…