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 | |
| 00:00:33,140 --> 00:00:40,560 | |
| Even in the midst of flowing time, oppression spins round and round. | |
| 2 | |
| 00:00:40,560 --> 00:00:47,760 | |
| I can't even see the heart that's leaving me, didn't you know? | |
| 3 | |
| 00:00:48,260 --> 00:00:55,000 |
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
| const request = require('request'); | |
| const async = require('async'); | |
| const fs = require('fs'); | |
| const download = require('download'); | |
| let page = 0; | |
| async.whilst( | |
| function () { return page < 5440; }, | |
| // function () { return page < 20; }, | |
| function (callback) { |
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
| (ns jffry.colors.ai) | |
| (defn rgb | |
| [r g b] | |
| (str "rgb(" r "," g "," b ")")) | |
| ;first generation of neural net generated colors from | |
| ;http://lewisandquark.tumblr.com/post/160776374467/new-paint-colors-invented-by-neural-network | |
| ;first checkpoint - basic, valid RGB values |