You’ll have to open up the evernote application on either Mac or Windows (they don’t have a linux client), right click on the notebook you want to export, and select “Export.” Select the option to export to html (either one page or several pages, depending on your preference. I went with one html page for each note).
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
pkgname=emacs26 | |
pkgver=26.0.99 | |
pkgrel=1 | |
pkgdesc="GNU Emacs RC1." | |
arch=('x86_64') | |
url="http://www.gnu.org/software/emacs/" | |
license=('GPL3') | |
depends=( | |
'alsa-lib' | |
'dbus' |
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
\usepackage[style=authoryear, url=false, doi=false]{biblatex} | |
% make the title link to the DOI, if available: | |
\newbibmacro{string+doi}[1]{% | |
\iffieldundef{doi}{#1}{\href{https://doi.org/\thefield{doi}}{#1}}} | |
\DeclareFieldFormat{title}{\usebibmacro{string+doi}{\mkbibemph{#1}}} | |
\DeclareFieldFormat[article]{title}{\usebibmacro{string+doi}{\mkbibquote{#1}}} |
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
library(tidyverse) | |
library(bibtex) | |
theme_set(theme_minimal()) | |
## You'll need to modify the next line to wherever your bib file is | |
entries <- read.bib("~/Dropbox/bibliography/references.bib") | |
lentries <- length(entries) | |
years <- list(lentries) | |
type <- list(lentries) |
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
netsupport <- function(thedata){ | |
prop_more <- mean(thedata == 1, na.rm = TRUE) | |
prop_less <- mean(thedata == 3, na.rm = TRUE) | |
prop_more - prop_less | |
} |