Viewing profile — swozniak
swozniak
HN member- Joined
- Mon, May 05, 2014, 5:29 PM UTC
- HN karma
- 13
- Public activity
- 12 items
- HN profile
- View on Hacker News ↗
About swozniak
No profile information was provided.
Recent public activity
-
comment
Comment #33036785
In my experience it's always a cop car though.
-
comment
Comment #32842660
Self-promotion: I made an Android live wallpaper of this. https://play.google.com/store/apps/details?id=com.stephanwoz...
-
comment
Comment #22889539
Here's my Android live wallpaper implementation: https://play.google.com/store/apps/details?id=com.stephanwoz...
-
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...
-
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... ).
- story
-
comment
Comment #9832483
Nice, reminds me of the Chrome extension I built a few months back. https://chrome.google.com/webstore/detail/googlifier/lblbdli...
-
comment
Comment #9071517
Yahoo! Tech was gracious enough to review this. https://www.yahoo.com/tech/googlifier-adds-googly-eyes-to-al...
- story
-
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?
-
comment
Comment #7705653
Ah, it looks like JavaScript coerces null to the type against which it is being compared. Thanks!
-
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 =…