(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:
| #!/usr/bin/env ruby | |
| #/ Usage: <progname> [options]... | |
| #/ How does this script make my life easier? | |
| # ** Tip: use #/ lines to define the --help usage message. | |
| $stderr.sync = true | |
| require 'optparse' | |
| # default options | |
| flag = false | |
| option = "default value" |
| [base-source] | |
| name=CentOS-$full_releasever - Base source | |
| baseurl=http://vault.centos.org/$full_releasever/os/Source/ | |
| gpgcheck=1 | |
| gpgkey=http://vault.centos.org//RPM-GPG-KEY-CentOS-6 | |
| priority=1 | |
| enabled=1 | |
| [updates-source] |
| (ns bayle.core | |
| (require clojure.set)) | |
| (defprotocol NODE | |
| (change [this key new-value]) | |
| (add-parent [this new-parent]) | |
| (add-non-descendent [this new]) | |
| (node? [this]) | |
| (add-chile [this child])) |
graphdeps produces "deps.png" in the working directory. Just graphdeps will graph all tasks. You can change the default behavior by specifying a more specific query.
| /usr/sbin/groupadd -g 30119 jenkins | |
| /usr/sbin/useradd -u 30119 -g jenkins jenkins | |
| mkdir /home/jenkins | |
| chown -R jenkins. /home/jenkins |
| #!/usr/bin/env ruby | |
| #/ Usage: <progname> [options]... | |
| #/ How does this script make my life easier? | |
| # ** Tip: use #/ lines to define the --help usage message. | |
| $stderr.sync = true | |
| require 'optparse' | |
| # default options | |
| flag = false | |
| option = "default value" |
| #!/usr/bin/env ruby -wKU | |
| # Adapted from Brett Terpstra’s original “Markdown to Evernote” service (http://brettterpstra.com/a-better-os-x-system-service-for-evernote-notes-with-multimarkdown/) | |
| # Martin Kopischke 2011 – License: Creative Commons Attribution Share-Alike (CC BY-SA) 3.0 Unported (http://creativecommons.org/licenses/by-sa/3.0/) | |
| # Changes: – create only one Evernote note per (Multi)Markdown input passed (instead of one per line) | |
| # – do not choke on shell escape characters (use Tempfile instead of shell pipe for osascript) | |
| # – default to MultiMarkdown 3 executable (instead of MMD 2 Perl script) | |
| # – make smart typography processing optional (set SMARTY to 'false' to bypass processing; | |
| # note smart typography cannot be disabled in MMD 3.0 and 3.0.1 | |
| # – handle both smart typography processing scripts (ie. SmartyPants.pl) |
| --- /usr/local/lib/pkgconfig/fuse.pc | |
| +++ /usr/local/lib/pkgconfig/fuse.pc | |
| @@ -6,5 +6,5 @@ | |
| Name: fuse | |
| Description: File System in User Space (MacFUSE) | |
| Version: 2.7.3 | |
| -Libs: -L${libdir} -lfuse -pthread -liconv | |
| +Libs: -L${libdir} -lfuse_ino64 -pthread -liconv | |
| Cflags: -I${includedir}/fuse -D__FreeBSD__=10 -D_FILE_OFFSET_BITS=64 |