Skip to content

Instantly share code, notes, and snippets.

View pfcbenjamin's full-sized avatar

Ben Volio pfcbenjamin

View GitHub Profile
(*
File: OmniFocus_Due_List.scpt
Revision: 1.0
Revised: 2015-07-01
Summary: Create taskpaper list of tasks due +/- 7d from current date.
-----------------------------------------------------------
Script based on Justin Lancy (@veritrope) from Veritrope.com
@pfcbenjamin
pfcbenjamin / search.py
Last active December 17, 2015 13:25
search.py
#coding: utf-8
'''
A little script to search Google or GitHub right from inside Pythonista.
I added the script to the action menu so I can do a quick search without leaving Pythonista.
I find this especially helpful if I'm researching some error my script is throwing.
'''
import webbrowser
import console
import urllib
@pfcbenjamin
pfcbenjamin / BibleDraft.py
Last active January 14, 2018 19:29
BibleDraft.py
'''
!/usr/bin/env python
All Scripture generated by this script is from The Holy Bible, English Standard Version. Copyright &copy;2001 by <a href="http://www.crosswaybibles.org">Crossway Bibles</a>, a publishing ministry of Good News Publishers. Used by permission. All rights reserved. Text provided by the <a href="http://www.gnpcb.org/esv/share/services/">Crossway Bibles Web Service</a>.
A lot of this code is from Christian Wyglendowski found at http://www.esvapi.org/api#verse
Adapted for Drafts & Pythonista on iOS by @pfcbenjamin. More info at http://sweetnessoffreedom.wordpress.com/projects
'''
import sys
import console
import webbrowser