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://x-callback-url/import_action?type=dropbox&name=TaskPaper%20with%20Indented%20Note&path=%2FTaskPaper%2F&filenametype=2&filename=filename&ext=txt&writetype=0&template=%09-%20%5B%5Btitle%5D%5D%0A%09%09%5B%5Bbody%5D%5D |
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
/* | |
The pageWasOpened function is called when a page is opened in a VoodooPad document for viewing. | |
*/ | |
function pageWasOpened(document, page) { | |
// print("pageWasOpened: " + page.displayName()); | |
//if (page.displayName() == "Category_Reading_Notes") | |
if (page.displayName().indexOf("Category_") !== -1) | |
pageList = listBacklinks(String(page.displayName()), page) |
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
javascript:(function()%20%7Bwindow.location='pinbook://x-callback-url/add?x-source='+encodeURIComponent(window.location.hostname.replace('www.',''))+'&x-success='+encodeURIComponent(window.location)+'&title='+encodeURIComponent(document.title)+'&description='+window.getSelection()+'&url='+encodeURIComponent(window.location);%7D)(); |
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://x-callback-url/import_action?type=URL&name=Search%20Tweetbox&url=tweetbot%3A%2F%2F%2Fsearch%3Fquery%3D%5B%5Bdraft%5D%5D%2520lang%253Aen%2520-filter%253Aretweet%2520-%2522RT%2520%2522 |
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
-- Sean Korzdorfer | |
-- 2013-01-21 | |
-- Fork of benwaldie Current Week Range TextExpander snippet: https://gist.github.com/4583398 | |
set theDate to (current date) | |
set theStartDate to theDate | |
repeat until weekday of theStartDate = Monday | |
set theStartDate to theStartDate - 1 * days | |
end repeat | |
set theEndDate to theDate |
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/env python | |
# A quick and dirty script to rename a pinboard.in tag. | |
# I'll probably update this become a proper command line app one day | |
import urllib2 | |
import pinboard | |
pinuser = "" | |
pinpasswd = "" |
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/env python | |
# Title: Checkvist API Wrapper | |
# Author: Sean Korzdorfer | |
# Date: Tue Nov 20 2012 | |
# | |
# All documentation found here involves this wrapper. For complete API docs, please see | |
# https://checkvist.com/auth/api | |
# | |
# This wrapper was designed to be simple enough for use with the Pythonista app: | |
# https://itunes.apple.com/us/app/pythonista/id528579881?mt=8 |
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/env python | |
# | |
# checkvist_inbox.py | |
# Sean Korzdorfer | |
# Mon Nov 12 2012 | |
# | |
# A Modified version of Gabe Weatherhead's pyhton script which uses checkvist's | |
# import api parameter. | |
# http://www.macdrifter.com/2012/11/the-checkvist-inbox-and-some-api-scripts.html | |
# |
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
mentalcase:///addnote?pboard=MCExportPBoard&newfacet&text=[prompt]&canbeprompt=1&newfacet&text=[prompt] |
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
import urllib2 | |
import json | |
import pprint | |
import datetime | |
pp = pprint.PrettyPrinter(indent=4) | |
# Get Date |