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
/* | |
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 | |
modified version of the original script: https://gist.github.com/jkubecki/d61d3e953ed5c8379075b5ddd8a95f22 | |
changes: | |
* adds a column indicating samples (EBSP) | |
* updates the database version | |
* escapes double quotes instead of stripping them | |
*/ |
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
import UIKit | |
import PlaygroundSupport | |
class MyViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
// Main view | |
view.backgroundColor = .black |