Live data from Hacker News

Viewing profile — showdead

showdead

HN member
Joined
Tue, Sep 06, 2011, 9:42 PM UTC
HN karma
33
Public activity
32 items

About showdead

No profile information was provided.

Recent public activity

  1. comment
    Comment #37327808

    From 2008, but still applicable: https://nealabq.com/blog/2008/09/15/bugs-returned-mem-refs/

  2. comment
    Comment #26654311

    Oh, the irony. https://iili.io/qkNFd7.png

  3. comment
    Comment #26095669

    Someone tracked this down to a piece of software called Live! Cam Avatar: https://www.bbc.com/news/technology-56010156

  4. comment
    Comment #24260746

    > x86 is notable in that you can cause a branch or jump without calling a branch or jump instruction. I'm curious what you are referring to here. Are you talking about CMOV? Or INT…

  5. comment
    Comment #21835034

    It's because they have the "American dream" of rising to the top. https://youtu.be/xxD9nGL3NLY

  6. comment
    Comment #21224328

    Not disputing this, but the UX of navigating to a bank's website using Chrome on XP and getting redirected to a "Download Chrome" link when there isn't a newer version for your OS …

  7. comment
    Comment #21223899

    Or just turn off javascript for the site, and the paywall doesn't happen.

  8. comment
    Comment #20779595

    Less effective at cooling, more effective at dehumidifying (it seems there is a presumption that dehumidification is roughly linear with operating time.)

  9. comment
    Comment #20715126

    I think this is what is being referred to: https://news.ycombinator.com/item?id=20643052

  10. comment
    Comment #20593691

    For N=104, if you look at the PDF and zoom in, you can see the blue circles have a line rather than a dot. Admittedly, it is hard to see why the blue circles do not have enough fre…

  11. comment
    Comment #20472300

    > So they have a duty to select a CEO who doesn't enable the unnecessary waste of corporate money on optional taxes. Waste is one of a very short list of categories that are consid…

  12. comment
    Comment #20328132

    That might be true, but the reason for this recommendation is because botulism spores can exist in honey and the systems (mostly gut bacteria, from what I understand) of infants ar…

  13. comment
    Comment #20267246

    > I'm not sure I've ever seen the design you're referring to I think this style is what was being referred to: https://www.amazon.com/Stansport-Aluminum-Scout-Canteen-1-Qu... This …

  14. comment
    Comment #20204105

    I basically gave up on twitch after it stopped working on the Xbox 360. The app just shows thumbnails but never streams. It doesn't work right in the browser for me either, probabl…

  15. comment
    Comment #20108870

    Nothing. It made the news in 2009 in Phoenix: http://bobarno.com/thiefhunters/airport-luggage-theft/

  16. comment
    Comment #20095559

    The paper talks about dynamic networks where nodes are being added or removed. If m and k are fixed, does it set an effective upper bound on the number of nodes? How do you address…

  17. comment
    Comment #20040872

    If you have array @foo in perl, $#foo is the index of the last element of the array, which is just the size of the array -1. So if @foo is undefined, $#foo is -1. Using a variable …

  18. comment
    Comment #19676987

    It is much older than that: https://en.wikipedia.org/wiki/Bell,_book,_and_candle I believe in contemporary use it has become associated with witches, and I have seen it used as a g…

  19. comment
    Comment #19454080

    The popularity of lobster is generally attributed to it being canned and served on the railroads (thinking that they could get away with serving cheap meat to customers in the midw…

  20. comment
    Comment #19380424

    Calculator is interesting in that there is a physical button on (many) keyboards to open it. Ironically enough, I encountered a bug with the Windows 10 calculator that caused it to…

  21. comment
    Comment #19174937

    I remember getting a free polo shirt with the AltaVista logo embroidered on it. I don't recall the specific circumstances that led to being sent a shirt, and I wore holes in it so …

  22. comment
  23. comment
    Comment #18699297

    The US does have a television network called PBS (Public Broadcasting Service) which is a non-profit organization although it is only partially government funded (they generally as…

  24. comment
    Comment #15483382

    The term comes from the history of firefighting: http://www.firehydrant.org/info/hist-fp.html

  25. comment
    Comment #15076491

    Well, there is this approach: #include #include #define FIZZ(x) (x & 0x0924) #define BUZZ(x) (x & 0x0210) #define FIZZBUZZ(x) (x & 0x4000) #define NONE(x) (x & 0x34cb) void fizzbuz…