start new:
tmux
start new with session name:
tmux new -s myname
As configured in my dotfiles.
start new:
tmux
start new with session name:
/* | |
* NAME | |
* | |
* statistics-distributions.js - JavaScript library for calculating | |
* critical values and upper probabilities of common statistical | |
* distributions | |
* | |
* SYNOPSIS | |
* | |
* |
server { | |
listen [YOUR IP]:80; | |
server_name *.dev.jc00ke.com; | |
location / { | |
if ($host ~* "(.*)\.dev\.jc00ke\.com" ) { | |
set $tunnel_app $1.lvh.me; | |
} | |
proxy_set_header X-Real-IP $remote_addr; |
<!DOCTYPE html> | |
<html> | |
<!-- | |
Copyright 2011 Google Inc. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 |
// includes bindings for fetching/fetched | |
PaginatedCollection = Backbone.Collection.extend({ | |
fetch: function(options) { | |
options || (options = {}); | |
var self = this, | |
success = options.success; | |
options.success = function(resp) { | |
self.trigger("fetched"); | |
if(success) { success(self, resp); } |