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
| { | |
| "root": "/directory/on/remote/machine", | |
| "host": "000.000.000.000", | |
| "port": 22, | |
| "username": "username_on_remote_machine", | |
| "privateKeyPath": "path_to_private_ssh_key_on_local_machine", | |
| "passphrase": "login_password_for_remote_machine" | |
| } |
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
| // Create Trello card via email when a Google form is submitted | |
| // | |
| // Setup: | |
| // - Create a Google form with three response items | |
| // - Go to More - Script Editor and paste this Gist into the editor | |
| // - Change emailTrello to the email address of the Trello board | |
| // - Tag relevant users in the subject line | |
| // - Go to Edit - Currrent project's triggers and add a trigger that links the script to the form | |
| var emailTrello = '...c@boards.trello.com'. // email address of the Trello board |
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
| """ | |
| A simple timer in Python using a coroutine. | |
| How to use the timer | |
| - Run start_timer() to start the timer | |
| - Run timeit() to get the time since the start of the timer or the last call of timeit() | |
| - Run start_timer() again to reset the timer | |
| """ | |
| import time |