⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
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
# hate m3u playlist files? set up an alias to delete them all. | |
alias m3u="find . -name '*.m3u' -print0 | xargs -0 rm -v" |
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
.button { | |
border: 1px solid #DDD; | |
border-radius: 3px; | |
text-shadow: 0 1px 1px white; | |
box-shadow: 0 1px 1px #fff; | |
font: bold 11px Sans-Serif; | |
padding: 6px 10px; | |
white-space: nowrap; | |
vertical-align: middle; | |
color: #666; |
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
/** | |
* zig zag background | |
* stolen from here: http://lea.verou.me/css3patterns/#zig-zag | |
*/ | |
body { | |
background: | |
linear-gradient(315deg, #f1f1f1 25%, transparent 25%) -50px 0, | |
linear-gradient(225deg, #f1f1f1 25%, transparent 25%) -50px 0, | |
linear-gradient(135deg, #f1f1f1 25%, transparent 25%), | |
linear-gradient(45deg, #f1f1f1 25%, transparent 25%); |
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
/** | |
* salmon & blue circle | |
*/ | |
button { | |
color:#fff; | |
font-family:helvetica neue; | |
font-size:48px; | |
font-style:italic; | |
font-weight:100; |
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
/** | |
* salmon & blue circle | |
*/ | |
button { | |
color:#ff555d; | |
font-family:futura; | |
font-size:48px; | |
font-style:italic; | |
font-weight:800; |
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
127.0.0.1 localhost | |
255.255.255.255 broadcasthost | |
::1 localhost | |
fe80::1%lo0 localhost | |
# focus mode | |
# toggled with http://www.clockwise.ee/gasmask/ | |
0.0.0.0 twitter.com | |
0.0.0.0 mail.google.com |
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 rm "$(git ls-files -d)" |
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
# Create a list of links on a site | |
# https://twitter.com/#!/plasticmind/status/202746488797921280 | |
wget --force-html -r -l2 http://yoursite.com 2>&1 | grep '^--' | grep -v '\.\(txt\|ico\|css\|js\|png\|gif\|jpg\)$' > linklist.txt |
OlderNewer