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
| /* jslint node: true, esnext: true */ | |
| "use strict"; | |
| var Markov; | |
| var Chance = require('chance'); | |
| function chunk(arr, chunkSize) { | |
| var R = []; | |
| for (var i=0; i<arr.length; i+=chunkSize) | |
| R.push(arr.slice(i,i+chunkSize)); |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am eeeeeta on github. | |
| * I am eeeeeta (https://keybase.io/eeeeeta) on keybase. | |
| * I have a public key whose fingerprint is 3F74 F851 106E 7FAA 384D C5A0 ACDB 5E2B 0342 3DC7 | |
| To claim this, I am signing this object: |
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
| progress = 20 + client->mediaReceiveProgress() * 50 + 0.5; | |
| std::stringstream message; | |
| message.precision(3); | |
| // Enjoyable loading messages! | |
| if (progress < 30) { | |
| message << gettext("Coding next version..."); | |
| } | |
| else if (progress < 50) { | |
| message << gettext("Leaking memory..."); | |
| } |
NewerOlder