- はたらく魔王様
- 変態王子
- 進撃の巨人
- あいうら
- デビサバ2
- 翠星のガルガンディア
- ヴヴヴ
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"?> | |
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10"> | |
<data> | |
<int key="IBDocument.SystemTarget">1280</int> | |
<string key="IBDocument.SystemVersion">11E53</string> | |
<string key="IBDocument.InterfaceBuilderVersion">2182</string> | |
<string key="IBDocument.AppKitVersion">1138.47</string> | |
<string key="IBDocument.HIToolboxVersion">569.00</string> | |
<object class="NSMutableDictionary" key="IBDocument.PluginVersions"> | |
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string> |
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
Alt & Space::Send, {vkF3sc029} ;Alt+Space->IME ON/OFF | |
#UseHook ; Needed for remapping keys to each other, e.g. A becomes B, and B becomes A. | |
SetStoreCapslockMode Off ; Optional. Allows Capslock to be ON to send remapped keys in uppercase. | |
+VKF4::~ | |
VKF4::` | |
VKF3::` | |
+2::Send,{@} | |
+6::Send,{^} |
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
source :rubygems | |
gem 'json' | |
gem 'nokogiri' | |
gem 'sequel' | |
gem 'sqlite3' | |
gem 'sinatra' | |
gem 'sinatra-reloader' | |
gem 'sinatra-sequel' |
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
class NilClass | |
def method_missing(method, *args, &block) | |
if method.to_s == "resignFirstResponder" | |
return nil | |
else | |
super | |
end | |
end | |
end |
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
should = require 'should' | |
sinon = require 'sinon' | |
class Hoge | |
fuga: (params, callback)-> | |
return callback(params) | |
class Fuga | |
moge: (params, dummy, callback)-> | |
return callback(params) |
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
source ~/nvm/nvm.sh | |
alias ls='ls -G' | |
# brew install git bash-completion | |
if [ -f `brew --prefix`/etc/bash_completion ]; then | |
. `brew --prefix`/etc/bash_completion | |
fi | |
GIT_PS1_SHOWDIRTYSTATE=true |
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
var test = {}; | |
var level3 = (((test || {}).level1 || {}).level2 || {}).level3 || 'no key'; | |
console.log( level3 ); // no key | |
test.level1 = {}; | |
test.level1.level2 = {}; | |
test.level1.level2.level3 = "level3"; | |
level3 = (((test || {}).level1 || {}).level2 || {}).level3; | |
console.log( level3 ); // "level3" |
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
var s = require('./index').service; | |
var submod = require('./index').submod; | |
s.hoge(); | |
submod.hoge(); |
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
# $ hub pull-request | |
# $ hub pull-request "My humble contribution" | |
# $ hub pull-request -i 92 | |
# $ hub pull-request https://github.com/rtomayko/tilt/issues/92 | |
def pull_request(args) | |
args.shift | |
options = { } | |
force = explicit_owner = false | |
base_project = local_repo.main_project | |
head_project = local_repo.current_project |
OlderNewer