Skip to content

Instantly share code, notes, and snippets.

View lovettbarron's full-sized avatar
🕶️
at night

Andrew Lovett-Barron lovettbarron

🕶️
at night
View GitHub Profile
@lovettbarron
lovettbarron / Cornell's Notes Template.md
Created February 12, 2024 18:49 — forked from skrymets/Cornell's Notes Template.md
Cornell Note Template for Obsidian
cssclass
cornell-note
Cues

Notes

The Cornell Note-taking System is a popular and effective method for organizing and summarizing information during lectures, readings, or any other form of learning.

@lovettbarron
lovettbarron / README.md
Created February 25, 2019 13:41 — forked from twolfson/README.md
Terms of use and privacy policy evaluation
@lovettbarron
lovettbarron / ExportKindle.js
Created October 29, 2017 21:47 — forked from jkubecki/ExportKindle.js
Amazon Kindle Export
// The following data should be run in the console while viewing the page https://read.amazon.com/
// It will export a CSV file called "download" which can (and should) be renamed with a .csv extension
var db = openDatabase('K4W', '2', 'thedatabase', 1024 * 1024);
getAmazonCsv = function() {
// Set header for CSV export line - change this if you change the fields used
var csvData = "ASIN,Title,Authors,PurchaseDate\n";
db.transaction(function(tx) {