start new:
tmux
start new with session name:
tmux new -s myname
| #!/Users/username/Documents/python/projectname/env/bin/python | |
| # edit line 1 to match what YOU get when you are in YOUR virtualenv and type: which python | |
| # NO SPACES in first 3 chars in line 1: #!/ | |
| # make sure env is activated! | |
| # make sure you have "started all" in XAMPP! | |
| # code below works for a MySQL database in XAMPP on Mac OS | |
| # pymysql can be installed with pip: pip install PyMySQL | |
| import pymysql |
| ## Sublime Text 3 Serial key build is 3176 | |
| > * Added these lines into /etc/hosts | |
| 127.0.0.1 www.sublimetext.com | |
| 127.0.0.1 license.sublimehq.com | |
| > * Used the license key | |
| ----- BEGIN LICENSE ----- |
| class Config: | |
| DEBUG = True | |
| SQLALCHEMY_DATABASE_URI = "mysql+pymysql://username:[email protected]:3306/database?unix_socket=/opt/lampp/var/mysql/mysql.sock" | |
| SECRET_KEY = "ada" |
| # .style.yapf | |
| # | |
| # DESCRIPTION | |
| # Configuration file for the python formatter yapf. | |
| # | |
| # This configuration is based on the generic | |
| # configuration published on GitHub. | |
| # (gist:krnd/.style.yapf) | |
| # | |
| # SEE ALSO |
| [merge] | |
| tool = vimdiff | |
| [mergetool] | |
| prompt = true | |
| [mergetool "vimdiff"] | |
| cmd = nvim -d $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J' | |
| [difftool] | |
| prompt = false | |
| [diff] | |
| tool = vimdiff |
| nnoremap <silent> <leader>e :call Fzf_dev()<CR> | |
| " ripgrep | |
| if executable('rg') | |
| let $FZF_DEFAULT_COMMAND = 'rg --files --hidden --follow --glob "!.git/*"' | |
| set grepprg=rg\ --vimgrep | |
| command! -bang -nargs=* Find call fzf#vim#grep('rg --column --line-number --no-heading --fixed-strings --ignore-case --hidden --follow --glob "!.git/*" --color "always" '.shellescape(<q-args>).'| tr -d "\017"', 1, <bang>0) | |
| endif | |
| " Files + devicons |
| plugin | |
| naming convention: name_of_plugin.vim | |
| these files are sourced for all file types | |
| doc | |
| naming convention: name_of_plugin.txt | |
| these files document the functionality of a plugin | |
| color | |
| naming convention: name_of_colorscheme.vim |
If your running a x64 bit Ubuntu or other Linux and find USB transfers hang at the end apply this fix:
echo $((16*1024*1024)) > /proc/sys/vm/dirty_background_bytes
echo $((48*1024*1024)) > /proc/sys/vm/dirty_bytes
I suggest you edit your /etc/rc.local file to make this change persistant across reboots.
sudo nano /etc/rc.local
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "time" | |
| ) | |
| type JSONTime struct { | |
| time.Time |