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
| property gstrScriptName : "Create Hyperlink with Custom Protocol from Selected Text" | |
| property gstrScriptVer : "1.0.1" | |
| property gstrScriptDate : "Mon, Nov 16, 2015" | |
| (* | |
| ββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| PURPOSE: | |
| β’ Based on the User's selection, create and put on Clipboard: | |
| β’ RTF formatted Hyperlink | |
| β’ This supports custom URL Schemes/Protocols not supported by Evernote |
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
| 'use strict'; | |
| var app = Application.currentApplication() | |
| app.includeStandardAdditions = true | |
| var mySelection = copySelection("Safari", 1) | |
| mySelection | |
| //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| function copySelection(pAppName, pTimeLimitSec) { |
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/python | |
| # encoding: utf-8 | |
| # | |
| # rename_workflow | |
| # | |
| # Copyright (c) 2015 Dean Jackson <deanishe@deanishe.net> | |
| # | |
| # MIT Licence. See http://opensource.org/licenses/MIT | |
| # | |
| # Created on 2015-08-02 |
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 | |
| # encoding: utf-8 | |
| # Bitlyize by Brett Terpstra 2014 | |
| # Shortens all URLs in input and automatically adds Amazon and iTunes affiliate codes | |
| # A single bitly link passed to this script will return the long url | |
| # This script was designed for use in an OS X System Service, but runs | |
| # as a CLI and can be included as a Ruby library in other scripts | |
| # | |
| # The bitly_username and bitly_key variables are required | |
| # Optionally configure the custom domain, and itunes and amazon affiliate variables |
NewerOlder