start new:
tmux
start new with session name:
tmux new -s myname
| /* | |
| * Easing Equations ported to CSS by @matthewlein - http://matthewlein.com/ceaser/ | |
| * Converted to SCSS vars by @pettpett | |
| * | |
| * sample usage: | |
| * a { | |
| * color: #ff0000; | |
| * transition: color 0.5s $easeOutQuint; | |
| * &:hover, |
| USER=rentzsch | |
| PASS=mypassword | |
| REPO=mogenerator | |
| # Delete default labels | |
| curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$USER/$REPO/labels/bug" | |
| curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$USER/$REPO/labels/duplicate" | |
| curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$USER/$REPO/labels/enhancement" | |
| curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$USER/$REPO/labels/invalid" | |
| curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$USER/$REPO/labels/question" |
| <?php | |
| /* | |
| Plugin Name: Multiple Featured Images | |
| Description: NOT production ready. May cause tears. | |
| Version: 2012.12.13 | |
| Author: Kailey Lampert | |
| Author URI: kaileylampert.com | |
| */ | |
| new MFI_Meta_Box( 'derp', 'Derp Image', '200', '400', 'post' ); |
| #!/bin/bash | |
| ## > ./wp.sh sitename mysqluser userpassword | |
| ## sitename: directory the site will located in | |
| ## mysqluser: user and database name | |
| ## userpassword: mysql user's password | |
| ## ex: ./wp.sh testsite tester 7n5nSmg15X5s |
| @mixin ie6 { * html & { @content } } | |
| #logo { | |
| background-image: url("/images/logo.png"); | |
| @include ie6 { background-image: url("/images/logo.gif"); } | |
| } |