start new:
tmux
start new with session name:
tmux new -s myname
/** | |
* event widget | |
* url: http://dribbble.com/shots/713807-Extended | |
*/ | |
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300); | |
* { | |
box-sizing: border-box; | |
} |
class Timer extends JView | |
constructor:-> | |
super cssClass: 'timer' | |
@setData secondsElapsed : 0 | |
viewAppended:-> | |
super | |
setInterval (@bound 'tick'), 1000 |
class Markdown extends JView | |
constructor:-> | |
super cssClass : 'markdown', | |
markdown : "Type some *markdown* here!" | |
@textInput = new KDInputView | |
bind : "keyup" | |
type : "textarea" | |
defaultValue : @data.markdown |
The plan is to create a pair of executables (ngrok
and ngrokd
) that are connected with a self-signed SSL cert. Since the client and server executables are paired, you won't be able to use any other ngrok
to connect to this ngrokd
, and vice versa.
Add two DNS records: one for the base domain and one for the wildcard domain. For example, if your base domain is domain.com
, you'll need a record for that and for *.domain.com
.