start new:
tmux
start new with session name:
tmux new -s myname
ul { | |
position: relative; | |
float: left; | |
left: 50%; | |
li { | |
position: relative; | |
float: left; | |
left: -50%; | |
} | |
} |
wget --mirror -p --html-extension --convert-links -e robots=off -P . SITEURL |
This is my trick to keep a tunnel running on an OSX host. It's setup so that a network state change will trigger the connection. In practice I've found that it's actually very reliable. Certainly beats starting them by hand.
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
The advantages of using Grunt with Cordova:
platforms
directory without having to commit the generated plugins
and platforms
directories to version control.Stack Overflow: .gitignore for PhoneGap/Cordova 3.0 projects - what should I commit?
#!/bin/bash | |
echo -n "Sublime Text 2 or 3? " | |
read version | |
echo "Removing file system packages" | |
rm -r ~/Library/Application\ Support/Sublime\ Text\ $version/Installed\ Packages | |
rm -r ~/Library/Application\ Support/Sublime\ Text\ $version/Packages | |
rm -r ~/Library/Application\ Support/Sublime\ Text\ $version/Pristine\ Packages |
. | |
├── actions | |
├── stores | |
├── views | |
│ ├── Anonymous | |
│ │ ├── __tests__ | |
│ │ ├── views | |
│ │ │ ├── Home | |
│ │ │ │ ├── __tests__ | |
│ │ │ │ └── Handler.js |
// for an updated version see https://github.com/jsdf/react-native-refreshable-listview | |
var React = require('react-native') | |
var { | |
ListView, | |
ActivityIndicatorIOS, | |
StyleSheet, | |
View, | |
Text, | |
} = React |