Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View alistaircom's full-sized avatar
💭
Writing code for fun rather than profit

Alistair Calder alistaircom

💭
Writing code for fun rather than profit
View GitHub Profile
@alistaircom
alistaircom / Status_minders.applescript
Created October 18, 2016 04:31 — forked from craigeley/Status_minders.applescript
Read upcoming Apple Reminders and sort them into an HTML table for use in Panic's Status Board
tell application "Reminders"
set output to ""
set hasOne to false
repeat with i from 1 to (count of (reminders whose completed is false))
set theReminder to reminder i of (reminders whose completed is false)
set reminderName to name of theReminder
set theList to name of container of theReminder
if due date of theReminder exists then
set dueDate to due date of theReminder

Keybase proof

I hereby claim:

  • I am alistaircom on github.
  • I am alistair (https://keybase.io/alistair) on keybase.
  • I have a public key ASDJqZ5oKsetODaZ7IdPe90LTL_J7eCxnTCSa6rtElnrHQo

To claim this, I am signing this object:

#!/bin/sh
# Some things taken from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'
green='\033[0;32m'