Skip to content

Instantly share code, notes, and snippets.

View darkwookiee's full-sized avatar

Christian Farley darkwookiee

View GitHub Profile

Keybase proof

I hereby claim:

  • I am darkwookiee on github.
  • I am darkwookiee (https://keybase.io/darkwookiee) on keybase.
  • I have a public key ASDCRvRMim0mrh4hlv9FEorQLYCoAs38bNChcsiXbSeHOgo

To claim this, I am signing this object:

@darkwookiee
darkwookiee / SendListToOmni.py
Created January 24, 2013 18:17
This Script run in pythonista on iOS. It take a plain liste, in the clipboard, and for each item in the list, create a task in Omnifocus. This ia not optimal, since Omnifocus doesn'n seem to provide a x-callback-url. Pythonista need to be reopen each time.
#Import into Omnifocus a list of task from the clipboard
import clipboard
import re
import webbrowser
import urllib
import console
base = 'omnifocus:///add?name='
text = clipboard.get()