Skip to content

Instantly share code, notes, and snippets.

Really Light Ember Theme
#E8E6E8, #F6EAE7, #F77159, #FFFFFF, #FFBEB3, #F23818, #F25100, #FF8669
Ember Theme by @aars
#F8EFEC ,#E1563F ,#1E719B ,#FFFFFF ,#C8BFBC ,#333322 ,#F1569F ,#EB4D5C
Ember Theme by @kuatsure
#F4ECE9 ,#F3735D ,#F2D1CB ,#444444 ,#F2D1CB ,#444444 ,#E1563F ,#E1563F
Ember Theme by @yock (Reduced Contrast)
admin.php
165: @ini_set('display_errors', 1);
index.php
173: @ini_set('display_errors', 1);
system/codeigniter/system/libraries/Upload.php
833: ini_set('memory_limit', $new_memory);
system/expressionengine/libraries/Core.php
@patricksimpson
patricksimpson / circle.yml
Created April 15, 2015 01:37
Mina Circle
general:
artifacts:
- "~/artifact_example.tar.gz"
machine:
php:
version: 5.6.2
test:
override:
@patricksimpson
patricksimpson / .profile
Created October 26, 2012 00:56
This is my bash .profile
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
@patricksimpson
patricksimpson / git-shortcuts
Created December 7, 2012 04:01
git tf alias
alias gtfp='git tf pull --rebase'
alias gtfc='git tf checkin'
alias gtfpc='git tf pull --rebase | git tf checkin'
@patricksimpson
patricksimpson / copyBase.bat
Created December 7, 2012 04:07
Copies the base to the project folder for me... Windows Batch Script
echo off
xcopy /Y f:\base.css C:\webroot\AIS-PS\Dev\vNext\Application\CNBTablet\CNBTabletApp\Content\base.css
echo "done."
ping 123.45.67.89 -n 1 -w 3000 > nul
@patricksimpson
patricksimpson / git-tfs-push
Created December 7, 2012 04:02
Ultra lazy git tf push!
#!/usr/bin/expect
set username "your.name"
set password "yoursupercoolpassword"
spawn git tf pull --rebase
expect "Username:";
send "$username\n";
expect "Password:";
send "$password\n";
interact
@patricksimpson
patricksimpson / git-tfs-pull-rebase
Created December 7, 2012 20:58
git tfs pull and rebase.
#!/usr/bin/expect
set username "your.name"
set password "yoursupercoolpassword"
spawn git tf pull --rebase
expect "Username:";
send "$username\n";
expect "Password:";
send "$password\n";
interact
@patricksimpson
patricksimpson / git-tfs-checkin.sh
Created December 7, 2012 20:59
git tfs checkin
#!/usr/bin/expect
set username "your.name"
set password "yoursupercoolpassword"
spawn git tf pull --rebase
expect "Username:";
send "$username\n";
expect "Password:";
send "$password\n";
interact
@patricksimpson
patricksimpson / git-tfs-pull
Created December 7, 2012 20:59
git tfs pull
#!/usr/bin/expect
set username "your.name"
set password "yoursupercoolpassword"
spawn git tf pull
expect "Username:";
send "$username\n";
expect "Password:";
send "$password\n";
interact