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
| @Brett's searches | |
| @Brett's custom searches | |
| go https://duckduckgo.com/?q=%21%20%s Open first result (DuckDuckGo) | |
| b https://duckduckgo.com/?q=%21%s Bang search (DuckDuckGo) | |
| grep https://www.cueup.com/?q=%s&fq=1 Greplin | |
| ss https://duckduckgo.com/site:%d%20%s Current site (DuckDuckGo) | |
| bt https://duckduckgo.com/site:brettterpstra.com%20%s BrettTerpstra.com (DuckDuckGo) | |
| gh https://github.com/search?q=%s&type=Everything&repo=&langOverride=&start_value=1 Search GitHub (everything) | |
| hints http://hints.macworld.com/search.php?query=%s&keyType=all&datestart=&dateend=&topic=0&type=stories&results=50&mode=search Search Mac OS X Hints | |
| mu http://www.macupdate.com/find/mac/%s Search MacUpdate (Software) |
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
| /* | |
| Drafts App Bookmarklets (http://agiletortoise.com/drafts) | |
| Author: Sean Korzdorfer | |
| Date: 14:01:43 Wed May 02 2012 | |
| Nota Bene: It's probably best to have the bookmarklet create a script tag that includes an external JS. | |
| See: https://gist.github.com/2777049 | |
| Sends the current Mobile Safari Tab to Drafts app as Markdown link with date and time stamps |
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
| (* | |
| Jered Benoit | |
| jeredb.com | |
| Omnifocus -> Day One Daily Completed Task Log | |
| Based upon [Version 1.0] [1] of [OmniFocus - Weekly Project Report Generator] [2] | |
| Originally Authored by Chris Brogan and Rob Trew | |
| February 5, 2012 |
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
| #!/usr/bin/ruby | |
| # scrivwatch.rb by Brett Terpstra, 2011 | |
| # Modifications to merge into one file for Markdown viewing in Marked by BooneJS, 2012 | |
| # Modified to use REXML and add titles by Brett Terpstra, 2012 <https://gist.github.com/1676667> | |
| # | |
| # Watch a Scrivener project for changes and update a preview file for Marked | |
| # Usage: scrivwatch.rb /path/to/document.scriv | |
| # <http://markedapp.com> | |
| require 'fileutils' |