View gist:939360
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test |
View src.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <memory> | |
using namespace std; | |
template <typename T, typename U> | |
ostream& operator<<(ostream& os, const pair<T, U> p) { | |
os << '(' << p.first << ',' << p.second << ')'; | |
return os; | |
} |
View a.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <map> | |
#include <vector> | |
#include <string> | |
using namespace std; | |
template <typename T, typename U> | |
ostream& operator<<(ostream& os, const pair<T, U> p) { | |
os << '(' << p.first << ':' << p.second << ')'; |
View a.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <map> | |
#include <vector> | |
#include <string> | |
#include <set> | |
using namespace std; | |
template <typename T, typename U> | |
ostream& operator<<(ostream& os, const pair<T, U> p) { |
View emacs.idekeybindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Menu Key Bindings</key> | |
<dict> | |
<key>Key Bindings</key> | |
<array> | |
<dict> | |
<key>Action</key> |
View .zshrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ssh-aws() { | |
KEY=$1 | |
NAME=$2 | |
if which list_instances >/dev/null; then | |
CMD="ssh -i $KEY root@`list_instances $* -H T:Name,Hostname | awk '{ if ("'$NAME'"==¥$1) print ¥$2}'`" | |
echo $CMD | |
sh -c $CMD | |
else | |
echo please install boto; |
View build.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for platform in iPhoneOS iPhoneSimulator; do | |
BUILD_DIR=`pwd`/build.$platform | |
if [[ -d $BUILD_DIR ]]; then | |
rm -fr $BUILD_DIR | |
fi | |
mkdir -p $BUILD_DIR |
View sync_dir.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import sys | |
import time | |
import logging | |
from watchdog.observers import Observer | |
from watchdog.events import LoggingEventHandler | |
import paramiko | |
import getpass |
View grid.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def once(tag) | |
unless (@__once_executed__ ||= []).include? tag | |
yield | |
@__once_executed__ << tag | |
end | |
end | |
module Jekyll | |
class Post |
View skype_dump.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'active_record' | |
$db, $chatname = ARGV | |
if $db.nil? or $chatname.nil? | |
puts "usage: #{__FILE__} <db> <chatname>" | |
exit 1 | |
end |
OlderNewer