Alex Sorokine's Random Notes

Tuesday, October 3, 2017

My New Cheatsheet

bash/tmux/neovim/LatexBox -- all my favourite tools


bash

  • ESC f - next word
  • ESC b - previous word
  • ^w - delete previous word
  • ^u - delete to line start
  • ^y - paste deleted
  • ESC d - delete next word
  • ESC t - swap words
  • ESC r - restore line
  • ESC # - comment out line
  • ESC * - insert file names in CWD starting with
  • ^x^e - invoke editor for the command
  • ^_ - undo edit
  • : "${VAR:=default}" - set variable if not already set
  • redirection
    • >&2 echo error - echo to stderr
    • 2>&1 - combine stdout and stderr
    • > >(tee stdout.log) 2> >(tee stderr.log) - redirect stdout and stderr to different files

top

view raw bash.md hosted with ❤ by GitHub

docker

  • calculate volume sizes
    docker volume ls -q | \
      parallel 'echo $(docker run -i --rm -v {}:/docs alpine du -sh /docs) {}' | \
      sort -hr

top

view raw docker.md hosted with ❤ by GitHub

git

  • git worktree add <branch> <dir - create another directory with a branch
  • git restore <branchtag|sha> -- <file> - restore deleted file
  • git log --graph --all - show graph with all branches
  • git show development:my_file.txt - show file in another branch
  • git whatchanged -p my_file.rb - See What Has Changed on a File Over Time
  • git rev-list --all | xargs git grep -F '' - grep all branches
  • remove all untracked and ignored files and empty directories
    git clean -fdX
    find . -type d -empty -delete

top

view raw git.md hosted with ❤ by GitHub

iTerm2

  • <Command> <Alt> <Mouse> - iTerm2 rectangular selection

top

view raw iTerm2.md hosted with ❤ by GitHub

Linux

  • find . -mindepth 1 -maxdepth 1 -type d -print0 | xargs -0 du -sh | sort -h - list sizes of all directories including ones with spaces
    • -iname - is like -name but case insesitive
  • ping 0 - check if network is running on the localhost
  • use /usr/bin/time -v instead of time to get more detaiiled process infrmation
  • sort a file keeping header at the top:
    cat file | (read -r; printf "%s\n" "$REPLY"; sort)
  • sudo lshw - list hardware
  • pipe through pv to see the command progress
  • findmnt to see mount points with details

Ubuntu

  • fix for command-not-found on Ubuntu
    sudo apt install --reinstall command-not-found
    sudo chmod -R o+r /var/lib/command-not-found/
  • remote logout console session gnome-session-quit --no-prompt
  • adduser
  • sudo usermod -a -G <group> <user>; newgrp <group> add user to a group and reload assignment
  • xsel - copy/paste from/to clipboard

MacOS

  • ⌘⇧G Commnad-Shift-G in file dialog - enter path

Finder

  • ⌘⇧. Command-Shift-. - show hidden files

top

view raw Linux.md hosted with ❤ by GitHub

neovim

  • gg/G - go to file start/end
  • 556G - go to line 556
  • n/N - find next/previous
  • :map - show keybindings
  • reload file
    • :edit - current buffer
    • :checktime - all files
  • :r file - insert text from file
  • ^w - window operations followed with
    • w - next window
    • v/s - vertical/horisontal split
    • o - minimize other windows
    • +/- - increase/decrease vertical size
    • </> - increase/decrease horisontal size
    • x - swap current window with the next
    • m - zoom/unzoom curren window
    • q - cancel window split
    • w - make all windows same size
  • :set scrollbind - sync scroll in windows
  • ^v - start rectangular selection
  • :let mapleader - detect <Leader> key
  • ^r - redo
  • find/replace
    • :%s/str/repl/gc - ask and replace
    • :%s/%Vstr/repl/g - search/replace within none-line selection
  • :set nowrap - prevent line wrapping
  • ^y/^e/^u/^d - scroll up/down/pg up/pg down
  • gc, move - comment/uncomment, if does not work
    • comment block: in the 1st column ^v, select block, I # Esc
    • uncomment block: in the 1st column ^v, select block, d Esc
  • "ayy/"Ayy - copy/append selection to register a
  • zR/zM - open/close all folds
  • zo/zc open/close current fold
  • >/< indent/unindent block
  • >>/<< indent/unindent line
  • ^r" insert register into command buffer
  • :so % - reload config while editing init.vim
  • F4 - ctags sidebar (:TagbarToggle)
  • F7 - run flake8
  • r - replace single character
  • % - jump to matching bracket
  • delete d/change c/yank y
    • di" - delete within quotes or other chracters
    • da" - delete within quotes and delete quotes
    • dtc - delete until chracter 'c'
    • df - delete until next space or other chracter including it
    • dT - delete backward until space or other character
    • daw - delete the whole word with space
    • diw - delte the whole word without space
  • quoting/unquoting
    • cs"' - change " to '
    • ds" - unquote "
    • ysiw" - quote word with "
  • ^o/^i - jump to previos/next location (normal mode)
  • fc/Fc - jump forward/back to character c
  • gqip - wrap current line
  • :noh - remove search highlight
  • macro
    • qaq - start where 'a' is a regizter a-z
    • N@a - play macro in register 'a' 'N' number of times
  • ^6 - switch to previous buffer
  • * - search for the word under cursor
  • marks
    • ma - mark position a
    • `a - jump to position a
    • 'a - jump to line of position a
    • `. - jump to last edit
  • ^ - move to 1st none-space character of the string
  • INSERT mode
    • ^r* - insert yanked text
    • ^o - perform a single command from NORMAL mode
  • r! date - insert current timestamp
  • gx - open browser on the current link
  • bw - completely close the file
  • :help - get help on a topic
    • ^] - follow the link
    • ^T - go back
    • ^o/^i - history forward/back
  • :argdo/:bufdo/:windo/tabdo - run operation on multiple files
  • ^l - redraw screen

git/fugitive

  • [/]c - jump prev/next hunk
  • ,hs - stage current hunk
  • ,hu - unstage current hunk
  • :G - start commit
  • ca in status window on commit -- amend

NERDTree

  • ma - create a file in the selected directory
  • :syntax on - fix weird symbols in the file list

DrawIt

  • ,di - start line drawing mode
  • ,ds - stop line drawing
  • <,>,^,v - arrows
  • ^v, draw block
    • ,b - draw a box
    • ,l - create a box
    • ,f - flood with character (does not work)

dbext

  • ,sdt - describe table
  • ,se - execute selection or statement under cursor
  • :DBCompleteTables - load table names for completion

Spellchecker & Thesaurus Query

  • :setlocal spell spelllang=en_us - start spellcheck
  • z= - spelling suggestions
  • zg - add misspelled word to local dictionary
  • ]s/[s - move to next/previous misspelled word
  • ,cs - on the word for list of synonyms, etc.

LatexBox

  • \lv - Latex view
  • \lt - Latex TOC
  • % - jump matching bracket
  • ^X^O - complete

xml-plugin

  • % - jump between '<' and '>'
  • > - complete single line tag
  • >> - complete multiline tag
  • \x - surround selection with a tag
  • \% - jump to tag start
  • \d - delete surrounding tags
  • \c/\u - comment/uncomment selection

top

view raw neovim.md hosted with ❤ by GitHub

PostgreSQL/PostGIS

  • fast count of rows estimate
    SELECT reltuples::bigint AS estimate FROM pg_class WHERE relname = 'table_name';
  • poor man's histogram:
    SELECT width_bucket(numeric_column, 1, 200, 20), count(*)
    FROM table GROUP BY 1 ORDER BY 1
  • split_part('a:b', ':', 1) -> a
  • concat_ws(':', 'a', 'b', ..) - join strings with seprator
  • stop/kill query
    SELECT * FROM pg_stat_activity WHERE state = 'active';
    SELECT pg_cancel_backend(<pid of the process>)
  • convenient view for background queries
    SELECT 
      now()-query_start as elapsed, 
      state, datname, pid, usename, 
      query, application_name, client_addr, 
      query_start, state_change, 
      wait_event_type, wait_event 
    FROM pg_stat_activity WHERE state = 'active';
  • get database size
    SELECT
      pg_size_pretty(pg_database_size(current_database()))
        AS database_size;

top

Python

  • import ipdb; ipdb.set_trace() - drop into iPython
  • create virtual environment - https://docs.python.org/3/library/venv.html
    python3 -m venv --upgrade-deps venv && \
    . ./venv/bin/activate
  • install requirements
    pip install -r requirements.txt
  • find all python environments in current directory and below
    fd -p -g '**/bin/activate'
  • aList[::-1] - reverse a list
  • create conda environment:
    conda create -n <env> python=3.12 pip 
    conda activate <env>
  • useful decorators
    @atexit.register
    @dataclass
    @unique
    @singledispatch
  • clickable terminal links
    import rich
    rich.print("Hello [link=http://localhost:8000]App[/link]!")
  • slotted classes __slots__: 'slot'
  • sys.getsizeof(mylist)

Pandas

  • replace column names: df.columns = ['a', 'b', 'c']
  • insert top row
    df.loc[-1] = [1,2,3]
    df.index = df.index + 1
    df = df.sort_index()
  • drop empty rows: df.dropna(axis='rows', inplace=True, how='all')

top

view raw python.md hosted with ❤ by GitHub

tmux

  • ^B I - Installs new plugins from GitHub or any other git repository
  • ^B U - updates plugin(s)
  • ^B alt u- remove/uninstall plugins not on the plugin list
  • ^B [ - scroll/copy mode
    • q - quits
    • ^<space> - start higlight
    • <esc>w - copy highlighted text
  • ^B %/| - split vertical/horizontal
  • ^B <-/^B -> - move between windows
  • ^B z - zoom pane to the whole window
  • ^B / - search
  • ^B y - copy command to clipboard
  • ^B Y - copy PWD to clipboard
  • ^B C - create new session from within the currebt one
  • ^B g - switch to another session
  • ^B ] - paste from clipboard
  • ^B b - last window
  • ^B <space> - change layout
  • save buffer in file: ^B:capture-pane -S -3000<enter>^B:save-buffer file.txt<enter>
  • ^B D - disconnect other clients
  • tmux new-session -A -s NAME - create new or attach to existing named session

byobu

  • byobu-tmux - start byobu with tmux CLI options
  • ^B |/% - horizontal/vertical split
  • Enter - copy highlight

top

view raw tmux.md hosted with ❤ by GitHub

zsh

  • [tab] - file name globs (requires setopt extendedglob)
    • <200-300> - range of integers
    • ^*.c - negate glob
    • ~ - exclude from pattern
    • **/* - get into subdir
  • =<command> - $(which <command>)
  • fc - run the editor on previous command
  • r a=b - rerun previous command with optional substitution
  • [ESC]q - put command on stack
  • [ESC]a - execute command keep it in buffer
  • [ESC]' - escape command

top

view raw zsh.md hosted with ❤ by GitHub

Friday, September 15, 2017

Android Backups by Google

Looks like it is possible to control backups of your devices done by Google.  Just go to https://drive.google.com/drive/backups  This is not a real control but at least you can see what backups you have and delete unwanted backups.  They say that Google will keep backups of an unused device for two months.

Saturday, November 2, 2013

Upgrading PostgreSQL 9.1/PostGIS 1.5 to PostgreSQL 9.3/PostGIS 2.1 on Ubuntu 12.04 (precise)

Newer versions of PostgreSQL and PostGIS (9.3 and 2.1) have some nice features like materialized view and raster support respectively. My experience of upgrading both packages from version 9.3 and 1.5 was rather painless and is outlined below.

  1. The versions are not binary compatible, so I have had to dump and restore all databases that I wanted to see after upgrade (no need to dump system templates like template0 and template1)
  2. Replace gis1 gis2 gis3 with a space-delimited list of the databases which you want to preserve after the upgrade. This command will result in a set of binary dump files, one file per database. The file names will containing the name of the database and the date of the dump.

    You will also need a list of database users. You can get the list with \du command in psql.

  3. Remove old packages (this is likely optional, postgresql versions can co-exist but I did not try)
  4. Install new postgresql version following these instructions: https://wiki.postgresql.org/wiki/Apt
  5. (automatic install of 9.3, may need to specify version explicitly)
  6. By this time you should have postgreql server up and running but not responding to external connections. This is a great time to restore dumped databases. Typical cycle for restoring a database includes:
    1. Recreate all database users
    2. Create the database
    3. Recreate extensions, PostGIS 2.0 uses extension mechanism and there is no need to use scripts
    4. restore all other extensions that are needed by the database
    5. Restore the database from the dump file
    6. Now check the content of the err.txt file, it should be empty
      1. However, if you see errors because of any users or extensions missing, drop the database, repeat all the previous steps and also create the missing users and extensions.
      2. If you see an error like 'invalid command \N', first fix all other problems with the databases and repeat the import again, this error will be likely gone.
  7. Reclaim space and update statistics:
  8. modify hba file to your need (details), enable listening on external address in postgresql.conf and finally do

Wednesday, January 25, 2012

Parser for command line parameters in Java/C/C++/Python/shell

My question on stackoverflow:


I am looking for a library to parse command-line parameters that would work identically in Java, C/C++, Python and (preferably) shell. By "identical" I mean (1) have exactly the same rules for parsing of the parameters in all three languages, (2) use the same configuration files or have similar API to specify the parameters, (3) have similar APIs to access the values of the parameters.
I've always used getopt in C and Apache CLI in Java but it would be nice to use the same specification for the parameters across multiple languages.

Wednesday, December 14, 2011

OS X logout from the command line

This morning I found my Mac desktop stuck on logout. I did not want to force reboot it so I did some peeking around for how to logout peacefully. Looks like it is very easy to do:

  1. ssh into the system from another Mac or linux machine
  2. sudo killall loginwindow

Sunday, December 4, 2011

Array permutation

Here is a snippet of Java code that will permute indexes of an array: For working Java class see https://github.com/sorokine/FischerKrause

Tuesday, May 31, 2011

PostGIS function for a random point inside a polygon -- page on PostGIS wiki

I have created a page on PostGIS wiki with the description of the random point functions: http://trac.osgeo.org/postgis/wiki/UserWikiRandomPoint