Skip to content

Instantly share code, notes, and snippets.

View websiddu's full-sized avatar
😎
Cool

Siddhartha websiddu

😎
Cool
View GitHub Profile
function countCSSRules() {
var results = '',
log = '';
if (!document.styleSheets) {
return;
}
for (var i = 0; i < document.styleSheets.length; i++) {
countSheet(document.styleSheets[i]);
}
function countSheet(sheet) {
@websiddu
websiddu / INTERNET_ERROR_CODES
Last active December 29, 2015 11:09
INTERNET ERROR CODES
INTERNET ERROR CODES
1xx Informational
----------------
100 Continue
101 Switching Protocols
2xx Success
----------------
200 OK
@websiddu
websiddu / 0_reuse_code.js
Created September 29, 2013 03:35
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console