- connect kobo to your device
- open a file browser
- navigate to the hidden folder
.kobo/Kobo - open the file
Kobo eReader.conf - navigate to the section
[FeatureSettings] - add the line
ExportHighlights=trueand save - disconnect the device
- now you can long press on a book and export the note file into a .txt file which will be saved alongside your books. to get it connect your ereader.
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
| ;;;; **deep binding** | |
| ;;; look up | |
| (cdr (assq 'the-symbol *the-stack*)) | |
| ;;; funcall | |
| ; wind... | |
| (loop for arg in args |
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
| # Useful for improving Time Machine backup prep. times, Mac App Store install speeds, etc. | |
| sudo sysctl debug.lowpri_throttle_enabled=0 | |
| # To restore defaults | |
| sudo sysctl debug.lowpri_throttle_enabled=1 |
This post also appears on lisper.in.
Reader macros are perhaps not as famous as ordinary macros. While macros are a great way to create your own DSL, reader macros provide even greater flexibility by allowing you to create entirely new syntax on top of Lisp.
Paul Graham explains them very well in [On Lisp][] (Chapter 17, Read-Macros):
The three big moments in a Lisp expression's life are read-time, compile-time, and runtime. Functions are in control at runtime. Macros give us a chance to perform transformations on programs at compile-time. ...read-macros... do their work at read-time.