Download ZLIB for Windows from Sourceforge and install it on your Windows machine. Works with x86/x64
Currently, the ZLIB installer from Sourceforge (above) installs in C:/Program Files (x86)/GnuWin32
.
var clicktest = "ontouchstart" in window ? "touchstart" : "click"; |
integerSquareRoot :: Integral a => a -> a | |
integerSquareRoot n | |
| n < 0 = error "integerSquareRoot: negative argument" | |
| otherwise = integerSquareRoot' n |
thisint = 1 | |
thisstring = "asdf" | |
if isinstance(thisstring, basestring) : | |
print thisstring + " is a string" | |
else: | |
print thisstring + " is an int" | |
if isinstance(thisint, basestring) : | |
print str(thisint) + " is a string" |
Flat UI Colors | |
#1abc9c - TURQUOISE | |
#2ecc71 - EMERALD | |
#3498db - PETER RIVER | |
#9b59b6 - AMETHYST | |
#34495e - WET ASPHALT | |
#16a085 - GREEN SEA | |
#27ae60 - NEPHRITIS | |
#2980b9 - BELIZE HOLE | |
#8e44ad - WISTERIA |
<?php | |
$curl = curl_init("http://api.hitbtc.com/api/1/public/BTCUSD/orderbook"); | |
curl_setopt($curl, CURLOPT_HEADER, 0); | |
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); | |
$result = curl_exec($curl); | |
$resultobject = json_decode($result)); |
var observe; | |
if (window.attachEvent) { | |
observe = function (element, event, handler) { | |
element.attachEvent('on'+event, handler); | |
}; | |
} | |
else { | |
observe = function (element, event, handler) { | |
element.addEventListener(event, handler, false); | |
}; |
git ls-files | xargs wc -l |
RedirectMatch 404 /\.git |
Download ZLIB for Windows from Sourceforge and install it on your Windows machine. Works with x86/x64
Currently, the ZLIB installer from Sourceforge (above) installs in C:/Program Files (x86)/GnuWin32
.
#!/bin/bash | |
red='\e[0;31m' | |
NC='\e[0m' | |
#Check for root privledges | |
if [ "$UID" -ne 0 ] | |
then echo -e "${red}Root privledges required. Type 'su', type enter, then input your password.${NC}" | |
exit | |
fi |