Live data from Hacker News

Viewing profile — Gh0stRAT

Gh0stRAT

HN member
Joined
Sat, Jan 10, 2015, 9:30 AM UTC
HN karma
622
Public activity
147 items

About Gh0stRAT

No profile information was provided.

Recent public activity

  1. comment
    Comment #48526146

    Agreed, how could we not have datacenter capacity for the GPUs when Meta has shown that you can go from a bare field to an operational datacenter in about 3 months by using tents i…

  2. comment
    Comment #48187199

    It's been quite a while since I first heard about it, but IIRC they were seeding cryptographic PRNGs with entropy from multiple sources, one of which was allegedly this art install…

  3. comment
    Comment #43345237

    Ian Banks' Culture series is the only one that comes to mind.

  4. comment
    Comment #42823321

    You missed Adelaide's O-Bahn, which is another way to mitigate the "buses get stuck in traffic" problem. https://en.m.wikipedia.org/wiki/O-Bahn_Busway

  5. comment
    Comment #42701330

    That's not countering the argument that steering is what is preventing the bike from falling over rather than the gyroscopic effect of the wheels. You'd have to tie off the handleb…

  6. comment
    Comment #42378933

    IIRC if your brokerage reports everything to the IRS properly, you only need to fill out net short- and long-term capital gains on your schedule D rather than specifying every sing…

  7. comment
    Comment #42281921

    This is exactly how Toyota's AWD works in the Sienna these days. It gets 35mpg city and highway, 1mpg less than the front wheel drive Sienna (which, to be fair, is also a hybrid)

  8. comment
    Comment #41257877

    If your threat model includes someone with a quantum computer intercepting all of your traffic and storing it to decrypt later, you probably don't want to share your keys over a no…

  9. comment
    Comment #40297204

    They fought the FBI over unlocking iPhones when they could have just quietly complied with the request. I'd say they have a decent track record.

  10. comment
    Comment #38988618

    IIRC backpropagation was a very significant breakthrough on how to update weights when training neural nets.

  11. comment
    Comment #38874243

    I want my guests to be able to cast to my TV, add songs to the Spotify queue, etc. As far as I can tell, these sorts of features work via broadcast frames and thus require the rele…

  12. comment
    Comment #38742229

    Amazon Fresh also used it in a handful of locations. (and still does) IIRC there are 2 Whole Foods locations that use it as well.

  13. comment
    Comment #38722090

    Yeah, I'm going to be honest: I'm a cryptocurrency doomer so I've not followed things super closely, but a quick Google search turned up this article[0] from 2022: >While it is tru…

  14. comment
    Comment #38721951

    IIRC people were already converting their data into texture maps and writing their SIMD instructions as shaders operating on those textures before Nvidia released CUDA.

  15. comment
    Comment #38721778

    There's a quote that I love: >I'm a great believer in luck. The harder I work, the more of it I seem to have. Nvidia has been working hard(er than their competition) on the softwar…

  16. comment
    Comment #38428158

    Is the term you're looking for "cupping", ie the formation of "sun cups"?

  17. comment
    Comment #38407248

    Haha yeah, I was being charitable to avoid starting a flamewar ;)

  18. comment
    Comment #38406346

    I think that Javascript's massive success with the terrible syntax it used to have goes a long way toward confirming your hypothesis.

  19. comment
    Comment #38295450

    So that they can seamlessly upsell you on upgrading to a new phone that you'll pay off in installments over the next couple years. Also, many postpaid plans (like my home ISP) requ…

  20. comment
    Comment #38056386

    If you practice bringing a new datacenter online without any connectivity on the existing deployment, and you practice then joining two disjoint "clouds", then you've pretty much c…

  21. comment
    Comment #38042609

    Azure has procedures in place to prevent circular dependencies, and regularly exercises them when bringing new regions online. IIRC some of the information about their approach is …

  22. comment
    Comment #37981917

    Unfortunately yes. That being said, the hottest loops that would benefit the most from added parallelism tend to have fewer side effects already in my experience so things aren't q…

  23. comment
    Comment #37976375

    >foreach will not be replaced behind the scenes into multithreaded version since it changes behaviour. It only (meaningfully) changes behavior if you're both iterating over an oder…

  24. comment
    Comment #37967075

    One difference from most other classes of bugs is that threading issues can be quite nondeterministic, which makes it harder to automatically disambiguate between flaky tests and r…

  25. comment
    Comment #37961889

    Humans are bad at reasoning about multiple threads simultaneously, so I suspect the more practical shift is the trend we've already been seeing toward more declarative syntax. eg `…