I hereby claim:
- I am jbwhaley on github.
- I am jbwhaley (https://keybase.io/jbwhaley) on keybase.
- I have a public key ASAeFCCOKra62Lj_IAAFeJcMT08TQA7jnW9GSBTaMAekPAo
To claim this, I am signing this object:
| import requests | |
| import sys | |
| import webbrowser | |
| # Replace the 'API_KEY' value below with your API key; | |
| # get one at https://micro.blog/account | |
| API_KEY = "XXXXXXXXXXXXXXXXXXX" | |
| HEADER_VALUE = "Bearer " + API_KEY |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| # forGetter Version 1.1 | |
| ## A simple script to view all system notifications scheduled by Pythonista. | |
| ## Currently running it from Launch Center Pro. | |
| import notification | |
| import console |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| # CancelReminders Version 1.0 | |
| ## Cancels all currently scheduled notifications in Pythonista. | |
| import notification | |
| import console | |
| import webbrowser |
| import random | |
| import requests | |
| import sys | |
| import clipboard | |
| import console | |
| import webbrowser | |
| # Grabs input args | |
| numArgs = len(sys.argv) |
| import sys | |
| import webbrowser | |
| import console | |
| import urllib | |
| numArgs = len(sys.argv) | |
| base = 'drafts://x-callback-url/create?text=' | |
| if numArgs == 3: |
| tell application "Evernote" | |
| activate | |
| create note from file theFile notebook {"YOURNOTEBOOK"} tags {"tag1", "tag2", "tag3"} | |
| end tell |
| # QuickReminder 3.0.2 - see: http://jarrodwhaley.com/other-projects/geekery/ | |
| import sys | |
| import urllib.request, urllib.parse, urllib.error | |
| import notification | |
| import console | |
| import webbrowser | |
| # Get arguments, if any |