I hereby claim:
- I am skoch on github.
- I am skoch (https://keybase.io/skoch) on keybase.
- I have a public key whose fingerprint is 028C 43D8 6544 5E92 B7ED C776 8B03 2F53 9820 80CD
To claim this, I am signing this object:
export PS1="\[\e[31;40m\]____________________________________________________________________________________________________________________________\n| \[\e[33;40m\]\u@\[\e[32;40m\]\h \[\e[35;40m\]\t \[\e[36;40m\]\w \n\[\e[31;40m\]| $ \[\e[0m\]" | |
EDITOR=nano | |
export PATH="$PATH:~/git/git-achievements:/Library/Ruby/Gems/1.8/bin:/usr/local/git/bin" | |
alias git="git-achievements" | |
alias mate="/Users/skoch/bin/mate" | |
# alias cdf='cd `osascript -e "tell application \"Finder\" to if window 1 exists then if target of window 1 as string is not \":\" then get POSIX path of (target of window 1 as alias)"`' |
[ | |
{ "keys": ["ctrl+shift+d"], "command": "duplicate_line" }, | |
{ "keys": ["super+shift+o"], "command": "insert_snippet", "args": {"name": "Packages/ActionScript 3/Out.sublime-snippet"}}, | |
// { "keys": ["super+shift+o"], "command": "insert_snippet", "args": {"name": "Packages/JavaScript/console-log.sublime-snippet"}}, | |
// { "keys": ["super+shift+t"], "command": "insert_snippet", "args": {"name": "Packages/ActionScript 3/trace.sublime-snippet"}}, | |
{ "keys": ["super+shift+l"], "command": "insert_snippet", "args": {"contents": "console.log( '$SELECTION', $SELECTION );"}}, | |
{ "keys": ["super+shift+i"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse":false} }, | |
{ "keys": ["super+enter"], "command": "build" }, | |
{ "keys": ["super+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, |
{ | |
"auto_complete_commit_on_tab": false, | |
"auto_complete_delay": 150, | |
"auto_complete_with_fields": false, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Color Scheme - Default/Blackboard_3.tmTheme", | |
"draw_indent_guides": false, | |
"draw_minimap_border": true, | |
"draw_white_space": "none", | |
"font_face": "EnvyCodeR", |
I hereby claim:
To claim this, I am signing this object:
- ( void )setContentGutterForIphoneUsingView:( UIView * )view | |
{ | |
// macro to determine device | |
if( IS_IPHONE ) | |
{ | |
UIView *container = [UIView new]; | |
container.backgroundColor = [UIColor clearColor]; | |
container.translatesAutoresizingMaskIntoConstraints = NO; | |
UIView *content = [UIView new]; |
[FIRApp configure]; | |
if( floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_9_x_Max ) | |
{ | |
// iOS 9 | |
UIUserNotificationType allNotificationTypes = ( UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge ); | |
UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:allNotificationTypes categories:nil]; | |
[[UIApplication sharedApplication] registerUserNotificationSettings:settings]; | |
}else | |
{ |
@import UserNotifications; | |
@import Firebase; | |
@import FirebaseMessaging; | |
@interface AppDelegate : UIResponder <UIApplicationDelegate, UNUserNotificationCenterDelegate, FIRMessagingDelegate> |