(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:
| { | |
| "Version": "2008-10-17", | |
| "Statement": [ | |
| { | |
| "Sid": "PublicReadGetObject", | |
| "Effect": "Allow", | |
| "Principal": { | |
| "AWS": "*" | |
| }, | |
| "Action": "s3:GetObject", |
| desc "Install zsh config" | |
| task :zshconfig do | |
| sh 'chsh -s /bin/zsh' | |
| sh 'rm -f ~/.zshrc ~/.zshenv' | |
| sh 'ln -s ~/env/config/zshenv ~/.zshenv' | |
| sh 'ln -s ~/env/config/zshrc ~/.zshrc' | |
| end | |
| desc "Install ssh config" | |
| task :sshconfig do |
| params: | |
| - name: name | |
| example: FooBar | |
| description: The name of your package | |
| - name: description | |
| example: Cool package. | |
| description: A short description of your package | |
| - name: user-name | |
| example: Andrey Tarantsov | |
| description: Package author's full name |
| From 46089d511b7f7d718b79c4ce8a685366e1c73161 Mon Sep 17 00:00:00 2001 | |
| From: Andrey Tarantsov <andrey@tarantsov.com> | |
| Date: Thu, 1 Nov 2012 10:10:34 +0700 | |
| Subject: [PATCH] Fix broken calls of complex binary expressions [#471] | |
| When deciding whether to parenthesize the expression being called, a | |
| simple test of f.charAt(0) results in a broken code when calling a | |
| complex expression which just happens to start with a paren but is | |
| not actually parenthesized. |
| В этой директории лежит delegate (универсальный прокси-сервер и сервер | |
| контекта) для Windows. Остальные версии можно найти на сайте. | |
| Вот примерный список функций: | |
| * входящие (т.е. с вашего компьютера) соединение по протоколам | |
| HTTP, HTTPS, "HTTPS-tunnel", FTP, NNTP, Telnet, SOCKS и др. | |
| * исходящие соеднинения (т.е. к настоящим серверам) по тем же | |
| протоколам, причём, например, можно FTP (на входе) пустить | |
| через SOCKS-прокси (или через HTTPS-прокси) | |
| * кэширование запросов (с управляемыми параметрами) |
| javascript:(function(){function%20e(a){var%20c=window;if(c.PolyvoreClipper){c.PolyvoreClipper.run()}else{var%20b=a.createElement("script");c._polyvoreMode="prod";c._polyvoreHost="www.polyvore.com";b.src="http://akwww.polyvorecdn.com/rsrc/clipper.js?%22+Math.floor((new%20Date()).getTime()/86400000);a.body.appendChild(b)}}try{e(document)}catch(g){}for(var%20f=0;f%3Cframes.length;++f){var%20i=frames[f];try{if(i.frameElement.tagName==%22IFRAME%22){continue}if(i.innerWidth%3C400||i.innerHeight%3C400){continue}e(i.document)}catch(j){}}})(); |
Under ~/dev/livereload:
app/2_4/cli https://github.com/livereload/livereload-cli
modules/protocol https://github.com/livereload/livereload-protocol
modules/client https://github.com/livereload/livereload-client
modules/server https://github.com/livereload/livereload-server
| #import <Foundation/Foundation.h> | |
| @interface DualNibViewController : UIViewController { | |
| NSDictionary *_viewStates; | |
| } | |
| @end |
| // GorillaScript as of 2013-07-08 | |
| macro assert-equals(x, y) | |
| @maybe-cache x, #(set-x, x) | |
| @maybe-cache y, #(set-y, y) | |
| AST | |
| if $set-x != $set-y | |
| throw new Error("assert-equals failed: " & $x & " != " & $y) | |
| macro assert-deep-equals(x, y) |