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" | |
} | |
] |
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
-- 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/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
(* | |
Opens the support note for an OmniFocus task/project in Evernote. Creates the note if necessary, linking the note back to the task/project. | |
NB: If you set this up by hand, the evernote:/// URL in OmniFocus needs to be enclosed in <> for the script to find it. | |
Put this script in ~/Library/Application Scripts/com.omnigroup.omnifocus2. Then you can add the script as a custom toolbar item. | |
version 1.0: Initial release | |
*) |
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
--============================== | |
-- OmniFocus > Completed Task Report | |
-- Version 1.1.0 | |
-- Originally Written By: Ben Waldie <[email protected]> | |
-- http://www.automatedworkflows.com | |
-- Description: This script retrieves a list of OmniFocus tasks completed today, yesterday, this week, last week, or this month. It then summarizes the tasks in a new Evernote note. | |
-- Version History: | |
-- 1.4.1 - DGG Add Quarterly Report | |
-- 1.3.0 - DGG Change folder, separately log items tagged Dropped |
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
ENSCRIPT=/usr/local/bin/enscript | |
PS2PDF=/usr/local/bin/ps2pdf | |
PACKAGE="*/" | |
# PACKAGE= | |
# TBD: deal with spaces in paths | |
for f in "$@" | |
do |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta name="description" content="Financial Dashboard"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Displaying results of activation</title> | |
</head> | |
<body> | |
<h1>Results of Activation</h1> | |
<?php |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<actions> | |
<action> | |
<actionName>run</actionName> | |
<packagings> | |
<packaging>jar</packaging> | |
</packagings> | |
<goals> | |
<goal>process-classes</goal> | |
<goal>package</goal> |
OlderNewer