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
| -- HOWTO: | |
| -- after saving it, open with Script Editor (default) and run it | |
| -- PREREQUISITES: | |
| -- make sure your Keynote presentation is open in the background | |
| -- AFTER EXPORT: | |
| -- if you can't open the file due to encoding errors, open with Sublime (or another a text editor) and then "File / Save with encoding / UTF8" | |
| tell application "Keynote" |
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
| -- Copyright 2023 Noe Casas. | |
| -- License: CC-BY-SA 2.5 (because it's derived from a 2014 SO question, see https://stackoverflow.com/help/licensing) | |
| -- Copies the presenter notes from a Keynote presentation into the clipboard, | |
| -- adding the slide index before each slide's presenter note's. | |
| -- Derived from https://apple.stackexchange.com/a/142533/181485 | |
| global presenterNotes | |
| tell application "Keynote" | |
| activate | |
| tell front document |
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
| --============================== | |
| -- BASED ON: | |
| -- Send Keynote Text to Desktop Markdown File | |
| -- Writted By: Richard Dooling https://github.com/RichardDooling/ | |
| -- Based on | |
| -- Send Keynote Presenter Notes to Evernote | |
| -- Version 1.0.1 | |
| -- Written By: Ben Waldie <ben@automatedworkflows.com> | |
| -- http://www.automatedworkflows.com |
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
| --============================== | |
| -- Send Keynote Presenter Notes to Evernote | |
| -- Version 1.0.1 | |
| -- Written By: Ben Waldie <ben@automatedworkflows.com> | |
| -- http://www.automatedworkflows.com | |
| -- Version 1.0.0 - Initial release | |
| -- Version 1.0.1 - Updated for Keynote 6.2 compatibility | |
| --============================== |
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 | |
| # tp-dailylog.rb - Log TaskPaper tasks completed on the current day to a Day One entry | |
| # Brett Terpstra 2012 <http://brettterpstra.com> | |
| # | |
| # Run it with launchd at 11pm and forget about it | |
| # | |
| # Notes: | |
| # * Uses `mdfind` to locate all .taskpaper files changed in the last day | |
| # * Scans for @done(xxxx-xx-xx) tags in each line matching today's date | |
| # * Does not alter TaskPaper files in any way |
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 | |
| # tp-dailylog.rb - Log TaskPaper tasks completed on the current day to a Day One entry | |
| # Brett Terpstra 2012 <http://brettterpstra.com> | |
| # | |
| # Run it with launchd at 11pm and forget about it | |
| # | |
| # Notes: | |
| # * Uses `mdfind` to locate all .taskpaper files changed in the last day | |
| # * Scans for @done(xxxx-xx-xx) tags in each line matching today's date | |
| # * Does not alter TaskPaper files in any way |
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
| file_export_version=3.0 | |
| /instance/org.eclipse.ui.editors/AbstractTextEditor.Color.Background.SystemDefault=false | |
| /instance/org.eclipse.ui.editors/AbstractTextEditor.Color.Background=63,63,63 | |
| /instance/org.eclipse.ui.editors/AbstractTextEditor.Color.FindScope=85,85,100 | |
| /instance/org.eclipse.ui.editors/AbstractTextEditor.Color.Foreground.SystemDefault=false | |
| /instance/org.eclipse.ui.editors/AbstractTextEditor.Color.Foreground=246,243,232 | |
| /instance/org.eclipse.ui.editors/AbstractTextEditor.Color.SelectionBackground.SystemDefault=false | |
| /instance/org.eclipse.ui.editors/AbstractTextEditor.Color.SelectionBackground=85,85,85 | |
| /instance/org.eclipse.ui.editors/AbstractTextEditor.Color.SelectionForeground.SystemDefault=false | |
| /instance/org.eclipse.ui.editors/AbstractTextEditor.Color.SelectionForeground=190,25,160 |