start new:
tmux
start new with session name:
tmux new -s myname
| # This hosts file is brought to you by Dan Pollock and can be found at | |
| # http://someonewhocares.org/hosts/ | |
| # You are free to copy and distribute this file for non-commercial uses, | |
| # as long the original URL and attribution is included. | |
| #<localhost> | |
| 127.0.0.1 localhost | |
| 127.0.0.1 localhost.localdomain | |
| 255.255.255.255 broadcasthost | |
| ::1 localhost |
| // SuperCollider Markov Experiment II | |
| // August 21st, 2011 | |
| // Jacob Joaquin | |
| // CodeHop.com | |
| // | |
| // Translated from Csound: | |
| // http://codehop.com/markov-experiment-ii/ | |
| SynthDef(\my_synth, {|dur = 1.0, amp = 1.0, freq = 440| | |
| var env = EnvGen.ar(Env.new([1, 0.1, 0], [0.06, dur - 0.06]), doneAction: 2); |
| #! /bin/bash | |
| ### BEGIN INIT INFO | |
| # Provides: yourapp | |
| # Required-Start: nginx | |
| # Required-Stop: | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: The main django process | |
| # Description: The gunicorn process that receives HTTP requests | |
| # from nginx |