Keybase proof
I hereby claim:
- I am felipesabino on github.
- I am felipesabino (https://keybase.io/felipesabino) on keybase.
- I have a public key ASBk0qjwacKBiWX2X1mmEEeJYkg48UN2SiTzECBiU8Gy8wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Verifying that +felipesabino is my blockchain ID. https://onename.com/felipesabino |
" Make vim more useful | |
set nocompatible | |
" Set syntax highlighting options. | |
set t_Co=256 | |
set background=dark | |
syntax on | |
" colorscheme badwolf | |
" Enabled later, after Pathogen |
$ brew update
[alias] | |
com = commit -m | |
ck = checkout | |
po = push origin | |
mg = merge --no-ff | |
st = status -sb | |
br = ls-remote | |
lc = ls-files -u | |
ls = ls -la | |
a = add -A :/ |
# original from: https://github.com/addyosmani/dotfiles/blob/master/.aliases | |
# Easier navigation: .., ..., ~ and - | |
alias ..="cd .." | |
alias ...="cd ../.." | |
alias ....="cd ../../.." | |
alias .....="cd ../../../.." | |
alias ~="cd ~" # `cd` is probably faster to type though | |
alias -- -="cd -" |
#!/bin/sh | |
# Sets Terminal to case insensitive | |
# http://blog.nickburwell.com/blog/2008/11/mac-os-x-terminal-case-insensitive-auto | |
echo "set completion-ignore-case On" >> ~/.inputrc | |
# Disables the creation of .DS_Store files on external volumes | |
# http://danilo.ariadoss.com/how-to-recursively-remove-ds_store-files-on-mac-os-x/ | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores true | |
# Make Your Keyboard Keys Repeat Properly When Held Down | |
# http://lifehacker.com/5826055/make-your-keyboard-keys-repeat-properly-when-held-down-in-mac-os-x-lion |
/** | |
* | |
* Javascript color conversion | |
* http://www.webtoolkit.info/javascript-color-conversion.html | |
* | |
**/ | |
function HSV(h, s, v) { | |
if (h <= 0) { h = 0; } | |
if (s <= 0) { s = 0; } |
// UIViewController+ModalCheck.h | |
// | |
// Created by Felipe Sabino on 06/14/11 | |
#import <UIKit/UIKit.h> | |
@interface UIViewController (ModalCheck) | |
-(BOOL)isPresentedAsModal; |