Live data from Hacker News

Viewing profile — mattb314

mattb314

HN member
Joined
Thu, Feb 18, 2016, 7:22 PM UTC
HN karma
140
Public activity
41 items

About mattb314

No profile information was provided.

Recent public activity

  1. comment
    Comment #44069468

    Super rough summary of the first half: in order to pick out random vectors with a given shape (where the "shape" is determined by the covariance matrix), MASS::mvrnorm() computes s…

  2. comment
    Comment #40243246

    The idea is that memory-only data systems like HyPer are able to make design decisions that make them significantly faster that disk-based systems (eg postgres), even when the work…

  3. comment
    Comment #33316304

    Wonder if this has anything to do with the sliding window: > Sonic only keeps the N most recently pushed results for a given word, in a sliding window way (the sliding window width…

  4. comment
    Comment #29599069

    > Joules-Thomson effect is what allows for refrigeration I don't think this is true. The "simple" model of refrigeration taught in highschool is just a carnot cycle running backwar…

  5. comment
    Comment #29200848

    Heads up this weights all your scores towards 0. If you want to avoid this, an equally simple approach is to use (x+3)/(y+5) to weight towards 3/5, or any (x+a)/(y+b) to weight tow…

  6. comment
    Comment #27693636

    Free fillable forms is hard to use for taxes in general, but this page is specifically for people who want the CTC without having filed taxes (presumably you otherwise would have g…

  7. comment
    Comment #25993203

    I doubt it? At least the number times the "last updated" column appears on SQL server stats [1] leads me to believe it collects stats async with updates to the table. The only syst…

  8. comment
    Comment #25957929

    I think I generally agree with the majority of the comments here that burn in can serve a useful purpose (especially if you can't find a high probability density point to start fro…

  9. comment
    Comment #24146562

    If you're new to differential privacy and looking for an introduction, I highly recommend the Dwork and Roth book, especially the first three chapters: https://www.cis.upenn.edu/~a…

  10. comment
    Comment #22249159

    Personally I'm not super bullish on differential privacy outside a couple specific use cases, but correlation attacks and cross referencing against external data are exactly the ve…

  11. comment
    Comment #22006755

    I'd also like an answer to this one. It seems like most of these explanations would also apply to plastic or metal getting wet, so why does cloth get so much darker than other mate…

  12. comment
    Comment #21383317

    This is basically the issue. If a single line from the bottom of left is present at the top of right, it will fast-forward all the way through left and fail to match anything else …

  13. comment
    Comment #16234585

    re: efficiency, I think this blog post does a decent job explaining: https://auth0.com/blog/beating-json-performance-with-protobu... . Basically, it doesn't make a huge difference …

  14. comment
    Comment #15949278

    I might be missing some context here, but usually the L_infinity norm means the max norm, or the maximum absolute difference over all components (data points). This gives (min + ma…

  15. comment
    Comment #15765609

    To be honest, I'm a little confused by your answer. Aren't high contention and deadlocking workloads essentially the same thing to a deadlock-detection db? I can imagine some patte…

  16. comment
    Comment #15760442

    Does anyone know why they use deadlock detection rather than deadlock avoidance (the simplest avoidance algorithm being simply to always acquire locks in the same order)? I can't f…

  17. comment
    Comment #15695587

    Even assuming you meant "upper bound" instead of "lower bound", this isn't strictly true in theory. To achieve high throughput with large latency between nodes, all you have to do …

  18. comment
    Comment #15649935

    I'm a little confused about the columnar database comment: > Performing queries across billions of metrics looking for labels that only match a few of them (a common scenario with …

  19. comment
    Comment #15413563

    Worth noting that (I'm 99% sure) you're absolutely allowed to benchmark Oracle, just not publish the results publicly. It's pretty common for DB papers to compare against postgres …

  20. comment
    Comment #14973502

    Could you link/explain how you get those hardware prices, specifically the servers and desktops? Are the available for the average consumer (ie not making a bulk purchase)? I have …

  21. comment
    Comment #14973172

    I think the idea of spending to upgrade your helper AI sounds really interesting and potentially novel, but it's important to push back a little bit on the idea of "removing all th…

  22. comment
    Comment #14479337

    I'm certainly not long on uBeam (even after this fragile demo), but what physics dictates that it won't work? Sure, you're certainly going to take an efficiency loss, but wall outl…

  23. comment
    Comment #14450863

    Thanks! This talk is pretty cool. In case anyone else is interested, in addition to the above video, this [1] paper goes into some of the details, including this explanation: "Read…

  24. comment
    Comment #14449831

    Do you think you could point me towards a source for "mixing reads & writes with a SSD lowers performance"? This seems reasonable, but I've never actually heard it before, and a cu…

  25. comment
    Comment #14117163

    Slightly related question from a non-expert in ad-blocking: is it possible to block interstitial ads? While the freedom to render a page as you wish seems to come with controlling …