start new:
tmux
start new with session name:
tmux new -s myname
| [tool.poetry] | |
| name = "xxxxxxxxx" | |
| version = "0.47.1" | |
| description = "xxxxxxxx" | |
| authors = ["xxxxxx"] | |
| repository = "https://xxxxxxxxx/api/pypi/pypi-virtual/simple" | |
| packages = [ | |
| { include = "xxxmanager", from = "src" }, | |
| { include = "xxxmodels", from = "src"} |
| [tool.poetry] | |
| name = "communitymodels" | |
| version = "0.2.0" | |
| description = "" | |
| authors = ["Tim Cook <[email protected]>"] | |
| [tool.poetry.dependencies] | |
| python = "^3.6" | |
| jsonschema = "^3.0" | |
| numpy = "^1.16" |
| [tool.poetry] | |
| name = "evaluators" | |
| version = "0.1.0" | |
| description = "evaluator service to evaluate sync and async models for RED" | |
| authors = ["Tim Cook <[email protected]>"] | |
| [tool.poetry.dependencies] | |
| python = "^3.6" | |
| communitymodels = {git = "[email protected]:private-repo-name.git", rev = "7196dd14be6a041b6ef3bc1fcad09a84456eaefd"} | |
| flask = "^1.0" |
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') | |
| " let Vundle manage Vundle, required |
| # to download tmux pluging manager run `git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm` | |
| # don't rename windows automatically | |
| set-option -g allow-rename off | |
| # List of plugins | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'tmux-plugins/tmux-sensible' | |
| set -g @plugin 'tmux-plugins/tmux-resurrect' |
| <?php fwrite(STDOUT, 'Please enter Employee ID'.PHP_EOL); | |
| // Read the input | |
| $employee_id = fgets(STDIN); | |
| fwrite(STDOUT, 'Employee ID : '.$employee_id.PHP_EOL.PHP_EOL); | |
| fwrite(STDOUT, 'Please enter Employee auth V2 hash'.PHP_EOL); | |
| $employee_hash = fgets(STDIN); |
| user nginx; | |
| worker_processes 1; | |
| events { worker_connections 1024; } | |
| http { | |
| sendfile on; |
| user nginx; | |
| worker_processes 1; | |
| events { worker_connections 1024; } | |
| http { | |
| sendfile on; |
| displacementFromMiddle = function(index, arraySize, middleIndex) { | |
| if (index == middleIndex) return 0; | |
| var imagesRadius = Math.floor(arraySize / 2) | |
| var x = index - middleIndex; | |
| var y; | |
| if (x > imagesRadius) { | |
| y = x - arraySize; |