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
Load the FTP server | |
sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist | |
Unload the FTP server | |
sudo -s launchctl unload -w /System/Library/LaunchDaemons/ftp.plist | |
http://igerry.com/desktop/apple-os/enabling-ftp-server-os-x-mavericks.html |
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
/* whitespace */ | |
.foo { | |
content: "\0020"; | |
} | |
/* non-breaking space */ | |
.bar { | |
content: "\00a0"; | |
} |
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
.blend-modes { | |
background-blend-mode: screen; | |
background-blend-mode: overlay; | |
background-blend-mode: darken; | |
background-blend-mode: lighten; | |
background-blend-mode: color-dodge; | |
background-blend-mode: color-burn; | |
background-blend-mode: hard-light; | |
background-blend-mode: soft-light; | |
background-blend-mode: difference; |
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
<input type="text" pattern="[0-9]*" inputmode="numeric" autocomplete="cc-number"> |
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
* + * |
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
.flex-container { | |
/* Display */ | |
display: -webkit-box; | |
display: -moz-box; | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
/* Direction */ |
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
a:link { | |
} | |
a:visited { | |
} | |
a:focus { |
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
/* apply a natural box layout model to all elements, but allowing components to change */ | |
/* http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */ | |
html { | |
box-sizing: border-box; | |
} | |
*, | |
*:before, | |
*:after | |
{ | |
box-sizing: inherit; |
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
::-ms-tooltip { | |
display: none; | |
} |
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
background-image: linear-gradient(to left, red 50%, blue 0%); | |
background-position: bottom; | |
background-repeat: repeat-x; | |
background-size: 2px 1px; |