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
| (* | |
| Apple Mail to Markdown Formatted Day One Entry | |
| !!! IMPORTANT !!! | |
| Requires the Day One Command Line Interface. Download and install from here: | |
| http://dayoneapp.com/tools/ | |
| Adapted from 'Apple Mail -- Text File Exporter w/ Basic Header Info' by Justin Lancy: | |
| http://veritrope.com/code/apple-mail-export-to-text-file-w-basic-header-info |
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
| (* | |
| AppleScript for use in a TextExpander snippet to print out the date of the next Monday (or whatever day of the week you define) in the format of "Monday 13 April 2011" | |
| Maintained at https://gist.github.com/1251355 | |
| *) | |
| (* Set Weekday and Month names in your language of choice here (for example, French) *) | |
| set day_names to {"dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"} | |
| set month_names to {"janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"} |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>BackgroundColor</key> | |
| <string>rgba(0.000000,0.000000,0.000000,1.000000)</string> | |
| <key>CommentsColor</key> | |
| <string>rgba(0.569157,0.569091,0.569188,1.000000)</string> | |
| <key>CtagsIdentifierColor</key> | |
| <string>rgba(0.6,0.0,0.4,1.0)</string> |
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
| defaults write com.barebones.bbedit Color:Background -string "rgb(0,0,0)" | |
| defaults write com.barebones.bbedit Color:CTagsIdentifier -string "rgb(57825,39937,11422)" | |
| defaults write com.barebones.bbedit Color:ColorAttributesSeparately -string 1 | |
| defaults write com.barebones.bbedit Color:Comment -string "rgb(21845,21845,21845)" | |
| defaults write com.barebones.bbedit Color:Comment:Ruby -string "rgb(34992,34992,34992)" | |
| defaults write com.barebones.bbedit Color:Foreground -string "rgb(65535,65535,65535)" | |
| defaults write com.barebones.bbedit Color:Foreground:CSS -string "rgb(56342,56342,56342)" | |
| defaults write com.barebones.bbedit Color:GuideContrast -string 7 | |
| defaults write com.barebones.bbedit Color:HTMLAnchor -string "rgb(43690,0,0)" | |
| defaults write com.barebones.bbedit Color:HTMLAttributeName -string "rgb(57528,45076,5799)" |
NewerOlder