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
| [[1, "China", 1385566537], [2, "India", 1252139596], [3, "United States", 320050716], [4, "Indonesia", 249865631], [5, "Brazil", 200361925], [6, "Pakistan", 182142594], [7, "Nigeria", 173615345], [8, "Bangladesh", 156594962], [9, "Russia", 142833689], [10, "Japan", 127143577], [11, "Mexico", 122332399], [12, "Philippines", 98393574], [13, "Ethiopia", 94100756], [14, "Vietnam", 91679733], [15, "Germany", 82726626], [16, "Egypt", 82056378], [17, "Iran", 77447168], [18, "Turkey", 74932641], [19, "Congo, Democratic Republic of the", 67513677], [20, "Thailand", 67010502], [21, "France", 64291280], [22, "United Kingdom", 63136265], [23, "Italy", 60990277], [24, "Myanmar", 53259018], [25, "South Africa", 52776130], [26, "Korea, South", 49262698], [27, "Tanzania", 49253126], [28, "Colombia", 48321405], [29, "Spain", 46926963], [30, "Ukraine", 45238805], [31, "Kenya", 44353691], [32, "Argentina", 41446246], [33, "Algeria", 39208194], [34, "Poland", 38216635], [35, "Sudan", 37964306], [36, "Uganda", 37578876], [37, "Ca |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| (function(){ | |
| var t = Array(); | |
| t.push(0); | |
| op.visitSubs ( | |
| function (headline, levelnum) { | |
| t[t.length-1] += 1; | |
| console.log(t.join(".") + ". " + headline.getLineText ()); | |
| }, | |
| function (levelnum) { |
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
| op.visitSubs ( //get bodytext | |
| function (headline, levelnum) { // lineCallback | |
| console.log("lineCB -> headline, levelnum: " + headline.getLineText () + ", " + levelnum); | |
| }, | |
| function (levelnum) { // indentCallback | |
| console.log("indentCB -> levelnum: " + levelnum); | |
| }, | |
| function (levelnum) { // outdentCallback | |
| console.log("outdentCB -> levelnum: " + levelnum); | |
| } |
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
| 549360 | |
| indent:false | |
| trim:false | |
| # | |
| 1 | |
| Moby Dick, or, the whale | |
| /sdcard/Books/MoonReader/Moby Dick Or The Whale - Melville Herman.epub | |
| /sdcard/books/moonreader/moby dick or the whale - melville herman.epub | |
| 6 | |
| 0 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| # http://www.ansibleworks.com/docs/modules.html#digital-ocean | |
| # Create a new Droplet | |
| # Will return the droplet details including the droplet id (used for idempotence) | |
| - name: launch DO droplet | |
| hosts: local | |
| gather_facts: False | |
| tasks: | |
| - name: pwd |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| - hosts: all | |
| tasks: | |
| - name: ensure nginx is installed | |
| action: apt pkg=nginx state=present | |
| - hosts: puppy | |
| vars: | |
| baby: puppy | |
| tasks: | |
| - name: ensure nginx is installed |