- Download the above file and save it somewhere (eg
~/Downloads
) - Open Terminal.app, and go to where it's saved (eg
cd ~/Downloads
) - Run the script, with the HDD volume as the first argument, eg:
python sleep-and-copy.py /Volumes/Thing/Path/to/itunes /Library/Local-path-to-itunes
I hereby claim:
- I am bradwright on github.
- I am bradwright (https://keybase.io/bradwright) on keybase.
- I have a public key whose fingerprint is 79EE 15F3 67EA 61C6 4F98 69AE C101 6131 8826 6237
To claim this, I am signing this object:
This file contains 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
-- Unflag every available task in every context (it has to be assigned a context) | |
tell application "OmniFocus" | |
tell default document | |
set flagged of (every available task of every flattened context whose flagged is true) to false | |
end tell | |
end tell |
Add this script in Automator as a service for "Evernote".
This file contains 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
{ | |
"id":"https://www.gov.uk/api/bank-holidays.json", | |
"web_url":"https://www.gov.uk/bank-holidays", | |
"title":"UK bank holidays", | |
"format":"custom-application", | |
"updated_at":"2014-06-27T13:14:21+01:00", | |
"tags":[ | |
{ | |
"id":"https://www.gov.uk/api/tags/section/working%2Ftime-off.json", | |
"slug":"working/time-off", |
An append-only datastore with API to store all published versions of a document.
- As a citizen, I need to see change history of a document so I can see how a policy or official document evolves over time (TRUST)
- As someone whose job relies on historical versions (e.g a tax accountant, lawyer), I need to be able to see older versions of documents from specific points in time, so I can refer to them
This file contains 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"?> | |
<root> | |
<item> | |
<name>Tarmak transitional layout</name> | |
<!-- http://forum.colemak.com/viewtopic.php?pid=8786#p8786 --> | |
<item> | |
<name>Tarmak1(E) transitional layout (E>K>N>J)</name> | |
<identifier>private.tarmak.tarmak_1_e</identifier> | |
<autogen>__KeyToKey__ KeyCode::K, KeyCode::E</autogen> | |
<autogen>__KeyToKey__ KeyCode::N, KeyCode::K</autogen> |
This file contains 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
-- Send currently selected Mail.app message to OmniFocus 2 quick entry box, then archive it | |
-- Archive behaviour found at: http://vemedio.com/blog/posts/my-archive-email-apple-script | |
tell application "Mail" | |
set theSelectedMessages to selection | |
set the selected_message to item 1 ¬ | |
of the theSelectedMessages | |
set message_id to the message id of the selected_message | |
set my_subject to the subject of the selected_message | |
set message_url to "message://%3c" & message_id & "%3e" |
I hereby claim:
- I am bradleywright on github.
- I am bradwright (https://keybase.io/bradwright) on keybase.
- I have a public key whose fingerprint is 79EE 15F3 67EA 61C6 4F98 69AE C101 6131 8826 6237
To claim this, I am signing this object:
This file contains 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
on run {input, parameters} | |
tell application "Google Chrome" | |
set theName to title of active tab of front window | |
set theUrl to URL of active tab of front window | |
tell application "OmniFocus" | |
set theTask to theName | |
set theNote to theUrl | |
tell quick entry | |
set NewTask to make new inbox task with properties {name:theTask, note:theNote} |
NewerOlder