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
Array.prototype.getUnique = -> | |
u = {} | |
a = [] | |
for i in [0..this.length] | |
if this[i] in u | |
continue | |
a.push this[i] | |
u[this[i]] = 1 | |
return a | |
sideLoad = (socket) -> |
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
Sub generic_table() | |
' | |
' generic_table Macro | |
' | |
' Keyboard Shortcut: Ctrl+m | |
' | |
ActiveCell.FormulaR1C1 = "Chart Title" | |
Range("A1").Select | |
With Selection.Font | |
.Name = "Garamond" |
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
;------------------------------------------------ Settings ------------------------------------------------------ | |
DetectHiddenText, On | |
SetTitleMatchMode, 2 | |
SetTitleMatchMode, slow | |
SetKeyDelay 10 | |
SendMode Input | |
#NoEnv | |
#Hotstring EndChars -()[]{}:;'"/\?! .`n`t | |
#SingleInstance force |
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
#!/usr/bin/env bash | |
cd "$( dirname "$0" )" | |
for f in *.mp4 | |
do | |
echo "Processing $f..." | |
ffmpeg2theora $f | |
done |
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
/* | |
* Use mysql dump to back up the wp_posts table (mysqldump -u username -ppassword wp_databasename wp_posts > wp_posts.sql) | |
* Repair your damage with the wp_posts.sql file (mysql -u username -ppassword wp_databasename < wp_posts.sql ) | |
* Install lib_mysqludf found here: http://www.mysqludf.org/lib_mysqludf_preg/ | |
* Initialize lib_mysqludf functions | |
* Set target regex pattern | |
* Set replacement | |
* Test target regex pattern. Function returns 1 for success, 0 for an invalid pattern | |
* Test replacement. Function shows what the results will look like. | |
* Grit your teeth and run the replace. |
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
#Dump table | |
mysqldump --add-drop-table -u USERNAME -pPASSWORD TABLENAME | gzip > destination_file.sql.gz | |
#Input table | |
mysql -u USERNAME -pPASSWORD TABLENAME < destination_file.sql.gz |
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
#You need Tim Kay's AWS Swiss Army Knife: https://github.com/timkay/aws | |
echo "deleting gzips" | |
rm *.gz | |
echo "archiving isly_wordpress" | |
mysqldump --add-drop-table -u USERNAME -pPASSWORD isly_wordpress | gzip > isly_wordpress.sql.gz | |
echo "archiving calligraphy_wordpress" | |
mysqldump --add-drop-table -u USERNAME -pPASSWORD calligraphy_wordpress | gzip > calligraphy_wordpress.sql.gz | |
echo "archiving fashion_wordpress" | |
mysqldump --add-drop-table -u USERNAME -pPASSWORD fashion_wordpress | gzip > fashion_wordpress.sql.gz | |
echo "exporting gzips to s3" |
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
http = require 'http' | |
httpProxy = require 'http-proxy' | |
options = | |
hostnameOnly: true | |
router: | |
'dev.getlimed.com': '127.0.0.1:8000' | |
'dev.cordellesplin.com': '127.0.0.1:8000' | |
'dev.wordpress.com': '127.0.0.1:8000' | |
'dev.modern-cupcake.com': '127.0.0.1:8000' | |
'dev.aws.com': '127.0.0.1:8000' |
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
#!/usr/bin/ python | |
import sys, yaml, datetime, re | |
from subprocess import call, Popen, PIPE, STDOUT | |
config_path = sys.argv[1] | |
# Read config file | |
print 'Config: ' + config_path | |
config_file = open(config_path) | |
config_map = yaml.load(config_file) | |
config_file.close() |
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
==> Downloading http://us.php.net/get/php-5.3.6.tar.gz/from/fr.php.net/mirror | |
File already downloaded in /Users/christopheresplin/Library/Caches/Homebrew | |
/usr/bin/tar xf /Users/christopheresplin/Library/Caches/Homebrew/mcrypt-php-5.3.6 | |
==> phpize | |
phpize | |
Configuring for: | |
PHP Api Version: 20090626 | |
Zend Module Api No: 20090626 | |
Zend Extension Api No: 220090626 | |
==> ./configure --disable-dependency-tracking --prefix=/usr/local/Cellar/mcrypt-php/5.3.6 --with-mcrypt=/usr/local/Cellar/mcrypt/2.5.8 |
OlderNewer