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
var bo = lowerAndroid(2.2); | |
alert(bo);//2.2(含まない)以下はtrue |
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
alias g='git' | |
alias gi='git init && git add . && git commit -m "first commit"' | |
alias gc='g add -A && git commit -a' | |
alias r='rails' | |
alias rs='rails s' | |
alias rgs='rails g scaffold' | |
alias bi="bundle install" | |
alias be="bundle exec rackup" | |
alias sq="mysql.server" | |
alias sqrs='mysql.server start && rails s' |
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
[alias] | |
st = status | |
co = checkout | |
di = diff | |
br = branch | |
ci = commit -a | |
cancel = reset --soft HEAD^ #直前のコミットを取り消す | |
zip = archive --format=zip --prefix=archive/ HEAD^ -o archive.zip #直前のコミットの差分ファイルをzipで抽出 | |
ad = add . | |
cm = commit -m |
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
# OS | |
*~ | |
.DS_Store | |
Thumbs.db | |
# Sass | |
.sass-cache | |
# Xcode | |
UserInterfaceState.xcuserstate |
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
#---------------------------------------------------------------------- | |
#cake watch | |
#---------------------------------------------------------------------- | |
#trg | |
src = 'htdocs/common/coffee/' | |
target = 'htdocs/common/js/main.js' | |
#source | |
{spawn} = require 'child_process' |
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
$ git clone https://github.com/ShareKit/ShareKit.git |
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
#import "DefaultSHKConfigurator.h" | |
@interface ShareKitConfigurator : DefaultSHKConfigurator | |
@end |
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
- (NSNumber*)shareMenuAlphabeticalOrder { | |
return [NSNumber numberWithInt:0]; | |
} |
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
- (NSArray*)defaultFavoriteImageSharers { | |
return [NSArray arrayWithObjects:@"SHKTwitter", @"SHKFacebook", @"SHKInstagram", @"SHKPhotoAlbum", nil]; | |
} |
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
- (NSNumber*)showActionSheetMoreButton { | |
return [NSNumber numberWithBool:false]; | |
} |
OlderNewer