(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| #!/bin/bash | |
| # Setup deployment target for Nginx + Python/uWSGI + Supervisor + Git | |
| function usage() { | |
| cat << EOF | |
| Usage: $0 [-y] PROJECT_NAME [DOMAIN] | |
| Options: | |
| -y No prompts, assume yes to all. |
| #!/bin/bash | |
| # | |
| # Watch current directory (recursively) for file changes, and execute | |
| # a command when a file or directory is created, modified or deleted. | |
| # | |
| # Written by: Senko Rasic <[email protected]> | |
| # | |
| # Requires Linux, bash and inotifywait (from inotify-tools package). | |
| # | |
| # To avoid executing the command multiple times when a sequence of |
FYI, for those of us not running Debian based systems rather than RedHat, the BlueJeans RPM can be successfully installed via alien
Steps to install BlueJeans on Debian
sudo apt-get install aliensudo alien --to-deb bluejeans-*.rpmsudo dpkg -i bluejeans_*.deb/opt/bluejeans/bluejeans-binYou may get an error loading the expected udev library
| import { ChildProcess, spawn } from 'child_process'; | |
| import * as puppeteer from 'puppeteer'; | |
| const DEBUG = Boolean(process.env.DEBUG); | |
| const CI = Boolean(process.env.CI); | |
| const QUERY = Boolean(process.env.QUERY); | |
| jest.setTimeout((QUERY ? 200 : 100) * 1000); | |
| interface MemorySample { |