Skip to content

Instantly share code, notes, and snippets.

@tofias
tofias / OmniFocus Filterer
Created June 28, 2012 02:43
AppleScript to toggle Active and Available in Context or Project Mode in OmniFocus
-- OmniFocus Filterer -- toggle Active and Available in Context or Project Mode.
-- Michael Tofias 2012-06-27
-- https://gist.github.com/3008488
set theList to {"1 Active and Available"}
set theList to theList & {"2 Active"}
set theList to theList & {"3 Available"}
choose from list (theList) with prompt "Choose a filter toggle:" with title "OmniFocus Filterer"
set myAnswer to result as text
@tofias
tofias / Open URLs in Safari Tabs.pl
Created March 7, 2012 03:39 — forked from gruber/Open URLs in Safari Tabs.pl
Open URLs in Tabs (an update to Gruber's instant classic perl script) see: http://log.tofias.net/scripts
#!/usr/bin/perl
# Description: http://daringfireball.net/2010/08/open_urls_in_safari_tabs
# License: See below.
# http://gist.github.com/507356
# UPDATE for "Create and run the AppleScript" portion of Gruber's original script
# http://gist.github.com/1990793
use strict;