- UIスレッド (メインスレッド)
- worker (ワーカースレッド)
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
| # Prefix | |
| set-option -g prefix C-t | |
| # window status bar setting | |
| set -g status-interval 10 | |
| # default | |
| set -g status-bg colour007 | |
| set -g status-fg colour000 | |
| # left | |
| set -g status-left-fg colour000 |
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
| require 'net/http' | |
| query_ary = ['/accounts', '/information', '/requests', '/pays', '/changes'] | |
| http = Net::HTTP.new('localhost', 3000) | |
| query_ary.each do |query| | |
| req = Net::HTTP::Get.new(query + '/1.json') | |
| res = http.request(req) |
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
| # Path to your oh-my-zsh configuration. | |
| ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| #ZSH_THEME="robbyrussell" | |
| ZSH_THEME="agnoster" |
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
| " for neo bundle | |
| set nocompatible | |
| filetype off | |
| if has('vim_starting') | |
| set runtimepath+=~/.vim/bundle/neobundle.vim/ | |
| endif | |
| call neobundle#rc(expand('~/.vim/bundle/')) |
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
| <!doctype html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>jsCafe Todo</title> | |
| <meta name="description" content="jsCafe Todo"> | |
| <meta name="viewport" content="width=device-width"> | |
| <script type="text/javascript" src="http://underscorejs.org/underscore.js"></script> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
| <script type="text/javascript" src="http://www.parsecdn.com/js/parse-1.2.7.min.js"></script> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <script type="text/javascript" src="http://code.jquery.com/jquery-2.0.1.min.js"></script> | |
| <script type="text/javascript" src="http://mbostock.github.com/d3/d3.js?2.3.0"></script> | |
| <style type="text/css"> | |
| svg { |