├── .babelrc ├── .gitignore ├── README.md ├── animations ├── .nojekyll ├── 2014-12-20 │ └── index.html ├── 2014-12-21 │ └── index.html ├── 2014-12-22 │ └── index.html ├── 2014-12-23 │ └── index.html ├── 2014-12-24 │ └── index.html ├── 2014-12-25 │ └── index.html ├── 2014-12-26 │ └── index.html ├── 2014-12-27 │ └── index.html ├── 2014-12-28 │ └── index.html ├── 2014-12-29 │ └── index.html ├── 2014-12-30 │ └── index.html ├── 2014-12-31 │ └── index.html ├── 2015-01-01 │ └── index.html ├── 2015-01-02 │ └── index.html ├── 2015-01-03 │ └── index.html ├── 2015-01-04 │ └── index.html ├── 2015-01-05 │ └── index.html ├── 2015-01-06 │ └── index.html ├── 2015-01-07 │ └── index.html ├── 2015-01-08 │ └── index.html ├── 2015-01-09 │ └── index.html ├── 2015-01-10 │ └── index.html ├── 2015-01-11 │ └── index.html ├── 2015-01-12 │ └── index.html ├── 2015-01-13 │ └── index.html ├── 2015-01-14 │ └── index.html ├── 2015-01-15 │ └── index.html ├── 2015-01-16 │ └── index.html ├── 2015-01-17 │ └── index.html ├── 2015-01-18 │ └── index.html ├── 2015-01-19 │ └── index.html ├── 2015-01-20 │ └── index.html ├── 2015-01-21 │ └── index.html ├── 2015-01-22 │ └── index.html ├── 2015-01-26 │ └── index.html ├── 2015-01-27 │ └── index.html ├── 2015-01-28 │ └── index.html ├── 2015-01-29 │ └── index.html ├── 2015-01-30 │ └── index.html ├── 2015-01-31 │ └── index.html ├── 2015-02-01 │ └── index.html ├── 2015-02-02 │ └── index.html ├── 2015-02-03 │ └── index.html ├── 2015-02-04 │ └── index.html ├── 2015-02-06 │ └── index.html ├── 2015-02-07 │ └── index.html ├── 2015-02-08 │ └── index.html ├── 2015-02-09 │ └── index.html ├── 2015-02-10 │ └── index.html ├── 2015-02-11 │ └── index.html ├── 2015-02-14 │ └── index.html ├── 2015-02-15 │ └── index.html ├── 2015-02-16 │ └── index.html ├── 2015-02-17 │ └── index.html ├── 2015-02-24 │ └── index.html ├── 2015-02-25 │ └── index.html ├── 2015-02-26 │ └── index.html ├── 2015-02-27 │ └── index.html ├── 2015-03-01 │ └── index.html ├── 2015-03-02 │ └── index.html ├── 2015-03-03 │ └── index.html ├── 2015-03-09 │ └── index.html ├── 2015-03-10 │ └── index.html ├── 2015-03-20 │ └── index.html ├── 2015-03-21 │ └── index.html ├── 2015-03-22 │ └── index.html ├── 2015-03-23 │ └── index.html ├── 2015-04-03 │ └── index.html ├── 2015-04-06 │ └── index.html ├── 2016-02-13 │ └── index.html ├── 2016-02-15 │ └── index.html ├── 2016-02-16 │ └── index.html ├── 2016-03-05 │ └── index.html ├── d3.v3.js ├── d3.v3.min.js ├── font-awesome.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── fullscreen │ ├── index.html │ ├── lights.html │ ├── lights2.html │ ├── noise.html │ ├── phase-shift.html │ ├── spiral.html │ ├── star-trails.html │ ├── sunflower.html │ └── waves.html ├── glsl.js ├── index.html ├── perlin.js └── static │ ├── 2014-12-20.png │ ├── 2014-12-20.svg │ ├── 2014-12-21.png │ ├── 2014-12-21.svg │ ├── 2014-12-22.png │ ├── 2014-12-22.svg │ ├── 2014-12-23.png │ ├── 2014-12-23.svg │ ├── 2014-12-24.png │ ├── 2014-12-24.svg │ ├── 2014-12-25.png │ ├── 2014-12-25.svg │ ├── 2014-12-26.png │ ├── 2014-12-26.svg │ ├── 2014-12-27.png │ ├── 2014-12-27.svg │ ├── 2014-12-28.png │ ├── 2014-12-28.svg │ ├── 2014-12-29.png │ ├── 2014-12-29.svg │ ├── 2014-12-30.png │ ├── 2014-12-30.svg │ ├── 2014-12-31.png │ ├── 2014-12-31.svg │ ├── 2015-01-01.png │ ├── 2015-01-01.svg │ ├── 2015-01-02.png │ ├── 2015-01-02.svg │ ├── 2015-01-03.png │ ├── 2015-01-03.svg │ ├── 2015-01-04.png │ ├── 2015-01-04.svg │ ├── 2015-01-05.png │ ├── 2015-01-05.svg │ ├── 2015-01-06.png │ ├── 2015-01-06.svg │ ├── 2015-01-07.png │ ├── 2015-01-07.svg │ ├── 2015-01-08.png │ ├── 2015-01-08.svg │ ├── 2015-01-09.png │ ├── 2015-01-09.svg │ ├── 2015-01-10.png │ ├── 2015-01-10.svg │ ├── 2015-01-11.png │ ├── 2015-01-11.svg │ ├── 2015-01-12.png │ ├── 2015-01-12.svg │ ├── 2015-01-13.png │ ├── 2015-01-13.svg │ ├── 2015-01-14.png │ ├── 2015-01-14.svg │ ├── 2015-01-15.png │ ├── 2015-01-15.svg │ ├── 2015-01-16.png │ ├── 2015-01-16.svg │ ├── 2015-01-17.png │ ├── 2015-01-17.svg │ ├── 2015-01-18.png │ ├── 2015-01-18.svg │ ├── 2015-01-19.png │ ├── 2015-01-19.svg │ ├── 2015-01-20.png │ ├── 2015-01-20.svg │ ├── 2015-01-21.png │ ├── 2015-01-21.svg │ ├── 2015-01-22.png │ ├── 2015-01-22.svg │ ├── 2015-01-26.png │ ├── 2015-01-26.svg │ ├── 2015-01-27.png │ ├── 2015-01-27.svg │ ├── 2015-01-28.png │ ├── 2015-01-28.svg │ ├── 2015-01-29.png │ ├── 2015-01-29.svg │ ├── 2015-01-30.png │ ├── 2015-01-30.svg │ ├── 2015-01-31.png │ ├── 2015-01-31.svg │ ├── 2015-02-01.png │ ├── 2015-02-01.svg │ ├── 2015-02-02.png │ ├── 2015-02-02.svg │ ├── 2015-02-03.png │ ├── 2015-02-03.svg │ ├── 2015-02-04.png │ ├── 2015-02-04.svg │ ├── 2015-02-06.png │ ├── 2015-02-06.svg │ ├── 2015-02-07.png │ ├── 2015-02-07.svg │ ├── 2015-02-08.png │ ├── 2015-02-08.svg │ ├── 2015-02-09.png │ ├── 2015-02-09.svg │ ├── 2015-02-10.png │ ├── 2015-02-10.svg │ ├── 2015-02-11.png │ ├── 2015-02-11.svg │ ├── 2015-02-14.png │ ├── 2015-02-14.svg │ ├── 2015-02-15.png │ ├── 2015-02-15.svg │ ├── 2015-02-16.png │ ├── 2015-02-16.svg │ ├── 2015-02-17.png │ ├── 2015-02-17.svg │ ├── 2015-02-24.png │ ├── 2015-02-24.svg │ ├── 2015-02-25.png │ ├── 2015-02-25.svg │ ├── 2015-02-26.png │ ├── 2015-02-26.svg │ ├── 2015-02-27.png │ ├── 2015-02-27.svg │ ├── 2015-03-01.png │ ├── 2015-03-01.svg │ ├── 2015-03-02.png │ ├── 2015-03-02.svg │ ├── 2015-03-03.png │ ├── 2015-03-03.svg │ ├── 2015-03-09.png │ ├── 2015-03-09.svg │ ├── 2015-03-10.png │ ├── 2015-03-10.svg │ ├── 2015-03-20.png │ ├── 2015-03-20.svg │ ├── 2015-03-21.png │ ├── 2015-03-21.svg │ ├── 2015-03-22.png │ ├── 2015-03-22.svg │ ├── 2015-03-23.png │ ├── 2015-03-23.svg │ ├── 2015-04-03.png │ ├── 2015-04-03.svg │ ├── 2015-04-06.png │ ├── 2015-04-06.svg │ ├── 2016-02-13.png │ ├── 2016-02-15.png │ ├── 2016-02-16.png │ └── 2016-03-05.png ├── assets ├── .nojekyll ├── d3.v3.js ├── d3.v3.min.js ├── font-awesome.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── fullscreen │ ├── index.html │ ├── lights.html │ ├── lights2.html │ ├── noise.html │ ├── phase-shift.html │ ├── spiral.html │ ├── star-trails.html │ ├── sunflower.html │ └── waves.html ├── perlin.js └── static │ ├── 2014-12-20.png │ ├── 2014-12-20.svg │ ├── 2014-12-21.png │ ├── 2014-12-21.svg │ ├── 2014-12-22.png │ ├── 2014-12-22.svg │ ├── 2014-12-23.png │ ├── 2014-12-23.svg │ ├── 2014-12-24.png │ ├── 2014-12-24.svg │ ├── 2014-12-25.png │ ├── 2014-12-25.svg │ ├── 2014-12-26.png │ ├── 2014-12-26.svg │ ├── 2014-12-27.png │ ├── 2014-12-27.svg │ ├── 2014-12-28.png │ ├── 2014-12-28.svg │ ├── 2014-12-29.png │ ├── 2014-12-29.svg │ ├── 2014-12-30.png │ ├── 2014-12-30.svg │ ├── 2014-12-31.png │ ├── 2014-12-31.svg │ ├── 2015-01-01.png │ ├── 2015-01-01.svg │ ├── 2015-01-02.png │ ├── 2015-01-02.svg │ ├── 2015-01-03.png │ ├── 2015-01-03.svg │ ├── 2015-01-04.png │ ├── 2015-01-04.svg │ ├── 2015-01-05.png │ ├── 2015-01-05.svg │ ├── 2015-01-06.png │ ├── 2015-01-06.svg │ ├── 2015-01-07.png │ ├── 2015-01-07.svg │ ├── 2015-01-08.png │ ├── 2015-01-08.svg │ ├── 2015-01-09.png │ ├── 2015-01-09.svg │ ├── 2015-01-10.png │ ├── 2015-01-10.svg │ ├── 2015-01-11.png │ ├── 2015-01-11.svg │ ├── 2015-01-12.png │ ├── 2015-01-12.svg │ ├── 2015-01-13.png │ ├── 2015-01-13.svg │ ├── 2015-01-14.png │ ├── 2015-01-14.svg │ ├── 2015-01-15.png │ ├── 2015-01-15.svg │ ├── 2015-01-16.png │ ├── 2015-01-16.svg │ ├── 2015-01-17.png │ ├── 2015-01-17.svg │ ├── 2015-01-18.png │ ├── 2015-01-18.svg │ ├── 2015-01-19.png │ ├── 2015-01-19.svg │ ├── 2015-01-20.png │ ├── 2015-01-20.svg │ ├── 2015-01-21.png │ ├── 2015-01-21.svg │ ├── 2015-01-22.png │ ├── 2015-01-22.svg │ ├── 2015-01-26.png │ ├── 2015-01-26.svg │ ├── 2015-01-27.png │ ├── 2015-01-27.svg │ ├── 2015-01-28.png │ ├── 2015-01-28.svg │ ├── 2015-01-29.png │ ├── 2015-01-29.svg │ ├── 2015-01-30.png │ ├── 2015-01-30.svg │ ├── 2015-01-31.png │ ├── 2015-01-31.svg │ ├── 2015-02-01.png │ ├── 2015-02-01.svg │ ├── 2015-02-02.png │ ├── 2015-02-02.svg │ ├── 2015-02-03.png │ ├── 2015-02-03.svg │ ├── 2015-02-04.png │ ├── 2015-02-04.svg │ ├── 2015-02-06.png │ ├── 2015-02-06.svg │ ├── 2015-02-07.png │ ├── 2015-02-07.svg │ ├── 2015-02-08.png │ ├── 2015-02-08.svg │ ├── 2015-02-09.png │ ├── 2015-02-09.svg │ ├── 2015-02-10.png │ ├── 2015-02-10.svg │ ├── 2015-02-11.png │ ├── 2015-02-11.svg │ ├── 2015-02-14.png │ ├── 2015-02-14.svg │ ├── 2015-02-15.png │ ├── 2015-02-15.svg │ ├── 2015-02-16.png │ ├── 2015-02-16.svg │ ├── 2015-02-17.png │ ├── 2015-02-17.svg │ ├── 2015-02-24.png │ ├── 2015-02-24.svg │ ├── 2015-02-25.png │ ├── 2015-02-25.svg │ ├── 2015-02-26.png │ ├── 2015-02-26.svg │ ├── 2015-02-27.png │ ├── 2015-02-27.svg │ ├── 2015-03-01.png │ ├── 2015-03-01.svg │ ├── 2015-03-02.png │ ├── 2015-03-02.svg │ ├── 2015-03-03.png │ ├── 2015-03-03.svg │ ├── 2015-03-09.png │ ├── 2015-03-09.svg │ ├── 2015-03-10.png │ ├── 2015-03-10.svg │ ├── 2015-03-20.png │ ├── 2015-03-20.svg │ ├── 2015-03-21.png │ ├── 2015-03-21.svg │ ├── 2015-03-22.png │ ├── 2015-03-22.svg │ ├── 2015-03-23.png │ ├── 2015-03-23.svg │ ├── 2015-04-03.png │ ├── 2015-04-03.svg │ ├── 2015-04-06.png │ └── 2015-04-06.svg ├── drafts ├── 2015-01-05-plant.html ├── 2015-01-14-lolmoon.html ├── 2015-01-26-fuzz.html └── 2015-02-02-lights.html ├── layouts ├── default.html ├── glsl.html └── index.html ├── metalsmith.js ├── package.json ├── posts ├── 2014-12-20-lines.html ├── 2014-12-21-lines.html ├── 2014-12-22-dots.html ├── 2014-12-23-arcs.html ├── 2014-12-24-stars.html ├── 2014-12-25-snow.html ├── 2014-12-26-wave.html ├── 2014-12-27-moon.html ├── 2014-12-28-circles.html ├── 2014-12-29-clock.html ├── 2014-12-30-drip.html ├── 2014-12-31-flock.html ├── 2015-01-01-drops.html ├── 2015-01-02-plant.html ├── 2015-01-03-squares.html ├── 2015-01-04-plant.html ├── 2015-01-05-arcs.html ├── 2015-01-06-star-trails.html ├── 2015-01-07-lines.html ├── 2015-01-08-phase-shift.html ├── 2015-01-09-phase-shift.html ├── 2015-01-10-phase-shift.html ├── 2015-01-11-moon.html ├── 2015-01-12-triangles.html ├── 2015-01-13-goldsworthy.html ├── 2015-01-14-moon.html ├── 2015-01-15-waves.html ├── 2015-01-16-moon.html ├── 2015-01-17-lights.html ├── 2015-01-18-waves.html ├── 2015-01-19-parametric.html ├── 2015-01-20-lights.html ├── 2015-01-21-hexes.html ├── 2015-01-22-blinkenmoon.html ├── 2015-01-26-mountains.html ├── 2015-01-27-air.html ├── 2015-01-28-spotlight.html ├── 2015-01-29-hexes.html ├── 2015-01-30-hexes.html ├── 2015-01-31-hexes.html ├── 2015-02-01-hexes.html ├── 2015-02-02-lights.html ├── 2015-02-03-spiral.html ├── 2015-02-04-ribbon.html ├── 2015-02-06-lissajous.html ├── 2015-02-07-lissajous.html ├── 2015-02-08-circles.html ├── 2015-02-09-rotation.html ├── 2015-02-10-rotation.html ├── 2015-02-11-shadow.html ├── 2015-02-14-lissajous.html ├── 2015-02-15-rotation.html ├── 2015-02-16-weave.html ├── 2015-02-17-clipping.html ├── 2015-02-24-skewing.html ├── 2015-02-25-lissajous.html ├── 2015-02-26-lissajous.html ├── 2015-02-27-shadow.html ├── 2015-03-01-dodecagon.html ├── 2015-03-02-circles.html ├── 2015-03-03-shadow.html ├── 2015-03-09-mobile.html ├── 2015-03-10-spiral.html ├── 2015-03-20-spiral.html ├── 2015-03-21-spiral.html ├── 2015-03-22-noise.html ├── 2015-03-23-noise.html ├── 2015-04-03-noise.html ├── 2015-04-06-sunflower.html ├── 2016-02-13.glsl ├── 2016-02-15.glsl ├── 2016-02-16.glsl └── 2016-03-05.glsl ├── src ├── glsl.js ├── render.js └── thumbnail.js └── static.sh /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/README.md -------------------------------------------------------------------------------- /animations/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/2014-12-20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-20/index.html -------------------------------------------------------------------------------- /animations/2014-12-21/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-21/index.html -------------------------------------------------------------------------------- /animations/2014-12-22/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-22/index.html -------------------------------------------------------------------------------- /animations/2014-12-23/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-23/index.html -------------------------------------------------------------------------------- /animations/2014-12-24/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-24/index.html -------------------------------------------------------------------------------- /animations/2014-12-25/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-25/index.html -------------------------------------------------------------------------------- /animations/2014-12-26/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-26/index.html -------------------------------------------------------------------------------- /animations/2014-12-27/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-27/index.html -------------------------------------------------------------------------------- /animations/2014-12-28/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-28/index.html -------------------------------------------------------------------------------- /animations/2014-12-29/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-29/index.html -------------------------------------------------------------------------------- /animations/2014-12-30/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-30/index.html -------------------------------------------------------------------------------- /animations/2014-12-31/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2014-12-31/index.html -------------------------------------------------------------------------------- /animations/2015-01-01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-01/index.html -------------------------------------------------------------------------------- /animations/2015-01-02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-02/index.html -------------------------------------------------------------------------------- /animations/2015-01-03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-03/index.html -------------------------------------------------------------------------------- /animations/2015-01-04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-04/index.html -------------------------------------------------------------------------------- /animations/2015-01-05/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-05/index.html -------------------------------------------------------------------------------- /animations/2015-01-06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-06/index.html -------------------------------------------------------------------------------- /animations/2015-01-07/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-07/index.html -------------------------------------------------------------------------------- /animations/2015-01-08/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-08/index.html -------------------------------------------------------------------------------- /animations/2015-01-09/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-09/index.html -------------------------------------------------------------------------------- /animations/2015-01-10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-10/index.html -------------------------------------------------------------------------------- /animations/2015-01-11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-11/index.html -------------------------------------------------------------------------------- /animations/2015-01-12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-12/index.html -------------------------------------------------------------------------------- /animations/2015-01-13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-13/index.html -------------------------------------------------------------------------------- /animations/2015-01-14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-14/index.html -------------------------------------------------------------------------------- /animations/2015-01-15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-15/index.html -------------------------------------------------------------------------------- /animations/2015-01-16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-16/index.html -------------------------------------------------------------------------------- /animations/2015-01-17/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-17/index.html -------------------------------------------------------------------------------- /animations/2015-01-18/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-18/index.html -------------------------------------------------------------------------------- /animations/2015-01-19/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-19/index.html -------------------------------------------------------------------------------- /animations/2015-01-20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-20/index.html -------------------------------------------------------------------------------- /animations/2015-01-21/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-21/index.html -------------------------------------------------------------------------------- /animations/2015-01-22/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-22/index.html -------------------------------------------------------------------------------- /animations/2015-01-26/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-26/index.html -------------------------------------------------------------------------------- /animations/2015-01-27/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-27/index.html -------------------------------------------------------------------------------- /animations/2015-01-28/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-28/index.html -------------------------------------------------------------------------------- /animations/2015-01-29/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-29/index.html -------------------------------------------------------------------------------- /animations/2015-01-30/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-30/index.html -------------------------------------------------------------------------------- /animations/2015-01-31/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-01-31/index.html -------------------------------------------------------------------------------- /animations/2015-02-01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-01/index.html -------------------------------------------------------------------------------- /animations/2015-02-02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-02/index.html -------------------------------------------------------------------------------- /animations/2015-02-03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-03/index.html -------------------------------------------------------------------------------- /animations/2015-02-04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-04/index.html -------------------------------------------------------------------------------- /animations/2015-02-06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-06/index.html -------------------------------------------------------------------------------- /animations/2015-02-07/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-07/index.html -------------------------------------------------------------------------------- /animations/2015-02-08/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-08/index.html -------------------------------------------------------------------------------- /animations/2015-02-09/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-09/index.html -------------------------------------------------------------------------------- /animations/2015-02-10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-10/index.html -------------------------------------------------------------------------------- /animations/2015-02-11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-11/index.html -------------------------------------------------------------------------------- /animations/2015-02-14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-14/index.html -------------------------------------------------------------------------------- /animations/2015-02-15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-15/index.html -------------------------------------------------------------------------------- /animations/2015-02-16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-16/index.html -------------------------------------------------------------------------------- /animations/2015-02-17/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-17/index.html -------------------------------------------------------------------------------- /animations/2015-02-24/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-24/index.html -------------------------------------------------------------------------------- /animations/2015-02-25/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-25/index.html -------------------------------------------------------------------------------- /animations/2015-02-26/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-26/index.html -------------------------------------------------------------------------------- /animations/2015-02-27/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-02-27/index.html -------------------------------------------------------------------------------- /animations/2015-03-01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-03-01/index.html -------------------------------------------------------------------------------- /animations/2015-03-02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-03-02/index.html -------------------------------------------------------------------------------- /animations/2015-03-03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-03-03/index.html -------------------------------------------------------------------------------- /animations/2015-03-09/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-03-09/index.html -------------------------------------------------------------------------------- /animations/2015-03-10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-03-10/index.html -------------------------------------------------------------------------------- /animations/2015-03-20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-03-20/index.html -------------------------------------------------------------------------------- /animations/2015-03-21/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-03-21/index.html -------------------------------------------------------------------------------- /animations/2015-03-22/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-03-22/index.html -------------------------------------------------------------------------------- /animations/2015-03-23/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-03-23/index.html -------------------------------------------------------------------------------- /animations/2015-04-03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-04-03/index.html -------------------------------------------------------------------------------- /animations/2015-04-06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2015-04-06/index.html -------------------------------------------------------------------------------- /animations/2016-02-13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2016-02-13/index.html -------------------------------------------------------------------------------- /animations/2016-02-15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2016-02-15/index.html -------------------------------------------------------------------------------- /animations/2016-02-16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2016-02-16/index.html -------------------------------------------------------------------------------- /animations/2016-03-05/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/2016-03-05/index.html -------------------------------------------------------------------------------- /animations/d3.v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/d3.v3.js -------------------------------------------------------------------------------- /animations/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/d3.v3.min.js -------------------------------------------------------------------------------- /animations/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/font-awesome.css -------------------------------------------------------------------------------- /animations/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /animations/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /animations/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /animations/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /animations/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /animations/fullscreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fullscreen/index.html -------------------------------------------------------------------------------- /animations/fullscreen/lights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fullscreen/lights.html -------------------------------------------------------------------------------- /animations/fullscreen/lights2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fullscreen/lights2.html -------------------------------------------------------------------------------- /animations/fullscreen/noise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fullscreen/noise.html -------------------------------------------------------------------------------- /animations/fullscreen/phase-shift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fullscreen/phase-shift.html -------------------------------------------------------------------------------- /animations/fullscreen/spiral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fullscreen/spiral.html -------------------------------------------------------------------------------- /animations/fullscreen/star-trails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fullscreen/star-trails.html -------------------------------------------------------------------------------- /animations/fullscreen/sunflower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fullscreen/sunflower.html -------------------------------------------------------------------------------- /animations/fullscreen/waves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/fullscreen/waves.html -------------------------------------------------------------------------------- /animations/glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/glsl.js -------------------------------------------------------------------------------- /animations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/index.html -------------------------------------------------------------------------------- /animations/perlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/perlin.js -------------------------------------------------------------------------------- /animations/static/2014-12-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-20.png -------------------------------------------------------------------------------- /animations/static/2014-12-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-20.svg -------------------------------------------------------------------------------- /animations/static/2014-12-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-21.png -------------------------------------------------------------------------------- /animations/static/2014-12-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-21.svg -------------------------------------------------------------------------------- /animations/static/2014-12-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-22.png -------------------------------------------------------------------------------- /animations/static/2014-12-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-22.svg -------------------------------------------------------------------------------- /animations/static/2014-12-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-23.png -------------------------------------------------------------------------------- /animations/static/2014-12-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-23.svg -------------------------------------------------------------------------------- /animations/static/2014-12-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-24.png -------------------------------------------------------------------------------- /animations/static/2014-12-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-24.svg -------------------------------------------------------------------------------- /animations/static/2014-12-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-25.png -------------------------------------------------------------------------------- /animations/static/2014-12-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-25.svg -------------------------------------------------------------------------------- /animations/static/2014-12-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-26.png -------------------------------------------------------------------------------- /animations/static/2014-12-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-26.svg -------------------------------------------------------------------------------- /animations/static/2014-12-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-27.png -------------------------------------------------------------------------------- /animations/static/2014-12-27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-27.svg -------------------------------------------------------------------------------- /animations/static/2014-12-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-28.png -------------------------------------------------------------------------------- /animations/static/2014-12-28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-28.svg -------------------------------------------------------------------------------- /animations/static/2014-12-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-29.png -------------------------------------------------------------------------------- /animations/static/2014-12-29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-29.svg -------------------------------------------------------------------------------- /animations/static/2014-12-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-30.png -------------------------------------------------------------------------------- /animations/static/2014-12-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-30.svg -------------------------------------------------------------------------------- /animations/static/2014-12-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-31.png -------------------------------------------------------------------------------- /animations/static/2014-12-31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2014-12-31.svg -------------------------------------------------------------------------------- /animations/static/2015-01-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-01.png -------------------------------------------------------------------------------- /animations/static/2015-01-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-01.svg -------------------------------------------------------------------------------- /animations/static/2015-01-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-02.png -------------------------------------------------------------------------------- /animations/static/2015-01-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-02.svg -------------------------------------------------------------------------------- /animations/static/2015-01-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-03.png -------------------------------------------------------------------------------- /animations/static/2015-01-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-03.svg -------------------------------------------------------------------------------- /animations/static/2015-01-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-04.png -------------------------------------------------------------------------------- /animations/static/2015-01-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-04.svg -------------------------------------------------------------------------------- /animations/static/2015-01-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-05.png -------------------------------------------------------------------------------- /animations/static/2015-01-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-05.svg -------------------------------------------------------------------------------- /animations/static/2015-01-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-06.png -------------------------------------------------------------------------------- /animations/static/2015-01-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-06.svg -------------------------------------------------------------------------------- /animations/static/2015-01-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-07.png -------------------------------------------------------------------------------- /animations/static/2015-01-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-07.svg -------------------------------------------------------------------------------- /animations/static/2015-01-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-08.png -------------------------------------------------------------------------------- /animations/static/2015-01-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-08.svg -------------------------------------------------------------------------------- /animations/static/2015-01-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-09.png -------------------------------------------------------------------------------- /animations/static/2015-01-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-09.svg -------------------------------------------------------------------------------- /animations/static/2015-01-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-10.png -------------------------------------------------------------------------------- /animations/static/2015-01-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-10.svg -------------------------------------------------------------------------------- /animations/static/2015-01-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-11.png -------------------------------------------------------------------------------- /animations/static/2015-01-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-11.svg -------------------------------------------------------------------------------- /animations/static/2015-01-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-12.png -------------------------------------------------------------------------------- /animations/static/2015-01-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-12.svg -------------------------------------------------------------------------------- /animations/static/2015-01-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-13.png -------------------------------------------------------------------------------- /animations/static/2015-01-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-13.svg -------------------------------------------------------------------------------- /animations/static/2015-01-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-14.png -------------------------------------------------------------------------------- /animations/static/2015-01-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-14.svg -------------------------------------------------------------------------------- /animations/static/2015-01-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-15.png -------------------------------------------------------------------------------- /animations/static/2015-01-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-15.svg -------------------------------------------------------------------------------- /animations/static/2015-01-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-16.png -------------------------------------------------------------------------------- /animations/static/2015-01-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-16.svg -------------------------------------------------------------------------------- /animations/static/2015-01-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-17.png -------------------------------------------------------------------------------- /animations/static/2015-01-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-17.svg -------------------------------------------------------------------------------- /animations/static/2015-01-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-18.png -------------------------------------------------------------------------------- /animations/static/2015-01-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-18.svg -------------------------------------------------------------------------------- /animations/static/2015-01-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-19.png -------------------------------------------------------------------------------- /animations/static/2015-01-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-19.svg -------------------------------------------------------------------------------- /animations/static/2015-01-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-20.png -------------------------------------------------------------------------------- /animations/static/2015-01-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-20.svg -------------------------------------------------------------------------------- /animations/static/2015-01-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-21.png -------------------------------------------------------------------------------- /animations/static/2015-01-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-21.svg -------------------------------------------------------------------------------- /animations/static/2015-01-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-22.png -------------------------------------------------------------------------------- /animations/static/2015-01-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-22.svg -------------------------------------------------------------------------------- /animations/static/2015-01-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-26.png -------------------------------------------------------------------------------- /animations/static/2015-01-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-26.svg -------------------------------------------------------------------------------- /animations/static/2015-01-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-27.png -------------------------------------------------------------------------------- /animations/static/2015-01-27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-27.svg -------------------------------------------------------------------------------- /animations/static/2015-01-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-28.png -------------------------------------------------------------------------------- /animations/static/2015-01-28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-28.svg -------------------------------------------------------------------------------- /animations/static/2015-01-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-29.png -------------------------------------------------------------------------------- /animations/static/2015-01-29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-29.svg -------------------------------------------------------------------------------- /animations/static/2015-01-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-30.png -------------------------------------------------------------------------------- /animations/static/2015-01-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-30.svg -------------------------------------------------------------------------------- /animations/static/2015-01-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-31.png -------------------------------------------------------------------------------- /animations/static/2015-01-31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-01-31.svg -------------------------------------------------------------------------------- /animations/static/2015-02-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-01.png -------------------------------------------------------------------------------- /animations/static/2015-02-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-01.svg -------------------------------------------------------------------------------- /animations/static/2015-02-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-02.png -------------------------------------------------------------------------------- /animations/static/2015-02-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-02.svg -------------------------------------------------------------------------------- /animations/static/2015-02-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-03.png -------------------------------------------------------------------------------- /animations/static/2015-02-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-03.svg -------------------------------------------------------------------------------- /animations/static/2015-02-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-04.png -------------------------------------------------------------------------------- /animations/static/2015-02-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-04.svg -------------------------------------------------------------------------------- /animations/static/2015-02-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-06.png -------------------------------------------------------------------------------- /animations/static/2015-02-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-06.svg -------------------------------------------------------------------------------- /animations/static/2015-02-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-07.png -------------------------------------------------------------------------------- /animations/static/2015-02-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-07.svg -------------------------------------------------------------------------------- /animations/static/2015-02-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-08.png -------------------------------------------------------------------------------- /animations/static/2015-02-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-08.svg -------------------------------------------------------------------------------- /animations/static/2015-02-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-09.png -------------------------------------------------------------------------------- /animations/static/2015-02-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-09.svg -------------------------------------------------------------------------------- /animations/static/2015-02-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-10.png -------------------------------------------------------------------------------- /animations/static/2015-02-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-10.svg -------------------------------------------------------------------------------- /animations/static/2015-02-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-11.png -------------------------------------------------------------------------------- /animations/static/2015-02-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-11.svg -------------------------------------------------------------------------------- /animations/static/2015-02-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-14.png -------------------------------------------------------------------------------- /animations/static/2015-02-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-14.svg -------------------------------------------------------------------------------- /animations/static/2015-02-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-15.png -------------------------------------------------------------------------------- /animations/static/2015-02-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-15.svg -------------------------------------------------------------------------------- /animations/static/2015-02-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-16.png -------------------------------------------------------------------------------- /animations/static/2015-02-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-16.svg -------------------------------------------------------------------------------- /animations/static/2015-02-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-17.png -------------------------------------------------------------------------------- /animations/static/2015-02-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-17.svg -------------------------------------------------------------------------------- /animations/static/2015-02-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-24.png -------------------------------------------------------------------------------- /animations/static/2015-02-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-24.svg -------------------------------------------------------------------------------- /animations/static/2015-02-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-25.png -------------------------------------------------------------------------------- /animations/static/2015-02-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-25.svg -------------------------------------------------------------------------------- /animations/static/2015-02-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-26.png -------------------------------------------------------------------------------- /animations/static/2015-02-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-26.svg -------------------------------------------------------------------------------- /animations/static/2015-02-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-27.png -------------------------------------------------------------------------------- /animations/static/2015-02-27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-02-27.svg -------------------------------------------------------------------------------- /animations/static/2015-03-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-01.png -------------------------------------------------------------------------------- /animations/static/2015-03-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-01.svg -------------------------------------------------------------------------------- /animations/static/2015-03-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-02.png -------------------------------------------------------------------------------- /animations/static/2015-03-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-02.svg -------------------------------------------------------------------------------- /animations/static/2015-03-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-03.png -------------------------------------------------------------------------------- /animations/static/2015-03-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-03.svg -------------------------------------------------------------------------------- /animations/static/2015-03-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-09.png -------------------------------------------------------------------------------- /animations/static/2015-03-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-09.svg -------------------------------------------------------------------------------- /animations/static/2015-03-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-10.png -------------------------------------------------------------------------------- /animations/static/2015-03-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-10.svg -------------------------------------------------------------------------------- /animations/static/2015-03-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-20.png -------------------------------------------------------------------------------- /animations/static/2015-03-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-20.svg -------------------------------------------------------------------------------- /animations/static/2015-03-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-21.png -------------------------------------------------------------------------------- /animations/static/2015-03-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-21.svg -------------------------------------------------------------------------------- /animations/static/2015-03-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-22.png -------------------------------------------------------------------------------- /animations/static/2015-03-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-22.svg -------------------------------------------------------------------------------- /animations/static/2015-03-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-23.png -------------------------------------------------------------------------------- /animations/static/2015-03-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-03-23.svg -------------------------------------------------------------------------------- /animations/static/2015-04-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-04-03.png -------------------------------------------------------------------------------- /animations/static/2015-04-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-04-03.svg -------------------------------------------------------------------------------- /animations/static/2015-04-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-04-06.png -------------------------------------------------------------------------------- /animations/static/2015-04-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2015-04-06.svg -------------------------------------------------------------------------------- /animations/static/2016-02-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2016-02-13.png -------------------------------------------------------------------------------- /animations/static/2016-02-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2016-02-15.png -------------------------------------------------------------------------------- /animations/static/2016-02-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2016-02-16.png -------------------------------------------------------------------------------- /animations/static/2016-03-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/animations/static/2016-03-05.png -------------------------------------------------------------------------------- /assets/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/d3.v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/d3.v3.js -------------------------------------------------------------------------------- /assets/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/d3.v3.min.js -------------------------------------------------------------------------------- /assets/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/font-awesome.css -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fullscreen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fullscreen/index.html -------------------------------------------------------------------------------- /assets/fullscreen/lights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fullscreen/lights.html -------------------------------------------------------------------------------- /assets/fullscreen/lights2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fullscreen/lights2.html -------------------------------------------------------------------------------- /assets/fullscreen/noise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fullscreen/noise.html -------------------------------------------------------------------------------- /assets/fullscreen/phase-shift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fullscreen/phase-shift.html -------------------------------------------------------------------------------- /assets/fullscreen/spiral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fullscreen/spiral.html -------------------------------------------------------------------------------- /assets/fullscreen/star-trails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fullscreen/star-trails.html -------------------------------------------------------------------------------- /assets/fullscreen/sunflower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fullscreen/sunflower.html -------------------------------------------------------------------------------- /assets/fullscreen/waves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/fullscreen/waves.html -------------------------------------------------------------------------------- /assets/perlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/perlin.js -------------------------------------------------------------------------------- /assets/static/2014-12-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-20.png -------------------------------------------------------------------------------- /assets/static/2014-12-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-20.svg -------------------------------------------------------------------------------- /assets/static/2014-12-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-21.png -------------------------------------------------------------------------------- /assets/static/2014-12-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-21.svg -------------------------------------------------------------------------------- /assets/static/2014-12-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-22.png -------------------------------------------------------------------------------- /assets/static/2014-12-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-22.svg -------------------------------------------------------------------------------- /assets/static/2014-12-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-23.png -------------------------------------------------------------------------------- /assets/static/2014-12-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-23.svg -------------------------------------------------------------------------------- /assets/static/2014-12-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-24.png -------------------------------------------------------------------------------- /assets/static/2014-12-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-24.svg -------------------------------------------------------------------------------- /assets/static/2014-12-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-25.png -------------------------------------------------------------------------------- /assets/static/2014-12-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-25.svg -------------------------------------------------------------------------------- /assets/static/2014-12-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-26.png -------------------------------------------------------------------------------- /assets/static/2014-12-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-26.svg -------------------------------------------------------------------------------- /assets/static/2014-12-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-27.png -------------------------------------------------------------------------------- /assets/static/2014-12-27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-27.svg -------------------------------------------------------------------------------- /assets/static/2014-12-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-28.png -------------------------------------------------------------------------------- /assets/static/2014-12-28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-28.svg -------------------------------------------------------------------------------- /assets/static/2014-12-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-29.png -------------------------------------------------------------------------------- /assets/static/2014-12-29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-29.svg -------------------------------------------------------------------------------- /assets/static/2014-12-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-30.png -------------------------------------------------------------------------------- /assets/static/2014-12-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-30.svg -------------------------------------------------------------------------------- /assets/static/2014-12-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-31.png -------------------------------------------------------------------------------- /assets/static/2014-12-31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2014-12-31.svg -------------------------------------------------------------------------------- /assets/static/2015-01-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-01.png -------------------------------------------------------------------------------- /assets/static/2015-01-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-01.svg -------------------------------------------------------------------------------- /assets/static/2015-01-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-02.png -------------------------------------------------------------------------------- /assets/static/2015-01-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-02.svg -------------------------------------------------------------------------------- /assets/static/2015-01-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-03.png -------------------------------------------------------------------------------- /assets/static/2015-01-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-03.svg -------------------------------------------------------------------------------- /assets/static/2015-01-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-04.png -------------------------------------------------------------------------------- /assets/static/2015-01-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-04.svg -------------------------------------------------------------------------------- /assets/static/2015-01-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-05.png -------------------------------------------------------------------------------- /assets/static/2015-01-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-05.svg -------------------------------------------------------------------------------- /assets/static/2015-01-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-06.png -------------------------------------------------------------------------------- /assets/static/2015-01-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-06.svg -------------------------------------------------------------------------------- /assets/static/2015-01-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-07.png -------------------------------------------------------------------------------- /assets/static/2015-01-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-07.svg -------------------------------------------------------------------------------- /assets/static/2015-01-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-08.png -------------------------------------------------------------------------------- /assets/static/2015-01-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-08.svg -------------------------------------------------------------------------------- /assets/static/2015-01-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-09.png -------------------------------------------------------------------------------- /assets/static/2015-01-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-09.svg -------------------------------------------------------------------------------- /assets/static/2015-01-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-10.png -------------------------------------------------------------------------------- /assets/static/2015-01-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-10.svg -------------------------------------------------------------------------------- /assets/static/2015-01-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-11.png -------------------------------------------------------------------------------- /assets/static/2015-01-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-11.svg -------------------------------------------------------------------------------- /assets/static/2015-01-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-12.png -------------------------------------------------------------------------------- /assets/static/2015-01-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-12.svg -------------------------------------------------------------------------------- /assets/static/2015-01-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-13.png -------------------------------------------------------------------------------- /assets/static/2015-01-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-13.svg -------------------------------------------------------------------------------- /assets/static/2015-01-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-14.png -------------------------------------------------------------------------------- /assets/static/2015-01-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-14.svg -------------------------------------------------------------------------------- /assets/static/2015-01-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-15.png -------------------------------------------------------------------------------- /assets/static/2015-01-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-15.svg -------------------------------------------------------------------------------- /assets/static/2015-01-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-16.png -------------------------------------------------------------------------------- /assets/static/2015-01-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-16.svg -------------------------------------------------------------------------------- /assets/static/2015-01-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-17.png -------------------------------------------------------------------------------- /assets/static/2015-01-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-17.svg -------------------------------------------------------------------------------- /assets/static/2015-01-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-18.png -------------------------------------------------------------------------------- /assets/static/2015-01-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-18.svg -------------------------------------------------------------------------------- /assets/static/2015-01-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-19.png -------------------------------------------------------------------------------- /assets/static/2015-01-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-19.svg -------------------------------------------------------------------------------- /assets/static/2015-01-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-20.png -------------------------------------------------------------------------------- /assets/static/2015-01-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-20.svg -------------------------------------------------------------------------------- /assets/static/2015-01-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-21.png -------------------------------------------------------------------------------- /assets/static/2015-01-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-21.svg -------------------------------------------------------------------------------- /assets/static/2015-01-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-22.png -------------------------------------------------------------------------------- /assets/static/2015-01-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-22.svg -------------------------------------------------------------------------------- /assets/static/2015-01-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-26.png -------------------------------------------------------------------------------- /assets/static/2015-01-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-26.svg -------------------------------------------------------------------------------- /assets/static/2015-01-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-27.png -------------------------------------------------------------------------------- /assets/static/2015-01-27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-27.svg -------------------------------------------------------------------------------- /assets/static/2015-01-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-28.png -------------------------------------------------------------------------------- /assets/static/2015-01-28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-28.svg -------------------------------------------------------------------------------- /assets/static/2015-01-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-29.png -------------------------------------------------------------------------------- /assets/static/2015-01-29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-29.svg -------------------------------------------------------------------------------- /assets/static/2015-01-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-30.png -------------------------------------------------------------------------------- /assets/static/2015-01-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-30.svg -------------------------------------------------------------------------------- /assets/static/2015-01-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-31.png -------------------------------------------------------------------------------- /assets/static/2015-01-31.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-01-31.svg -------------------------------------------------------------------------------- /assets/static/2015-02-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-01.png -------------------------------------------------------------------------------- /assets/static/2015-02-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-01.svg -------------------------------------------------------------------------------- /assets/static/2015-02-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-02.png -------------------------------------------------------------------------------- /assets/static/2015-02-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-02.svg -------------------------------------------------------------------------------- /assets/static/2015-02-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-03.png -------------------------------------------------------------------------------- /assets/static/2015-02-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-03.svg -------------------------------------------------------------------------------- /assets/static/2015-02-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-04.png -------------------------------------------------------------------------------- /assets/static/2015-02-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-04.svg -------------------------------------------------------------------------------- /assets/static/2015-02-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-06.png -------------------------------------------------------------------------------- /assets/static/2015-02-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-06.svg -------------------------------------------------------------------------------- /assets/static/2015-02-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-07.png -------------------------------------------------------------------------------- /assets/static/2015-02-07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-07.svg -------------------------------------------------------------------------------- /assets/static/2015-02-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-08.png -------------------------------------------------------------------------------- /assets/static/2015-02-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-08.svg -------------------------------------------------------------------------------- /assets/static/2015-02-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-09.png -------------------------------------------------------------------------------- /assets/static/2015-02-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-09.svg -------------------------------------------------------------------------------- /assets/static/2015-02-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-10.png -------------------------------------------------------------------------------- /assets/static/2015-02-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-10.svg -------------------------------------------------------------------------------- /assets/static/2015-02-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-11.png -------------------------------------------------------------------------------- /assets/static/2015-02-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-11.svg -------------------------------------------------------------------------------- /assets/static/2015-02-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-14.png -------------------------------------------------------------------------------- /assets/static/2015-02-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-14.svg -------------------------------------------------------------------------------- /assets/static/2015-02-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-15.png -------------------------------------------------------------------------------- /assets/static/2015-02-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-15.svg -------------------------------------------------------------------------------- /assets/static/2015-02-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-16.png -------------------------------------------------------------------------------- /assets/static/2015-02-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-16.svg -------------------------------------------------------------------------------- /assets/static/2015-02-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-17.png -------------------------------------------------------------------------------- /assets/static/2015-02-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-17.svg -------------------------------------------------------------------------------- /assets/static/2015-02-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-24.png -------------------------------------------------------------------------------- /assets/static/2015-02-24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-24.svg -------------------------------------------------------------------------------- /assets/static/2015-02-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-25.png -------------------------------------------------------------------------------- /assets/static/2015-02-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-25.svg -------------------------------------------------------------------------------- /assets/static/2015-02-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-26.png -------------------------------------------------------------------------------- /assets/static/2015-02-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-26.svg -------------------------------------------------------------------------------- /assets/static/2015-02-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-27.png -------------------------------------------------------------------------------- /assets/static/2015-02-27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-02-27.svg -------------------------------------------------------------------------------- /assets/static/2015-03-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-01.png -------------------------------------------------------------------------------- /assets/static/2015-03-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-01.svg -------------------------------------------------------------------------------- /assets/static/2015-03-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-02.png -------------------------------------------------------------------------------- /assets/static/2015-03-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-02.svg -------------------------------------------------------------------------------- /assets/static/2015-03-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-03.png -------------------------------------------------------------------------------- /assets/static/2015-03-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-03.svg -------------------------------------------------------------------------------- /assets/static/2015-03-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-09.png -------------------------------------------------------------------------------- /assets/static/2015-03-09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-09.svg -------------------------------------------------------------------------------- /assets/static/2015-03-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-10.png -------------------------------------------------------------------------------- /assets/static/2015-03-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-10.svg -------------------------------------------------------------------------------- /assets/static/2015-03-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-20.png -------------------------------------------------------------------------------- /assets/static/2015-03-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-20.svg -------------------------------------------------------------------------------- /assets/static/2015-03-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-21.png -------------------------------------------------------------------------------- /assets/static/2015-03-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-21.svg -------------------------------------------------------------------------------- /assets/static/2015-03-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-22.png -------------------------------------------------------------------------------- /assets/static/2015-03-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-22.svg -------------------------------------------------------------------------------- /assets/static/2015-03-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-23.png -------------------------------------------------------------------------------- /assets/static/2015-03-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-03-23.svg -------------------------------------------------------------------------------- /assets/static/2015-04-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-04-03.png -------------------------------------------------------------------------------- /assets/static/2015-04-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-04-03.svg -------------------------------------------------------------------------------- /assets/static/2015-04-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-04-06.png -------------------------------------------------------------------------------- /assets/static/2015-04-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/assets/static/2015-04-06.svg -------------------------------------------------------------------------------- /drafts/2015-01-05-plant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/drafts/2015-01-05-plant.html -------------------------------------------------------------------------------- /drafts/2015-01-14-lolmoon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/drafts/2015-01-14-lolmoon.html -------------------------------------------------------------------------------- /drafts/2015-01-26-fuzz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/drafts/2015-01-26-fuzz.html -------------------------------------------------------------------------------- /drafts/2015-02-02-lights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/drafts/2015-02-02-lights.html -------------------------------------------------------------------------------- /layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/layouts/default.html -------------------------------------------------------------------------------- /layouts/glsl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/layouts/glsl.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/layouts/index.html -------------------------------------------------------------------------------- /metalsmith.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/metalsmith.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/package.json -------------------------------------------------------------------------------- /posts/2014-12-20-lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-20-lines.html -------------------------------------------------------------------------------- /posts/2014-12-21-lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-21-lines.html -------------------------------------------------------------------------------- /posts/2014-12-22-dots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-22-dots.html -------------------------------------------------------------------------------- /posts/2014-12-23-arcs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-23-arcs.html -------------------------------------------------------------------------------- /posts/2014-12-24-stars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-24-stars.html -------------------------------------------------------------------------------- /posts/2014-12-25-snow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-25-snow.html -------------------------------------------------------------------------------- /posts/2014-12-26-wave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-26-wave.html -------------------------------------------------------------------------------- /posts/2014-12-27-moon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-27-moon.html -------------------------------------------------------------------------------- /posts/2014-12-28-circles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-28-circles.html -------------------------------------------------------------------------------- /posts/2014-12-29-clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-29-clock.html -------------------------------------------------------------------------------- /posts/2014-12-30-drip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-30-drip.html -------------------------------------------------------------------------------- /posts/2014-12-31-flock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2014-12-31-flock.html -------------------------------------------------------------------------------- /posts/2015-01-01-drops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-01-drops.html -------------------------------------------------------------------------------- /posts/2015-01-02-plant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-02-plant.html -------------------------------------------------------------------------------- /posts/2015-01-03-squares.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-03-squares.html -------------------------------------------------------------------------------- /posts/2015-01-04-plant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-04-plant.html -------------------------------------------------------------------------------- /posts/2015-01-05-arcs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-05-arcs.html -------------------------------------------------------------------------------- /posts/2015-01-06-star-trails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-06-star-trails.html -------------------------------------------------------------------------------- /posts/2015-01-07-lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-07-lines.html -------------------------------------------------------------------------------- /posts/2015-01-08-phase-shift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-08-phase-shift.html -------------------------------------------------------------------------------- /posts/2015-01-09-phase-shift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-09-phase-shift.html -------------------------------------------------------------------------------- /posts/2015-01-10-phase-shift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-10-phase-shift.html -------------------------------------------------------------------------------- /posts/2015-01-11-moon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-11-moon.html -------------------------------------------------------------------------------- /posts/2015-01-12-triangles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-12-triangles.html -------------------------------------------------------------------------------- /posts/2015-01-13-goldsworthy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-13-goldsworthy.html -------------------------------------------------------------------------------- /posts/2015-01-14-moon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-14-moon.html -------------------------------------------------------------------------------- /posts/2015-01-15-waves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-15-waves.html -------------------------------------------------------------------------------- /posts/2015-01-16-moon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-16-moon.html -------------------------------------------------------------------------------- /posts/2015-01-17-lights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-17-lights.html -------------------------------------------------------------------------------- /posts/2015-01-18-waves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-18-waves.html -------------------------------------------------------------------------------- /posts/2015-01-19-parametric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-19-parametric.html -------------------------------------------------------------------------------- /posts/2015-01-20-lights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-20-lights.html -------------------------------------------------------------------------------- /posts/2015-01-21-hexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-21-hexes.html -------------------------------------------------------------------------------- /posts/2015-01-22-blinkenmoon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-22-blinkenmoon.html -------------------------------------------------------------------------------- /posts/2015-01-26-mountains.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-26-mountains.html -------------------------------------------------------------------------------- /posts/2015-01-27-air.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-27-air.html -------------------------------------------------------------------------------- /posts/2015-01-28-spotlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-28-spotlight.html -------------------------------------------------------------------------------- /posts/2015-01-29-hexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-29-hexes.html -------------------------------------------------------------------------------- /posts/2015-01-30-hexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-30-hexes.html -------------------------------------------------------------------------------- /posts/2015-01-31-hexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-01-31-hexes.html -------------------------------------------------------------------------------- /posts/2015-02-01-hexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-01-hexes.html -------------------------------------------------------------------------------- /posts/2015-02-02-lights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-02-lights.html -------------------------------------------------------------------------------- /posts/2015-02-03-spiral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-03-spiral.html -------------------------------------------------------------------------------- /posts/2015-02-04-ribbon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-04-ribbon.html -------------------------------------------------------------------------------- /posts/2015-02-06-lissajous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-06-lissajous.html -------------------------------------------------------------------------------- /posts/2015-02-07-lissajous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-07-lissajous.html -------------------------------------------------------------------------------- /posts/2015-02-08-circles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-08-circles.html -------------------------------------------------------------------------------- /posts/2015-02-09-rotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-09-rotation.html -------------------------------------------------------------------------------- /posts/2015-02-10-rotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-10-rotation.html -------------------------------------------------------------------------------- /posts/2015-02-11-shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-11-shadow.html -------------------------------------------------------------------------------- /posts/2015-02-14-lissajous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-14-lissajous.html -------------------------------------------------------------------------------- /posts/2015-02-15-rotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-15-rotation.html -------------------------------------------------------------------------------- /posts/2015-02-16-weave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-16-weave.html -------------------------------------------------------------------------------- /posts/2015-02-17-clipping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-17-clipping.html -------------------------------------------------------------------------------- /posts/2015-02-24-skewing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-24-skewing.html -------------------------------------------------------------------------------- /posts/2015-02-25-lissajous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-25-lissajous.html -------------------------------------------------------------------------------- /posts/2015-02-26-lissajous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-26-lissajous.html -------------------------------------------------------------------------------- /posts/2015-02-27-shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-02-27-shadow.html -------------------------------------------------------------------------------- /posts/2015-03-01-dodecagon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-03-01-dodecagon.html -------------------------------------------------------------------------------- /posts/2015-03-02-circles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-03-02-circles.html -------------------------------------------------------------------------------- /posts/2015-03-03-shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-03-03-shadow.html -------------------------------------------------------------------------------- /posts/2015-03-09-mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-03-09-mobile.html -------------------------------------------------------------------------------- /posts/2015-03-10-spiral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-03-10-spiral.html -------------------------------------------------------------------------------- /posts/2015-03-20-spiral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-03-20-spiral.html -------------------------------------------------------------------------------- /posts/2015-03-21-spiral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-03-21-spiral.html -------------------------------------------------------------------------------- /posts/2015-03-22-noise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-03-22-noise.html -------------------------------------------------------------------------------- /posts/2015-03-23-noise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-03-23-noise.html -------------------------------------------------------------------------------- /posts/2015-04-03-noise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-04-03-noise.html -------------------------------------------------------------------------------- /posts/2015-04-06-sunflower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2015-04-06-sunflower.html -------------------------------------------------------------------------------- /posts/2016-02-13.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2016-02-13.glsl -------------------------------------------------------------------------------- /posts/2016-02-15.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2016-02-15.glsl -------------------------------------------------------------------------------- /posts/2016-02-16.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2016-02-16.glsl -------------------------------------------------------------------------------- /posts/2016-03-05.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/posts/2016-03-05.glsl -------------------------------------------------------------------------------- /src/glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/src/glsl.js -------------------------------------------------------------------------------- /src/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/src/render.js -------------------------------------------------------------------------------- /src/thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/src/thumbnail.js -------------------------------------------------------------------------------- /static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfirebaugh/animations/HEAD/static.sh --------------------------------------------------------------------------------