start new:
tmux
start new with session name:
tmux new -s myname
| diff --git a/rust-wasm-bindgen/dist/index.html b/rust-wasm-bindgen/dist/index.html | |
| index 4db5b19..bb5fe0f 100644 | |
| --- a/rust-wasm-bindgen/dist/index.html | |
| +++ b/rust-wasm-bindgen/dist/index.html | |
| @@ -14,11 +14,11 @@ | |
| <script src="drift_meter.js"></script> | |
| <script src="colormap.js"></script> | |
| <script> | |
| - const {process_audio} = wasm_bindgen; | |
| + const { Context } = wasm_bindgen; |
| license: gpl-3.0 | |
| height: 500 | |
| border: no |
| var _nyan = 0; | |
| var __nyan = [[ | |
| "+ o + o ", | |
| " + o + + ", | |
| "o + ", | |
| " o + + + ", | |
| "+ o o + o ", | |
| "-_-_-_-_-_-_-_,------, o ", | |
| "_-_-_-_-_-_-_-| /\\_/\\ ", | |
| "-_-_-_-_-_-_-~|__( ^ .^) + + ", |
| var str = "The quick brown fox jumped over the box like an ox with a sox in its mouth"; | |
| str.match(/\w(ox)/g); // ["fox", "box", "sox"] | |
| // match (when used with a 'g' flag) returns an Array with all matches found | |
| // if you don't use the 'g' flag then it acts the same as the 'exec' method. | |
| str.match(/\w(ox)/); // ["fox", "ox"] | |
| /\w(ox)/.exec(str); // ["fox", "ox"] |
| #!/bin/bash | |
| while : | |
| do | |
| clear | |
| git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
| sleep 1 | |
| done |
| ========================================== ========================================== | |
| TMUX COMMAND WINDOW (TAB) | |
| ========================================== ========================================== | |
| List tmux ls List ^b w | |
| New new -s <session> Create ^b c | |
| Attach att -t <session> Rename ^b , <name> | |
| Rename rename-session -t <old> <new> Last ^b l (lower-L) | |
| Kill kill-session -t <session> Close ^b & |