Skip to content

Instantly share code, notes, and snippets.

@safe1981
safe1981 / gist:2016613
Created March 11, 2012 14:28 — forked from paulirish/gist:1928551
draft of lazyweb-requests summary

TODO

  • defer and footnotes
  • mothereffinganimgif huge success
  • api.h5p huge success
  • big IRC client effort
@safe1981
safe1981 / gist:2016608
Created March 11, 2012 14:25 — forked from paulirish/gist:1928551
draft of lazyweb-requests summary

TODO

  • defer and footnotes
  • mothereffinganimgif huge success
  • api.h5p huge success
  • big IRC client effort

12 months ago, I opened up a repo on Github; the idea was that my ideas were great and I didn't have time to complete them all, so I wrote them for other people to do. (lol) In reality, all of us have way more time than ideas, but it turned out some of the ideas I had were totally shared by other people, we just didn't have a meeting place to collaborate.

@safe1981
safe1981 / gist:1990062
Created March 7, 2012 00:20 — forked from padolsey/gist:527683
Javascript: Detect IE
// ----------------------------------------------------------
// A short snippet for detecting versions of IE in JavaScript
// without resorting to user-agent sniffing
// ----------------------------------------------------------
// If you're not in IE (or IE version is less than 5) then:
// ie === undefined
// If you're in IE (>=5) then you can determine which version:
// ie === 7; // IE7
// Thus, to detect IE:
// if (ie) {}