GitXplorerGitXplorer
i

evernote-utils

public
10 stars
3 forks
0 issues

Commits

List of commits on branch master.
Unverified
5d8f9af77855a695869114bd2e80711d61bd38e4

re-enabled default "open action-note after creation" after ENScript showNotes issue fix in version 5.0.3.1614 (269614) Public.

iitamaro committed 11 years ago
Unverified
ddaf1d94e6f68ca0c58c5c3836f35b8b4e66e8a5

disabled default "open action-note after creation" due to newly introduced bug in the showNotes command (http://discussion.evernote.com/topic/43670-bug-updated-to-5-today-enscript-shownotes-is-broken/)

iitamaro committed 11 years ago
Unverified
508a09fc7822141cc4a246823f2c18912f085c41

implemented "lazy notebook lookup" for quick-action-note creation with explicit notebook specification.

iitamaro committed 11 years ago
Unverified
0bacf0ac62e58cb393d9af8af70242f2f7950055

a couple of small README fixes and improvements

iitamaro committed 11 years ago
Unverified
1aae405b61213379fc1f56511f56ebe544f62b61

added quick project creation documentation

iitamaro committed 11 years ago
Unverified
d4cf46c46652b7dde7f8dc0be6985ce37aef4594

added installation instructions to documentation

iitamaro committed 11 years ago

README

The README file for this repository.

evernote-utils

A collection of productivity-enhancing utilities for Evernote for Windows.

Developed for and tested with Evernote 5.0 on Windows 7.

Supported Use Cases

Disclaimer: The implementation is tightly coupled to my broader Evernote-based GTD organizational system (TODO: link to description of my system). It is meant to enhance my own productivity and efficiency using my system, which means some personalized behaviours within the code. It should quite easy to modify my scripts to suit your needs, and anyone is encouraged to do so!

Quick creation of a new "action-note" with Launchy

A fast way to create a new Evernote "action-note", no matter what's the active application, or whether Evernote application is open.

Call Launchy (Alt+Space) and start typing the "@action-context": Launchy dialog

Once Launchy recognizes the context, hit "Tab" and type the note title: Launchy note title

Then hit "Enter" - a new note will be created in a pre-determined notebook, tagged automatically based on the chosen action context and title syntax, and opened in a separate window ready for further editing (or closing): Note in Evernote

Specifying a different notebook in the title

The quick-note-creation script supports special syntax in the title for overriding default parameters, like the destination notebook for the new note.

By prefixing the note title with /notebook:Target Notebook Name/ or /project:Project-specific Notebook Name/: Launchy override notebook

The note will be created directly in the specified notebook: Note in Evernote

The script supports "lazy notebook lookup", meaning it will try to select a notebook that matches the supplied string exactly, but if there's no match, it will also try:

  1. A maximal exact partial match: an existing notebook that contains the exact supplied string. if there are several such notebooks, it will select the one with the least unmatched strings before and after the matched string.
  2. A maximal word-overlap match: an existing notebook that has overlapping words with the supplied string. "words" are splitted on whitespace and "-". repeating words are counted only once. in case of multiple matched notebooks, it will select the one with the largest intersection.

All notebook lookups are case-insensitive.

Setting a reminder from the title

Similarly, it is also possible to prefix the note title with /reminder:oct 3/ or /tickle:next sunday, 10am/ in order to create a note with a reminder associated to it.

When specifying only a date: Launchy specify reminder date

The note will be created with a reminder set to that date at 9am (can be modified in the code): Note in Evernote Reminder details

When specifying also a time: Launchy specify reminder date & time

The reminder will be set to that time as well: Reminder details

The script supports natural language date-time specification using parsedatetime Python library, so this is a dependency (install with pip install parsedatetime).

Note: The reminder time is calculated based on the current timezone.

In case the script was unable to parse the date, it will not set a reminder, but will prepend the note title with "FIX REMINDER" so you can see it was unable to set a reminder.

Initialization of a new project in Evernote with Launchy or using a keyboard shortcut

Automate the process of initializing a new project in Evernote, where "project initialization" in my system includes:

  1. Creating a project-specific notebook in a notebook stack.
  2. Creating initial project notes in the new project notebook, based on a template.

Simply highlight in Evernote the target notebook-stack for the new project-notebook: Evernote notebook stack

Call Launchy (Alt+Space) and start typing "enproject": Launchy enproject

Hit "Tab" and type the name of the new project (which will also be the name of the project-specific notebook): Launchy new project

Hie "Enter", and behold the initialized project in the selected stack! Initialized Evernote project notebook and notes

Alternatively, using AutoHotKey, you can bind a keyboard shortcut (e.g. "Ctrl+Alt+p", or "^!p") to the "CreateProject.exe" executable (which is a compiled version of the AutoHotKey script) to achieve something similar with AHK instead of Launchy.

Using the AHK method, you will type the project name in a popup dialog instead of the Launchy dialog: AHK Project name dialog

This, of course, requires that AutoHotKey is installed, and a keyboard shortcut is defined like this:

#IfWinActive ahk_class ENMainFrame
	^!p::
		Run,"<package-dir>\AHK\CreateProject.exe"
#IfWinActive

Installation

Requirements:

  1. OS: Windows
  2. Evernote >= 5.0
  3. Python 2.7
  4. parsedatetime Python library
  5. Launchy (this probably works with other keyboard launchers, but the details will differ)
  6. Optional: AutoHotkey (needed if you want to change things, or bind custom keyboard shortcuts)

Steps:

  1. Download the package (or clone it), and save it wherever you like on your computer (let's call that path <package-dir>).
  2. Modify the scripts to fit your workflow and system (change default notebooks, tags, action contexts, note templates).
  3. Configure Launchy to index batch script files from the QuickNotes directory under <package-dir>: Launchy options Configure Launchy catalog
  4. Click "Rescan Catalog" and "OK" to finish the process.

That's it!

Customization

TODO