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
//Browsers | |
var IE6 = false /*@cc_on || @_jscript_version < 5.7 @*/ | |
var IE7 = (document.all && !window.opera && window.XMLHttpRequest && navigator.userAgent.toString().toLowerCase().indexOf('trident/4.0') == -1) ? true : false; | |
var IE8 = (navigator.userAgent.toString().toLowerCase().indexOf('trident/4.0') != -1); | |
var IE9 = navigator.userAgent.toString().toLowerCase().indexOf("trident/5")>-1; | |
var IE10 = navigator.userAgent.toString().toLowerCase().indexOf("trident/6")>-1; | |
var SAFARI = (navigator.userAgent.toString().toLowerCase().indexOf("safari") != -1) && (navigator.userAgent.toString().toLowerCase().indexOf("chrome") == -1); | |
var FIREFOX = (navigator.userAgent.toString().toLowerCase().indexOf("firefox") != -1); | |
var CHROME = (navigator.userAgent.toString().toLowerCase().indexOf("chrome") != -1); | |
var MOBILE_SAFARI = ((navigator.userAgent.toString().toLowerCase().indexOf("iphone")!=-1) || (navigator.userAgent.toString().toLowerCase().indexOf("ipod")!=-1) || (navigator.userAgent.toString().toLowerCase().indexOf(" |
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 | |
# | |
# matrix: matrix-ish display for Bash terminal | |
# Author: Brett Terpstra 2012 <http://brettterpstra.com> | |
# Contributors: Lauri Ranta and Carl <http://blog.carlsensei.com/> | |
# | |
# A morning project. Could have been better, but I'm learning when to stop. | |
### Customization: | |
blue="\033[0;34m" |