As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
###Vim Cheat Sheet
MOVEMENT
.img-circle, | |
.img-rounded, | |
.img-thumbnail, | |
.table-bordered, | |
select,textarea,input,code,pre,kbd,pre, | |
.input-group-addon, | |
.btn, | |
.dropdown-menu, | |
.form-control, | |
.panel, |
/* If you've ever had the need to link directly to an open modal window with Bootstrap, here's a quick and easy way to do it: | |
Make sure your modal has an id: | |
<div class="modal" id="myModal" ... > | |
Then stick this bit of Javascript at at the end of your document: | |
*/ | |
$(document).ready(function() { |
#!/bin/bash | |
# store the current dir | |
CUR_DIR=$(pwd) | |
# Let the person running the script know what's going on. | |
echo "\n\033[1mPulling in latest changes for all repositories...\033[0m\n" | |
# Find all git repositories and update it to the master latest revision | |
for i in $(find . -name ".git" | cut -c 3-); do |
var f='write.txt', | |
fs=require('fs'); | |
fs.writeFile(f,'Some text to write.',function(err){ | |
if(err) | |
console.error(err); | |
console.log('Written!'); | |
}); | |
fs.appendFile(f,'Some more text to append.',function(err){ |
# This file is a reference script for the blog post | |
# http://jonathonhill.net/2012-11-29/roll-your-own-mamp-development-environment/, | |
# and is not intended to be run as a stand-alone install script. | |
# Some manual steps will be required, please read the blog post before attempting | |
# to use this script. | |
# Tutorial: | |
# http://mac.tutsplus.com/tutorials/server/upgrading-the-native-php-installation-on-os-x-mountain-lion/ | |
# Download and install XQuartz from http://xquartz.macosforge.org/ |
.gform_wrapper ul { | |
padding-left: 0; | |
list-style: none; } | |
.gform_wrapper li { | |
margin-bottom: 15px; } | |
.gform_wrapper form { | |
margin-bottom: 0; } |