├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── docs ├── codec.md └── palette.md ├── package.json ├── src ├── bits.js ├── codec.js ├── colors.js ├── djb2.js ├── drawRoundedSegment.js ├── eca.js ├── index.js ├── prng.js ├── render.js ├── util.js └── xorshift128.js ├── test ├── 1000.csv ├── analyze-onchain.js ├── animate.js ├── browser.js ├── browser │ ├── index.html │ └── main.js ├── demo.js ├── eca-test.js ├── extension │ ├── index.html │ └── main.js ├── generate-browser.js ├── generate.js ├── get-xkcd-colors.js ├── onchain.js ├── print │ ├── index.html │ └── main.js ├── test.js ├── umatrix │ └── draw.js ├── util │ └── save.js ├── vis-palette.js └── week-1.csv ├── tools ├── animated-encoding.js ├── composition-gif.js ├── generate-palette.js ├── render-timeline.js └── series-gif.js └── www ├── hl-gen.js └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/README.md -------------------------------------------------------------------------------- /docs/codec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/docs/codec.md -------------------------------------------------------------------------------- /docs/palette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/docs/palette.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/package.json -------------------------------------------------------------------------------- /src/bits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/bits.js -------------------------------------------------------------------------------- /src/codec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/codec.js -------------------------------------------------------------------------------- /src/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/colors.js -------------------------------------------------------------------------------- /src/djb2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/djb2.js -------------------------------------------------------------------------------- /src/drawRoundedSegment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/drawRoundedSegment.js -------------------------------------------------------------------------------- /src/eca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/eca.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/index.js -------------------------------------------------------------------------------- /src/prng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/prng.js -------------------------------------------------------------------------------- /src/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/render.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/util.js -------------------------------------------------------------------------------- /src/xorshift128.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/src/xorshift128.js -------------------------------------------------------------------------------- /test/1000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/1000.csv -------------------------------------------------------------------------------- /test/analyze-onchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/analyze-onchain.js -------------------------------------------------------------------------------- /test/animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/animate.js -------------------------------------------------------------------------------- /test/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/browser.js -------------------------------------------------------------------------------- /test/browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/browser/index.html -------------------------------------------------------------------------------- /test/browser/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/browser/main.js -------------------------------------------------------------------------------- /test/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/demo.js -------------------------------------------------------------------------------- /test/eca-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/eca-test.js -------------------------------------------------------------------------------- /test/extension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/extension/index.html -------------------------------------------------------------------------------- /test/extension/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/extension/main.js -------------------------------------------------------------------------------- /test/generate-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/generate-browser.js -------------------------------------------------------------------------------- /test/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/generate.js -------------------------------------------------------------------------------- /test/get-xkcd-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/get-xkcd-colors.js -------------------------------------------------------------------------------- /test/onchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/onchain.js -------------------------------------------------------------------------------- /test/print/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/print/index.html -------------------------------------------------------------------------------- /test/print/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/print/main.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/test.js -------------------------------------------------------------------------------- /test/umatrix/draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/umatrix/draw.js -------------------------------------------------------------------------------- /test/util/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/util/save.js -------------------------------------------------------------------------------- /test/vis-palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/vis-palette.js -------------------------------------------------------------------------------- /test/week-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/test/week-1.csv -------------------------------------------------------------------------------- /tools/animated-encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/tools/animated-encoding.js -------------------------------------------------------------------------------- /tools/composition-gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/tools/composition-gif.js -------------------------------------------------------------------------------- /tools/generate-palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/tools/generate-palette.js -------------------------------------------------------------------------------- /tools/render-timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/tools/render-timeline.js -------------------------------------------------------------------------------- /tools/series-gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/tools/series-gif.js -------------------------------------------------------------------------------- /www/hl-gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/www/hl-gen.js -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattdesl/bitframes/HEAD/www/index.html --------------------------------------------------------------------------------