Evernote Github



Evernote Github

  1. Evernote Tusk
  2. Nixnote
  3. Evernote Github Integration
bookmarklet.js
Github

Leanote, Not Just A Notepad! Open source cloud notepad. Leanote - open source alternative to Evernote. All Evernote SDKs can be found on GitHub. Use evernote API as a logged-in user - react and express project - galtenberg/evernote-random. Skip to content. Launching GitHub Desktop. If nothing happens, download GitHub Desktop and try again. Launching GitHub Desktop. If nothing happens, download GitHub Desktop and try again. Instantly connect Evernote with the apps you use everyday. Evernote integrates with 2,000 other apps on Zapier - it's the easiest way to automate your work.

Evernote Tusk

/*
Copyright 2015 Seb Maynard
Licensed under the Apache License, Version 2.0 (the 'License');
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an 'AS IS' BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
vargetCurrentContent=function(){
return$('#tinymce',$('iframe').contents()).first().html();
};
varsetCurrentContent=function(content){
$('#tinymce',$('iframe').contents()).first().html(content);
$('.ennote',$('iframe').contents()).first().html(content);
};
varpopupTextArea=function(){
vartheDiv=$('<'+'div><'+'/div>');
vartheTextArea=$('<'+'textarea><'+'/textarea>');
theTextArea.val(getCurrentContent());
vartheButton=$('<'+'input type='button' value='save' />');
theButton.click(function(){
setCurrentContent(theTextArea.val());
theDiv.remove();
});
theDiv.append(theTextArea);
theDiv.append(theButton);
$('body').append(theDiv);
};
popupTextArea();
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
Evernote Installer.py
# Simple installer script for using the Evernote SDK in Pythonista
#
# This script should be run from the root directory. In order to keep things
# tidy, it installs the module and all its dependencies in a directory named
# 'evernote-sdk'. In order to be able to import it, you have to add that to
# your import path, like this:
#
# import sys
# sys.path.append('evernote-sdk')
#
# (this assumes that the script is in the root directory.)
importtarfile
importshutil
importurllib
importos
try:
os.mkdir('evernote-sdk')
except:
pass
print'Downloading evernote...'
filename, headers=urllib.urlretrieve('https://pypi.python.org/packages/source/e/evernote/evernote-1.23.2.tar.gz')
print'Installing evernote...'
t=tarfile.open(filename, 'r')
t.extractall()
t.close()
shutil.move('evernote-1.23.2/lib/evernote', 'evernote-sdk/evernote')
shutil.move('evernote-1.23.2/lib/thrift', 'evernote-sdk/thrift')
shutil.rmtree('evernote-1.23.2')
print'Downloading httplib2...'
filename, headers=urllib.urlretrieve('https://pypi.python.org/packages/source/h/httplib2/httplib2-0.7.7.tar.gz')
print'Installing httplib2...'
t=tarfile.open(filename, 'r')
t.extractall()
t.close()
shutil.move('httplib2-0.7.7/python2/httplib2', 'evernote-sdk/httplib2')
shutil.rmtree('httplib2-0.7.7')
print'Downloading oauth2...'
filename, headers=urllib.urlretrieve('https://pypi.python.org/packages/source/o/oauth2/oauth2-1.5.211.tar.gz')
print'Installing oauth2...'
t=tarfile.open(filename, 'r')
t.extractall()
t.close()
shutil.move('oauth2-1.5.211/oauth2', 'evernote-sdk/oauth2')
shutil.rmtree('oauth2-1.5.211')
importeditor
editor.reload_files()
print'Done.'

Nixnote

Evernote Github

Evernote Github Integration

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment