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
credit_cards_example: | |
VISA: | |
- 4532067618974123 | |
- 4916016819289878 | |
- 4539068965030777 | |
MasterCard: | |
- 5311086328487790 | |
- 5288734069841571 | |
- 5531196072614350 |
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
index | |
home | |
top | |
help | |
about | |
security | |
contact | |
connect | |
support | |
faq |
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
<html> | |
<head> | |
<style> | |
* { | |
margin: 0; | |
padding: 0; | |
} | |
#outer-wrapper { | |
position: absolute; | |
background-color: blue; |
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
brew install https://raw.github.com/gist/5632492/macvim-kaoriya.rb |
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
# | |
# How to use | |
# measure :key do | |
# code you want to measure... | |
# end | |
# | |
def measure(key = nil) | |
p "#{caller[0]}: #{key} : start" | |
st = Time.now |
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
# ================================================================ | |
# Toggle between show or hide hidden files in MAC OS X | |
# ================================================================ | |
toggle_hidden_files() { | |
is_showing=`defaults read com.apple.finder AppleShowAllFiles` | |
if [ ${is_showing} = TRUE ] | |
then | |
defaults write com.apple.finder AppleShowAllFiles FALSE; | |
else |