Updated this for the first time in awhile in late 2020.
- Enable iCloud
- Disable iCloud mail
- Display to medium
- Turn up trackpad speed
| /** | |
| * Define our parser class. It takes in some text, and then you can call "linkifyURLs", or one of the other methods, | |
| * and then call "getHTML" to get the fully parsed text back as HTML! | |
| * @param text that you want parsed | |
| */ | |
| function Parser(text) { | |
| var html = text; | |
| var urlRegex = /((ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?)/gi; |
| -delete the remote | |
| >> git push [remote] :[branch] | |
| -delete the local | |
| >> git branch -d [branch] | |
| ex. | |
| git push origin :dev1 | |
| git branch -d dev1 |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8 /> | |
| <title>Border Image Test</title> | |
| <style type="text/css"> | |
| #slider { | |
| /*This shows how to use border-image to mimic the behavior | |
| of stretchableImageWithLeftCapWidth:topCapHeight: in CSS. | |
| This example has a border-left and border-right width of 15px. |
| <?php | |
| /** Development settings. | |
| * | |
| * These are some customs settings that allow us to import arbitrary WordPress | |
| * databases and run them within our development environment without any additional | |
| * configuration. Append this to your regular wp-config.php file and customize as needed. | |
| * | |
| * @link http://gist.github.com/gists/173574 | |
| */ |