Keybase proof
I hereby claim:
- I am rouben on github.
- I am rouben (https://keybase.io/rouben) on keybase.
- I have a public key whose fingerprint is 74C0 1248 D0D0 F265 E926 40D4 1950 59CE 17FE A3F7
To claim this, I am signing this object:
Verifying that +rouben is my openname (Bitcoin username). https://onename.io/rouben |
I hereby claim:
To claim this, I am signing this object:
Tim's Waffles demo
#!/bin/sh | |
# cloudflareddns.sh - dynamic dns updater module for Synology | |
# | |
# Author: | |
# Michael Wildman (http://mwild.me) | |
# | |
# Version: | |
# 0.2 | |
# |
<?php | |
/* | |
Taken from https://stackoverflow.com/questions/9744904/how-to-get-the-endianness-type-in-php | |
*/ | |
function isLittleEndian() { | |
$testint = 0x00FF; | |
$p = pack('S', $testint); | |
return $testint===current(unpack('v', $p)); |