$ python setup.py build
  
    
      This file contains hidden or 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
    
  
  
    
  | #!/bin/bash | |
| # Source: http://toomuchdata.com/2012/06/25/how-to-install-python-2-7-3-on-centos-6-2/ | |
| # Install stuff # | |
| ################# | |
| # Install development tools and some misc. necessary packages | |
| yum -y groupinstall "Development tools" | |
| yum -y install zlib-devel # gen'l reqs | 
  
    
      This file contains hidden or 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
    
  
  
    
  | http { | |
| include /etc/nginx/mime.types; | |
| default_type application/octet-stream; | |
| log_format ltsv 'domain:$host\t' | |
| 'host:$remote_addr\t' | |
| 'user:$remote_user\t' | |
| 'time:$time_local\t' | |
| 'method:$request_method\t' | |
| 'path:$request_uri\t' | 
| 更新: | 2014-04-10 | 
|---|---|
| バージョン: | 0.2.1 | 
| 作者: | @voluntas | 
| URL: | http://voluntas.github.io/ | 
reltool 周りについて勉強がてらまとめてみました
  
    
      This file contains hidden or 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
    
  
  
    
  | // ==UserScript== | |
| // @name sumally-add-via-link | |
| // @namespace swdyh | |
| // @include http://sumally.com/* | |
| // @version 0.0.1 | |
| // ==/UserScript== | |
| document.addEventListener('DOMNodeInserted', function(ev) { | |
| if (ev.target && ev.target.className == 'oneblock') { | |
| addVia(ev.target) | 
  
    
      This file contains hidden or 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 git_prompt_info() { | |
| ref=$(git symbolic-ref HEAD 2> /dev/null) || return | |
| echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$ZSH_THEME_GIT_PROMPT_SUFFIX" | |
| } | 
