├── .gitignore ├── Alfred Project Code Management ├── Project Code Search.alfredworkflow ├── Project Codes.alfredworkflow └── README.md ├── Auto-Parser ├── ParseInbox-Hazel.applescript ├── ParseInbox-Hazel.scpt ├── ParseInbox.applescript ├── ParseInbox.scpt ├── README.md ├── auto-parser.omnifocusjs ├── install.py └── of.autoparser.plist ├── Bible Reading Plan ├── README.md └── omnifocus-bible-plan.taskpaper ├── Daily Task Report ├── DailyTaskReport.applescript ├── DailyTaskReport.scpt ├── HazelRule.jpg └── README.md ├── Duration Titles ├── DurationTitles.applescript ├── DurationTitles.scpt └── README.md ├── GTD Mind Sweep Trigger List └── gtd-mind-sweep-triggers.md ├── LICENSE.txt ├── Project Codes ├── ProjectCodes.applescript └── README.md ├── Project Kanban Board ├── README.md ├── kanban-perspective.jpg ├── of-kanban-board.omnifocusjs.zip └── of-kanban-board.omnifocusjs │ ├── Resources │ ├── Clear.js │ ├── Done.js │ ├── InProgress.js │ ├── Setup.js │ ├── ToDo.js │ ├── Waiting.js │ ├── aboutThisPlugin.js │ ├── en.lproj │ │ ├── Clear.strings │ │ ├── Done.strings │ │ ├── InProgress.strings │ │ ├── Setup.strings │ │ ├── ToDo.strings │ │ ├── Waiting.strings │ │ ├── aboutThisPlugin.strings │ │ └── manifest.strings │ ├── kanban-clear.png │ ├── kanban-done.png │ ├── kanban-in-progress.png │ ├── kanban-setup.png │ ├── kanban-to-do.png │ └── kanban-waiting.png │ └── manifest.json ├── README.md ├── Read Book Tasks ├── README.md ├── ReadBookTasks.applescript └── ReadBookTasks.scpt ├── Sort Projects ├── README.md └── sort-projects.omnifocusjs ├── Task Shuffle ├── README.md ├── ShuffleTasks.applescript └── ShuffleTasks.scpt ├── Update Reviews ├── README.md ├── UpdateReviews-Hazel.applescript ├── UpdateReviews-Hazel.scpt ├── UpdateReviews.applescript ├── UpdateReviews.scpt ├── update-reviews.omnifocusjs └── update-reviews.omnijs └── Weather Activation ├── README.md ├── WeatherActivation.applescript └── WeatherActivation.scpt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Alfred Project Code Management/Project Code Search.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Alfred Project Code Management/Project Code Search.alfredworkflow -------------------------------------------------------------------------------- /Alfred Project Code Management/Project Codes.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Alfred Project Code Management/Project Codes.alfredworkflow -------------------------------------------------------------------------------- /Alfred Project Code Management/README.md: -------------------------------------------------------------------------------- 1 | # Alfred Project Code Management 2 | 3 | There are two workflows here. One is for creating the projects and one is finding the projects. 4 | 5 | When you create a new project, it will create a project in OmniFocus, create a markdown file in the directory of your choice, and create a directory for the project. In the notes field for the OmniFocus project, you will find a link to the markdown file and the project directory. In the markdown file, there will be a link to the OmniFocus project. In the project directory there will be a symlinked file to the markdown file and an internet location file (shortcut) to the OmniFocus project. 6 | 7 | Once you've downloaded and installed the workflows into Alfred, open the workflow, and do a find/replace on the AppleScript for `joebuhlig` and replace with the your username. 8 | 9 | To run the workflow, type `p n` and then the name of the project you want to create. To search for a project, type `p f` and a search term. 10 | 11 | To convert this to using nvAlt over nvUltra, do a find/replace on the AppleScript for `x-nvultra` and change it to `nvalt`. 12 | -------------------------------------------------------------------------------- /Auto-Parser/ParseInbox-Hazel.applescript: -------------------------------------------------------------------------------- 1 | on hazelProcessFile(theFile) 2 | delay 10 3 | tell application "OmniFocus" 4 | tell front document 5 | set theInbox to every inbox task 6 | if theInbox is not equal to {} then 7 | repeat with n from 1 to length of theInbox 8 | set currentTask to item n of theInbox 9 | set taskName to name of currentTask 10 | if taskName starts with "--" then 11 | set taskName to ((characters 3 thru -1 of taskName) as string) 12 | set taskNote to note of currentTask 13 | set taskText to taskName & " 14 | " & taskNote 15 | set newTask to parse tasks into with transport text taskText with as single task 16 | delete currentTask 17 | end if 18 | end repeat 19 | end if 20 | end tell 21 | end tell 22 | end hazelProcessFile -------------------------------------------------------------------------------- /Auto-Parser/ParseInbox-Hazel.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Auto-Parser/ParseInbox-Hazel.scpt -------------------------------------------------------------------------------- /Auto-Parser/ParseInbox.applescript: -------------------------------------------------------------------------------- 1 | tell application "OmniFocus" 2 | tell front document 3 | set theInbox to every inbox task 4 | if theInbox is not equal to {} then 5 | repeat with n from 1 to length of theInbox 6 | set currentTask to item n of theInbox 7 | set taskName to name of currentTask 8 | if taskName starts with "--" then 9 | set taskName to ((characters 3 thru -1 of taskName) as string) 10 | set taskNote to note of currentTask 11 | set taskText to taskName & " 12 | " & taskNote 13 | set newTask to parse tasks into with transport text taskText with as single task 14 | delete currentTask 15 | end if 16 | end repeat 17 | end if 18 | end tell 19 | end tell -------------------------------------------------------------------------------- /Auto-Parser/ParseInbox.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Auto-Parser/ParseInbox.scpt -------------------------------------------------------------------------------- /Auto-Parser/README.md: -------------------------------------------------------------------------------- 1 | # OmniFocus Auto-Parser 2 | 3 | This is a launch agent designed to automatically parse the inbox of OmniFocus behind the scenes. You can email into OmniFocus and have it automatically parsed into the correct project and context. It can even have due dates, defer dates, flags, and estimated time. 4 | 5 | To use it, you simply need to create a string that is to be parsed and pass it to the OmniFocus inbox. You can learn more about creating the string for this [here](http://joebuhlig.com/using-omnifocus-for-somedaymaybe-lists/). 6 | 7 | # Which File? 8 | 9 | You'll find two versions of the script - `.scpt` and `.applescript`. In order to run it from OmniFocus, you'll want to use the `.scpt` version. The `.applescript` format is purely there so you can view the code online. 10 | 11 | # Installation 12 | 13 | There's a little bit of work involved in setting this up, but it's not too complicated if you'll follow each step. 14 | 15 | ## 1. Download and alter the files 16 | 17 | Download the Auto-Parser files and make a couple changes. 18 | 19 | First change the path in the pList file to match the location of the AppleScript file. 20 | 21 | `/Users/Username/DropBox/AppleScripts/BackgroundScripts/ParseInbox.applescript` 22 | 23 | Alter the start interval to the amount of time you'd like the script to run. This number is in seconds, so 300 is equal to five minutes. The script will run every five minutes. 24 | 25 | ```xml 26 | StartInterval 27 | 300 28 | ``` 29 | 30 | ## 2. Place the files 31 | 32 | Make sure you place the AppleScript file in the path you entered into the pList file. 33 | 34 | Place the pList file at the following location: 35 | 36 | `/Users/Username/Library/LaunchAgents` 37 | 38 | ## 3. Log off/log in 39 | 40 | When you've altered the files and placed them, log off of your account and then log back in. This is what will trigger the agent to run the first time. 41 | 42 | ## 4. Test and enjoy 43 | 44 | Create a test string and pass it to your inbox. Wait until your StartInterval time has passed and watch the magic happen! 45 | 46 | ## Alternative installation 47 | 48 | Another way to install this is to download the files and run the python installer. It will prompt you for the run interval (defaults to 300 seconds or 5 minutes) and then install and load the pList automatically. Hat tip to [Patrick](https://github.com/halbtuerke) for this addition. 49 | 50 | # Development 51 | 52 | I'm certainly open to the submission of Pull Requests to make this better. It's very basic at the moment. If you find issues and fix them, please let me know and I'll be happy to update and give you credit. 53 | -------------------------------------------------------------------------------- /Auto-Parser/auto-parser.omnifocusjs: -------------------------------------------------------------------------------- 1 | /*{ 2 | "author": "Joe Buhlig", 3 | "targets": ["omnifocus"], 4 | "type": "action", 5 | "identifier": "com.joebuhlig.omnifocus.com.auto-parser", 6 | "version": "0.1", 7 | "description": "Parse tasks in the OmniFocus inbox", 8 | "label": "Parse Inbox", 9 | "mediumLabel": "Parse tasks in the OmniFocus inbox", 10 | "paletteLabel": "Parse Inbox", 11 | }*/ 12 | (() => { 13 | var action = new PlugIn.Action(function(selection, sender) { 14 | inbox.apply((task) => { 15 | if (task.name.substr(0, 2) == "--"){ 16 | var taskName = task.name.substr(2); 17 | Task.byParsingTransportText(taskName, true); 18 | deleteObject(task); 19 | } 20 | }); 21 | }); 22 | 23 | return action; 24 | })(); -------------------------------------------------------------------------------- /Auto-Parser/install.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | from __future__ import division, absolute_import 4 | from __future__ import print_function, unicode_literals 5 | 6 | import os 7 | import plistlib as plist 8 | import pwd 9 | import subprocess 10 | import sys 11 | 12 | LAUNCH_AGENT = 'of.autoparser.plist' 13 | DEFAULT_INTERVAL = 300 14 | 15 | p = plist.readPlist(LAUNCH_AGENT) 16 | 17 | try: 18 | # Get user input 19 | interval = raw_input('Interval in seconds [300]: ') 20 | # If user supplied a value 21 | if interval: 22 | # Try converting the user's input to a number 23 | interval = int(interval) 24 | except ValueError: 25 | print("Provided value is not a number!", file=sys.stderr) 26 | # Exit program if the user input cannot be parsed into a number 27 | exit(1) 28 | 29 | # Use user supplied value if given otherwise use the default interval 30 | p['StartInterval'] = interval if interval else DEFAULT_INTERVAL 31 | 32 | # Get current working directory 33 | cwd = os.getcwd() 34 | 35 | # Modify ProgramArguments to use current PWD 36 | p['ProgramArguments'][1] = '{}/ParseInbox.applescript'.format(cwd) 37 | 38 | # Write modified plist file 39 | plist.writePlist(p, LAUNCH_AGENT) 40 | 41 | # Get current username 42 | username = pwd.getpwuid(os.getuid())[0] 43 | 44 | # Symlink plist file to ~/Library/LaunchAgents 45 | os.symlink('{}/{}'.format(cwd, LAUNCH_AGENT), 46 | '/Users/{}/Library/LaunchAgents/{}'.format(username, LAUNCH_AGENT)) 47 | 48 | # Load launch agent with launchtl 49 | subprocess.call(['launchctl', 'load', 50 | '/Users/{}/Library/LaunchAgents/{}'.format(username, 51 | LAUNCH_AGENT)]) 52 | 53 | # Start launch agent with launchctl 54 | subprocess.call(['launchctl', 'start', 55 | '/Users/{}/Library/LaunchAgents/{}'.format(username, 56 | LAUNCH_AGENT)]) 57 | -------------------------------------------------------------------------------- /Auto-Parser/of.autoparser.plist: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | Label 7 | of.autoparser 8 | ProgramArguments 9 | 10 | osascript 11 | /Users/Username/DropBox/AppleScripts/BackgroundScripts/ParseInbox.applescript 12 | 13 | StartInterval 14 | 300 15 | 16 | -------------------------------------------------------------------------------- /Bible Reading Plan/README.md: -------------------------------------------------------------------------------- 1 | # OmniFocus Bible Reading Plan 2 | 3 | Copy and past the taskpaper file into OmniFocus. 4 | 5 | If you want to adjust the dates, the easies way I've found is either with multiple cursors in Sublime Text or with a Find and Replace for the year. 6 | -------------------------------------------------------------------------------- /Bible Reading Plan/omnifocus-bible-plan.taskpaper: -------------------------------------------------------------------------------- 1 | - bible-plan @parallel(true) @autodone(true) 2 | - Genesis 1 @defer(2022-01-01) @due(2022-01-01) 3 | - Genesis 2 @defer(2022-01-01) @due(2022-01-01) 4 | - Genesis 3 @defer(2022-01-01) @due(2022-01-01) 5 | - Matthew 1 @defer(2022-01-01) @due(2022-01-01) 6 | - Genesis 4 @defer(2022-01-02) @due(2022-01-02) 7 | - Genesis 5 @defer(2022-01-02) @due(2022-01-02) 8 | - Genesis 6 @defer(2022-01-02) @due(2022-01-02) 9 | - Matthew 2 @defer(2022-01-02) @due(2022-01-02) 10 | - Genesis 7 @defer(2022-01-03) @due(2022-01-03) 11 | - Genesis 8 @defer(2022-01-03) @due(2022-01-03) 12 | - Genesis 9 @defer(2022-01-03) @due(2022-01-03) 13 | - Matthew 3 @defer(2022-01-03) @due(2022-01-03) 14 | - Genesis 10 @defer(2022-01-04) @due(2022-01-04) 15 | - Genesis 11 @defer(2022-01-04) @due(2022-01-04) 16 | - Genesis 12 @defer(2022-01-04) @due(2022-01-04) 17 | - Matthew 4 @defer(2022-01-04) @due(2022-01-04) 18 | - Genesis 13 @defer(2022-01-05) @due(2022-01-05) 19 | - Genesis 14 @defer(2022-01-05) @due(2022-01-05) 20 | - Genesis 15 @defer(2022-01-05) @due(2022-01-05) 21 | - Genesis 16 @defer(2022-01-06) @due(2022-01-06) 22 | - Genesis 17 @defer(2022-01-06) @due(2022-01-06) 23 | - Matthew 5 @defer(2022-01-06) @due(2022-01-06) 24 | - Genesis 18 @defer(2022-01-07) @due(2022-01-07) 25 | - Genesis 19 @defer(2022-01-07) @due(2022-01-07) 26 | - Matthew 6 @defer(2022-01-07) @due(2022-01-07) 27 | - Genesis 20 @defer(2022-01-08) @due(2022-01-08) 28 | - Genesis 21 @defer(2022-01-08) @due(2022-01-08) 29 | - Genesis 22 @defer(2022-01-08) @due(2022-01-08) 30 | - Genesis 23 @defer(2022-01-09) @due(2022-01-09) 31 | - Genesis 24 @defer(2022-01-09) @due(2022-01-09) 32 | - Matthew 7 @defer(2022-01-09) @due(2022-01-09) 33 | - Genesis 25 @defer(2022-01-10) @due(2022-01-10) 34 | - Genesis 26 @defer(2022-01-10) @due(2022-01-10) 35 | - Genesis 27 @defer(2022-01-11) @due(2022-01-11) 36 | - Genesis 28 @defer(2022-01-11) @due(2022-01-11) 37 | - Matthew 8 @defer(2022-01-11) @due(2022-01-11) 38 | - Genesis 29 @defer(2022-01-12) @due(2022-01-12) 39 | - Genesis 30 @defer(2022-01-12) @due(2022-01-12) 40 | - Matthew 9 @defer(2022-01-12) @due(2022-01-12) 41 | - Genesis 31 @defer(2022-01-13) @due(2022-01-13) 42 | - Genesis 32 @defer(2022-01-13) @due(2022-01-13) 43 | - Genesis 33 @defer(2022-01-14) @due(2022-01-14) 44 | - Genesis 34 @defer(2022-01-14) @due(2022-01-14) 45 | - Genesis 35 @defer(2022-01-14) @due(2022-01-14) 46 | - Matthew 10 @defer(2022-01-14) @due(2022-01-14) 47 | - Genesis 36 @defer(2022-01-15) @due(2022-01-15) 48 | - Genesis 37 @defer(2022-01-15) @due(2022-01-15) 49 | - Genesis 38 @defer(2022-01-15) @due(2022-01-15) 50 | - Genesis 39 @defer(2022-01-16) @due(2022-01-16) 51 | - Genesis 40 @defer(2022-01-16) @due(2022-01-16) 52 | - Matthew 11 @defer(2022-01-16) @due(2022-01-16) 53 | - Genesis 41 @defer(2022-01-17) @due(2022-01-17) 54 | - Genesis 42 @defer(2022-01-17) @due(2022-01-17) 55 | - Matthew 12 @defer(2022-01-17) @due(2022-01-17) 56 | - Genesis 43 @defer(2022-01-18) @due(2022-01-18) 57 | - Genesis 44 @defer(2022-01-18) @due(2022-01-18) 58 | - Genesis 45 @defer(2022-01-18) @due(2022-01-18) 59 | - Genesis 46 @defer(2022-01-19) @due(2022-01-19) 60 | - Genesis 47 @defer(2022-01-19) @due(2022-01-19) 61 | - Genesis 48 @defer(2022-01-19) @due(2022-01-19) 62 | - Genesis 49 @defer(2022-01-20) @due(2022-01-20) 63 | - Genesis 50 @defer(2022-01-20) @due(2022-01-20) 64 | - Matthew 13 @defer(2022-01-20) @due(2022-01-20) 65 | - Exodus 1 @defer(2022-01-21) @due(2022-01-21) 66 | - Exodus 2 @defer(2022-01-21) @due(2022-01-21) 67 | - Exodus 3 @defer(2022-01-21) @due(2022-01-21) 68 | - Matthew 14 @defer(2022-01-21) @due(2022-01-21) 69 | - Exodus 4 @defer(2022-01-22) @due(2022-01-22) 70 | - Exodus 5 @defer(2022-01-22) @due(2022-01-22) 71 | - Exodus 6 @defer(2022-01-22) @due(2022-01-22) 72 | - Exodus 7 @defer(2022-01-23) @due(2022-01-23) 73 | - Exodus 8 @defer(2022-01-23) @due(2022-01-23) 74 | - Matthew 15 @defer(2022-01-23) @due(2022-01-23) 75 | - Exodus 9 @defer(2022-01-24) @due(2022-01-24) 76 | - Exodus 10 @defer(2022-01-24) @due(2022-01-24) 77 | - Exodus 11 @defer(2022-01-24) @due(2022-01-24) 78 | - Exodus 12 @defer(2022-01-25) @due(2022-01-25) 79 | - Exodus 13 @defer(2022-01-25) @due(2022-01-25) 80 | - Matthew 16 @defer(2022-01-25) @due(2022-01-25) 81 | - Exodus 14 @defer(2022-01-26) @due(2022-01-26) 82 | - Exodus 15 @defer(2022-01-26) @due(2022-01-26) 83 | - Matthew 17 @defer(2022-01-26) @due(2022-01-26) 84 | - Exodus 16 @defer(2022-01-27) @due(2022-01-27) 85 | - Exodus 17 @defer(2022-01-27) @due(2022-01-27) 86 | - Exodus 18 @defer(2022-01-27) @due(2022-01-27) 87 | - Exodus 19 @defer(2022-01-28) @due(2022-01-28) 88 | - Exodus 20 @defer(2022-01-28) @due(2022-01-28) 89 | - Matthew 18 @defer(2022-01-28) @due(2022-01-28) 90 | - Exodus 21 @defer(2022-01-29) @due(2022-01-29) 91 | - Exodus 22 @defer(2022-01-29) @due(2022-01-29) 92 | - Matthew 19 @defer(2022-01-29) @due(2022-01-29) 93 | - Exodus 23 @defer(2022-01-30) @due(2022-01-30) 94 | - Exodus 24 @defer(2022-01-30) @due(2022-01-30) 95 | - Matthew 20 @defer(2022-01-30) @due(2022-01-30) 96 | - Exodus 25 @defer(2022-01-31) @due(2022-01-31) 97 | - Exodus 26 @defer(2022-01-31) @due(2022-01-31) 98 | - Exodus 27 @defer(2022-02-01) @due(2022-02-01) 99 | - Exodus 28 @defer(2022-02-01) @due(2022-02-01) 100 | - Matthew 21 @defer(2022-02-01) @due(2022-02-01) 101 | - Exodus 29 @defer(2022-02-02) @due(2022-02-02) 102 | - Exodus 30 @defer(2022-02-02) @due(2022-02-02) 103 | - Exodus 31 @defer(2022-02-03) @due(2022-02-03) 104 | - Exodus 32 @defer(2022-02-03) @due(2022-02-03) 105 | - Exodus 33 @defer(2022-02-03) @due(2022-02-03) 106 | - Exodus 34 @defer(2022-02-04) @due(2022-02-04) 107 | - Exodus 35 @defer(2022-02-04) @due(2022-02-04) 108 | - Matthew 22 @defer(2022-02-04) @due(2022-02-04) 109 | - Exodus 36 @defer(2022-02-05) @due(2022-02-05) 110 | - Exodus 37 @defer(2022-02-05) @due(2022-02-05) 111 | - Exodus 38 @defer(2022-02-05) @due(2022-02-05) 112 | - Exodus 39 @defer(2022-02-06) @due(2022-02-06) 113 | - Exodus 40 @defer(2022-02-06) @due(2022-02-06) 114 | - Matthew 23 @defer(2022-02-06) @due(2022-02-06) 115 | - Leviticus 1 @defer(2022-02-07) @due(2022-02-07) 116 | - Leviticus 2 @defer(2022-02-07) @due(2022-02-07) 117 | - Leviticus 3 @defer(2022-02-07) @due(2022-02-07) 118 | - Leviticus 4 @defer(2022-02-08) @due(2022-02-08) 119 | - Leviticus 5 @defer(2022-02-08) @due(2022-02-08) 120 | - Matthew 24 @defer(2022-02-08) @due(2022-02-08) 121 | - Leviticus 6 @defer(2022-02-09) @due(2022-02-09) 122 | - Leviticus 7 @defer(2022-02-09) @due(2022-02-09) 123 | - Matthew 25 @defer(2022-02-09) @due(2022-02-09) 124 | - Leviticus 8 @defer(2022-02-10) @due(2022-02-10) 125 | - Leviticus 9 @defer(2022-02-10) @due(2022-02-10) 126 | - Leviticus 10 @defer(2022-02-10) @due(2022-02-10) 127 | - Leviticus 11 @defer(2022-02-11) @due(2022-02-11) 128 | - Leviticus 12 @defer(2022-02-11) @due(2022-02-11) 129 | - Leviticus 13 @defer(2022-02-12) @due(2022-02-12) 130 | - Matthew 26 @defer(2022-02-12) @due(2022-02-12) 131 | - Leviticus 14 @defer(2022-02-13) @due(2022-02-13) 132 | - Leviticus 15 @defer(2022-02-14) @due(2022-02-14) 133 | - Leviticus 16 @defer(2022-02-14) @due(2022-02-14) 134 | - Leviticus 17 @defer(2022-02-15) @due(2022-02-15) 135 | - Leviticus 18 @defer(2022-02-15) @due(2022-02-15) 136 | - Matthew 27 @defer(2022-02-15) @due(2022-02-15) 137 | - Leviticus 19 @defer(2022-02-16) @due(2022-02-16) 138 | - Leviticus 20 @defer(2022-02-16) @due(2022-02-16) 139 | - Leviticus 21 @defer(2022-02-17) @due(2022-02-17) 140 | - Leviticus 22 @defer(2022-02-17) @due(2022-02-17) 141 | - Matthew 28 @defer(2022-02-17) @due(2022-02-17) 142 | - Leviticus 23 @defer(2022-02-18) @due(2022-02-18) 143 | - Leviticus 24 @defer(2022-02-18) @due(2022-02-18) 144 | - Leviticus 25 @defer(2022-02-19) @due(2022-02-19) 145 | - Mark 1 @defer(2022-02-19) @due(2022-02-19) 146 | - Leviticus 26 @defer(2022-02-20) @due(2022-02-20) 147 | - Leviticus 27 @defer(2022-02-20) @due(2022-02-20) 148 | - Mark 2 @defer(2022-02-20) @due(2022-02-20) 149 | - Numbers 1 @defer(2022-02-21) @due(2022-02-21) 150 | - Numbers 2 @defer(2022-02-21) @due(2022-02-21) 151 | - Mark 3 @defer(2022-02-21) @due(2022-02-21) 152 | - Numbers 3 @defer(2022-02-22) @due(2022-02-22) 153 | - Numbers 4 @defer(2022-02-22) @due(2022-02-22) 154 | - Numbers 5 @defer(2022-02-23) @due(2022-02-23) 155 | - Numbers 6 @defer(2022-02-23) @due(2022-02-23) 156 | - Mark 4 @defer(2022-02-23) @due(2022-02-23) 157 | - Numbers 7 @defer(2022-02-24) @due(2022-02-24) 158 | - Numbers 8 @defer(2022-02-24) @due(2022-02-24) 159 | - Numbers 9 @defer(2022-02-25) @due(2022-02-25) 160 | - Numbers 10 @defer(2022-02-25) @due(2022-02-25) 161 | - Numbers 11 @defer(2022-02-25) @due(2022-02-25) 162 | - Numbers 12 @defer(2022-02-26) @due(2022-02-26) 163 | - Numbers 13 @defer(2022-02-26) @due(2022-02-26) 164 | - Numbers 14 @defer(2022-02-26) @due(2022-02-26) 165 | - Mark 5 @defer(2022-02-26) @due(2022-02-26) 166 | - Numbers 15 @defer(2022-02-27) @due(2022-02-27) 167 | - Numbers 16 @defer(2022-02-27) @due(2022-02-27) 168 | - Mark 6 @defer(2022-02-27) @due(2022-02-27) 169 | - Numbers 17 @defer(2022-02-28) @due(2022-02-28) 170 | - Numbers 18 @defer(2022-02-28) @due(2022-02-28) 171 | - Numbers 19 @defer(2022-02-28) @due(2022-02-28) 172 | - Numbers 20 @defer(2022-03-01) @due(2022-03-01) 173 | - Numbers 21 @defer(2022-03-01) @due(2022-03-01) 174 | - Numbers 22 @defer(2022-03-01) @due(2022-03-01) 175 | - Numbers 23 @defer(2022-03-02) @due(2022-03-02) 176 | - Numbers 24 @defer(2022-03-02) @due(2022-03-02) 177 | - Numbers 25 @defer(2022-03-02) @due(2022-03-02) 178 | - Mark 7 @defer(2022-03-02) @due(2022-03-02) 179 | - Numbers 26 @defer(2022-03-03) @due(2022-03-03) 180 | - Numbers 27 @defer(2022-03-03) @due(2022-03-03) 181 | - Numbers 28 @defer(2022-03-03) @due(2022-03-03) 182 | - Mark 8 @defer(2022-03-03) @due(2022-03-03) 183 | - Numbers 29 @defer(2022-03-04) @due(2022-03-04) 184 | - Numbers 30 @defer(2022-03-04) @due(2022-03-04) 185 | - Numbers 31 @defer(2022-03-04) @due(2022-03-04) 186 | - Mark 9 @defer(2022-03-04) @due(2022-03-04) 187 | - Numbers 32 @defer(2022-03-05) @due(2022-03-05) 188 | - Numbers 33 @defer(2022-03-05) @due(2022-03-05) 189 | - Numbers 34 @defer(2022-03-05) @due(2022-03-05) 190 | - Numbers 35 @defer(2022-03-06) @due(2022-03-06) 191 | - Numbers 36 @defer(2022-03-06) @due(2022-03-06) 192 | - Mark 10 @defer(2022-03-06) @due(2022-03-06) 193 | - Deuteronomy 1 @defer(2022-03-07) @due(2022-03-07) 194 | - Deuteronomy 2 @defer(2022-03-07) @due(2022-03-07) 195 | - Deuteronomy 3 @defer(2022-03-07) @due(2022-03-07) 196 | - Deuteronomy 4 @defer(2022-03-08) @due(2022-03-08) 197 | - Deuteronomy 5 @defer(2022-03-08) @due(2022-03-08) 198 | - Deuteronomy 6 @defer(2022-03-08) @due(2022-03-08) 199 | - Mark 11 @defer(2022-03-08) @due(2022-03-08) 200 | - Deuteronomy 7 @defer(2022-03-09) @due(2022-03-09) 201 | - Deuteronomy 8 @defer(2022-03-09) @due(2022-03-09) 202 | - Deuteronomy 9 @defer(2022-03-09) @due(2022-03-09) 203 | - Deuteronomy 10 @defer(2022-03-10) @due(2022-03-10) 204 | - Deuteronomy 11 @defer(2022-03-10) @due(2022-03-10) 205 | - Deuteronomy 12 @defer(2022-03-10) @due(2022-03-10) 206 | - Mark 12 @defer(2022-03-10) @due(2022-03-10) 207 | - Deuteronomy 13 @defer(2022-03-11) @due(2022-03-11) 208 | - Deuteronomy 14 @defer(2022-03-11) @due(2022-03-11) 209 | - Deuteronomy 15 @defer(2022-03-11) @due(2022-03-11) 210 | - Deuteronomy 16 @defer(2022-03-12) @due(2022-03-12) 211 | - Deuteronomy 17 @defer(2022-03-12) @due(2022-03-12) 212 | - Deuteronomy 18 @defer(2022-03-12) @due(2022-03-12) 213 | - Mark 13 @defer(2022-03-12) @due(2022-03-12) 214 | - Deuteronomy 19 @defer(2022-03-13) @due(2022-03-13) 215 | - Deuteronomy 20 @defer(2022-03-13) @due(2022-03-13) 216 | - Deuteronomy 21 @defer(2022-03-13) @due(2022-03-13) 217 | - Deuteronomy 22 @defer(2022-03-14) @due(2022-03-14) 218 | - Deuteronomy 23 @defer(2022-03-14) @due(2022-03-14) 219 | - Deuteronomy 24 @defer(2022-03-14) @due(2022-03-14) 220 | - Deuteronomy 25 @defer(2022-03-15) @due(2022-03-15) 221 | - Deuteronomy 26 @defer(2022-03-15) @due(2022-03-15) 222 | - Deuteronomy 27 @defer(2022-03-15) @due(2022-03-15) 223 | - Mark 14 @defer(2022-03-15) @due(2022-03-15) 224 | - Deuteronomy 28 @defer(2022-03-16) @due(2022-03-16) 225 | - Deuteronomy 29 @defer(2022-03-16) @due(2022-03-16) 226 | - Deuteronomy 30 @defer(2022-03-17) @due(2022-03-17) 227 | - Deuteronomy 31 @defer(2022-03-17) @due(2022-03-17) 228 | - Mark 15 @defer(2022-03-17) @due(2022-03-17) 229 | - Deuteronomy 32 @defer(2022-03-18) @due(2022-03-18) 230 | - Deuteronomy 33 @defer(2022-03-18) @due(2022-03-18) 231 | - Deuteronomy 34 @defer(2022-03-18) @due(2022-03-18) 232 | - Joshua 1 @defer(2022-03-19) @due(2022-03-19) 233 | - Joshua 2 @defer(2022-03-19) @due(2022-03-19) 234 | - Joshua 3 @defer(2022-03-19) @due(2022-03-19) 235 | - Mark 16 @defer(2022-03-19) @due(2022-03-19) 236 | - Joshua 4 @defer(2022-03-20) @due(2022-03-20) 237 | - Joshua 5 @defer(2022-03-20) @due(2022-03-20) 238 | - Joshua 6 @defer(2022-03-20) @due(2022-03-20) 239 | - Joshua 7 @defer(2022-03-20) @due(2022-03-20) 240 | - Joshua 8 @defer(2022-03-21) @due(2022-03-21) 241 | - Joshua 9 @defer(2022-03-21) @due(2022-03-21) 242 | - Joshua 10 @defer(2022-03-21) @due(2022-03-21) 243 | - Joshua 11 @defer(2022-03-22) @due(2022-03-22) 244 | - Joshua 12 @defer(2022-03-22) @due(2022-03-22) 245 | - Joshua 13 @defer(2022-03-22) @due(2022-03-22) 246 | - Joshua 14 @defer(2022-03-23) @due(2022-03-23) 247 | - Joshua 15 @defer(2022-03-23) @due(2022-03-23) 248 | - Luke 1 @defer(2022-03-23) @due(2022-03-23) 249 | - Joshua 16 @defer(2022-03-24) @due(2022-03-24) 250 | - Joshua 17 @defer(2022-03-24) @due(2022-03-24) 251 | - Joshua 18 @defer(2022-03-24) @due(2022-03-24) 252 | - Luke 2 @defer(2022-03-24) @due(2022-03-24) 253 | - Joshua 19 @defer(2022-03-25) @due(2022-03-25) 254 | - Joshua 20 @defer(2022-03-25) @due(2022-03-25) 255 | - Joshua 21 @defer(2022-03-25) @due(2022-03-25) 256 | - Joshua 22 @defer(2022-03-26) @due(2022-03-26) 257 | - Joshua 23 @defer(2022-03-26) @due(2022-03-26) 258 | - Joshua 24 @defer(2022-03-26) @due(2022-03-26) 259 | - Luke 3 @defer(2022-03-26) @due(2022-03-26) 260 | - Judges 1 @defer(2022-03-27) @due(2022-03-27) 261 | - Judges 2 @defer(2022-03-27) @due(2022-03-27) 262 | - Judges 3 @defer(2022-03-27) @due(2022-03-27) 263 | - Luke 4 @defer(2022-03-27) @due(2022-03-27) 264 | - Judges 4 @defer(2022-03-28) @due(2022-03-28) 265 | - Judges 5 @defer(2022-03-28) @due(2022-03-28) 266 | - Judges 6 @defer(2022-03-28) @due(2022-03-28) 267 | - Judges 7 @defer(2022-03-29) @due(2022-03-29) 268 | - Judges 8 @defer(2022-03-29) @due(2022-03-29) 269 | - Luke 5 @defer(2022-03-29) @due(2022-03-29) 270 | - Judges 9 @defer(2022-03-30) @due(2022-03-30) 271 | - Judges 10 @defer(2022-03-30) @due(2022-03-30) 272 | - Judges 11 @defer(2022-03-31) @due(2022-03-31) 273 | - Judges 12 @defer(2022-03-31) @due(2022-03-31) 274 | - Luke 6 @defer(2022-03-31) @due(2022-03-31) 275 | - Judges 13 @defer(2022-04-01) @due(2022-04-01) 276 | - Judges 14 @defer(2022-04-01) @due(2022-04-01) 277 | - Judges 15 @defer(2022-04-01) @due(2022-04-01) 278 | - Judges 16 @defer(2022-04-02) @due(2022-04-02) 279 | - Judges 17 @defer(2022-04-02) @due(2022-04-02) 280 | - Judges 18 @defer(2022-04-02) @due(2022-04-02) 281 | - Luke 7 @defer(2022-04-02) @due(2022-04-02) 282 | - Judges 19 @defer(2022-04-03) @due(2022-04-03) 283 | - Judges 20 @defer(2022-04-03) @due(2022-04-03) 284 | - Judges 21 @defer(2022-04-03) @due(2022-04-03) 285 | - Ruth @defer(2022-04-04) @due(2022-04-04) 286 | - 1 Samuel 1 @defer(2022-04-05) @due(2022-04-05) 287 | - 1 Samuel 2 @defer(2022-04-05) @due(2022-04-05) 288 | - 1 Samuel 3 @defer(2022-04-05) @due(2022-04-05) 289 | - Luke 8 @defer(2022-04-05) @due(2022-04-05) 290 | - 1 Samuel 4 @defer(2022-04-06) @due(2022-04-06) 291 | - 1 Samuel 5 @defer(2022-04-06) @due(2022-04-06) 292 | - 1 Samuel 6 @defer(2022-04-06) @due(2022-04-06) 293 | - 1 Samuel 7 @defer(2022-04-06) @due(2022-04-06) 294 | - 1 Samuel 8 @defer(2022-04-07) @due(2022-04-07) 295 | - 1 Samuel 9 @defer(2022-04-07) @due(2022-04-07) 296 | - 1 Samuel 10 @defer(2022-04-07) @due(2022-04-07) 297 | - 1 Samuel 11 @defer(2022-04-08) @due(2022-04-08) 298 | - 1 Samuel 12 @defer(2022-04-08) @due(2022-04-08) 299 | - Luke 9 @defer(2022-04-08) @due(2022-04-08) 300 | - 1 Samuel 13 @defer(2022-04-09) @due(2022-04-09) 301 | - 1 Samuel 14 @defer(2022-04-09) @due(2022-04-09) 302 | - 1 Samuel 15 @defer(2022-04-10) @due(2022-04-10) 303 | - 1 Samuel 16 @defer(2022-04-10) @due(2022-04-10) 304 | - Luke 10 @defer(2022-04-10) @due(2022-04-10) 305 | - 1 Samuel 17 @defer(2022-04-11) @due(2022-04-11) 306 | - 1 Samuel 18 @defer(2022-04-11) @due(2022-04-11) 307 | - Luke 11 @defer(2022-04-11) @due(2022-04-11) 308 | - 1 Samuel 19 @defer(2022-04-12) @due(2022-04-12) 309 | - 1 Samuel 20 @defer(2022-04-12) @due(2022-04-12) 310 | - 1 Samuel 21 @defer(2022-04-12) @due(2022-04-12) 311 | - 1 Samuel 22 @defer(2022-04-13) @due(2022-04-13) 312 | - 1 Samuel 23 @defer(2022-04-13) @due(2022-04-13) 313 | - 1 Samuel 24 @defer(2022-04-13) @due(2022-04-13) 314 | - 1 Samuel 25 @defer(2022-04-14) @due(2022-04-14) 315 | - 1 Samuel 26 @defer(2022-04-14) @due(2022-04-14) 316 | - Luke 12 @defer(2022-04-14) @due(2022-04-14) 317 | - 1 Samuel 27 @defer(2022-04-15) @due(2022-04-15) 318 | - 1 Samuel 28 @defer(2022-04-15) @due(2022-04-15) 319 | - 1 Samuel 29 @defer(2022-04-15) @due(2022-04-15) 320 | - 1 Samuel 30 @defer(2022-04-16) @due(2022-04-16) 321 | - 1 Samuel 31 @defer(2022-04-16) @due(2022-04-16) 322 | - Luke 13 @defer(2022-04-16) @due(2022-04-16) 323 | - 2 Samuel 1 @defer(2022-04-17) @due(2022-04-17) 324 | - 2 Samuel 2 @defer(2022-04-17) @due(2022-04-17) 325 | - Luke 14 @defer(2022-04-17) @due(2022-04-17) 326 | - 2 Samuel 3 @defer(2022-04-18) @due(2022-04-18) 327 | - 2 Samuel 4 @defer(2022-04-18) @due(2022-04-18) 328 | - 2 Samuel 5 @defer(2022-04-18) @due(2022-04-18) 329 | - 2 Samuel 6 @defer(2022-04-19) @due(2022-04-19) 330 | - 2 Samuel 7 @defer(2022-04-19) @due(2022-04-19) 331 | - 2 Samuel 8 @defer(2022-04-19) @due(2022-04-19) 332 | - 2 Samuel 9 @defer(2022-04-20) @due(2022-04-20) 333 | - 2 Samuel 10 @defer(2022-04-20) @due(2022-04-20) 334 | - 2 Samuel 11 @defer(2022-04-20) @due(2022-04-20) 335 | - Luke 15 @defer(2022-04-20) @due(2022-04-20) 336 | - 2 Samuel 12 @defer(2022-04-21) @due(2022-04-21) 337 | - 2 Samuel 13 @defer(2022-04-21) @due(2022-04-21) 338 | - Luke 16 @defer(2022-04-21) @due(2022-04-21) 339 | - 2 Samuel 14 @defer(2022-04-22) @due(2022-04-22) 340 | - 2 Samuel 15 @defer(2022-04-22) @due(2022-04-22) 341 | - Luke 17 @defer(2022-04-22) @due(2022-04-22) 342 | - 2 Samuel 16 @defer(2022-04-23) @due(2022-04-23) 343 | - 2 Samuel 17 @defer(2022-04-23) @due(2022-04-23) 344 | - 2 Samuel 18 @defer(2022-04-23) @due(2022-04-23) 345 | - 2 Samuel 19 @defer(2022-04-24) @due(2022-04-24) 346 | - 2 Samuel 20 @defer(2022-04-24) @due(2022-04-24) 347 | - Luke 18 @defer(2022-04-24) @due(2022-04-24) 348 | - 2 Samuel 21 @defer(2022-04-25) @due(2022-04-25) 349 | - 2 Samuel 22 @defer(2022-04-25) @due(2022-04-25) 350 | - 2 Samuel 23 @defer(2022-04-26) @due(2022-04-26) 351 | - 2 Samuel 24 @defer(2022-04-26) @due(2022-04-26) 352 | - Luke 19 @defer(2022-04-26) @due(2022-04-26) 353 | - 1 Kings 1 @defer(2022-04-27) @due(2022-04-27) 354 | - 1 Kings 2 @defer(2022-04-27) @due(2022-04-27) 355 | - 1 Kings 3 @defer(2022-04-28) @due(2022-04-28) 356 | - 1 Kings 4 @defer(2022-04-28) @due(2022-04-28) 357 | - 1 Kings 5 @defer(2022-04-28) @due(2022-04-28) 358 | - Luke 20 @defer(2022-04-28) @due(2022-04-28) 359 | - 1 Kings 6 @defer(2022-04-29) @due(2022-04-29) 360 | - 1 Kings 7 @defer(2022-04-29) @due(2022-04-29) 361 | - 1 Kings 8 @defer(2022-04-30) @due(2022-04-30) 362 | - 1 Kings 9 @defer(2022-04-30) @due(2022-04-30) 363 | - 1 Kings 10 @defer(2022-05-01) @due(2022-05-01) 364 | - 1 Kings 11 @defer(2022-05-01) @due(2022-05-01) 365 | - Luke 21 @defer(2022-05-01) @due(2022-05-01) 366 | - 1 Kings 12 @defer(2022-05-02) @due(2022-05-02) 367 | - 1 Kings 13 @defer(2022-05-02) @due(2022-05-02) 368 | - 1 Kings 14 @defer(2022-05-03) @due(2022-05-03) 369 | - 1 Kings 15 @defer(2022-05-03) @due(2022-05-03) 370 | - Luke 22 @defer(2022-05-03) @due(2022-05-03) 371 | - 1 Kings 16 @defer(2022-05-04) @due(2022-05-04) 372 | - 1 Kings 17 @defer(2022-05-04) @due(2022-05-04) 373 | - 1 Kings 18 @defer(2022-05-04) @due(2022-05-04) 374 | - 1 Kings 19 @defer(2022-05-05) @due(2022-05-05) 375 | - 1 Kings 20 @defer(2022-05-05) @due(2022-05-05) 376 | - Luke 23 @defer(2022-05-05) @due(2022-05-05) 377 | - 1 Kings 21 @defer(2022-05-06) @due(2022-05-06) 378 | - 1 Kings 22 @defer(2022-05-06) @due(2022-05-06) 379 | - 2 Kings 1 @defer(2022-05-07) @due(2022-05-07) 380 | - 2 Kings 2 @defer(2022-05-07) @due(2022-05-07) 381 | - 2 Kings 3 @defer(2022-05-07) @due(2022-05-07) 382 | - 2 Kings 4 @defer(2022-05-08) @due(2022-05-08) 383 | - 2 Kings 5 @defer(2022-05-08) @due(2022-05-08) 384 | - 2 Kings 6 @defer(2022-05-08) @due(2022-05-08) 385 | - Luke 24 @defer(2022-05-08) @due(2022-05-08) 386 | - 2 Kings 7 @defer(2022-05-09) @due(2022-05-09) 387 | - 2 Kings 8 @defer(2022-05-09) @due(2022-05-09) 388 | - 2 Kings 9 @defer(2022-05-09) @due(2022-05-09) 389 | - 2 Kings 10 @defer(2022-05-10) @due(2022-05-10) 390 | - 2 Kings 11 @defer(2022-05-10) @due(2022-05-10) 391 | - 2 Kings 12 @defer(2022-05-10) @due(2022-05-10) 392 | - John 1 @defer(2022-05-10) @due(2022-05-10) 393 | - 2 Kings 13 @defer(2022-05-11) @due(2022-05-11) 394 | - 2 Kings 14 @defer(2022-05-11) @due(2022-05-11) 395 | - John 2 @defer(2022-05-11) @due(2022-05-11) 396 | - 2 Kings 15 @defer(2022-05-12) @due(2022-05-12) 397 | - 2 Kings 16 @defer(2022-05-12) @due(2022-05-12) 398 | - John 3 @defer(2022-05-12) @due(2022-05-12) 399 | - 2 Kings 17 @defer(2022-05-13) @due(2022-05-13) 400 | - 2 Kings 18 @defer(2022-05-13) @due(2022-05-13) 401 | - 2 Kings 19 @defer(2022-05-14) @due(2022-05-14) 402 | - 2 Kings 20 @defer(2022-05-14) @due(2022-05-14) 403 | - 2 Kings 21 @defer(2022-05-14) @due(2022-05-14) 404 | - 2 Kings 22 @defer(2022-05-15) @due(2022-05-15) 405 | - 2 Kings 23 @defer(2022-05-15) @due(2022-05-15) 406 | - John 4 @defer(2022-05-15) @due(2022-05-15) 407 | - 2 Kings 24 @defer(2022-05-16) @due(2022-05-16) 408 | - 2 Kings 25 @defer(2022-05-16) @due(2022-05-16) 409 | - John 5 @defer(2022-05-16) @due(2022-05-16) 410 | - 1 Chronicles 1 @defer(2022-05-17) @due(2022-05-17) 411 | - 1 Chronicles 2 @defer(2022-05-17) @due(2022-05-17) 412 | - 1 Chronicles 3 @defer(2022-05-17) @due(2022-05-17) 413 | - 1 Chronicles 4 @defer(2022-05-18) @due(2022-05-18) 414 | - 1 Chronicles 5 @defer(2022-05-18) @due(2022-05-18) 415 | - 1 Chronicles 6 @defer(2022-05-18) @due(2022-05-18) 416 | - 1 Chronicles 7 @defer(2022-05-18) @due(2022-05-18) 417 | - 1 Chronicles 8 @defer(2022-05-19) @due(2022-05-19) 418 | - 1 Chronicles 9 @defer(2022-05-19) @due(2022-05-19) 419 | - 1 Chronicles 10 @defer(2022-05-19) @due(2022-05-19) 420 | - 1 Chronicles 11 @defer(2022-05-20) @due(2022-05-20) 421 | - 1 Chronicles 12 @defer(2022-05-20) @due(2022-05-20) 422 | - John 6 @defer(2022-05-20) @due(2022-05-20) 423 | - 1 Chronicles 13 @defer(2022-05-21) @due(2022-05-21) 424 | - 1 Chronicles 14 @defer(2022-05-21) @due(2022-05-21) 425 | - 1 Chronicles 15 @defer(2022-05-21) @due(2022-05-21) 426 | - John 7 @defer(2022-05-21) @due(2022-05-21) 427 | - 1 Chronicles 16 @defer(2022-05-22) @due(2022-05-22) 428 | - 1 Chronicles 17 @defer(2022-05-22) @due(2022-05-22) 429 | - 1 Chronicles 18 @defer(2022-05-22) @due(2022-05-22) 430 | - 1 Chronicles 19 @defer(2022-05-23) @due(2022-05-23) 431 | - 1 Chronicles 20 @defer(2022-05-23) @due(2022-05-23) 432 | - 1 Chronicles 21 @defer(2022-05-23) @due(2022-05-23) 433 | - John 8 @defer(2022-05-23) @due(2022-05-23) 434 | - 1 Chronicles 22 @defer(2022-05-24) @due(2022-05-24) 435 | - 1 Chronicles 23 @defer(2022-05-24) @due(2022-05-24) 436 | - 1 Chronicles 24 @defer(2022-05-24) @due(2022-05-24) 437 | - 1 Chronicles 25 @defer(2022-05-25) @due(2022-05-25) 438 | - 1 Chronicles 26 @defer(2022-05-25) @due(2022-05-25) 439 | - 1 Chronicles 27 @defer(2022-05-25) @due(2022-05-25) 440 | - 1 Chronicles 28 @defer(2022-05-26) @due(2022-05-26) 441 | - 1 Chronicles 29 @defer(2022-05-26) @due(2022-05-26) 442 | - John 9 @defer(2022-05-26) @due(2022-05-26) 443 | - 2 Chronicles 1 @defer(2022-05-27) @due(2022-05-27) 444 | - 2 Chronicles 2 @defer(2022-05-27) @due(2022-05-27) 445 | - 2 Chronicles 3 @defer(2022-05-27) @due(2022-05-27) 446 | - John 10 @defer(2022-05-27) @due(2022-05-27) 447 | - 2 Chronicles 4 @defer(2022-05-28) @due(2022-05-28) 448 | - 2 Chronicles 5 @defer(2022-05-28) @due(2022-05-28) 449 | - 2 Chronicles 6 @defer(2022-05-28) @due(2022-05-28) 450 | - 2 Chronicles 7 @defer(2022-05-29) @due(2022-05-29) 451 | - 2 Chronicles 8 @defer(2022-05-29) @due(2022-05-29) 452 | - 2 Chronicles 9 @defer(2022-05-29) @due(2022-05-29) 453 | - 2 Chronicles 10 @defer(2022-05-30) @due(2022-05-30) 454 | - 2 Chronicles 11 @defer(2022-05-30) @due(2022-05-30) 455 | - 2 Chronicles 12 @defer(2022-05-30) @due(2022-05-30) 456 | - John 11 @defer(2022-05-30) @due(2022-05-30) 457 | - 2 Chronicles 13 @defer(2022-05-31) @due(2022-05-31) 458 | - 2 Chronicles 14 @defer(2022-05-31) @due(2022-05-31) 459 | - 2 Chronicles 15 @defer(2022-06-01) @due(2022-06-01) 460 | - 2 Chronicles 16 @defer(2022-06-01) @due(2022-06-01) 461 | - John 12 @defer(2022-06-01) @due(2022-06-01) 462 | - 2 Chronicles 17 @defer(2022-06-02) @due(2022-06-02) 463 | - 2 Chronicles 18 @defer(2022-06-02) @due(2022-06-02) 464 | - John 13 @defer(2022-06-02) @due(2022-06-02) 465 | - 2 Chronicles 19 @defer(2022-06-03) @due(2022-06-03) 466 | - 2 Chronicles 20 @defer(2022-06-03) @due(2022-06-03) 467 | - 2 Chronicles 21 @defer(2022-06-04) @due(2022-06-04) 468 | - 2 Chronicles 22 @defer(2022-06-04) @due(2022-06-04) 469 | - John 14 @defer(2022-06-04) @due(2022-06-04) 470 | - 2 Chronicles 23 @defer(2022-06-05) @due(2022-06-05) 471 | - 2 Chronicles 24 @defer(2022-06-05) @due(2022-06-05) 472 | - John 15 @defer(2022-06-05) @due(2022-06-05) 473 | - 2 Chronicles 25 @defer(2022-06-06) @due(2022-06-06) 474 | - 2 Chronicles 26 @defer(2022-06-06) @due(2022-06-06) 475 | - 2 Chronicles 27 @defer(2022-06-06) @due(2022-06-06) 476 | - John 16 @defer(2022-06-06) @due(2022-06-06) 477 | - 2 Chronicles 28 @defer(2022-06-07) @due(2022-06-07) 478 | - 2 Chronicles 29 @defer(2022-06-07) @due(2022-06-07) 479 | - John 17 @defer(2022-06-07) @due(2022-06-07) 480 | - 2 Chronicles 30 @defer(2022-06-08) @due(2022-06-08) 481 | - 2 Chronicles 31 @defer(2022-06-08) @due(2022-06-08) 482 | - John 18 @defer(2022-06-08) @due(2022-06-08) 483 | - 2 Chronicles 32 @defer(2022-06-09) @due(2022-06-09) 484 | - 2 Chronicles 33 @defer(2022-06-09) @due(2022-06-09) 485 | - 2 Chronicles 34 @defer(2022-06-10) @due(2022-06-10) 486 | - 2 Chronicles 35 @defer(2022-06-10) @due(2022-06-10) 487 | - 2 Chronicles 36 @defer(2022-06-10) @due(2022-06-10) 488 | - John 19 @defer(2022-06-10) @due(2022-06-10) 489 | - Ezra 1 @defer(2022-06-11) @due(2022-06-11) 490 | - Ezra 2 @defer(2022-06-11) @due(2022-06-11) 491 | - Ezra 3 @defer(2022-06-12) @due(2022-06-12) 492 | - Ezra 4 @defer(2022-06-12) @due(2022-06-12) 493 | - Ezra 5 @defer(2022-06-12) @due(2022-06-12) 494 | - John 20 @defer(2022-06-12) @due(2022-06-12) 495 | - Ezra 6 @defer(2022-06-13) @due(2022-06-13) 496 | - Ezra 7 @defer(2022-06-13) @due(2022-06-13) 497 | - Ezra 8 @defer(2022-06-13) @due(2022-06-13) 498 | - John 21 @defer(2022-06-13) @due(2022-06-13) 499 | - Ezra 9 @defer(2022-06-14) @due(2022-06-14) 500 | - Ezra 10 @defer(2022-06-14) @due(2022-06-14) 501 | - Acts 1 @defer(2022-06-14) @due(2022-06-14) 502 | - Nehemiah 1 @defer(2022-06-15) @due(2022-06-15) 503 | - Nehemiah 2 @defer(2022-06-15) @due(2022-06-15) 504 | - Nehemiah 3 @defer(2022-06-15) @due(2022-06-15) 505 | - Nehemiah 4 @defer(2022-06-16) @due(2022-06-16) 506 | - Nehemiah 5 @defer(2022-06-16) @due(2022-06-16) 507 | - Nehemiah 6 @defer(2022-06-16) @due(2022-06-16) 508 | - Acts 2 @defer(2022-06-16) @due(2022-06-16) 509 | - Nehemiah 7 @defer(2022-06-17) @due(2022-06-17) 510 | - Nehemiah 8 @defer(2022-06-17) @due(2022-06-17) 511 | - Nehemiah 9 @defer(2022-06-17) @due(2022-06-17) 512 | - Acts 3 @defer(2022-06-17) @due(2022-06-17) 513 | - Nehemiah 10 @defer(2022-06-18) @due(2022-06-18) 514 | - Nehemiah 11 @defer(2022-06-18) @due(2022-06-18) 515 | - Acts 4 @defer(2022-06-18) @due(2022-06-18) 516 | - Nehemiah 12 @defer(2022-06-19) @due(2022-06-19) 517 | - Nehemiah 13 @defer(2022-06-19) @due(2022-06-19) 518 | - Esther 1 @defer(2022-06-20) @due(2022-06-20) 519 | - Esther 2 @defer(2022-06-20) @due(2022-06-20) 520 | - Acts 5 @defer(2022-06-20) @due(2022-06-20) 521 | - Esther 3 @defer(2022-06-21) @due(2022-06-21) 522 | - Esther 4 @defer(2022-06-21) @due(2022-06-21) 523 | - Esther 5 @defer(2022-06-21) @due(2022-06-21) 524 | - Esther 6 @defer(2022-06-22) @due(2022-06-22) 525 | - Esther 7 @defer(2022-06-22) @due(2022-06-22) 526 | - Esther 8 @defer(2022-06-22) @due(2022-06-22) 527 | - Acts 6 @defer(2022-06-22) @due(2022-06-22) 528 | - Esther 9 @defer(2022-06-23) @due(2022-06-23) 529 | - Esther 10 @defer(2022-06-23) @due(2022-06-23) 530 | - Acts 7 @defer(2022-06-23) @due(2022-06-23) 531 | - Job 1 @defer(2022-06-24) @due(2022-06-24) 532 | - Job 2 @defer(2022-06-24) @due(2022-06-24) 533 | - Job 3 @defer(2022-06-25) @due(2022-06-25) 534 | - Job 4 @defer(2022-06-25) @due(2022-06-25) 535 | - Job 5 @defer(2022-06-26) @due(2022-06-26) 536 | - Job 6 @defer(2022-06-26) @due(2022-06-26) 537 | - Job 7 @defer(2022-06-26) @due(2022-06-26) 538 | - Acts 8 @defer(2022-06-26) @due(2022-06-26) 539 | - Job 8 @defer(2022-06-27) @due(2022-06-27) 540 | - Job 9 @defer(2022-06-27) @due(2022-06-27) 541 | - Job 10 @defer(2022-06-27) @due(2022-06-27) 542 | - Job 11 @defer(2022-06-28) @due(2022-06-28) 543 | - Job 12 @defer(2022-06-28) @due(2022-06-28) 544 | - Job 13 @defer(2022-06-28) @due(2022-06-28) 545 | - Acts 9 @defer(2022-06-28) @due(2022-06-28) 546 | - Job 14 @defer(2022-06-29) @due(2022-06-29) 547 | - Job 15 @defer(2022-06-29) @due(2022-06-29) 548 | - Job 16 @defer(2022-06-29) @due(2022-06-29) 549 | - Job 17 @defer(2022-06-30) @due(2022-06-30) 550 | - Job 18 @defer(2022-06-30) @due(2022-06-30) 551 | - Job 19 @defer(2022-06-30) @due(2022-06-30) 552 | - Job 20 @defer(2022-07-01) @due(2022-07-01) 553 | - Job 21 @defer(2022-07-01) @due(2022-07-01) 554 | - Acts 10 @defer(2022-07-01) @due(2022-07-01) 555 | - Job 22 @defer(2022-07-02) @due(2022-07-02) 556 | - Job 23 @defer(2022-07-02) @due(2022-07-02) 557 | - Job 24 @defer(2022-07-02) @due(2022-07-02) 558 | - Acts 11 @defer(2022-07-02) @due(2022-07-02) 559 | - Job 25 @defer(2022-07-03) @due(2022-07-03) 560 | - Job 26 @defer(2022-07-03) @due(2022-07-03) 561 | - Job 27 @defer(2022-07-03) @due(2022-07-03) 562 | - Acts 12 @defer(2022-07-03) @due(2022-07-03) 563 | - Job 28 @defer(2022-07-04) @due(2022-07-04) 564 | - Job 29 @defer(2022-07-04) @due(2022-07-04) 565 | - Acts 13 @defer(2022-07-04) @due(2022-07-04) 566 | - Job 30 @defer(2022-07-05) @due(2022-07-05) 567 | - Job 31 @defer(2022-07-05) @due(2022-07-05) 568 | - Job 32 @defer(2022-07-06) @due(2022-07-06) 569 | - Job 33 @defer(2022-07-06) @due(2022-07-06) 570 | - Acts 14 @defer(2022-07-06) @due(2022-07-06) 571 | - Job 34 @defer(2022-07-07) @due(2022-07-07) 572 | - Job 35 @defer(2022-07-07) @due(2022-07-07) 573 | - Acts 15 @defer(2022-07-07) @due(2022-07-07) 574 | - Job 36 @defer(2022-07-08) @due(2022-07-08) 575 | - Job 37 @defer(2022-07-08) @due(2022-07-08) 576 | - Job 38 @defer(2022-07-09) @due(2022-07-09) 577 | - Job 39 @defer(2022-07-09) @due(2022-07-09) 578 | - Job 40 @defer(2022-07-09) @due(2022-07-09) 579 | - Job 41 @defer(2022-07-10) @due(2022-07-10) 580 | - Job 42 @defer(2022-07-10) @due(2022-07-10) 581 | - Acts 16 @defer(2022-07-10) @due(2022-07-10) 582 | - Psalms 1 @defer(2022-07-11) @due(2022-07-11) 583 | - Psalms 2 @defer(2022-07-11) @due(2022-07-11) 584 | - Psalms 3 @defer(2022-07-11) @due(2022-07-11) 585 | - Acts 17 @defer(2022-07-11) @due(2022-07-11) 586 | - Psalms 4 @defer(2022-07-12) @due(2022-07-12) 587 | - Psalms 5 @defer(2022-07-12) @due(2022-07-12) 588 | - Psalms 6 @defer(2022-07-12) @due(2022-07-12) 589 | - Psalms 7 @defer(2022-07-13) @due(2022-07-13) 590 | - Psalms 8 @defer(2022-07-13) @due(2022-07-13) 591 | - Psalms 9 @defer(2022-07-13) @due(2022-07-13) 592 | - Acts 18 @defer(2022-07-13) @due(2022-07-13) 593 | - Psalms 10 @defer(2022-07-14) @due(2022-07-14) 594 | - Psalms 11 @defer(2022-07-14) @due(2022-07-14) 595 | - Psalms 12 @defer(2022-07-14) @due(2022-07-14) 596 | - Psalms 13 @defer(2022-07-15) @due(2022-07-15) 597 | - Psalms 14 @defer(2022-07-15) @due(2022-07-15) 598 | - Psalms 15 @defer(2022-07-15) @due(2022-07-15) 599 | - Acts 19 @defer(2022-07-15) @due(2022-07-15) 600 | - Psalms 16 @defer(2022-07-16) @due(2022-07-16) 601 | - Psalms 17 @defer(2022-07-16) @due(2022-07-16) 602 | - Acts 20 @defer(2022-07-16) @due(2022-07-16) 603 | - Psalms 18 @defer(2022-07-17) @due(2022-07-17) 604 | - Psalms 19 @defer(2022-07-17) @due(2022-07-17) 605 | - Psalms 20 @defer(2022-07-18) @due(2022-07-18) 606 | - Psalms 21 @defer(2022-07-18) @due(2022-07-18) 607 | - Psalms 22 @defer(2022-07-18) @due(2022-07-18) 608 | - Psalms 23 @defer(2022-07-19) @due(2022-07-19) 609 | - Psalms 24 @defer(2022-07-19) @due(2022-07-19) 610 | - Psalms 25 @defer(2022-07-19) @due(2022-07-19) 611 | - Acts 21 @defer(2022-07-19) @due(2022-07-19) 612 | - Psalms 26 @defer(2022-07-20) @due(2022-07-20) 613 | - Psalms 27 @defer(2022-07-20) @due(2022-07-20) 614 | - Psalms 28 @defer(2022-07-20) @due(2022-07-20) 615 | - Acts 22 @defer(2022-07-20) @due(2022-07-20) 616 | - Psalms 29 @defer(2022-07-21) @due(2022-07-21) 617 | - Psalms 30 @defer(2022-07-21) @due(2022-07-21) 618 | - Acts 23 @defer(2022-07-21) @due(2022-07-21) 619 | - Psalms 31 @defer(2022-07-22) @due(2022-07-22) 620 | - Psalms 32 @defer(2022-07-22) @due(2022-07-22) 621 | - Psalms 33 @defer(2022-07-23) @due(2022-07-23) 622 | - Psalms 34 @defer(2022-07-23) @due(2022-07-23) 623 | - Acts 24 @defer(2022-07-23) @due(2022-07-23) 624 | - Psalms 35 @defer(2022-07-24) @due(2022-07-24) 625 | - Psalms 36 @defer(2022-07-24) @due(2022-07-24) 626 | - Acts 25 @defer(2022-07-24) @due(2022-07-24) 627 | - Psalms 37 @defer(2022-07-25) @due(2022-07-25) 628 | - Psalms 38 @defer(2022-07-25) @due(2022-07-25) 629 | - Psalms 39 @defer(2022-07-25) @due(2022-07-25) 630 | - Acts 26 @defer(2022-07-25) @due(2022-07-25) 631 | - Psalms 40 @defer(2022-07-26) @due(2022-07-26) 632 | - Psalms 41 @defer(2022-07-26) @due(2022-07-26) 633 | - Psalms 42 @defer(2022-07-26) @due(2022-07-26) 634 | - Acts 27 @defer(2022-07-26) @due(2022-07-26) 635 | - Psalms 43 @defer(2022-07-27) @due(2022-07-27) 636 | - Psalms 44 @defer(2022-07-27) @due(2022-07-27) 637 | - Psalms 45 @defer(2022-07-27) @due(2022-07-27) 638 | - Psalms 46 @defer(2022-07-28) @due(2022-07-28) 639 | - Psalms 47 @defer(2022-07-28) @due(2022-07-28) 640 | - Psalms 48 @defer(2022-07-28) @due(2022-07-28) 641 | - Acts 28 @defer(2022-07-28) @due(2022-07-28) 642 | - Psalms 49 @defer(2022-07-29) @due(2022-07-29) 643 | - Psalms 50 @defer(2022-07-29) @due(2022-07-29) 644 | - Romans 1 @defer(2022-07-29) @due(2022-07-29) 645 | - Psalms 51 @defer(2022-07-30) @due(2022-07-30) 646 | - Psalms 52 @defer(2022-07-30) @due(2022-07-30) 647 | - Psalms 53 @defer(2022-07-30) @due(2022-07-30) 648 | - Romans 2 @defer(2022-07-30) @due(2022-07-30) 649 | - Psalms 54 @defer(2022-07-31) @due(2022-07-31) 650 | - Psalms 55 @defer(2022-07-31) @due(2022-07-31) 651 | - Psalms 56 @defer(2022-07-31) @due(2022-07-31) 652 | - Romans 3 @defer(2022-07-31) @due(2022-07-31) 653 | - Psalms 57 @defer(2022-08-01) @due(2022-08-01) 654 | - Psalms 58 @defer(2022-08-01) @due(2022-08-01) 655 | - Psalms 59 @defer(2022-08-01) @due(2022-08-01) 656 | - Romans 4 @defer(2022-08-01) @due(2022-08-01) 657 | - Psalms 60 @defer(2022-08-02) @due(2022-08-02) 658 | - Psalms 61 @defer(2022-08-02) @due(2022-08-02) 659 | - Psalms 62 @defer(2022-08-02) @due(2022-08-02) 660 | - Romans 5 @defer(2022-08-02) @due(2022-08-02) 661 | - Psalms 63 @defer(2022-08-03) @due(2022-08-03) 662 | - Psalms 64 @defer(2022-08-03) @due(2022-08-03) 663 | - Psalms 65 @defer(2022-08-03) @due(2022-08-03) 664 | - Romans 6 @defer(2022-08-03) @due(2022-08-03) 665 | - Psalms 66 @defer(2022-08-04) @due(2022-08-04) 666 | - Psalms 67 @defer(2022-08-04) @due(2022-08-04) 667 | - Romans 7 @defer(2022-08-04) @due(2022-08-04) 668 | - Psalms 68 @defer(2022-08-05) @due(2022-08-05) 669 | - Psalms 69 @defer(2022-08-05) @due(2022-08-05) 670 | - Psalms 70 @defer(2022-08-06) @due(2022-08-06) 671 | - Psalms 71 @defer(2022-08-06) @due(2022-08-06) 672 | - Romans 8 @defer(2022-08-06) @due(2022-08-06) 673 | - Psalms 72 @defer(2022-08-07) @due(2022-08-07) 674 | - Psalms 73 @defer(2022-08-07) @due(2022-08-07) 675 | - Romans 9 @defer(2022-08-07) @due(2022-08-07) 676 | - Psalms 74 @defer(2022-08-08) @due(2022-08-08) 677 | - Psalms 75 @defer(2022-08-08) @due(2022-08-08) 678 | - Psalms 76 @defer(2022-08-08) @due(2022-08-08) 679 | - Psalms 77 @defer(2022-08-09) @due(2022-08-09) 680 | - Psalms 78 @defer(2022-08-09) @due(2022-08-09) 681 | - Romans 10 @defer(2022-08-09) @due(2022-08-09) 682 | - Psalms 79 @defer(2022-08-10) @due(2022-08-10) 683 | - Psalms 80 @defer(2022-08-10) @due(2022-08-10) 684 | - Romans 11 @defer(2022-08-10) @due(2022-08-10) 685 | - Psalms 81 @defer(2022-08-11) @due(2022-08-11) 686 | - Psalms 82 @defer(2022-08-11) @due(2022-08-11) 687 | - Psalms 83 @defer(2022-08-11) @due(2022-08-11) 688 | - Psalms 84 @defer(2022-08-12) @due(2022-08-12) 689 | - Psalms 85 @defer(2022-08-12) @due(2022-08-12) 690 | - Psalms 86 @defer(2022-08-12) @due(2022-08-12) 691 | - Romans 12 @defer(2022-08-12) @due(2022-08-12) 692 | - Psalms 87 @defer(2022-08-13) @due(2022-08-13) 693 | - Psalms 88 @defer(2022-08-13) @due(2022-08-13) 694 | - Romans 13 @defer(2022-08-13) @due(2022-08-13) 695 | - Psalms 89 @defer(2022-08-14) @due(2022-08-14) 696 | - Psalms 90 @defer(2022-08-14) @due(2022-08-14) 697 | - Romans 14 @defer(2022-08-14) @due(2022-08-14) 698 | - Psalms 91 @defer(2022-08-15) @due(2022-08-15) 699 | - Psalms 92 @defer(2022-08-15) @due(2022-08-15) 700 | - Psalms 93 @defer(2022-08-15) @due(2022-08-15) 701 | - Romans 15 @defer(2022-08-15) @due(2022-08-15) 702 | - Psalms 94 @defer(2022-08-16) @due(2022-08-16) 703 | - Psalms 95 @defer(2022-08-16) @due(2022-08-16) 704 | - Psalms 96 @defer(2022-08-16) @due(2022-08-16) 705 | - Psalms 97 @defer(2022-08-17) @due(2022-08-17) 706 | - Psalms 98 @defer(2022-08-17) @due(2022-08-17) 707 | - Psalms 99 @defer(2022-08-17) @due(2022-08-17) 708 | - Romans 16 @defer(2022-08-17) @due(2022-08-17) 709 | - Psalms 100 @defer(2022-08-18) @due(2022-08-18) 710 | - Psalms 101 @defer(2022-08-18) @due(2022-08-18) 711 | - Psalms 102 @defer(2022-08-18) @due(2022-08-18) 712 | - 1 Corinthians 1 @defer(2022-08-18) @due(2022-08-18) 713 | - Psalms 103 @defer(2022-08-19) @due(2022-08-19) 714 | - Psalms 104 @defer(2022-08-19) @due(2022-08-19) 715 | - 1 Corinthians 2 @defer(2022-08-19) @due(2022-08-19) 716 | - Psalms 105 @defer(2022-08-20) @due(2022-08-20) 717 | - Psalms 106 @defer(2022-08-20) @due(2022-08-20) 718 | - 1 Corinthians 3 @defer(2022-08-20) @due(2022-08-20) 719 | - Psalms 107 @defer(2022-08-21) @due(2022-08-21) 720 | - Psalms 108 @defer(2022-08-21) @due(2022-08-21) 721 | - Psalms 109 @defer(2022-08-21) @due(2022-08-21) 722 | - 1 Corinthians 4 @defer(2022-08-21) @due(2022-08-21) 723 | - Psalms 110 @defer(2022-08-22) @due(2022-08-22) 724 | - Psalms 111 @defer(2022-08-22) @due(2022-08-22) 725 | - Psalms 112 @defer(2022-08-22) @due(2022-08-22) 726 | - 1 Corinthians 5 @defer(2022-08-22) @due(2022-08-22) 727 | - Psalms 113 @defer(2022-08-23) @due(2022-08-23) 728 | - Psalms 114 @defer(2022-08-23) @due(2022-08-23) 729 | - Psalms 115 @defer(2022-08-23) @due(2022-08-23) 730 | - 1 Corinthians 6 @defer(2022-08-23) @due(2022-08-23) 731 | - Psalms 116 @defer(2022-08-24) @due(2022-08-24) 732 | - Psalms 117 @defer(2022-08-24) @due(2022-08-24) 733 | - Psalms 118 @defer(2022-08-24) @due(2022-08-24) 734 | - 1 Corinthians 7 @defer(2022-08-24) @due(2022-08-24) 735 | - Psalms 119 @defer(2022-08-25) @due(2022-08-25) 736 | - Psalms 120 @defer(2022-08-26) @due(2022-08-26) 737 | - 1 Corinthians 8 @defer(2022-08-26) @due(2022-08-26) 738 | - Psalms 121 @defer(2022-08-27) @due(2022-08-27) 739 | - Psalms 122 @defer(2022-08-27) @due(2022-08-27) 740 | - 1 Corinthians 9 @defer(2022-08-27) @due(2022-08-27) 741 | - Psalms 123 @defer(2022-08-28) @due(2022-08-28) 742 | - Psalms 124 @defer(2022-08-28) @due(2022-08-28) 743 | - Psalms 125 @defer(2022-08-28) @due(2022-08-28) 744 | - 1 Corinthians 10 @defer(2022-08-28) @due(2022-08-28) 745 | - Psalms 126 @defer(2022-08-29) @due(2022-08-29) 746 | - Psalms 127 @defer(2022-08-29) @due(2022-08-29) 747 | - Psalms 128 @defer(2022-08-29) @due(2022-08-29) 748 | - Psalms 129 @defer(2022-08-30) @due(2022-08-30) 749 | - Psalms 130 @defer(2022-08-30) @due(2022-08-30) 750 | - Psalms 131 @defer(2022-08-30) @due(2022-08-30) 751 | - 1 Corinthians 11 @defer(2022-08-30) @due(2022-08-30) 752 | - Psalms 132 @defer(2022-08-31) @due(2022-08-31) 753 | - Psalms 133 @defer(2022-08-31) @due(2022-08-31) 754 | - Psalms 134 @defer(2022-08-31) @due(2022-08-31) 755 | - Psalms 135 @defer(2022-09-01) @due(2022-09-01) 756 | - Psalms 136 @defer(2022-09-01) @due(2022-09-01) 757 | - 1 Corinthians 12 @defer(2022-09-01) @due(2022-09-01) 758 | - Psalms 137 @defer(2022-09-02) @due(2022-09-02) 759 | - Psalms 138 @defer(2022-09-02) @due(2022-09-02) 760 | - Psalms 139 @defer(2022-09-02) @due(2022-09-02) 761 | - 1 Corinthians 13 @defer(2022-09-02) @due(2022-09-02) 762 | - Psalms 140 @defer(2022-09-03) @due(2022-09-03) 763 | - Psalms 141 @defer(2022-09-03) @due(2022-09-03) 764 | - Psalms 142 @defer(2022-09-03) @due(2022-09-03) 765 | - Psalms 143 @defer(2022-09-04) @due(2022-09-04) 766 | - Psalms 144 @defer(2022-09-04) @due(2022-09-04) 767 | - Psalms 145 @defer(2022-09-04) @due(2022-09-04) 768 | - 1 Corinthians 14 @defer(2022-09-04) @due(2022-09-04) 769 | - Psalms 146 @defer(2022-09-05) @due(2022-09-05) 770 | - Psalms 147 @defer(2022-09-05) @due(2022-09-05) 771 | - 1 Corinthians 15 @defer(2022-09-05) @due(2022-09-05) 772 | - Psalms 148 @defer(2022-09-06) @due(2022-09-06) 773 | - Psalms 149 @defer(2022-09-06) @due(2022-09-06) 774 | - Psalms 150 @defer(2022-09-06) @due(2022-09-06) 775 | - Proverbs 1 @defer(2022-09-07) @due(2022-09-07) 776 | - Proverbs 2 @defer(2022-09-07) @due(2022-09-07) 777 | - 1 Corinthians 16 @defer(2022-09-07) @due(2022-09-07) 778 | - Proverbs 3 @defer(2022-09-08) @due(2022-09-08) 779 | - Proverbs 4 @defer(2022-09-08) @due(2022-09-08) 780 | - Proverbs 5 @defer(2022-09-08) @due(2022-09-08) 781 | - 2 Corinthians 1 @defer(2022-09-08) @due(2022-09-08) 782 | - Proverbs 6 @defer(2022-09-09) @due(2022-09-09) 783 | - Proverbs 7 @defer(2022-09-09) @due(2022-09-09) 784 | - 2 Corinthians 2 @defer(2022-09-09) @due(2022-09-09) 785 | - Proverbs 8 @defer(2022-09-10) @due(2022-09-10) 786 | - Proverbs 9 @defer(2022-09-10) @due(2022-09-10) 787 | - 2 Corinthians 3 @defer(2022-09-10) @due(2022-09-10) 788 | - Proverbs 10 @defer(2022-09-11) @due(2022-09-11) 789 | - Proverbs 11 @defer(2022-09-11) @due(2022-09-11) 790 | - Proverbs 12 @defer(2022-09-11) @due(2022-09-11) 791 | - 2 Corinthians 4 @defer(2022-09-11) @due(2022-09-11) 792 | - Proverbs 13 @defer(2022-09-12) @due(2022-09-12) 793 | - Proverbs 14 @defer(2022-09-12) @due(2022-09-12) 794 | - Proverbs 15 @defer(2022-09-12) @due(2022-09-12) 795 | - 2 Corinthians 5 @defer(2022-09-12) @due(2022-09-12) 796 | - Proverbs 16 @defer(2022-09-13) @due(2022-09-13) 797 | - Proverbs 17 @defer(2022-09-13) @due(2022-09-13) 798 | - Proverbs 18 @defer(2022-09-13) @due(2022-09-13) 799 | - 2 Corinthians 6 @defer(2022-09-13) @due(2022-09-13) 800 | - Proverbs 19 @defer(2022-09-14) @due(2022-09-14) 801 | - Proverbs 20 @defer(2022-09-14) @due(2022-09-14) 802 | - Proverbs 21 @defer(2022-09-14) @due(2022-09-14) 803 | - 2 Corinthians 7 @defer(2022-09-14) @due(2022-09-14) 804 | - Proverbs 22 @defer(2022-09-15) @due(2022-09-15) 805 | - Proverbs 23 @defer(2022-09-15) @due(2022-09-15) 806 | - Proverbs 24 @defer(2022-09-15) @due(2022-09-15) 807 | - 2 Corinthians 8 @defer(2022-09-15) @due(2022-09-15) 808 | - Proverbs 25 @defer(2022-09-16) @due(2022-09-16) 809 | - Proverbs 26 @defer(2022-09-16) @due(2022-09-16) 810 | - 2 Corinthians 9 @defer(2022-09-16) @due(2022-09-16) 811 | - Proverbs 27 @defer(2022-09-17) @due(2022-09-17) 812 | - Proverbs 28 @defer(2022-09-17) @due(2022-09-17) 813 | - Proverbs 29 @defer(2022-09-17) @due(2022-09-17) 814 | - 2 Corinthians 10 @defer(2022-09-17) @due(2022-09-17) 815 | - Proverbs 30 @defer(2022-09-18) @due(2022-09-18) 816 | - Proverbs 31 @defer(2022-09-18) @due(2022-09-18) 817 | - 2 Corinthians 11 @defer(2022-09-18) @due(2022-09-18) 818 | - Ecclesiastes 1 @defer(2022-09-19) @due(2022-09-19) 819 | - Ecclesiastes 2 @defer(2022-09-19) @due(2022-09-19) 820 | - Ecclesiastes 3 @defer(2022-09-19) @due(2022-09-19) 821 | - Ecclesiastes 4 @defer(2022-09-20) @due(2022-09-20) 822 | - Ecclesiastes 5 @defer(2022-09-20) @due(2022-09-20) 823 | - Ecclesiastes 6 @defer(2022-09-20) @due(2022-09-20) 824 | - 2 Corinthians 12 @defer(2022-09-20) @due(2022-09-20) 825 | - Ecclesiastes 7 @defer(2022-09-21) @due(2022-09-21) 826 | - Ecclesiastes 8 @defer(2022-09-21) @due(2022-09-21) 827 | - Ecclesiastes 9 @defer(2022-09-21) @due(2022-09-21) 828 | - 2 Corinthians 13 @defer(2022-09-21) @due(2022-09-21) 829 | - Ecclesiastes 10 @defer(2022-09-22) @due(2022-09-22) 830 | - Ecclesiastes 11 @defer(2022-09-22) @due(2022-09-22) 831 | - Ecclesiastes 12 @defer(2022-09-22) @due(2022-09-22) 832 | - Galatians 1 @defer(2022-09-22) @due(2022-09-22) 833 | - Song of Songs 1 @defer(2022-09-23) @due(2022-09-23) 834 | - Song of Songs 2 @defer(2022-09-23) @due(2022-09-23) 835 | - Song of Songs 3 @defer(2022-09-23) @due(2022-09-23) 836 | - Galatians 2 @defer(2022-09-23) @due(2022-09-23) 837 | - Song of Songs 4 @defer(2022-09-24) @due(2022-09-24) 838 | - Song of Songs 5 @defer(2022-09-24) @due(2022-09-24) 839 | - Galatians 3 @defer(2022-09-24) @due(2022-09-24) 840 | - Song of Songs 6 @defer(2022-09-25) @due(2022-09-25) 841 | - Song of Songs 7 @defer(2022-09-25) @due(2022-09-25) 842 | - Song of Songs 8 @defer(2022-09-25) @due(2022-09-25) 843 | - Galatians 4 @defer(2022-09-25) @due(2022-09-25) 844 | - Isaiah 1 @defer(2022-09-26) @due(2022-09-26) 845 | - Isaiah 2 @defer(2022-09-26) @due(2022-09-26) 846 | - Galatians 5 @defer(2022-09-26) @due(2022-09-26) 847 | - Isaiah 3 @defer(2022-09-27) @due(2022-09-27) 848 | - Isaiah 4 @defer(2022-09-27) @due(2022-09-27) 849 | - Galatians 6 @defer(2022-09-27) @due(2022-09-27) 850 | - Isaiah 5 @defer(2022-09-28) @due(2022-09-28) 851 | - Isaiah 6 @defer(2022-09-28) @due(2022-09-28) 852 | - Ephesians 1 @defer(2022-09-28) @due(2022-09-28) 853 | - Isaiah 7 @defer(2022-09-29) @due(2022-09-29) 854 | - Isaiah 8 @defer(2022-09-29) @due(2022-09-29) 855 | - Ephesians 2 @defer(2022-09-29) @due(2022-09-29) 856 | - Isaiah 9 @defer(2022-09-30) @due(2022-09-30) 857 | - Isaiah 10 @defer(2022-09-30) @due(2022-09-30) 858 | - Ephesians 3 @defer(2022-09-30) @due(2022-09-30) 859 | - Isaiah 11 @defer(2022-10-01) @due(2022-10-01) 860 | - Isaiah 12 @defer(2022-10-01) @due(2022-10-01) 861 | - Isaiah 13 @defer(2022-10-01) @due(2022-10-01) 862 | - Ephesians 4 @defer(2022-10-01) @due(2022-10-01) 863 | - Isaiah 14 @defer(2022-10-02) @due(2022-10-02) 864 | - Isaiah 15 @defer(2022-10-02) @due(2022-10-02) 865 | - Isaiah 16 @defer(2022-10-02) @due(2022-10-02) 866 | - Isaiah 17 @defer(2022-10-03) @due(2022-10-03) 867 | - Isaiah 18 @defer(2022-10-03) @due(2022-10-03) 868 | - Isaiah 19 @defer(2022-10-03) @due(2022-10-03) 869 | - Ephesians 5 @defer(2022-10-03) @due(2022-10-03) 870 | - Isaiah 20 @defer(2022-10-04) @due(2022-10-04) 871 | - Isaiah 21 @defer(2022-10-04) @due(2022-10-04) 872 | - Isaiah 22 @defer(2022-10-04) @due(2022-10-04) 873 | - Ephesians 6 @defer(2022-10-04) @due(2022-10-04) 874 | - Isaiah 23 @defer(2022-10-05) @due(2022-10-05) 875 | - Isaiah 24 @defer(2022-10-05) @due(2022-10-05) 876 | - Isaiah 25 @defer(2022-10-05) @due(2022-10-05) 877 | - Philippians 1 @defer(2022-10-05) @due(2022-10-05) 878 | - Isaiah 26 @defer(2022-10-06) @due(2022-10-06) 879 | - Isaiah 27 @defer(2022-10-06) @due(2022-10-06) 880 | - Philippians 2 @defer(2022-10-06) @due(2022-10-06) 881 | - Isaiah 28 @defer(2022-10-07) @due(2022-10-07) 882 | - Isaiah 29 @defer(2022-10-07) @due(2022-10-07) 883 | - Philippians 3 @defer(2022-10-07) @due(2022-10-07) 884 | - Isaiah 30 @defer(2022-10-08) @due(2022-10-08) 885 | - Isaiah 31 @defer(2022-10-08) @due(2022-10-08) 886 | - Philippians 4 @defer(2022-10-08) @due(2022-10-08) 887 | - Isaiah 32 @defer(2022-10-09) @due(2022-10-09) 888 | - Isaiah 33 @defer(2022-10-09) @due(2022-10-09) 889 | - Colossians 1 @defer(2022-10-09) @due(2022-10-09) 890 | - Isaiah 34 @defer(2022-10-10) @due(2022-10-10) 891 | - Isaiah 35 @defer(2022-10-10) @due(2022-10-10) 892 | - Isaiah 36 @defer(2022-10-10) @due(2022-10-10) 893 | - Colossians 2 @defer(2022-10-10) @due(2022-10-10) 894 | - Isaiah 37 @defer(2022-10-11) @due(2022-10-11) 895 | - Isaiah 38 @defer(2022-10-11) @due(2022-10-11) 896 | - Colossians 3 @defer(2022-10-11) @due(2022-10-11) 897 | - Isaiah 39 @defer(2022-10-12) @due(2022-10-12) 898 | - Isaiah 40 @defer(2022-10-12) @due(2022-10-12) 899 | - Colossians 4 @defer(2022-10-12) @due(2022-10-12) 900 | - Isaiah 41 @defer(2022-10-13) @due(2022-10-13) 901 | - Isaiah 42 @defer(2022-10-13) @due(2022-10-13) 902 | - 1 Thessalonians 1 @defer(2022-10-13) @due(2022-10-13) 903 | - Isaiah 43 @defer(2022-10-14) @due(2022-10-14) 904 | - Isaiah 44 @defer(2022-10-14) @due(2022-10-14) 905 | - 1 Thessalonians 2 @defer(2022-10-14) @due(2022-10-14) 906 | - Isaiah 45 @defer(2022-10-15) @due(2022-10-15) 907 | - Isaiah 46 @defer(2022-10-15) @due(2022-10-15) 908 | - 1 Thessalonians 3 @defer(2022-10-15) @due(2022-10-15) 909 | - Isaiah 47 @defer(2022-10-16) @due(2022-10-16) 910 | - Isaiah 48 @defer(2022-10-16) @due(2022-10-16) 911 | - Isaiah 49 @defer(2022-10-16) @due(2022-10-16) 912 | - 1 Thessalonians 4 @defer(2022-10-16) @due(2022-10-16) 913 | - Isaiah 50 @defer(2022-10-17) @due(2022-10-17) 914 | - Isaiah 51 @defer(2022-10-17) @due(2022-10-17) 915 | - Isaiah 52 @defer(2022-10-17) @due(2022-10-17) 916 | - 1 Thessalonians 5 @defer(2022-10-17) @due(2022-10-17) 917 | - Isaiah 53 @defer(2022-10-18) @due(2022-10-18) 918 | - Isaiah 54 @defer(2022-10-18) @due(2022-10-18) 919 | - Isaiah 55 @defer(2022-10-18) @due(2022-10-18) 920 | - 2 Thessalonians 1 @defer(2022-10-18) @due(2022-10-18) 921 | - Isaiah 56 @defer(2022-10-19) @due(2022-10-19) 922 | - Isaiah 57 @defer(2022-10-19) @due(2022-10-19) 923 | - Isaiah 58 @defer(2022-10-19) @due(2022-10-19) 924 | - 2 Thessalonians 2 @defer(2022-10-19) @due(2022-10-19) 925 | - Isaiah 59 @defer(2022-10-20) @due(2022-10-20) 926 | - Isaiah 60 @defer(2022-10-20) @due(2022-10-20) 927 | - Isaiah 61 @defer(2022-10-20) @due(2022-10-20) 928 | - 2 Thessalonians 3 @defer(2022-10-20) @due(2022-10-20) 929 | - Isaiah 62 @defer(2022-10-21) @due(2022-10-21) 930 | - Isaiah 63 @defer(2022-10-21) @due(2022-10-21) 931 | - Isaiah 64 @defer(2022-10-21) @due(2022-10-21) 932 | - 1 Timothy 1 @defer(2022-10-21) @due(2022-10-21) 933 | - Isaiah 65 @defer(2022-10-22) @due(2022-10-22) 934 | - Isaiah 66 @defer(2022-10-22) @due(2022-10-22) 935 | - 1 Timothy 2 @defer(2022-10-22) @due(2022-10-22) 936 | - Jeremiah 1 @defer(2022-10-23) @due(2022-10-23) 937 | - Jeremiah 2 @defer(2022-10-23) @due(2022-10-23) 938 | - 1 Timothy 3 @defer(2022-10-23) @due(2022-10-23) 939 | - Jeremiah 3 @defer(2022-10-24) @due(2022-10-24) 940 | - Jeremiah 4 @defer(2022-10-24) @due(2022-10-24) 941 | - Jeremiah 5 @defer(2022-10-24) @due(2022-10-24) 942 | - 1 Timothy 4 @defer(2022-10-24) @due(2022-10-24) 943 | - Jeremiah 6 @defer(2022-10-25) @due(2022-10-25) 944 | - Jeremiah 7 @defer(2022-10-25) @due(2022-10-25) 945 | - Jeremiah 8 @defer(2022-10-25) @due(2022-10-25) 946 | - 1 Timothy 5 @defer(2022-10-25) @due(2022-10-25) 947 | - Jeremiah 9 @defer(2022-10-26) @due(2022-10-26) 948 | - Jeremiah 10 @defer(2022-10-26) @due(2022-10-26) 949 | - Jeremiah 11 @defer(2022-10-26) @due(2022-10-26) 950 | - 1 Timothy 6 @defer(2022-10-26) @due(2022-10-26) 951 | - Jeremiah 12 @defer(2022-10-27) @due(2022-10-27) 952 | - Jeremiah 13 @defer(2022-10-27) @due(2022-10-27) 953 | - Jeremiah 14 @defer(2022-10-27) @due(2022-10-27) 954 | - 2 Timothy 1 @defer(2022-10-27) @due(2022-10-27) 955 | - Jeremiah 15 @defer(2022-10-28) @due(2022-10-28) 956 | - Jeremiah 16 @defer(2022-10-28) @due(2022-10-28) 957 | - Jeremiah 17 @defer(2022-10-28) @due(2022-10-28) 958 | - 2 Timothy 2 @defer(2022-10-28) @due(2022-10-28) 959 | - Jeremiah 18 @defer(2022-10-29) @due(2022-10-29) 960 | - Jeremiah 19 @defer(2022-10-29) @due(2022-10-29) 961 | - 2 Timothy 3 @defer(2022-10-29) @due(2022-10-29) 962 | - Jeremiah 20 @defer(2022-10-30) @due(2022-10-30) 963 | - Jeremiah 21 @defer(2022-10-30) @due(2022-10-30) 964 | - 2 Timothy 4 @defer(2022-10-30) @due(2022-10-30) 965 | - Jeremiah 22 @defer(2022-10-31) @due(2022-10-31) 966 | - Jeremiah 23 @defer(2022-10-31) @due(2022-10-31) 967 | - Titus 1 @defer(2022-10-31) @due(2022-10-31) 968 | - Jeremiah 24 @defer(2022-11-01) @due(2022-11-01) 969 | - Jeremiah 25 @defer(2022-11-01) @due(2022-11-01) 970 | - Jeremiah 26 @defer(2022-11-01) @due(2022-11-01) 971 | - Titus 2 @defer(2022-11-01) @due(2022-11-01) 972 | - Jeremiah 27 @defer(2022-11-02) @due(2022-11-02) 973 | - Jeremiah 28 @defer(2022-11-02) @due(2022-11-02) 974 | - Jeremiah 29 @defer(2022-11-02) @due(2022-11-02) 975 | - Titus 3 @defer(2022-11-02) @due(2022-11-02) 976 | - Jeremiah 30 @defer(2022-11-03) @due(2022-11-03) 977 | - Jeremiah 31 @defer(2022-11-03) @due(2022-11-03) 978 | - Philemon 1 @defer(2022-11-03) @due(2022-11-03) 979 | - Jeremiah 32 @defer(2022-11-04) @due(2022-11-04) 980 | - Jeremiah 33 @defer(2022-11-04) @due(2022-11-04) 981 | - Hebrews 1 @defer(2022-11-04) @due(2022-11-04) 982 | - Jeremiah 34 @defer(2022-11-05) @due(2022-11-05) 983 | - Jeremiah 35 @defer(2022-11-05) @due(2022-11-05) 984 | - Jeremiah 36 @defer(2022-11-05) @due(2022-11-05) 985 | - Hebrews 2 @defer(2022-11-05) @due(2022-11-05) 986 | - Jeremiah 37 @defer(2022-11-06) @due(2022-11-06) 987 | - Jeremiah 38 @defer(2022-11-06) @due(2022-11-06) 988 | - Jeremiah 39 @defer(2022-11-06) @due(2022-11-06) 989 | - Hebrews 3 @defer(2022-11-06) @due(2022-11-06) 990 | - Jeremiah 40 @defer(2022-11-07) @due(2022-11-07) 991 | - Jeremiah 41 @defer(2022-11-07) @due(2022-11-07) 992 | - Jeremiah 42 @defer(2022-11-07) @due(2022-11-07) 993 | - Hebrews 4 @defer(2022-11-07) @due(2022-11-07) 994 | - Jeremiah 43 @defer(2022-11-08) @due(2022-11-08) 995 | - Jeremiah 44 @defer(2022-11-08) @due(2022-11-08) 996 | - Jeremiah 45 @defer(2022-11-08) @due(2022-11-08) 997 | - Hebrews 5 @defer(2022-11-08) @due(2022-11-08) 998 | - Jeremiah 46 @defer(2022-11-09) @due(2022-11-09) 999 | - Jeremiah 47 @defer(2022-11-09) @due(2022-11-09) 1000 | - Hebrews 6 @defer(2022-11-09) @due(2022-11-09) 1001 | - Jeremiah 48 @defer(2022-11-10) @due(2022-11-10) 1002 | - Jeremiah 49 @defer(2022-11-10) @due(2022-11-10) 1003 | - Hebrews 7 @defer(2022-11-10) @due(2022-11-10) 1004 | - Jeremiah 50 @defer(2022-11-11) @due(2022-11-11) 1005 | - Hebrews 8 @defer(2022-11-11) @due(2022-11-11) 1006 | - Jeremiah 51 @defer(2022-11-12) @due(2022-11-12) 1007 | - Jeremiah 52 @defer(2022-11-12) @due(2022-11-12) 1008 | - Hebrews 9 @defer(2022-11-12) @due(2022-11-12) 1009 | - Lamentations 1 @defer(2022-11-13) @due(2022-11-13) 1010 | - Lamentations 2 @defer(2022-11-13) @due(2022-11-13) 1011 | - Hebrews 10 @defer(2022-11-13) @due(2022-11-13) 1012 | - Lamentations 3 @defer(2022-11-14) @due(2022-11-14) 1013 | - Lamentations 4 @defer(2022-11-14) @due(2022-11-14) 1014 | - Lamentations 5 @defer(2022-11-14) @due(2022-11-14) 1015 | - Ezekiel 1 @defer(2022-11-15) @due(2022-11-15) 1016 | - Ezekiel 2 @defer(2022-11-15) @due(2022-11-15) 1017 | - Ezekiel 3 @defer(2022-11-16) @due(2022-11-16) 1018 | - Ezekiel 4 @defer(2022-11-16) @due(2022-11-16) 1019 | - Hebrews 11 @defer(2022-11-16) @due(2022-11-16) 1020 | - Ezekiel 5 @defer(2022-11-17) @due(2022-11-17) 1021 | - Ezekiel 6 @defer(2022-11-17) @due(2022-11-17) 1022 | - Ezekiel 7 @defer(2022-11-17) @due(2022-11-17) 1023 | - Hebrews 12 @defer(2022-11-17) @due(2022-11-17) 1024 | - Ezekiel 8 @defer(2022-11-18) @due(2022-11-18) 1025 | - Ezekiel 9 @defer(2022-11-18) @due(2022-11-18) 1026 | - Ezekiel 10 @defer(2022-11-18) @due(2022-11-18) 1027 | - Hebrews 13 @defer(2022-11-18) @due(2022-11-18) 1028 | - Ezekiel 11 @defer(2022-11-19) @due(2022-11-19) 1029 | - Ezekiel 12 @defer(2022-11-19) @due(2022-11-19) 1030 | - Ezekiel 13 @defer(2022-11-19) @due(2022-11-19) 1031 | - James 1 @defer(2022-11-19) @due(2022-11-19) 1032 | - Ezekiel 14 @defer(2022-11-20) @due(2022-11-20) 1033 | - Ezekiel 15 @defer(2022-11-20) @due(2022-11-20) 1034 | - James 2 @defer(2022-11-20) @due(2022-11-20) 1035 | - Ezekiel 16 @defer(2022-11-21) @due(2022-11-21) 1036 | - Ezekiel 17 @defer(2022-11-21) @due(2022-11-21) 1037 | - James 3 @defer(2022-11-21) @due(2022-11-21) 1038 | - Ezekiel 18 @defer(2022-11-22) @due(2022-11-22) 1039 | - Ezekiel 19 @defer(2022-11-22) @due(2022-11-22) 1040 | - James 4 @defer(2022-11-22) @due(2022-11-22) 1041 | - Ezekiel 20 @defer(2022-11-23) @due(2022-11-23) 1042 | - Ezekiel 21 @defer(2022-11-23) @due(2022-11-23) 1043 | - James 5 @defer(2022-11-23) @due(2022-11-23) 1044 | - Ezekiel 22 @defer(2022-11-24) @due(2022-11-24) 1045 | - Ezekiel 23 @defer(2022-11-24) @due(2022-11-24) 1046 | - 1 Peter 1 @defer(2022-11-24) @due(2022-11-24) 1047 | - Ezekiel 24 @defer(2022-11-25) @due(2022-11-25) 1048 | - Ezekiel 25 @defer(2022-11-25) @due(2022-11-25) 1049 | - Ezekiel 26 @defer(2022-11-25) @due(2022-11-25) 1050 | - 1 Peter 2 @defer(2022-11-25) @due(2022-11-25) 1051 | - Ezekiel 27 @defer(2022-11-26) @due(2022-11-26) 1052 | - Ezekiel 28 @defer(2022-11-26) @due(2022-11-26) 1053 | - Ezekiel 29 @defer(2022-11-26) @due(2022-11-26) 1054 | - 1 Peter 3 @defer(2022-11-26) @due(2022-11-26) 1055 | - Ezekiel 30 @defer(2022-11-27) @due(2022-11-27) 1056 | - Ezekiel 31 @defer(2022-11-27) @due(2022-11-27) 1057 | - Ezekiel 32 @defer(2022-11-27) @due(2022-11-27) 1058 | - 1 Peter 4 @defer(2022-11-27) @due(2022-11-27) 1059 | - Ezekiel 33 @defer(2022-11-28) @due(2022-11-28) 1060 | - Ezekiel 34 @defer(2022-11-28) @due(2022-11-28) 1061 | - 1 Peter 5 @defer(2022-11-28) @due(2022-11-28) 1062 | - Ezekiel 35 @defer(2022-11-29) @due(2022-11-29) 1063 | - Ezekiel 36 @defer(2022-11-29) @due(2022-11-29) 1064 | - 2 Peter 1 @defer(2022-11-29) @due(2022-11-29) 1065 | - Ezekiel 37 @defer(2022-11-30) @due(2022-11-30) 1066 | - Ezekiel 38 @defer(2022-11-30) @due(2022-11-30) 1067 | - Ezekiel 39 @defer(2022-11-30) @due(2022-11-30) 1068 | - 2 Peter 2 @defer(2022-11-30) @due(2022-11-30) 1069 | - Ezekiel 40 @defer(2022-12-01) @due(2022-12-01) 1070 | - Ezekiel 41 @defer(2022-12-01) @due(2022-12-01) 1071 | - 2 Peter 3 @defer(2022-12-01) @due(2022-12-01) 1072 | - Ezekiel 42 @defer(2022-12-02) @due(2022-12-02) 1073 | - Ezekiel 43 @defer(2022-12-02) @due(2022-12-02) 1074 | - Ezekiel 44 @defer(2022-12-02) @due(2022-12-02) 1075 | - 1 John 1 @defer(2022-12-02) @due(2022-12-02) 1076 | - Ezekiel 45 @defer(2022-12-03) @due(2022-12-03) 1077 | - Ezekiel 46 @defer(2022-12-03) @due(2022-12-03) 1078 | - 1 John 2 @defer(2022-12-03) @due(2022-12-03) 1079 | - Ezekiel 47 @defer(2022-12-04) @due(2022-12-04) 1080 | - Ezekiel 48 @defer(2022-12-04) @due(2022-12-04) 1081 | - 1 John 3 @defer(2022-12-04) @due(2022-12-04) 1082 | - Daniel 1 @defer(2022-12-05) @due(2022-12-05) 1083 | - Daniel 2 @defer(2022-12-05) @due(2022-12-05) 1084 | - 1 John 4 @defer(2022-12-05) @due(2022-12-05) 1085 | - Daniel 3 @defer(2022-12-06) @due(2022-12-06) 1086 | - Daniel 4 @defer(2022-12-06) @due(2022-12-06) 1087 | - 1 John 5 @defer(2022-12-06) @due(2022-12-06) 1088 | - Daniel 5 @defer(2022-12-07) @due(2022-12-07) 1089 | - Daniel 6 @defer(2022-12-07) @due(2022-12-07) 1090 | - Daniel 7 @defer(2022-12-07) @due(2022-12-07) 1091 | - 2 John 1 @defer(2022-12-07) @due(2022-12-07) 1092 | - Daniel 8 @defer(2022-12-08) @due(2022-12-08) 1093 | - Daniel 9 @defer(2022-12-08) @due(2022-12-08) 1094 | - Daniel 10 @defer(2022-12-08) @due(2022-12-08) 1095 | - 3 John 1 @defer(2022-12-08) @due(2022-12-08) 1096 | - Daniel 11 @defer(2022-12-09) @due(2022-12-09) 1097 | - Daniel 12 @defer(2022-12-09) @due(2022-12-09) 1098 | - Jude @defer(2022-12-09) @due(2022-12-09) 1099 | - Hosea 1 @defer(2022-12-10) @due(2022-12-10) 1100 | - Hosea 2 @defer(2022-12-10) @due(2022-12-10) 1101 | - Hosea 3 @defer(2022-12-10) @due(2022-12-10) 1102 | - Hosea 4 @defer(2022-12-10) @due(2022-12-10) 1103 | - Revelation 1 @defer(2022-12-10) @due(2022-12-10) 1104 | - Hosea 5 @defer(2022-12-11) @due(2022-12-11) 1105 | - Hosea 6 @defer(2022-12-11) @due(2022-12-11) 1106 | - Hosea 7 @defer(2022-12-11) @due(2022-12-11) 1107 | - Hosea 8 @defer(2022-12-11) @due(2022-12-11) 1108 | - Revelation 2 @defer(2022-12-11) @due(2022-12-11) 1109 | - Hosea 9 @defer(2022-12-12) @due(2022-12-12) 1110 | - Hosea 10 @defer(2022-12-12) @due(2022-12-12) 1111 | - Hosea 11 @defer(2022-12-12) @due(2022-12-12) 1112 | - Revelation 3 @defer(2022-12-12) @due(2022-12-12) 1113 | - Hosea 12 @defer(2022-12-13) @due(2022-12-13) 1114 | - Hosea 13 @defer(2022-12-13) @due(2022-12-13) 1115 | - Hosea 14 @defer(2022-12-13) @due(2022-12-13) 1116 | - Revelation 4 @defer(2022-12-13) @due(2022-12-13) 1117 | - Joel @defer(2022-12-14) @due(2022-12-14) 1118 | - Revelation 5 @defer(2022-12-14) @due(2022-12-14) 1119 | - Amos 1 @defer(2022-12-15) @due(2022-12-15) 1120 | - Amos 2 @defer(2022-12-15) @due(2022-12-15) 1121 | - Amos 3 @defer(2022-12-15) @due(2022-12-15) 1122 | - Revelation 6 @defer(2022-12-15) @due(2022-12-15) 1123 | - Amos 4 @defer(2022-12-16) @due(2022-12-16) 1124 | - Amos 5 @defer(2022-12-16) @due(2022-12-16) 1125 | - Amos 6 @defer(2022-12-16) @due(2022-12-16) 1126 | - Revelation 7 @defer(2022-12-16) @due(2022-12-16) 1127 | - Amos 7 @defer(2022-12-17) @due(2022-12-17) 1128 | - Amos 8 @defer(2022-12-17) @due(2022-12-17) 1129 | - Amos 9 @defer(2022-12-17) @due(2022-12-17) 1130 | - Revelation 8 @defer(2022-12-17) @due(2022-12-17) 1131 | - Obadiah @defer(2022-12-18) @due(2022-12-18) 1132 | - Revelation 9 @defer(2022-12-18) @due(2022-12-18) 1133 | - Jonah @defer(2022-12-19) @due(2022-12-19) 1134 | - Revelation 10 @defer(2022-12-19) @due(2022-12-19) 1135 | - Micah 1 @defer(2022-12-20) @due(2022-12-20) 1136 | - Micah 2 @defer(2022-12-20) @due(2022-12-20) 1137 | - Micah 3 @defer(2022-12-20) @due(2022-12-20) 1138 | - Revelation 11 @defer(2022-12-20) @due(2022-12-20) 1139 | - Micah 4 @defer(2022-12-21) @due(2022-12-21) 1140 | - Micah 5 @defer(2022-12-21) @due(2022-12-21) 1141 | - Revelation 12 @defer(2022-12-21) @due(2022-12-21) 1142 | - Micah 6 @defer(2022-12-22) @due(2022-12-22) 1143 | - Micah 7 @defer(2022-12-22) @due(2022-12-22) 1144 | - Revelation 13 @defer(2022-12-22) @due(2022-12-22) 1145 | - Nahum @defer(2022-12-23) @due(2022-12-23) 1146 | - Revelation 14 @defer(2022-12-23) @due(2022-12-23) 1147 | - Habakkuk @defer(2022-12-24) @due(2022-12-24) 1148 | - Revelation 15 @defer(2022-12-24) @due(2022-12-24) 1149 | - Zephaniah @defer(2022-12-25) @due(2022-12-25) 1150 | - Revelation 16 @defer(2022-12-25) @due(2022-12-25) 1151 | - Haggai @defer(2022-12-26) @due(2022-12-26) 1152 | - Revelation 17 @defer(2022-12-26) @due(2022-12-26) 1153 | - Zechariah 1 @defer(2022-12-27) @due(2022-12-27) 1154 | - Zechariah 2 @defer(2022-12-27) @due(2022-12-27) 1155 | - Zechariah 3 @defer(2022-12-27) @due(2022-12-27) 1156 | - Zechariah 4 @defer(2022-12-27) @due(2022-12-27) 1157 | - Revelation 18 @defer(2022-12-27) @due(2022-12-27) 1158 | - Zechariah 5 @defer(2022-12-28) @due(2022-12-28) 1159 | - Zechariah 6 @defer(2022-12-28) @due(2022-12-28) 1160 | - Zechariah 7 @defer(2022-12-28) @due(2022-12-28) 1161 | - Zechariah 8 @defer(2022-12-28) @due(2022-12-28) 1162 | - Revelation 19 @defer(2022-12-28) @due(2022-12-28) 1163 | - Zechariah 9 @defer(2022-12-29) @due(2022-12-29) 1164 | - Zechariah 10 @defer(2022-12-29) @due(2022-12-29) 1165 | - Zechariah 11 @defer(2022-12-29) @due(2022-12-29) 1166 | - Zechariah 12 @defer(2022-12-29) @due(2022-12-29) 1167 | - Revelation 20 @defer(2022-12-29) @due(2022-12-29) 1168 | - Zechariah 13 @defer(2022-12-30) @due(2022-12-30) 1169 | - Zechariah 14 @defer(2022-12-30) @due(2022-12-30) 1170 | - Revelation 21 @defer(2022-12-30) @due(2022-12-30) 1171 | - Malachi 1 @defer(2022-12-31) @due(2022-12-31) 1172 | - Malachi 2 @defer(2022-12-31) @due(2022-12-31) 1173 | - Malachi 3 @defer(2022-12-31) @due(2022-12-31) 1174 | - Malachi 4 @defer(2022-12-31) @due(2022-12-31) 1175 | - Revelation 22 @defer(2022-12-31) @due(2022-12-31) -------------------------------------------------------------------------------- /Daily Task Report/DailyTaskReport.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Daily Task Report/DailyTaskReport.applescript -------------------------------------------------------------------------------- /Daily Task Report/DailyTaskReport.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Daily Task Report/DailyTaskReport.scpt -------------------------------------------------------------------------------- /Daily Task Report/HazelRule.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Daily Task Report/HazelRule.jpg -------------------------------------------------------------------------------- /Daily Task Report/README.md: -------------------------------------------------------------------------------- 1 | # Daily Task Report 2 | 3 | I like keeping a log of the work I've done every day. And since I keep all of my work in OmniFocus, it only makes sense to automatically create a report off of yesterdays completed tasks. That's exactly what this script does. 4 | 5 | # Which File? 6 | 7 | You'll find two versions of the script - `.scpt` and `.applescript`. In order to run it from OmniFocus, you'll want to use the `.scpt` version. The `.applescript` format is purely there so you can view the code online. 8 | 9 | # Output 10 | 11 | It will generate a plain text file with the following format: 12 | 13 | ``` 14 | Weekday, Month Day, Year 15 | ------------------------ 16 | Project Name 17 | Task Name ----- HH:MM:SS AM/PM 18 | Task Name ----- HH:MM:SS AM/PM 19 | Task Name ----- HH:MM:SS AM/PM 20 | ------------------------ 21 | Project Name 22 | Task Name ----- HH:MM:SS AM/PM 23 | Task Name ----- HH:MM:SS AM/PM 24 | Task Name ----- HH:MM:SS AM/PM 25 | ``` 26 | 27 | # Running the Script 28 | 29 | You could manually run this every day, but I've found Hazel to be much more reliable than me. Here's a screenshot of the rule I use to run this: 30 | 31 | ![Hazel Rule](https://github.com/joebuhlig/OFScripts/blob/master/Daily%20Task%20Report/HazelRule.jpg) 32 | 33 | Note: If you're using Hazel for this you can run it one of two ways - embedded or external. You can embed the code in a Hazel action or link Hazel to an external script. If you're using the former, you'll need to pull the `hazelProcessFile` handler at the beginning and end of the script. So delete these two lines: 34 | 35 | `on hazelProcessFile(theFile)` 36 | 37 | `end hazelProcessFile` 38 | 39 | This handler is only used when the script is run as an external script in Hazel. 40 | 41 | # Setup 42 | 43 | All you need to do is tell it where you want to save the files. Change this line: 44 | 45 | `set filePath to "/Users/USERNAME/TaskReports/"` 46 | 47 | # Development 48 | 49 | I'm certainly open to the submission of Pull Requests to make this better. If you find issues and fix them, please let me know and I'll be happy to update and give you credit. 50 | -------------------------------------------------------------------------------- /Duration Titles/DurationTitles.applescript: -------------------------------------------------------------------------------- 1 | var of = Application('OmniFocus'); 2 | 3 | var doc = of.defaultDocument; 4 | 5 | var today = new Date(); 6 | var dueDate = new Date(today.setDate(today.getDate()+7)); 7 | var taskList = []; 8 | var flattenedTasks = doc.flattenedTasks.whose({effectivelyCompleted: false, effectivelyDropped: false}); 9 | 10 | flattenedTasks().forEach(function(task){ 11 | var splitString = task.name().split(" || "); 12 | var unit = ""; 13 | if (task.estimatedMinutes() !== null) { 14 | if (task.estimatedMinutes() > 1){ 15 | unit = " || " + task.estimatedMinutes() + " mins"; 16 | } else { 17 | unit = " || 1 min"; 18 | } 19 | } 20 | var newTitle = splitString[0] + unit; 21 | task.name = newTitle; 22 | }); 23 | 24 | of.synchronize(); -------------------------------------------------------------------------------- /Duration Titles/DurationTitles.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Duration Titles/DurationTitles.scpt -------------------------------------------------------------------------------- /Duration Titles/README.md: -------------------------------------------------------------------------------- 1 | # Duration Titles 2 | 3 | This script takes the Estimated Duration and appends it to the title of the task. The main reason for this is that the duration isn't easily accessed on iOS. So by putting it at the end of the task name, it now becomes visible everywhere you see the task. 4 | 5 | # Development 6 | 7 | I'm certainly open to the submission of Pull Requests to make this better. If you find issues and fix them, please let me know and I'll be happy to update and give you credit. 8 | -------------------------------------------------------------------------------- /GTD Mind Sweep Trigger List/gtd-mind-sweep-triggers.md: -------------------------------------------------------------------------------- 1 | # What has your attention? - Personal 2 | 3 | - Projects started, not completed 4 | 5 | - Projects that need to be started 6 | 7 | - Projects–other organizations 8 | service, community, volunteer, spiritual organization 9 | 10 | - Commitments/promises to others 11 | spouse, partner, children, parents, family, friends, professionals, returnable items 12 | 13 | - Communications to make/get 14 | calls, emails, faxes, cards, letters, thank-you’s 15 | 16 | - Upcoming events 17 | birthdays, anniversaries, weddings, graduations, outings, holidays, vacation, travel, dinners, parties, receptions, cultural events, sporting events 18 | 19 | - Family 20 | projects/activities with spouse, partner, children, parents, relatives 21 | 22 | - Administration 23 | home office supplies, equipment, phones, answering machines, computers, internet, TV, data backup, appliances, entertainment, filing, storage, tools 24 | 25 | - Leisure 26 | books, music, videos, travel, places to visit, people to visit, web browsing, photography, sports equipment, hobbies, cooking, recreation 27 | 28 | - Financial 29 | bills, banks, investments, loans, taxes, budget, insurance, mortgage, accountants 30 | 31 | - Legal 32 | wills, trusts, estate, legal affairs 33 | 34 | - Waiting for 35 | mail order, repairs, reimbursements, loaned items, information, rsvp’s 36 | 37 | - Home/household 38 | real estate, repairs, construction, remodeling, landlords, heating and A/C, plumbing, electricity, roofs, landscaping, driveways, garages, walls, floors, ceilings, decor, furniture, utilities, appliances, lights and wiring, kitchen stuff, laundry, places to clear, cleaning, organizing, storage areas 39 | 40 | - Health 41 | doctors, dentist, optometrist, specialists, checkups, diet, food, exercise 42 | 43 | - Personal development 44 | classes, seminars, education, coaching, career, creative expressions 45 | 46 | - Transportation 47 | autos, bikes, motorcycles, maintenance, repair, commuting, tickets, reservations 48 | 49 | - Clothes 50 | professional, casual, formal, sports, accessories, luggage, repairs, tailoring 51 | 52 | - Pets 53 | health, training, supplies 54 | 55 | - Errands 56 | hardware store, pharmacy, department stores, bank, cleaners, stationers, gifts, office supply, groceries 57 | 58 | - Community 59 | neighborhood, neighbors, service work, schools, civic involvements 60 | 61 | 62 | # What has your attention? - Professional 63 | 64 | - Projects started 65 | 66 | - not completed Projects that need to be started 67 | 68 | - “Look into” projects 69 | 70 | - Commitments/promises to others 71 | boss, partners, colleagues, subordinates, others in organization, other professionals, customers, other organizations 72 | 73 | - Communications to make/get 74 | calls, emails, voicemails, faxes, letters, memos 75 | 76 | - Writing to finish/submit 77 | reports, evaluations, reviews, proposals, articles, marketing material, instructions, summaries, minutes, rewrites and edits, status reporting, conversation and communication tracking 78 | 79 | - Meetings 80 | upcoming, need to be set or requested, need to be de-briefed 81 | 82 | - Read/review 83 | books, periodicals, articles, printouts, websites, blogs, RSS feeds 84 | 85 | - Financial 86 | cash, budget, balance sheet, P&L, forecasting, credit line, payables, receivables, petty cash, banks, investors, asset management 87 | 88 | - Planning/organizing 89 | goals, targets, objectives, business plans, marketing plans, financial plans, upcoming events, presentations, meetings, conferences, travel, vacation 90 | 91 | - Organization development 92 | org chart, restructuring, lines of authority, job descriptions, facilities, new systems, change initiatives, leadership, succession planning, culture 93 | 94 | - Administration 95 | legal issues, insurance, personnel, staffing, policies/procedures, training 96 | 97 | - Staff 98 | hiring, firing, reviews, staff development, communication, morale, feedback, compensation 99 | 100 | - Systems 101 | phones, computers, software, databases, office equipment, printers, faxes, filing, storage, furniture, fixtures, decorations, supplies, business cards, stationery, personal/electronic organizers 102 | 103 | - Sales 104 | customers, prospects, leads, sales process, training, relationship building, reporting, relationship tracking, customer service 105 | 106 | - Marketing/promotion 107 | campaigns, materials, public relations 108 | 109 | - Meetings 110 | upcoming, need to be set or requested, need to be de-briefed 111 | 112 | - Waiting for 113 | information, delegated projects/tasks, pieces of projects, replies to communications, responses to proposals, answers to questions, submitted items for response/reimbursement, tickets, external actions needed to happen to continue or complete projects...(decisions, changes, implementations, etc.), things ordered 114 | 115 | - Professional development 116 | training, seminars, things to learn, things to find out, skills to develop or practice, books to read, research, formal education (licensing, degrees), career research, resume 117 | 118 | - Wardrobe 119 | professional 120 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. -------------------------------------------------------------------------------- /Project Codes/ProjectCodes.applescript: -------------------------------------------------------------------------------- 1 | set notesDirectory to "/Users/joebuhlig/notes.joebuhlig/notes/" 2 | set projectsFileName to "project-codes.md" 3 | tell application "Finder" 4 | if exists (notesDirectory & projectsFileName) as POSIX file then 5 | else 6 | do shell script "echo '' > " & quoted form of (the POSIX path of (notesDirectory & projectsFileName)) 7 | end if 8 | end tell 9 | 10 | set projectsFilePath to (the POSIX path of (notesDirectory & projectsFileName)) 11 | 12 | set projectsList to last item of (read projectsFilePath using delimiter linefeed) 13 | if projectsList is not equal to "" then 14 | set oldDelimiters to AppleScript's text item delimiters 15 | set AppleScript's text item delimiters to " | " 16 | set dateCode to first text item of projectsList 17 | set AppleScript's text item delimiters to "-" 18 | set existingYear to text 3 thru 6 of (first text item of dateCode) 19 | set existingCode to last text item of dateCode 20 | set AppleScript's text item delimiters to oldDelimiters 21 | else 22 | set existingYear to "1900" 23 | end if 24 | set currentYear to year of (current date) as string 25 | if existingYear = currentYear then 26 | set newNumber to "0000" & ((existingCode as number) + 1) as string 27 | set numberString to text ((length of newNumber) - 3) thru (length of newNumber) of newNumber 28 | else 29 | set numberString to "0001" 30 | end if 31 | 32 | set newCode to currentYear & "-" & numberString 33 | set projectName to "%filltext:name=field 1%" 34 | 35 | set projectText to newCode & " | " & projectName 36 | do shell script "echo " & (quoted form of ("[[" & projectText & "]]")) & " >> " & (quoted form of projectsFilePath) 37 | do shell script "echo '' > " & notesDirectory & quoted form of projectText & ".md" 38 | return projectText 39 | -------------------------------------------------------------------------------- /Project Codes/README.md: -------------------------------------------------------------------------------- 1 | # Project Codes 2 | 3 | This is a TextExpander snippet that is designed to create a new project code with the project title collected on run. It will add a line to `project-codes.md` located in a notes directory defined within the script and create a new `.md` file in the directory. This is designed to work with nvAlt or nvUltra in a way that creates wiki links back to the project text file from `project-codes.md`. 4 | 5 | # Setup 6 | 7 | All you need to do is tell it where you want to save the files. Change this line: 8 | 9 | `set notesDirectory to "/Users/USERNAME/notes/"` 10 | 11 | Copy and paste it into [TextExpander](https://joebuhlig.com/go/textexpander) and you're all set. 12 | 13 | # Development 14 | 15 | I'm certainly open to the submission of Pull Requests to make this better. If you find issues and fix them, please let me know and I'll be happy to update and give you credit. 16 | -------------------------------------------------------------------------------- /Project Kanban Board/README.md: -------------------------------------------------------------------------------- 1 | # Project Kanban Board # 2 | 3 | This is a copy and tweak of the Omni Automation scripts used to create a Kanban board in OmniFocus. I really wanted it to work on projects vs tasks. Thus, this alteration. 4 | 5 | ## Installation ## 6 | 7 | Download the zip file and follow the same [instructions on the Omni Automation website](https://www.omni-automation.com/omnifocus/plug-in-kanban-board.html). 8 | 9 | ## Side Note ## 10 | 11 | I use a custom perspective to show the Kanban board itself, which is a deviation from the Omni scripts. Here's what that perspective looks like: 12 | 13 | ![](kanban-perspective.jpg) 14 | -------------------------------------------------------------------------------- /Project Kanban Board/kanban-perspective.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Project Kanban Board/kanban-perspective.jpg -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Project Kanban Board/of-kanban-board.omnifocusjs.zip -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/Clear.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | var action = new PlugIn.Action(function(selection, sender){ 3 | 4 | try { 5 | var parentTag = flattenedTags.byName("kanban") 6 | if(!parentTag){ 7 | var errMessage = "There is no “Kanban” tag. Please select “Display Board” from the “Kanban Board” sub-menu in the Automation menu to add the missing tag." 8 | throw new Error(errMessage) 9 | } 10 | 11 | if(parentTag.flattenedChildren.length > 0){ 12 | var tagSet = parentTag.flattenedChildren; 13 | 14 | selection.projects.forEach(task => { 15 | task.removeTags(tagSet) 16 | }) 17 | } 18 | } 19 | catch(err){ 20 | new Alert("Missing Tag", err.message).show() 21 | } 22 | }); 23 | 24 | action.validate = function(selection, sender){ 25 | return (selection.projects.length > 0 ) 26 | }; 27 | 28 | return action; 29 | })(); -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/Done.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | var action = new PlugIn.Action(function(selection, sender){ 3 | 4 | try { 5 | var parentTag = flattenedTags.byName("kanban") 6 | if(!parentTag){ 7 | var errMessage = "There is no “Kanban” tag. Please select “Display Board” from the “Kanban Board” sub-menu in the Automation menu to add the missing tag." 8 | throw new Error(errMessage) 9 | } 10 | 11 | var childTag = parentTag.children.byName("done") 12 | if(!childTag){ 13 | var errMessage = "There is no “Done” tag. Please select “Display Board” from the “Kanban Board” sub-menu in the Automation menu to add the missing tag." 14 | throw new Error(errMessage) 15 | } 16 | 17 | var tagSet = parentTag.flattenedChildren; 18 | 19 | selection.projects.forEach(task => { 20 | task.removeTags(tagSet) 21 | task.addTag(childTag) 22 | }) 23 | } 24 | catch(err){ 25 | new Alert("Missing Tag", err.message).show() 26 | } 27 | }); 28 | 29 | action.validate = function(selection, sender){ 30 | return (selection.projects.length > 0 ) 31 | }; 32 | 33 | return action; 34 | })(); -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/InProgress.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | var action = new PlugIn.Action(function(selection, sender){ 3 | 4 | try { 5 | var parentTag = flattenedTags.byName("kanban") 6 | if(!parentTag){ 7 | var errMessage = "There is no “Kanban” tag. Please select “Display Board” from the “Kanban Board” sub-menu in the Automation menu to add the missing tag." 8 | throw new Error(errMessage) 9 | } 10 | 11 | var childTag = parentTag.children.byName("in-progress") 12 | if(!childTag){ 13 | var errMessage = "There is no “In Progress” tag. Please select “Display Board” from the “Kanban Board” sub-menu in the Automation menu to add the missing tag." 14 | throw new Error(errMessage) 15 | } 16 | 17 | var tagSet = parentTag.flattenedChildren; 18 | 19 | // if called externally (from script) generate selection array 20 | if (typeof selection == 'undefined'){ 21 | // convert nodes into items 22 | nodes = document.editors[0].selectedNodes 23 | selectedItems = nodes.map((node) => {return node.object}) 24 | } else { 25 | selectedItems = selection.items 26 | } 27 | selection.projects.forEach(task => { 28 | task.removeTags(tagSet) 29 | task.addTag(childTag) 30 | }) 31 | } 32 | catch(err){ 33 | new Alert("Missing Tag", err.message).show() 34 | } 35 | }); 36 | 37 | action.validate = function(selection, sender){ 38 | // validation check. For example, are items selected? 39 | // if called externally (from script) generate selection array 40 | if (typeof selection == 'undefined'){ 41 | selNodesCount = document.editors[0].selectedNodes.length 42 | return (selNodesCount > 0) 43 | } else { 44 | return (selection.projects.length > 0) 45 | } 46 | }; 47 | 48 | return action; 49 | })(); -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/Setup.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | var action = new PlugIn.Action(function(selection, sender){ 3 | 4 | // IDENTIFY KANBAN TAG, CREATE IF MISSING 5 | var targetTag = flattenedTags.byName("kanban") || new Tag("kanban") 6 | 7 | // ADD KANBAN CATEGORIES IF MISSING 8 | var tagTitles = ["to-do", "in-progress", "waiting", "done"] 9 | tagTitles.forEach(title => { 10 | if (!targetTag.children.byName(title)){ 11 | new Tag(title, targetTag) 12 | } 13 | }) 14 | 15 | // REORDER THE CATEGORIES 16 | tagTitles.forEach(title => { 17 | var tag = targetTag.children.byName(title) 18 | moveTags([tag], targetTag) 19 | }) 20 | 21 | // SHOW THE TAGS 22 | var tagIDs = targetTag.children.map(tag => tag.id.primaryKey) 23 | var tagIDsString = tagIDs.join(",") 24 | URL.fromString("omnifocus:///perspective/kanban").open() 25 | 26 | }); 27 | 28 | return action; 29 | })(); -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/ToDo.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | var action = new PlugIn.Action(function(selection, sender){ 3 | 4 | try { 5 | var parentTag = flattenedTags.byName("kanban") 6 | if(!parentTag){ 7 | var errMessage = "There is no “Kanban” tag. Please select “Display Board” from the “Kanban Board” sub-menu in the Automation menu to add the missing tag." 8 | throw new Error(errMessage) 9 | } 10 | 11 | var childTag = parentTag.children.byName("to-do") 12 | if(!childTag){ 13 | var errMessage = "There is no “To Do” tag. Please select “Display Board” from the “Kanban Board” sub-menu in the Automation menu to add the missing tag." 14 | throw new Error(errMessage) 15 | } 16 | 17 | var tagSet = parentTag.flattenedChildren; 18 | 19 | selection.projects.forEach(task => { 20 | task.removeTags(tagSet) 21 | task.addTag(childTag) 22 | }) 23 | } 24 | catch(err){ 25 | new Alert("Missing Tag", err.message).show() 26 | } 27 | }); 28 | 29 | action.validate = function(selection, sender){ 30 | return (selection.projects.length > 0) 31 | }; 32 | 33 | return action; 34 | })(); -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/Waiting.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | var action = new PlugIn.Action(function(selection, sender){ 3 | 4 | try { 5 | var parentTag = flattenedTags.byName("kanban") 6 | if(!parentTag){ 7 | var errMessage = "There is no “Kanban” tag. Please select “Display Board” from the “Kanban Board” sub-menu in the Automation menu to add the missing tag." 8 | throw new Error(errMessage) 9 | } 10 | 11 | var childTag = parentTag.children.byName("waiting") 12 | if(!childTag){ 13 | var errMessage = "There is no “Waiting” tag. Please select “Display Board” from the “Kanban Board” sub-menu in the Automation menu to add the missing tag." 14 | throw new Error(errMessage) 15 | } 16 | 17 | var tagSet = parentTag.flattenedChildren; 18 | 19 | selection.projects.forEach(task => { 20 | task.removeTags(tagSet) 21 | task.addTag(childTag) 22 | }) 23 | } 24 | catch(err){ 25 | new Alert("Missing Tag", err.message).show() 26 | } 27 | }); 28 | 29 | action.validate = function(selection, sender){ 30 | return (selection.projects.length > 0 ) 31 | }; 32 | 33 | return action; 34 | })(); -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/aboutThisPlugin.js: -------------------------------------------------------------------------------- 1 | var _ = function(){ 2 | var action = new PlugIn.Action(function(selection){ 3 | versNum = this.plugIn.version.versionString 4 | pluginName = this.plugIn.displayName 5 | pluginID = this.plugIn.identifier 6 | pluginLibraries = this.plugIn.libraries 7 | if (pluginLibraries.length != 0){ 8 | libraryNames = [] 9 | pluginLibraries.forEach(function(aLibrary){ 10 | libraryName = aLibrary.name 11 | libraryVersion = aLibrary.version.versionString 12 | displayString = libraryName + ' v' + libraryVersion 13 | libraryNames.push(displayString) 14 | }) 15 | libraryNamesString = "LIBRARIES:" 16 | libraryNamesString = libraryNamesString + '\n' + libraryNames.join('\n') 17 | } else { 18 | libraryNamesString = "This plugin has no libraries." 19 | } 20 | alertTitle = pluginName + ' v.' + versNum 21 | descriptionString = "A plug-in for creating and maintaining a tag-based Kanban Board in OmniFocus. Based upon a concept and project by Serena (www.sleepyowl.ink)\n\nTo use, run the “Display Board” script to create the Kanban tags and display the board." 22 | companyURL = 'https://omni-automation.com/omnifocus' 23 | alertMessage = "©2021 Otto Automator" + '\n' 24 | alertMessage = alertMessage + pluginID + '\n' 25 | alertMessage = alertMessage + companyURL + '\n' + '\n' 26 | alertMessage = alertMessage + descriptionString + '\n' + '\n' 27 | alertMessage = alertMessage + libraryNamesString 28 | var alert = new Alert(alertTitle, alertMessage) 29 | alert.show() 30 | }); 31 | 32 | // routine determines if menu item is enabled 33 | action.validate = function(selection){ 34 | return true 35 | }; 36 | 37 | return action; 38 | }(); 39 | _; -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/en.lproj/Clear.strings: -------------------------------------------------------------------------------- 1 | "label" = "Clear"; 2 | "shortLable" = "Clear"; 3 | "mediumLable" = "Clear"; 4 | "longLabel" = "Clear"; -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/en.lproj/Done.strings: -------------------------------------------------------------------------------- 1 | "label" = "Done"; 2 | "shortLable" = "Done"; 3 | "mediumLable" = "Done"; 4 | "longLabel" = "Done"; -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/en.lproj/InProgress.strings: -------------------------------------------------------------------------------- 1 | "label" = "In Progress"; 2 | "shortLable" = "In Progress"; 3 | "mediumLable" = "In Progress"; 4 | "longLabel" = "In Progress"; -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/en.lproj/Setup.strings: -------------------------------------------------------------------------------- 1 | "label" = "Display Board"; 2 | "shortLable" = "Setup"; 3 | "mediumLable" = "Display Board"; 4 | "longLabel" = "Display Board"; -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/en.lproj/ToDo.strings: -------------------------------------------------------------------------------- 1 | "label" = "To Do"; 2 | "shortLable" = "To Do"; 3 | "mediumLable" = "To Do"; 4 | "longLabel" = "To Do"; -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/en.lproj/Waiting.strings: -------------------------------------------------------------------------------- 1 | "label" = "Waiting"; 2 | "shortLable" = "Waiting"; 3 | "mediumLable" = "Waiting"; 4 | "longLabel" = "Waiting"; -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/en.lproj/aboutThisPlugin.strings: -------------------------------------------------------------------------------- 1 | "label" = "About this PlugIn…"; 2 | "shortLable" = "About"; 3 | "mediumLable" = "About PlugIn…"; 4 | "longLabel" = "Information about this PlugIn"; -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/en.lproj/manifest.strings: -------------------------------------------------------------------------------- 1 | "com.omni-automation.of.kanban-board" = "Kanban Board"; -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-clear.png -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-done.png -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-in-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-in-progress.png -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-setup.png -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-to-do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-to-do.png -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-waiting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Project Kanban Board/of-kanban-board.omnifocusjs/Resources/kanban-waiting.png -------------------------------------------------------------------------------- /Project Kanban Board/of-kanban-board.omnifocusjs/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Otto Automator", 3 | "libraries": [], 4 | "identifier": "com.omni-automation.of.kanban-board", 5 | "version": "1.0", 6 | "description": "Create and maintain a tag-based Kanban Board in OmniFocus.", 7 | "actions": [ 8 | { 9 | "image": "icon.png", 10 | "identifier": "aboutThisPlugin" 11 | }, 12 | { 13 | "image": "kanban-setup.png", 14 | "identifier": "Setup" 15 | }, 16 | { 17 | "image": "kanban-to-do.png", 18 | "identifier": "ToDo" 19 | }, 20 | { 21 | "image": "kanban-in-progress.png", 22 | "identifier": "InProgress" 23 | }, 24 | { 25 | "image": "kanban-waiting.png", 26 | "identifier": "Waiting" 27 | }, 28 | { 29 | "image": "kanban-done.png", 30 | "identifier": "Done" 31 | }, 32 | { 33 | "image": "kanban-clear.png", 34 | "identifier": "Clear" 35 | } 36 | ], 37 | "defaultLocale": "en" 38 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OFScripts 2 | 3 | This is a repository of the automated systems I use to enhance OmniFocus. If you find errors or would like to contribute to these, feel free to send me a pull request. 4 | 5 | # Which Files? 6 | 7 | In each of the directories you'll find two versions of the script - `.scpt` and `.applescript`. In order to run them from OmniFocus, you'll want to use the `.scpt` version. The `.applescript` format is purely there so you can view the code online. 8 | 9 | # Auto-Parser 10 | 11 | This is a launch agent designed to automatically parse the inbox of OmniFocus behind the scenes. You can email into OmniFocus and have it automatically parsed into the correct project and context. It can even have due dates, defer dates, flags, and estimated time. 12 | 13 | To use it, you simply need to create a string that is to be parsed and pass it to the OmniFocus inbox. You can learn more about creating the string for this [here](http://joebuhlig.com/using-omnifocus-for-somedaymaybe-lists/). 14 | 15 | # Bible Reading Plan 16 | 17 | A taskpaper template for a one-year Bible reading plan project. 18 | 19 | # Daily Task Report 20 | 21 | I like keeping a log of the work I've done every day. And since I keep all of my work in OmniFocus, it only makes sense to automatically create a report off of yesterdays completed tasks. That's exactly what this script does. 22 | 23 | # Duration Titles 24 | 25 | This script takes the Estimated Duration and appends it to the title of the task. The main reason for this is that the duration isn't easily accessed on iOS. So by putting it at the end of the task name, it now becomes visible everywhere you see the task. 26 | 27 | # Project Codes 28 | 29 | A [TextExpander](https://joebuhlig.com/go/textexpander) snippet for creating and managing project codes. 30 | 31 | # Read Book Tasks 32 | 33 | I read books on a schedule so I needed a quick way to create tasks for how much to read in a day. This script adds these tasks automatically after asking a handful of questions about the book and your timeframe. You can learn more about it [here](http://joebuhlig.com/reading-books-on-a-schedule/). 34 | 35 | # Task Shuffle 36 | 37 | I've found that reviewing my idea lists generates more and new ideas if I can shuffle the tasks within a given project. So that's what this does. Select a project or projects and run this script to shuffle the tasks within each project. 38 | 39 | # Update Reviews 40 | 41 | If that flag beside the Review perspective drives you crazy, this is for you. You can set dates for your scheduled reviews and move the Next Review Date of each project forward to the next instance of your reviews. You can learn more about it [here](http://joebuhlig.com/scheduled-reviews-in-omnifocus/). 42 | 43 | # Weather Activation 44 | 45 | This is one of the more involved scripts I use. It will activate or deactivate a project in OmniFocus based on tomorrow's weather forecast. The project will go from On Hold to Active if it's being activated. It will go from Active to On Hold if deactivated. 46 | -------------------------------------------------------------------------------- /Read Book Tasks/README.md: -------------------------------------------------------------------------------- 1 | # Read Book Tasks 2 | 3 | I read books on a schedule so I needed a quick way to create tasks for how much to read in a day. This script adds these tasks automatically after asking a handful of questions about the book and your timeframe. You can learn more about it [here](http://joebuhlig.com/reading-books-on-a-schedule/). 4 | 5 | __You'll want to update the beginning line of the script with your Context of choice. If you don't and "Read" is not an available context, it will throw an error.__ 6 | 7 | __The default date format is set to "mmddyyyy". If your system uses "ddmmyyyy", please modify the second line of the script.__ 8 | 9 | Also, if you want an iOS version of this script and you have Workflow for iOS, [check this out](https://workflow.is/workflows/cece509a6fd6477d8d9e479f3f5df184). 10 | 11 | # Which File? 12 | 13 | You'll find two versions of the script - `.scpt` and `.applescript`. In order to run it from OmniFocus, you'll want to use the `.scpt` version. The `.applescript` format is purely there so you can view the code online. 14 | 15 | # Development 16 | 17 | I'm certainly open to the submission of Pull Requests to make this better. If you find issues and fix them, please let me know and I'll be happy to update and give you credit. 18 | -------------------------------------------------------------------------------- /Read Book Tasks/ReadBookTasks.applescript: -------------------------------------------------------------------------------- 1 | set myTag to "Read" 2 | set dateFormat to "mmddyyyy" -- choose "mmddyyyy" or "ddmmyyyy" based on your region 3 | 4 | set bookTitle to text returned of (display dialog "What's the title of the book?" default answer "") 5 | set numPages to text returned of (display dialog "How many pages are in the book?" default answer 0) as integer 6 | set startDate to text returned of (display dialog "When should this start?" default answer "yyyymmdd") 7 | set endDate to text returned of (display dialog "When should this end?" default answer "yyyymmdd") 8 | set deferYear to text 1 thru 4 of startDate 9 | set deferMonth to text 5 thru 6 of startDate 10 | set deferDay to text 7 thru 8 of startDate 11 | 12 | set endYear to text 1 thru 4 of endDate 13 | set endMonth to text 5 thru 6 of endDate 14 | set endDay to text 7 thru 8 of endDate 15 | 16 | if (dateFormat = "mmddyyyy") then 17 | set endDateString to endMonth & "/" & endDay & "/" & endYear 18 | set endDate to date endDateString 19 | set dateString to deferMonth & "/" & deferDay & "/" & deferYear 20 | set deferDate to date dateString 21 | else if (dateFormat = "ddmmyyyy") then 22 | set endDateString to endDay & "/" & endMonth & "/" & endYear 23 | set endDate to date endDateString 24 | set dateString to deferDay & "/" & deferMonth & "/" & deferYear 25 | set deferDate to date dateString 26 | end if 27 | 28 | set numDays to ((endDate - deferDate) div days) + 1 29 | 30 | tell application "OmniFocus" 31 | tell document of front window 32 | set pagesPer to numPages / numDays 33 | set startPage to 1 34 | set endPage to pagesPer as integer 35 | set i to 2 36 | set taskTitle to "Read pages " & startPage & " - " & endPage & " of " & bookTitle 37 | set theTag to first flattened tag where its name is myTag 38 | set newTask to make new inbox task with properties {name:taskTitle, defer date:deferDate, primary tag:theTag} 39 | repeat (numDays - 1) times 40 | set startPage to endPage + 1 41 | set endPage to round (pagesPer * i) rounding up 42 | set taskTitle to "Read pages " & startPage & " - " & endPage & " of " & bookTitle 43 | set deferDate to deferDate + (60 * 60 * 24) 44 | set newTask to make new inbox task with properties {name:taskTitle, defer date:deferDate, primary tag:theTag} 45 | set i to i + 1 46 | end repeat 47 | return bookTitle & ": " & numPages 48 | end tell 49 | end tell -------------------------------------------------------------------------------- /Read Book Tasks/ReadBookTasks.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Read Book Tasks/ReadBookTasks.scpt -------------------------------------------------------------------------------- /Sort Projects/README.md: -------------------------------------------------------------------------------- 1 | # Sort Projects # 2 | 3 | This is a simple script that sorts projects by name in the viewer. 4 | 5 | ## Installation ## 6 | 7 | Download the .omnifocusjs file and open the file on the device of your choice. 8 | -------------------------------------------------------------------------------- /Sort Projects/sort-projects.omnifocusjs: -------------------------------------------------------------------------------- 1 | /*{ 2 | "author": "Joe Buhlig", 3 | "targets": ["omnifocus"], 4 | "type": "action", 5 | "identifier": "com.joebuhlig.omnifocus.com.sort-projects", 6 | "version": "0.1", 7 | "description": "Sort projects by name", 8 | "label": "Sort Projects", 9 | "mediumLabel": "Sort Projects by name", 10 | "paletteLabel": "Sort Projects", 11 | }*/ 12 | (() => { 13 | var action = new PlugIn.Action(function(selection, sender) { 14 | const projects = flattenedProjects; 15 | if (projects.length > 1){ 16 | projects.sort((a, b) => { 17 | var x = a.name.toLowerCase(); 18 | var y = b.name.toLowerCase(); 19 | if (x < y) {return -1;} 20 | if (x > y) {return 1;} 21 | return 0; 22 | }) 23 | } 24 | 25 | projects.forEach(function(project, index){ 26 | var nextProject = []; 27 | nextProject.push(projectNamed(project.name)); 28 | if (index == 0){ 29 | moveSections(nextProject, library.beginning); 30 | } 31 | else { 32 | var previousProject = projects[index-1]; 33 | moveSections(nextProject, previousProject.after); 34 | } 35 | }) 36 | }) 37 | return action; 38 | })(); -------------------------------------------------------------------------------- /Task Shuffle/README.md: -------------------------------------------------------------------------------- 1 | # Task Shuffle 2 | 3 | I've found that reviewing my idea lists generates more and new ideas if I can shuffle the tasks within a given project. So that's what this does. Select a project or projects and run this script to shuffle the tasks within each project. 4 | 5 | # Which File? 6 | 7 | You'll find two versions of the script - `.scpt` and `.applescript`. In order to run it from OmniFocus, you'll want to use the `.scpt` version. The `.applescript` format is purely there so you can view the code online. 8 | 9 | # Development 10 | 11 | I'm certainly open to the submission of Pull Requests to make this better. If you find issues and fix them, please let me know and I'll be happy to update and give you credit. 12 | -------------------------------------------------------------------------------- /Task Shuffle/ShuffleTasks.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Task Shuffle/ShuffleTasks.applescript -------------------------------------------------------------------------------- /Task Shuffle/ShuffleTasks.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Task Shuffle/ShuffleTasks.scpt -------------------------------------------------------------------------------- /Update Reviews/README.md: -------------------------------------------------------------------------------- 1 | # Update OmniFocus Next Review Dates 2 | 3 | This script moves the review dates of your projects forward to your next scheduled review. The flag next to the Review perspective drives me crazy when I'm not going to do my review for a few days. You can learn more about why this script exists [here](http://joebuhlig.com/scheduled-reviews-in-omnifocus/). 4 | 5 | # Which File? 6 | 7 | You'll find two versions of the script - `.scpt` and `.applescript`. In order to run it from OmniFocus, you'll want to use the `.scpt` version. The `.applescript` format is purely there so you can view the code online. 8 | 9 | # Installation 10 | 11 | It's pretty simple to set this up as a one-click update. 12 | 13 | ## 1. Download and alter the script 14 | 15 | Download the script and change the dates to match your scheduled reviews. 16 | 17 | ``` 18 | -- weeklyReviewDay is the day of the week of your Weekly Review. 19 | set weeklyReviewDay to Friday 20 | -- monthlyReviewDay is the day of the month of your Monthly Review. 21 | set monthlyReviewDay to 1 22 | -- annualReviewMonth is the month of your Annual Review. 23 | set annualReviewMonth to January 24 | -- annualReviewDay is the day of the month for your Annual Review. 25 | set annualReviewDay to 1 26 | ``` 27 | 28 | ## 2. Place the script 29 | 30 | Open OmniFocus and go to the Help menu. From there you can choose Open Scripts Folder. Move the updated file to this folder. 31 | 32 | ## 3. Place the shortcut 33 | 34 | Now go to the View menu of OmniFocus and select Customize Toolbar. From there you can drag the script to your toolbar to make it super easy to run in the future. 35 | 36 | # Development 37 | 38 | I'm certainly open to the submission of Pull Requests to make this better. If you find issues and fix them, please let me know and I'll be happy to update and give you credit. 39 | 40 | # Credits 41 | 42 | A huge thanks to Tim Stringer at [Learn OmniFocus](http://learnomnifocus.com/?ref=11). He spent a lot of time testing and playing with this script to help make it more intuitive and accurate. 43 | -------------------------------------------------------------------------------- /Update Reviews/UpdateReviews-Hazel.applescript: -------------------------------------------------------------------------------- 1 | on hazelProcessFile(theFile) 2 | -- weeklyReviewDay is the day of the week of your Weekly Review. 3 | set weeklyReviewDay to Friday 4 | 5 | -- monthlyReviewDay is the day of the month of your Monthly Review. 6 | set monthlyReviewDay to 1 7 | 8 | -- annualReviewMonth is the month of your Annual Review. 9 | set annualReviewMonth to January 10 | 11 | -- annualReviewDay is the day of the month for your Annual Review. 12 | set annualReviewDay to 1 13 | 14 | -- Get the current date as a base for new review dates 15 | set nextWeeklyReview to current date 16 | set nextMonthlyReview to current date 17 | set nextAnnualReview to current date 18 | 19 | -- Get the next available review date for each scenario 20 | set nextWeeklyReview to nextWeekDay(nextWeeklyReview, weeklyReviewDay) 21 | set nextMonthlyReview to nextMonthDay(nextMonthlyReview, monthlyReviewDay) 22 | set nextAnnualReview to nextYearDay(nextAnnualReview, annualReviewMonth, annualReviewDay) 23 | 24 | -- Get the last review date for each scenario 25 | set lastWeeklyReview to lastWeekDay(nextWeeklyReview) 26 | set lastMonthlyReview to lastMonthDay(nextMonthlyReview) 27 | set lastAnnualReview to lastYearDay(nextAnnualReview) 28 | 29 | set projectCNT to 0 30 | 31 | tell application "OmniFocus" 32 | tell front document 33 | set theProjects to every flattened project where its status is active or its status is on hold 34 | repeat with projNum from 1 to length of theProjects 35 | 36 | set curProject to item projNum of theProjects 37 | set origReviewDate to next review date of curProject 38 | set reviewInterval to review interval of curProject 39 | set reviewUnits to unit of reviewInterval 40 | set reviewSteps to steps of reviewInterval 41 | if (reviewUnits = week and reviewSteps = 1) or (reviewUnits = day and reviewSteps = 7) then 42 | set curProject's last review date to lastWeeklyReview 43 | if curProject's next review date is not equal to origReviewDate then 44 | set projectCNT to projectCNT + 1 45 | end if 46 | else if (reviewUnits = month and reviewSteps = 1) then 47 | set curProject's last review date to lastMonthlyReview 48 | if curProject's next review date is not equal to origReviewDate then 49 | set projectCNT to projectCNT + 1 50 | end if 51 | else if (reviewUnits = year and reviewSteps = 1) then 52 | set curProject's last review date to lastAnnualReview 53 | if curProject's next review date is not equal to origReviewDate then 54 | set projectCNT to projectCNT + 1 55 | end if 56 | end if -- End reviewUnits 57 | 58 | end repeat -- End project loop 59 | end tell -- End tell for front document 60 | end tell -- End tell for OmniFocus 61 | end hazelProcessFile 62 | 63 | on nextWeekDay(curDate, weeklyDay) 64 | if curDate's weekday is not equal to weeklyDay then 65 | repeat until curDate's weekday is weeklyDay 66 | set curDate's day to (curDate's day) + 1 67 | if curDate's weekday is Saturday then set i to 1 68 | end repeat 69 | end if 70 | 71 | return curDate 72 | end nextWeekDay 73 | 74 | on nextMonthDay(reviewDate, monthlyDay) 75 | if reviewDate's day > monthlyDay then 76 | set reviewDate's day to 32 77 | set reviewDate's day to monthlyDay 78 | else 79 | set reviewDate's day to monthlyDay 80 | end if 81 | 82 | return reviewDate 83 | end nextMonthDay 84 | 85 | on nextYearDay(reviewDate, annualMonth, annualDay) 86 | set reviewMonthNum to reviewDate's month as integer 87 | set annualMonthNum to annualMonth as integer 88 | 89 | if reviewMonthNum > annualMonthNum then 90 | set reviewDate's year to (reviewDate's year) + 1 91 | set reviewDate's month to annualMonth 92 | set reviewDate's day to annualDay 93 | else if reviewMonthNum = annualMonthNum then 94 | if reviewDate's day > annualDay then 95 | set reviewDate's year to (reviewDate's year) + 1 96 | set reviewDate's day to annualDay 97 | else 98 | set reviewDate's day to annualDay 99 | end if 100 | else if reviewMonthNum < annualMonthNum then 101 | set reviewDate's month to annualMonth 102 | set reviewDate to nextMonthDay(reviewDate, annualDay) 103 | end if 104 | 105 | return reviewDate 106 | end nextYearDay 107 | 108 | 109 | on lastWeekDay(curDate) 110 | set curDate to curDate - (1 * weeks) 111 | return curDate 112 | end lastWeekDay 113 | 114 | on lastMonthDay(curDate) 115 | if ((curDate's month) * 1) is 1 then 116 | set curDate's year to (curDate's year) - 1 117 | set curDate's month to 12 118 | else 119 | set curDate's month to (curDate's month) - 1 120 | end if 121 | 122 | return curDate 123 | end lastMonthDay 124 | 125 | on lastYearDay(curDate) 126 | set curDate's year to (curDate's year) - 1 127 | return curDate 128 | end lastYearDay -------------------------------------------------------------------------------- /Update Reviews/UpdateReviews-Hazel.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Update Reviews/UpdateReviews-Hazel.scpt -------------------------------------------------------------------------------- /Update Reviews/UpdateReviews.applescript: -------------------------------------------------------------------------------- 1 | -- weeklyReviewDay is the day of the week of your Weekly Review. 2 | set weeklyReviewDay to Friday 3 | 4 | -- monthlyReviewDay is the day of the month of your Monthly Review. 5 | set monthlyReviewDay to 1 6 | 7 | -- annualReviewMonth is the month of your Annual Review. 8 | set annualReviewMonth to January 9 | 10 | -- annualReviewDay is the day of the month for your Annual Review. 11 | set annualReviewDay to 1 12 | 13 | -- Get the current date as a base for new review dates 14 | set nextWeeklyReview to current date 15 | set nextMonthlyReview to current date 16 | set nextAnnualReview to current date 17 | 18 | -- Get the next available review date for each scenario 19 | set nextWeeklyReview to nextWeekDay(nextWeeklyReview, weeklyReviewDay) 20 | set nextMonthlyReview to nextMonthDay(nextMonthlyReview, monthlyReviewDay) 21 | set nextAnnualReview to nextYearDay(nextAnnualReview, annualReviewMonth, annualReviewDay) 22 | 23 | -- Confirm that the user wants to move forward with this 24 | set question to display dialog "The Next Review date of your projects will be adjusted based on each project's Next Review setting. 25 | 26 | Next Review for Weekly will be " & date string of nextWeeklyReview & " 27 | Next Review for Monthly will be " & date string of nextMonthlyReview & " 28 | Next Review for Yearly will be: " & date string of nextAnnualReview & " 29 | 30 | Projects that have any other Next Review setting will be remain unchanged. 31 | 32 | Are you sure you want to do this?" buttons {"Yes", "No"} default button 2 33 | set answer to button returned of question 34 | 35 | if answer is equal to "No" then 36 | return 37 | end if 38 | 39 | -- Get the last review date for each scenario 40 | set lastWeeklyReview to lastWeekDay(nextWeeklyReview) 41 | set lastMonthlyReview to lastMonthDay(nextMonthlyReview) 42 | set lastAnnualReview to lastYearDay(nextAnnualReview) 43 | set projectCNT to 0 44 | 45 | tell application "OmniFocus" 46 | tell front document 47 | set theProjects to every flattened project where its status is active or its status is on hold 48 | repeat with projNum from 1 to length of theProjects 49 | 50 | set curProject to item projNum of theProjects 51 | set origReviewDate to next review date of curProject 52 | set reviewInterval to review interval of curProject 53 | set reviewUnits to unit of reviewInterval 54 | set reviewSteps to steps of reviewInterval 55 | if (reviewUnits = week and reviewSteps = 1) or (reviewUnits = day and reviewSteps = 7) then 56 | set curProject's last review date to lastWeeklyReview 57 | if curProject's next review date is not equal to origReviewDate then 58 | set projectCNT to projectCNT + 1 59 | end if 60 | else if (reviewUnits = month and reviewSteps = 1) then 61 | set curProject's last review date to lastMonthlyReview 62 | if curProject's next review date is not equal to origReviewDate then 63 | set projectCNT to projectCNT + 1 64 | end if 65 | else if (reviewUnits = year and reviewSteps = 1) then 66 | set curProject's last review date to lastAnnualReview 67 | if curProject's next review date is not equal to origReviewDate then 68 | set projectCNT to projectCNT + 1 69 | end if 70 | end if -- End reviewUnits 71 | 72 | end repeat -- End project loop 73 | end tell -- End tell for front document 74 | end tell -- End tell for OmniFocus 75 | 76 | display notification "All done" with title "OFScripts: Update Reviews" subtitle (projectCNT as string) & " projects updated" 77 | 78 | on nextWeekDay(curDate, weeklyDay) 79 | if curDate's weekday is not equal to weeklyDay then 80 | repeat until curDate's weekday is weeklyDay 81 | set curDate's day to (curDate's day) + 1 82 | if curDate's weekday is Saturday then set i to 1 83 | end repeat 84 | end if 85 | 86 | return curDate 87 | end nextWeekDay 88 | 89 | on nextMonthDay(reviewDate, monthlyDay) 90 | if reviewDate's day > monthlyDay then 91 | set reviewDate's day to 32 92 | set reviewDate's day to monthlyDay 93 | else 94 | set reviewDate's day to monthlyDay 95 | end if 96 | 97 | return reviewDate 98 | end nextMonthDay 99 | 100 | on nextYearDay(reviewDate, annualMonth, annualDay) 101 | set reviewMonthNum to reviewDate's month as integer 102 | set annualMonthNum to annualMonth as integer 103 | 104 | if reviewMonthNum > annualMonthNum then 105 | set reviewDate's year to (reviewDate's year) + 1 106 | set reviewDate's month to annualMonth 107 | set reviewDate's day to annualDay 108 | else if reviewMonthNum = annualMonthNum then 109 | if reviewDate's day > annualDay then 110 | set reviewDate's year to (reviewDate's year) + 1 111 | set reviewDate's day to annualDay 112 | else 113 | set reviewDate's day to annualDay 114 | end if 115 | else if reviewMonthNum < annualMonthNum then 116 | set reviewDate's month to annualMonth 117 | set reviewDate to nextMonthDay(reviewDate, annualDay) 118 | end if 119 | 120 | return reviewDate 121 | end nextYearDay 122 | 123 | on lastWeekDay(curDate) 124 | set curDate to curDate - (1 * weeks) 125 | return curDate 126 | end lastWeekDay 127 | 128 | on lastMonthDay(curDate) 129 | if ((curDate's month) * 1) is 1 then 130 | set curDate's year to (curDate's year) - 1 131 | set curDate's month to 12 132 | else 133 | set curDate's month to (curDate's month) - 1 134 | end if 135 | 136 | return curDate 137 | end lastMonthDay 138 | 139 | on lastYearDay(curDate) 140 | set curDate's year to (curDate's year) - 1 141 | return curDate 142 | end lastYearDay -------------------------------------------------------------------------------- /Update Reviews/UpdateReviews.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Update Reviews/UpdateReviews.scpt -------------------------------------------------------------------------------- /Update Reviews/update-reviews.omnifocusjs: -------------------------------------------------------------------------------- 1 | /*{ 2 | "author": "Joe Buhlig", 3 | "targets": ["omnifocus"], 4 | "type": "action", 5 | "identifier": "com.joebuhlig.omnifocus.com.update-reviews", 6 | "version": "0.1", 7 | "description": "Update next review dates based on scheduled review date", 8 | "label": "Update Reviews", 9 | "mediumLabel": "Update next review dates", 10 | "paletteLabel": "Update Reviews", 11 | }*/ 12 | (() => { 13 | var action = new PlugIn.Action(function(selection, sender) { 14 | var weeklyReviewDay = 5; /* 0 = Sunday, 6 = Saturday */ 15 | var monthlyReviewDay = 1; 16 | var annualReviewDay = 1; 17 | var annualReviewMonth = 1; /* 1 = January, 12 = December */ 18 | 19 | weeklyDay = nextWeekDay(weeklyReviewDay); 20 | monthlyDay = nextMonthDay(monthlyReviewDay); 21 | annualDay = nextAnnualDay(annualReviewDay, annualReviewMonth); 22 | 23 | const form = new Form(); 24 | 25 | var weeklyReviewDate = new Form.Field.Date("weeklyReviewDate", "Next Weekly", weeklyDay); 26 | var monthlyReviewDate = new Form.Field.Date("monthlyReviewDate", "Next Monthly", monthlyDay); 27 | var annualReviewDate = new Form.Field.Date("annualReviewDate", "Next Annual", annualDay); 28 | 29 | form.addField(weeklyReviewDate, 0); 30 | form.addField(monthlyReviewDate, 1); 31 | form.addField(annualReviewDate, 2); 32 | 33 | const formPromise = form.show("Select your next review dates", "Update Reviews"); 34 | formPromise.then(function(formObject){ 35 | weeklyReviewDate = formObject.values["weeklyReviewDate"]; 36 | monthlyReviewDate = formObject.values["monthlyReviewDate"]; 37 | annualReviewDate = formObject.values["annualReviewDate"]; 38 | 39 | const projects = flattenedProjects; 40 | for (index in projects){ 41 | var project = projects[index]; 42 | var reviewInterval = project.reviewInterval; 43 | if (reviewInterval.steps == 1) { 44 | switch (reviewInterval.unit) { 45 | case "weeks": 46 | project.nextReviewDate = weeklyReviewDate; 47 | break; 48 | case "months": 49 | project.nextReviewDate = monthlyReviewDate; 50 | break; 51 | case "years": 52 | project.nextReviewDate = annualReviewDate; 53 | break; 54 | } 55 | } 56 | } 57 | }); 58 | }); 59 | 60 | return action; 61 | })(); 62 | 63 | function nextWeekDay(dayIndex) { 64 | var today = new Date(); 65 | today.setHours(0,0,0,0); 66 | today.setDate(today.getDate() + (dayIndex - 1 - today.getDay() + 7) % 7 + 1); 67 | return today; 68 | } 69 | 70 | function nextMonthDay(dayIndex) { 71 | var today = new Date(); 72 | today.setHours(0,0,0,0); 73 | if (dayIndex < today.getDate()) { 74 | if (today.getMonth() == 11) { 75 | today.setMonth(0); 76 | today.setFullYear(today.getFullYear() + 1); 77 | } 78 | else { 79 | today.setMonth(today.getMonth() + 1) 80 | } 81 | } 82 | today.setDate(dayIndex); 83 | return today; 84 | } 85 | 86 | function nextAnnualDay(dayIndex, monthIndex) { 87 | var today = new Date(); 88 | today.setHours(0,0,0,0); 89 | monthIndex -= 1; 90 | 91 | var nextAnnualDate = new Date(today.getFullYear(), monthIndex, dayIndex, 0,0,0,0); 92 | 93 | if (today > nextAnnualDate) { 94 | nextAnnualDate.setFullYear(today.getFullYear() + 1); 95 | } 96 | 97 | return nextAnnualDate; 98 | } -------------------------------------------------------------------------------- /Update Reviews/update-reviews.omnijs: -------------------------------------------------------------------------------- 1 | /*{ 2 | "author": "Joe Buhlig", 3 | "targets": ["omnifocus"], 4 | "type": "action", 5 | "identifier": "com.joebuhlig.omnifocus.com.update-reviews", 6 | "version": "0.1", 7 | "description": "Update next review dates based on scheduled review date", 8 | "label": "Update Reviews", 9 | "mediumLabel": "Update next review dates", 10 | "paletteLabel": "Update Reviews", 11 | }*/ 12 | (() => { 13 | var action = new PlugIn.Action(function(selection, sender) { 14 | var weeklyReviewDay = 5; /* 0 = Sunday, 6 = Saturday */ 15 | var monthlyReviewDay = 1; 16 | var annualReviewDay = 1; 17 | var annualReviewMonth = 1; /* 1 = January, 12 = December */ 18 | 19 | weeklyDay = nextWeekDay(weeklyReviewDay); 20 | monthlyDay = nextMonthDay(monthlyReviewDay); 21 | annualDay = nextAnnualDay(annualReviewDay, annualReviewMonth); 22 | 23 | const form = new Form(); 24 | 25 | var weeklyReviewDate = new Form.Field.Date("weeklyReviewDate", "Next Weekly", weeklyDay); 26 | var monthlyReviewDate = new Form.Field.Date("monthlyReviewDate", "Next Monthly", monthlyDay); 27 | var annualReviewDate = new Form.Field.Date("annualReviewDate", "Next Annual", annualDay); 28 | 29 | form.addField(weeklyReviewDate, 0); 30 | form.addField(monthlyReviewDate, 1); 31 | form.addField(annualReviewDate, 2); 32 | 33 | const formPromise = form.show("Select your next review dates", "Update Reviews"); 34 | formPromise.then(function(formObject){ 35 | weeklyReviewDate = formObject.values["weeklyReviewDate"]; 36 | monthlyReviewDate = formObject.values["monthlyReviewDate"]; 37 | annualReviewDate = formObject.values["annualReviewDate"]; 38 | 39 | const projects = flattenedProjects; 40 | for (index in projects){ 41 | var project = projects[index]; 42 | var reviewInterval = project.reviewInterval; 43 | if (reviewInterval.steps == 1) { 44 | switch (reviewInterval.unit) { 45 | case "weeks": 46 | project.nextReviewDate = weeklyReviewDate; 47 | break; 48 | case "months": 49 | project.nextReviewDate = monthlyReviewDate; 50 | break; 51 | case "years": 52 | project.nextReviewDate = annualReviewDate; 53 | break; 54 | } 55 | } 56 | } 57 | }); 58 | }); 59 | 60 | return action; 61 | })(); 62 | 63 | function nextWeekDay(dayIndex) { 64 | var today = new Date(); 65 | today.setHours(0,0,0,0); 66 | today.setDate(today.getDate() + (dayIndex - 1 - today.getDay() + 7) % 7 + 1); 67 | return today; 68 | } 69 | 70 | function nextMonthDay(dayIndex) { 71 | var today = new Date(); 72 | today.setHours(0,0,0,0); 73 | if (dayIndex < today.getDate()) { 74 | if (today.getMonth() == 11) { 75 | today.setMonth(0); 76 | today.setFullYear(today.getFullYear() + 1); 77 | } 78 | else { 79 | today.setMonth(today.getMonth() + 1) 80 | } 81 | } 82 | today.setDate(dayIndex); 83 | return today; 84 | } 85 | 86 | function nextAnnualDay(dayIndex, monthIndex) { 87 | var today = new Date(); 88 | today.setHours(0,0,0,0); 89 | monthIndex -= 1; 90 | 91 | var nextAnnualDate = new Date(today.getFullYear(), monthIndex, dayIndex, 0,0,0,0); 92 | 93 | if (today > nextAnnualDate) { 94 | nextAnnualDate.setFullYear(today.getFullYear() + 1); 95 | } 96 | 97 | return nextAnnualDate; 98 | } -------------------------------------------------------------------------------- /Weather Activation/README.md: -------------------------------------------------------------------------------- 1 | # Weather Activation 2 | 3 | This is one of the more involved scripts I use. It will activate or deactivate a project in OmniFocus based on tomorrow's weather forecast. The project will go from On Hold to Active if it's being activated. It will go from Active to On Hold if deactivated. 4 | 5 | # Which File? 6 | 7 | You'll find two versions of the script - `.scpt` and `.applescript`. In order to run it from OmniFocus, you'll want to use the `.scpt` version. The `.applescript` format is purely there so you can view the code online. 8 | 9 | # JSON Helper 10 | 11 | In order for this to work correctly, you'll need [JSON Helper from the Mac App Store](https://itunes.apple.com/us/app/json-helper-for-applescript/id453114608?mt=12). It's free, so no need to worry. This is what will allow the script to navigate the data returned from Weather Underground. 12 | 13 | # Weather Underground API 14 | 15 | You'll also need a developers API key from Weather Underground. You can [sign up for one here](https://www.weatherapi.com/). 16 | 17 | Once you sign up you'll need to change these two lines in the script: 18 | 19 | ``` 20 | set apiKey to "XXXXXXXXXXXXXXXXXXXXXXXXX" 21 | set location to "55555" 22 | ``` 23 | 24 | # Syntax 25 | 26 | For the script to work, you need to use either `` or `` in the notes field for the project. Inside those tags, you can use either `LowTemp` or `HighTemp`. Those are the only two fields supported right now. Here's an example: 27 | 28 | ```html 29 | 30 | LowTemp: <=38; 31 | 32 | ``` 33 | 34 | In this example, the project will go from On Hold to Active if tomorrow's low temperature is less than or equal to 38 degrees. 35 | 36 | You can also use both low and high temperature together. 37 | 38 | ```html 39 | 40 | LowTemp: <=38; 41 | HighTemp: >45; 42 | 43 | ``` 44 | 45 | Here, the project will go from On Hold to Active if tomorrow's low is less than or equal to 38 degrees AND the high temperature is greater than 45 degrees. 46 | 47 | And for really complex situations, you can use both Activate and Deactivate at once: 48 | 49 | ```html 50 | 51 | LowTemp: <=38; 52 | HighTemp: >45; 53 | 55 | LowTemp: >38; 56 | 57 | ``` 58 | 59 | In this scenario, the project will go from On Hold to Active if tomorrow's low is less than or equal to 38 degrees AND the high is greater than 45. It will go back to On Hold if the low temperature is above 38 degrees. 60 | 61 | # Development 62 | 63 | I'm certainly open to the submission of Pull Requests to make this better. If you find issues and fix them, please let me know and I'll be happy to update and give you credit. 64 | -------------------------------------------------------------------------------- /Weather Activation/WeatherActivation.applescript: -------------------------------------------------------------------------------- 1 | set apiKey to "XXXXXXXXXXXXXXXXXXXXXXXXX" 2 | set location to "55555" 3 | tell application "JSON Helper" 4 | set theURL to "https://api.weatherapi.com/v1/forecast.json?key=" & apiKey & "&q=" & location & "&days=1&aqi=no&alerts=no" 5 | set weather to fetch JSON from (theURL) 6 | set highTemp to (maxtemp_f of |day| of item 1 of forecastday of forecast of weather) as integer 7 | set lowTemp to (mintemp_f of |day| of item 1 of forecastday of forecast of weather) as integer 8 | end tell 9 | 10 | tell application "OmniFocus" 11 | tell front document 12 | -- Get all the projects 13 | set theProjects to every flattened project 14 | repeat with projNum from 1 to length of theProjects 15 | 16 | -- Get the current project 17 | set curProject to item projNum of theProjects 18 | set projNote to note of curProject 19 | if projNote contains "" then 20 | set projectTriggers to text ((offset of "" in projNote) + 10) thru ((offset of "" in projNote) - 1) of projNote 21 | set triggerFlag to my getTriggerFlag(projectTriggers, highTemp, lowTemp) 22 | if triggerFlag is true then 23 | set status of curProject to active status 24 | end if 25 | end if -- if note contains 26 | if projNote contains "" then 27 | set projectTriggers to text ((offset of "" in projNote) + 12) thru ((offset of "" in projNote) - 1) of projNote 28 | set triggerFlag to my getTriggerFlag(projectTriggers, highTemp, lowTemp) 29 | if triggerFlag is true then 30 | set status of curProject to on hold status 31 | end if 32 | end if -- if note contains 33 | end repeat -- Project loop 34 | end tell 35 | end tell 36 | 37 | on getTriggerFlag(projectTriggers, highTemp, lowTemp) 38 | set AppleScript's text item delimiters to {";"} 39 | set weatherTriggers to every text item of projectTriggers 40 | set AppleScript's text item delimiters to {" "} 41 | set triggerFlag to true 42 | repeat with n from 1 to (length of weatherTriggers) - 1 43 | set weatherTrigger to item n of weatherTriggers 44 | set AppleScript's text item delimiters to {":"} 45 | set triggerItems to every text item of weatherTrigger 46 | set AppleScript's text item delimiters to {" "} 47 | set triggerType to (my trim(item 1 of triggerItems)) as string 48 | set triggerValue to (my trim(item 2 of triggerItems)) as string 49 | try 50 | if (text 1 thru 1 of triggerValue) is "-" then 51 | set firstIntLoc to 1 52 | end if 53 | set intCheck to (text 1 thru 1 of triggerValue) as integer 54 | set firstIntLoc to 1 55 | on error 56 | try 57 | if (text 2 thru 2 of triggerValue) is "-" then 58 | set firstIntLoc to 2 59 | end if 60 | set intCheck to (text 2 thru 2 of triggerValue) as integer 61 | set firstIntLoc to 2 62 | on error 63 | try 64 | if (text 3 thru 3 of triggerValue) is "-" then 65 | set firstIntLoc to 3 66 | end if 67 | set intCheck to (text 3 thru 3 of triggerValue) as integer 68 | set firstIntLoc to 3 69 | end try 70 | end try 71 | end try 72 | set triggerOperator to text 1 thru (firstIntLoc - 1) of triggerValue 73 | set triggerInt to (text firstIntLoc thru (length of triggerValue) of triggerValue) as integer 74 | set tempFlag to my activateProject(triggerType, triggerOperator, triggerInt, highTemp, lowTemp) 75 | if tempFlag is false then 76 | set triggerFlag to false 77 | end if 78 | end repeat -- weatherTrigger loop 79 | return triggerFlag 80 | end getTriggerFlag 81 | 82 | on activateProject(triggerType, triggerOperator, triggerInt, highTemp, lowTemp) 83 | if triggerType = "LowTemp" then 84 | set weatherData to lowTemp 85 | set dataCheck to my dataCheck(weatherData, triggerOperator, triggerInt) 86 | end if 87 | 88 | if triggerType = "HighTemp" then 89 | set weatherData to highTemp 90 | set dataCheck to my dataCheck(weatherData, triggerOperator, triggerInt) 91 | end if 92 | return dataCheck 93 | end activateProject 94 | 95 | on dataCheck(weatherData, triggerOperator, triggerInt) 96 | set dataPass to false 97 | if triggerOperator is "=" then 98 | if weatherData = triggerInt then 99 | set dataPass to true 100 | end if 101 | else if triggerOperator is "<" then 102 | if weatherData is less than triggerInt then 103 | set dataPass to true 104 | end if 105 | else if triggerOperator is ">" then 106 | if weatherData is greater than triggerInt then 107 | set dataPass to true 108 | end if 109 | else if triggerOperator is "<=" then 110 | if weatherData is less than or equal to triggerInt then 111 | set dataPass to true 112 | end if 113 | else if triggerOperator is ">=" then 114 | if weatherData is greater than or equal to triggerInt then 115 | set dataPass to true 116 | end if 117 | else if triggerOperator = "<>" then 118 | if weatherData is not equal to triggerInt then 119 | set dataPass to true 120 | end if 121 | else 122 | set dataPass to false 123 | end if 124 | return dataPass 125 | end dataCheck 126 | 127 | on trim(someText) 128 | set AppleScript's text item delimiters to {return & linefeed, return, linefeed, character id 8233, character id 8232} 129 | set newText to text items of someText 130 | set AppleScript's text item delimiters to {" "} 131 | set someText to newText as text 132 | repeat until someText does not start with " " 133 | set someText to text 2 thru -1 of someText 134 | end repeat 135 | 136 | repeat until someText does not end with " " 137 | set someText to text 1 thru -2 of someText 138 | end repeat 139 | 140 | return someText 141 | end trim -------------------------------------------------------------------------------- /Weather Activation/WeatherActivation.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joebuhlig/OFScripts/a08f9e4a45ab991e062a2947893397f378b2d6d5/Weather Activation/WeatherActivation.scpt --------------------------------------------------------------------------------