This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function minimizeCSS(){ | |
| var s = document.styleSheets[0].cssRules; | |
| var j=s.length-1, ar=[]; | |
| try{ | |
| for(;j>=0;j--){ | |
| if(document.querySelectorAll(s[j].selectorText).length>0)ar.push(s[j].cssText); | |
| } | |
| }catch(e){ | |
| console.log('error for style #'+j) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head><title>document.write and the back button</title></head> | |
| <body> | |
| <p>FAILED (not ran)</p> | |
| <iframe src="./"></iframe> | |
| <script> | |
| // there is something odd with document.write() and IFRAME | |
| // one immediately, inline | |
| writeIframe('1st time - inline'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from marionette import Marionette | |
| def set_mozilla_pref(marionette_instance, name, value): | |
| marionette_instance.set_context(marionette_instance.CONTEXT_CHROME) | |
| js = """ | |
| var pref = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch); | |
| var str = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString); | |
| str.data = "%s"; | |
| pref.setComplexValue("%s", Components.interfaces.nsISupportsString, str) | |
| """ % (value, name) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function k(aC, aG, aJ) { | |
| var aI, aD, aO, aM, aP, aF = true, aL, Y; | |
| if (aC) { | |
| aI = K(aC) | |
| } else { | |
| return | |
| } | |
| var aN = at().width; | |
| if (aC.get("needs_interstitial")) { | |
| aF = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var btn = document.getElementById("copy-button"); | |
| btn.addEventListener("click", clickHandler, false); | |
| function clickHandler(e) { | |
| document.exeCommand('copy'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.veoh.com/ | |
| http://screen.yahoo.com/ | |
| http://blip.tv/ | |
| http://www.metacafe.com/ | |
| http://www.ovguide.com/ | |
| http://www.ndtv.com/video/ | |
| http://video.pbs.org/ | |
| http://www.microsoft.com/showcase/ | |
| http://www.youtube.com/ | |
| http://www.eonline.com/news/watch_with_kristin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| google.com.br | |
| uol.com.br | |
| globo.com | |
| mercadolivre.com.br | |
| itau.com.br | |
| hao123.com | |
| abril.com.br | |
| terra.com.br | |
| ig.com.br | |
| caixa.gov.br |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mercadolibre.com.mx | |
| taringa.net | |
| unam.mx | |
| sat.gob.mx | |
| segundamano.mx | |
| eluniversal.com.mx | |
| occ.com.mx | |
| maps.google.com.mx | |
| banamex.com.mx | |
| musica.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| google.com.bd | |
| prothom-alo.com | |
| bdnews24.com | |
| banglanews24.com | |
| espncricinfo.com | |
| kalerkantho.com | |
| banglamail24.com | |
| bdjobs.com | |
| priyo.com | |
| bikroy.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| DATE=`date +%Y%m%d` | |
| ALEXA_URL=http://www.alexa.com/topsites/countries%3B | |
| COUNTRY_CODE=$1 | |
| OUTPUT_FILE=ALEXA_${COUNTRY_CODE}-${DATE}.txt | |
| echo "Downloading Alexa top site data for $COUNTRY_CODE" |