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
| // Variables | |
| // Color for <code> and <pre> | |
| $lighterGray: lighten(black, 25%); | |
| // Background color for <code> | |
| $lightGray: lighten(lightgray, 10%); | |
| // Border color for <pre> and <code> | |
| $darkGray: darken(lightgray, 3%); | |
| // Background color of YouTube | |
| $darkerGray: darken(gray, 35%); |
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
| App Prototyping tools | |
| ============ | |
| https://www.adobe.com/products/xd.html | |
| https://www.figma.com/ | |
| http://principleformac.com/ | |
| https://kiteapp.co/ | |
| https://framer.com/ | |
| https://www.flinto.com/ | |
| https://www.invisionapp.com/studio | |
| https://www.invisionapp.com/craft |
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
| <?php | |
| // Turn off all error reporting | |
| error_reporting(0); | |
| $dir = new DirectoryIterator($folder); | |
| $json = array(); | |
| foreach ($dir as $index => $fileinfo) { |
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
| #!/bin/sh | |
| printf "\e[34mEnter name for this site\e[0m\n" | |
| read DOMAIN | |
| if [ -z "$DOMAIN" ]; | |
| then | |
| DOMAIN="${PWD##*/}" | |
| fi |
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, | |
| body { | |
| cursor: default; | |
| } | |
| code { | |
| cursor: text; | |
| } | |
| /* |