Live data from Hacker News

Viewing profile — swozniak

swozniak

HN member
Joined
Mon, May 05, 2014, 5:29 PM UTC
HN karma
13
Public activity
12 items

About swozniak

No profile information was provided.

Recent public activity

  1. comment
    Comment #33036785

    In my experience it's always a cop car though.

  2. comment
    Comment #32842660

    Self-promotion: I made an Android live wallpaper of this. https://play.google.com/store/apps/details?id=com.stephanwoz...

  3. comment
    Comment #22889539

    Here's my Android live wallpaper implementation: https://play.google.com/store/apps/details?id=com.stephanwoz...

  4. comment
    Comment #11534767

    I built a version with googly eyes last year. Was the most successful "stupid" project I've ever knocked out. http://www.cnet.com/news/googlifier-chrome-extension-adds-go...

  5. comment
    Comment #10845618

    This page might be my new first choice when I demo my googly eye Chrome extension (Googlifier - https://chrome.google.com/webstore/detail/googlifier/lblbdli... ).

  6. story
  7. comment
    Comment #9832483

    Nice, reminds me of the Chrome extension I built a few months back. https://chrome.google.com/webstore/detail/googlifier/lblbdli...

  8. comment
    Comment #9071517

    Yahoo! Tech was gracious enough to review this. https://www.yahoo.com/tech/googlifier-adds-googly-eyes-to-al...

  9. story
  10. comment
    Comment #7859702

    Really interested to see the end result. I submitted and received the "Success" notice about two hours ago - how long should I be expecting before having access to a build?

  11. comment
    Comment #7705653

    Ah, it looks like JavaScript coerces null to the type against which it is being compared. Thanks!

  12. story
    In JavaScript, why does (null + null === 0) return true?

    I could be convinced into thinking == would return true if null was treated as 0 (so 0 + 0 = 0), but with ===, this doesn't seem right at all, especially considering: typeof null =…