This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl -w | |
# File: unpack_canvas_submissions.pl | |
# Desc: unpack submissions.zip from Canvas | |
# Vers: 1.1 dgg 20181020 - update for Mac Mojave (and any changes due to recent Canvas updates) | |
# Vers: 1.0 dgg 20171129 - fixup syntax for High Sierra Perl and declare version 1.0 | |
# Vers: 0.3 dgg 20171108 - move original submissions.zip to trash | |
# Vers: 0.2 dgg 20170910 - eliminate copy of submissions.zip | |
# Vers: 0.1 dgg 20160216 - original coding | |
# | |
# Limitation: Present version is tied to MacOS, Linux |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Drop an action | |
-- Mark it "Complete" and add front tag of "❌ Dropped" | |
-- | |
tell application "OmniFocus" | |
tell front document | |
try | |
set droppedTag to first tag where its name contains "Dropped" | |
on error | |
display alert "No tag found whose name ends with “" & "Dropped”" | |
return |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
# Uses textutil, available on Mac only (installed by default) | |
# Usage: rtftomarkdown.rb FILENAME.rtf | |
# Outputs to STDOUT | |
if ARGV.length == 0 | |
puts "#{__FILE__} expects an RTF input file as an argument" | |
exit | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ | |
"keys": ["ctrl+k"], "command": "prettify_markdown_table" | |
} | |
] |
NewerOlder