This file contains 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/sh | |
# | |
# CloudFlare Dynamic DNS | |
# | |
# Updates CloudFlare records with the current public IP address | |
# | |
# Takes the same basic arguments as A/CNAME updates in the CloudFlare v4 API | |
# https://www.cloudflare.com/docs/client-api.html#s5.2 | |
# | |
# Use with cron jobs etc. |
This file contains 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
<?php | |
function date_iso($format, $timestamp = null) | |
{ | |
if ($timestamp === null) { | |
$timestamp = time(); | |
} | |
$convert = array( | |
'a' => 'A' , 'B' => 'B', 'D' => 'z', 'ddd' => 't', 'dd' => 'd', 'd' => 'j', |
This file contains 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/sh | |
# Usage: convert_assertions.sh file1 file2 ... | |
perl -i -p \ | |
-e 's/assertEquals?/assertEquals/g;' \ | |
-e 's/assertNotEquals?/assertNotEquals/g;' \ | |
-e 's/assertPattern/assertRegExp/g;' \ | |
-e 's/assertIdentical/assertSame/g;' \ | |
-e 's/assertNotIdentical/assertNotSame/g;' \ | |
-e 's/assertNoPattern/assertNotRegExp/g;' \ | |
-e 's/assertReference/assertSame/g;' \ |
This file contains 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/sh | |
# MongoDB Version | |
MONGODB_VER='2.2.2' | |
# Get all the dependencies up to date | |
yum -y update | |
yum -y install scons gcc-c++ glibc-devel | |
# Get the source |
This file contains 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
OPTIONS="--quiet -f /etc/mongod.conf" |
This file contains 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
### Starting from a fresh CentOS 6 or newer Linode | |
### Enable the native kernel to boot from pvgrub | |
### It will autoconfigure itself with each yum update. | |
### This is adapted from a previous script for CentOS 5.5 found here: | |
### http://www.linode.com/docs/assets/542-centos5-native-kernel-selinux-enforcing.sh | |
### Provided via the linode wiki | |
### https://www.linode.com/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub#centos-5 | |
### Provided without warranty, although since it should only be run | |
### on first box build if your box gets broken simply rebuild it |
This file contains 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
<?php | |
defined('TIDYDIR_EXTENSION') || define('TIDYDIR_EXTENSION', 'html'); | |
function tidyDir($directory) { | |
$htmlFiles = glob($directory.DIRECTORY_SEPARATOR.'*.'.TIDYDIR_EXTENSION); | |
$filenameRegEx = '#^(.+?)\.([^\.]+?)$#'; | |
$htmlTidy = new tidy(); | |
foreach ($htmlFiles as $entry) { | |
if (preg_match($filenameRegEx, $entry, $matches)) { | |
$filename = $matches[1]; | |
$extension = $matches[2]; |
This file contains 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
if (typeof HTML5 == 'undefined') { | |
var HTML5 = {}; | |
} | |
/** | |
* Wrapper class to deal with easily storing values in local storage | |
* without having to constantly use JSON.parse and JSON.stringify everywhere | |
* you want to save an object. | |
* | |
* @param {String} index the base index to use in the localStorage global object | |
* @author Tom Chapman |
NewerOlder