(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:
| Setting, DefaultValue, INIValue, CurrentValue, Origin | |
| sScreenShotBaseName:Display, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sScreenShotFolderName:Display, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sRuntimeLODDatabasePath:LODManager, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| strPluginsFileHeader:General, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sLanguage:General, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sFailureMessage:LANGUAGE, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sResourcePrefixList:Archive, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sDLCDefaultVoiceSuffix:Archive, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sLocalMasterPath:General, <unimplemented>, <unimplemented>, <unimplemented>, INI |
| Setting, DefaultValue, INIValue, CurrentValue, Origin | |
| sScreenShotBaseName:Display, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sScreenShotFolderName:Display, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sRuntimeLODDatabasePath:LODManager, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| strPluginsFileHeader:General, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sLanguage:General, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sFailureMessage:LANGUAGE, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sResourcePrefixList:Archive, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sDLCDefaultVoiceSuffix:Archive, <unimplemented>, <unimplemented>, <unimplemented>, INI | |
| sLocalMasterPath:General, <unimplemented>, <unimplemented>, <unimplemented>, INI |
| #!/usr/bin/env bash | |
| levenshtein () | |
| { | |
| local -r -- target=$1 | |
| local -r -- given=$2 | |
| local -r -- targetLength=${#target} | |
| local -r -- givenLength=${#given} | |
| local -- alt | |
| local -- cost |
| pragma solidity ^0.4.11; | |
| /** | |
| * @title Ownable | |
| * @dev The Ownable contract has an owner address, and provides basic authorization control | |
| * functions, this simplifies the implementation of "user permissions". | |
| */ | |
| contract Ownable { | |
| address public owner; |
| # Stub commands printing it's name and arguments to STDOUT or STDERR. | |
| stub() { | |
| local cmd="$1" | |
| if [ "$2" == "STDERR" ]; then local redirect=" 1>&2"; fi | |
| if [[ "$(type "$cmd" | head -1)" == *"is a function" ]]; then | |
| local source="$(type "$cmd" | tail -n +2)" | |
| source="${source/$cmd/original_${cmd}}" | |
| eval "$source" | |
| fi |
| #!/usr/bin/env bash | |
| ############################################################################## | |
| # ---------------------------------------------------------------------- | |
| # ASN/IPv4/Prefix lookup tool. Uses Team Cymru's whois service for data. | |
| # ---------------------------------------------------------------------- | |
| # example usage: | |
| # asn <ASnumber> -- to lookup matching ASN data. Supports "as123" and | |
| # "123" formats (case insensitive) | |
| # asn <IP.AD.DR.ESS> -- to lookup matching route and ASN data |
| module Helpers | |
| # Replace standard input with faked one StringIO. | |
| def stdin_send(*args) | |
| begin | |
| $stdin = StringIO.new | |
| $stdin.puts(args.shift) until args.empty? | |
| $stdin.rewind | |
| yield | |
| ensure | |
| $stdin = STDIN |
| 1. | |
| LOGIN_PAGE=http://localhost/users/sign_in | |
| curl --cookie-jar cookie_file $LOGIN_PAGE | grep csrf-token | |
| 2. | |
| <meta content="csrf-token" name="csrf-token" /> | |
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).