The figure below calls out
- The netfilter hooks
- The order of table traversal
| #!/usr/bin/env bash | |
| export PATH="${PATH}:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" | |
| ME="${0}" | |
| if [ "${BASH_VERSINFO[0]}" -lt "4" ] | |
| then | |
| echo >&2 "Sorry! This script needs BASH version 4+, but you have BASH version ${BASH_VERSION}" | |
| exit 1 |
sudo add-apt-repository ppa:webupd8team/sublime-text-3
sudo apt-get update
sudo apt-get install sublime-text-installer
run /opt/sublime_text/sublime_text or sudo ln -s /opt/sublime_text/sublime_text /usr/local/bin/subl
with ubuntu bash on Windows 10 and Xming:
Examples here use the default settings, see the VidStab readme on GitHub for more advanced instructions.
Here's an example video I made
brew install ffmpeg --with-libvidstab
| sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \; |
| require 'formula' | |
| class LibdnetPython <Formula | |
| depends_on 'libdnet' | |
| url 'http://libdnet.googlecode.com/files/libdnet-1.12.tgz' | |
| homepage 'http://code.google.com/p/libdnet/' | |
| sha1 '71302be302e84fc19b559e811951b5d600d976f8' | |
| def install | |
| ENV["CFLAGS"] = "-O3 -w -pipe" |
| pi@raspberrypi ~ $ cat /etc/init/ssh_tunnel.conf | |
| #!upstart | |
| author "george" | |
| description "SSH Tunnel" | |
| start on stopped rc | |
| stop on shutdown |
This article is now published on my website: Prefer Subshells for Context.
| tell application "iPhone Simulator" | |
| activate | |
| end tell | |
| tell application "System Events" | |
| tell process "iPhone Simulator" | |
| tell menu bar 1 | |
| tell menu bar item "iOS Simulator" | |
| tell menu "iOS Simulator" | |
| click menu item "Reset Content and Settings…" |
| MAKEFLAGS = --no-print-directory --always-make | |
| MAKE = make $(MAKEFLAGS) | |
| BUILDDIR = ./.build | |
| CLOSUREURL = http://closure-compiler.googlecode.com/files/compiler-latest.zip | |
| CLOSUREDIR = $(BUILDDIR)/closure | |
| CLOSUREFILE = $(CLOSUREDIR)/compiler.jar | |
| YUIURL = http://yui.zenfs.com/releases/yuicompressor/yuicompressor-2.4.6.zip | |
| YUIDIR = $(BUILDDIR)/yui |