├── .gitignore ├── .gitmodules ├── .jshintrc ├── 01-01-2014 ├── bokeh.jpg ├── index.html └── resolutions.js ├── 01-02-2014 ├── index.html └── poem.js ├── 01-03-2014 ├── index.html └── piglatin.js ├── 01-04-2014 ├── bezier2.js └── index.html ├── 01-05-2014 ├── clox.js └── index.html ├── 01-06-2014 ├── index.html └── kaleidodot.js ├── 01-07-2014 ├── index.html └── recursion.js ├── 01-08-2014 ├── index.html └── shader2.js ├── 01-09-2014 ├── TestShader.js ├── index.html └── shadey.js ├── 01-10-2014 ├── index.html └── returnofx.js ├── 01-11-2014 ├── index.html └── xy.js ├── 01-12-2014 ├── index.html └── xyxy.js ├── 01-13-2014 ├── dotline.js └── index.html ├── 01-14-2014 ├── index.html └── netneutrality.js ├── 01-15-2014 ├── dotline.js └── index.html ├── 01-16-2014 ├── index.html └── typography.js ├── 01-17-2014 ├── depends.js └── index.html ├── 01-18-2014 ├── bubble.js └── index.html ├── 01-19-2014 ├── index.html └── watcher.js ├── 01-20-2014 ├── index.html └── textry.js ├── 01-21-2014 ├── cfa.js ├── imgs │ ├── astronomy.jpg │ ├── berry.jpg │ ├── bird.jpg │ ├── flower1.jpg │ ├── geo.jpg │ ├── harry.jpg │ ├── octo.jpg │ ├── orchid.jpg │ └── squid.jpg └── index.html ├── 01-22-2014 ├── index.html └── lsys.js ├── 01-23-2014 ├── index.html └── ordered.js ├── 01-24-2014 ├── bezier2.js └── index.html ├── 01-25-2014 ├── index.html └── run.js ├── 01-26-2014 ├── heart.svg ├── heartrun.js └── index.html ├── 01-27-2014 ├── index.html └── xyz.js ├── 01-28-2014 ├── index.html └── orderredux.js ├── 01-29-2014 ├── index.html └── permu.js ├── 01-30-2014 ├── dropcap.js └── index.html ├── 01-31-2014 ├── index.html ├── sbux.js └── transactions.csv ├── 02-01-2014 ├── index.html └── starsy.js ├── 02-02-2014 ├── index.html └── starsy.js ├── 02-03-2014 ├── index.html └── wooz.js ├── 02-04-2014 ├── index.html └── steps.js ├── 02-05-2014 ├── follow.js └── index.html ├── 02-06-2014 ├── index.html └── pixl.js ├── 02-07-2014 ├── fractal.js └── index.html ├── 02-08-2014 ├── index.html └── pixl.js ├── 02-09-2014 ├── automata.js └── index.html ├── 02-10-2014 ├── angle.js └── index.html ├── 02-11-2014 ├── index.html └── row.js ├── 02-12-2014 ├── auto2.js └── index.html ├── 02-13-2014 ├── cellu.js └── index.html ├── 02-14-2014 ├── cellu.js ├── img │ ├── bigheart.png │ ├── heartsbg.jpg │ └── heartstring.png └── index.html ├── 02-15-2014 ├── box.js └── index.html ├── 02-16-2014 ├── box.js └── index.html ├── 02-17-2014 ├── index.html └── recruiting.js ├── 02-18-2014 ├── index.html └── spiro.js ├── 02-19-2014 ├── index.html └── spaceallax.js ├── 02-20-2014 ├── angle.js └── index.html ├── 02-21-2014 ├── angle.js └── index.html ├── 02-22-2014 ├── arts2.js └── index.html ├── 02-23-2014 ├── arts3.js └── index.html ├── 02-24-2014 ├── index.html └── typeart.js ├── 02-25-2014 ├── img │ ├── cloudy.jpg │ ├── cloudy.svg │ ├── rain.jpg │ ├── rain.svg │ ├── snow.jpg │ ├── snow.svg │ ├── snowflake.png │ ├── sunny.jpg │ └── sunny.svg ├── index.html └── weather.js ├── 02-26-2014 ├── index.html └── typeart.js ├── 02-27-2014 ├── facebox.js └── index.html ├── 02-28-2014 ├── index.html └── stroop.js ├── 03-01-2014 ├── index.html └── petals.js ├── 03-02-2014 ├── index.html └── petals2.js ├── 03-03-2014 ├── coords.js └── index.html ├── 03-04-2014 ├── drawerin.js └── index.html ├── 03-05-2014 ├── drawerin.js └── index.html ├── 03-06-2014 ├── index.html └── zigzag.js ├── 03-07-2014 ├── index.html └── polyanim.js ├── 03-08-2014 ├── imgs │ └── kitten.jpg ├── index.html └── polyanim.js ├── 03-09-2014 ├── dropcolors.js └── index.html ├── 03-10-2014 ├── css │ └── app.css ├── fixtures │ ├── jobs.json │ └── products.json ├── img │ ├── header-bg.png │ ├── investors.png │ └── logo.svg ├── index.html ├── js │ └── app │ │ ├── app.js │ │ ├── controllers.js │ │ ├── directives.js │ │ ├── filters.js │ │ ├── services.js │ │ └── ui-tools.js └── templates │ ├── partials │ ├── footer.html │ └── header.html │ └── sections │ ├── about.html │ ├── careers-detail.html │ ├── careers.html │ ├── designer.html │ ├── home.html │ ├── products-detail.html │ └── products.html ├── 03-11-2014 ├── circentric.js └── index.html ├── 03-12-2014 ├── dizzle.js └── index.html ├── 03-13-2014 ├── index.html └── snippet.js ├── 03-14-2014 ├── circles.js └── index.html ├── 03-15-2014 ├── index.html └── slogan.js ├── 03-16-2014 ├── index.html ├── robots.js └── svg │ ├── head-0.svg │ ├── head-1.svg │ ├── head-2.svg │ ├── head-3.svg │ └── head-4.svg ├── 03-17-2014 ├── index.html └── typary.js ├── 03-18-2014 ├── index.html └── scrolltasm.js ├── 03-19-2014 ├── index.html └── sigil.js ├── 03-20-2014 ├── colorscale.js └── index.html ├── 03-21-2014 ├── facequery.js └── index.html ├── 03-22-2014 ├── index.html └── tags.js ├── 03-23-2014 ├── colorscale.js └── index.html ├── 03-24-2014 ├── index.html └── jobs.js ├── 03-25-2014 ├── guitool.js └── index.html ├── 03-26-2014 ├── gradientfuzz.js └── index.html ├── 03-27-2014 ├── index.html └── zing.js ├── 03-28-2014 ├── index.html └── spiral.js ├── 03-29-2014 ├── index.html └── quotz.js ├── 03-30-2014 ├── htmlscape.js └── index.html ├── 03-31-2014 ├── index.html └── spiral.js ├── 04-01-2014 ├── bands.js └── index.html ├── 04-02-2014 ├── index.html └── sets.js ├── 04-03-2014 ├── index.html └── zagg.js ├── 04-04-2014 ├── index.html └── seismo.js ├── 04-05-2014 ├── cursor-hover.png ├── cursor.png ├── index.html ├── menu.js └── overlay-grunge.png ├── 04-06-2014 ├── colorhair.js └── index.html ├── 04-07-2014 ├── graphs.js └── index.html ├── 04-08-2014 ├── index.html └── subd.js ├── 04-09-2014 ├── index.html └── wave.js ├── 04-10-2014 ├── eye.js └── index.html ├── 04-11-2014 ├── index.html └── run.js ├── 04-12-2014 ├── facet1.js └── index.html ├── 04-13-2014 ├── imaginary.js └── index.html ├── 04-14-2014 ├── index.html └── polytope.js ├── 04-15-2014 ├── index.html └── polytope2.js ├── 04-16-2014 ├── index.html └── paper.js ├── 04-17-2014 ├── index.html └── svganim.js ├── 04-18-2014 ├── index.html └── walker.js ├── 04-19-2014 ├── index.html └── walker2.js ├── 04-20-2014 ├── index.html └── vangraaf.js ├── 04-21-2014 ├── index.html └── intp.js ├── 04-22-2014 ├── index.html └── letterautomata.js ├── 04-23-2014 ├── index.html └── primer.js ├── 04-24-2014 ├── index.html └── letric.js ├── 04-25-2014 ├── flummoxed.js └── index.html ├── 04-26-2014 ├── appui.js └── index.html ├── 04-27-2014 ├── connector.js └── index.html ├── 04-28-2014 ├── drippler.js └── index.html ├── 04-29-2014 ├── imgs │ ├── p1.jpg │ ├── p2.jpg │ ├── p3.jpg │ ├── p4.jpg │ ├── p5.jpg │ └── p6.jpg ├── index.html └── thankyou.js ├── 04-30-2014 ├── imgs │ ├── lamp-off.jpg │ └── lamp-on.jpg ├── index.html └── lamp.js ├── 05-01-2014 ├── index.html └── lettergraph.js ├── 05-02-2014 ├── dott.js └── index.html ├── 05-03-2014 ├── index.html └── ripple.js ├── 05-04-2014 ├── index.html └── ripple.js ├── 05-05-2014 ├── index.html └── lameo.js ├── 05-06-2014 ├── index.html └── truthy.js ├── 05-07-2014 ├── ghostbubble.js └── index.html ├── 05-08-2014 ├── index.html └── web.js ├── 05-09-2014 ├── index.html └── start.pde ├── 05-10-2014 ├── cube.pde └── index.html ├── 05-11-2014 ├── buzz.pde └── index.html ├── 05-12-2014 ├── gloweb.pde └── index.html ├── 05-13-2014 ├── eye.pde └── index.html ├── 05-14-2014 ├── bomb.pde └── index.html ├── 05-15-2014 ├── index.html └── playdraw.js ├── 05-16-2014 ├── index.html ├── space.jpg ├── space.js └── space.pde ├── 05-17-2014 ├── countdowns.js └── index.html ├── 05-18-2014 ├── index.html └── sequencer.js ├── 05-19-2014 ├── index.html ├── us.png └── xoxo.js ├── 05-20-2014 ├── index.html └── threescroll.js ├── 05-21-2014 ├── barloop.js └── index.html ├── 05-22-2014 ├── index.html └── wavytext.js ├── 05-23-2014 ├── index.html └── warp.js ├── 05-24-2014 ├── index.html └── spinner.js ├── 05-25-2014 ├── index.html └── juxtapose.js ├── 05-26-2014 ├── index.html └── moiremoire.js ├── 05-27-2014 ├── index.html └── tm-void.pde ├── 05-28-2014 ├── cornucopia.pde └── index.html ├── 05-29-2014 ├── birds.svg ├── crow.js ├── crow.mp3 ├── index.html └── notes.svg ├── 05-30-2014 ├── convos.js └── index.html ├── 05-31-2014 ├── index.html └── tower.js ├── 06-01-2014 ├── index.html └── space.pde ├── 06-02-2014 ├── index.html └── wtfimtired.js ├── 06-03-2014 ├── d3issoamazingicantwaituntilireallyunderstandit.js └── index.html ├── 06-04-2014 ├── index.html └── ror.js ├── 06-05-2014 ├── index.html └── voro.js ├── 06-06-2014 ├── index.html └── treebox.js ├── 06-07-2014 ├── index.html └── treezy.js ├── 06-08-2014 ├── index.html └── tired.js ├── 06-09-2014 ├── bars.js └── index.html ├── 06-10-2014 ├── blarg.js └── index.html ├── 06-11-2014 ├── avatar.jpg ├── gui.js ├── index.html └── titanfall.jpg ├── 06-12-2014 ├── bubblee.js └── index.html ├── 06-13-2014 ├── bioclass.js └── index.html ├── 06-14-2014 ├── index.html └── zoomable.js ├── 06-15-2014 ├── index.html └── voroweb.js ├── 06-16-2014 ├── index.html └── name.js ├── 06-17-2014 ├── comps.json ├── fastcomp.js └── index.html ├── 06-18-2014 ├── index.html ├── red-wines.js └── winequality-red.json ├── 06-19-2014 ├── index.html └── piccadilly.js ├── 06-20-2014 ├── index.html └── learnding.js ├── 06-21-2014 ├── index.html └── learnding2.js ├── 06-22-2014 ├── index.html └── learnding3.js ├── 06-23-2014 ├── index.html └── learnding4.js ├── 06-24-2014 ├── index.html └── transcend.js ├── 06-25-2014 ├── consumerproducer.js └── index.html ├── 06-26-2014 ├── index.html └── shapeof.js ├── 06-27-2014 ├── follow.js └── index.html ├── 06-28-2014 ├── eyeballs.js └── index.html ├── 06-29-2014 ├── index.html └── node1.js ├── 06-30-2014 ├── binarychoice.js └── index.html ├── 07-01-2014 ├── index.html └── subject.js ├── 07-02-2014 ├── index.html └── rec.js ├── 07-03-2014 ├── graphhle.js └── index.html ├── 07-04-2014 ├── index.html └── murka.js ├── 07-05-2014 ├── index.html └── phrontistical.js ├── 07-06-2014 ├── index.html └── jungle.js ├── 07-07-2014 ├── geometer.js └── index.html ├── 07-08-2014 ├── geometer2.js └── index.html ├── 07-09-2014 ├── geometer3.js └── index.html ├── 07-10-2014 ├── index.html └── radian.js ├── 07-11-2014 ├── index.html └── intangles.js ├── 07-12-2014 ├── index.html └── scrollsy.js ├── 07-13-2014 ├── anniversary.js └── index.html ├── 07-14-2014 ├── index.html └── quaddle.js ├── 07-15-2014 ├── index.html └── vorotree.js ├── 07-16-2014 ├── index.html └── modality.js ├── 07-17-2014 ├── index.html └── sidebarp.js ├── 07-18-2014 ├── d3modals.js └── index.html ├── 07-19-2014 ├── index.html └── radii.js ├── 07-20-2014 ├── data.json ├── dtree.js └── index.html ├── 07-21-2014 ├── all-categories.json ├── index.html └── logotrends.js ├── 07-22-2014 ├── coordos.js └── index.html ├── 07-23-2014 ├── diagrammer.js └── index.html ├── 07-24-2014 └── index.html ├── 07-25-2014 ├── index.html └── notagain.js ├── 07-26-2014 ├── geoflower.js └── index.html ├── 07-27-2014 ├── dancingcandy.js └── index.html ├── 07-28-2014 ├── index.html └── protractin.js ├── 07-29-2014 ├── directions.js └── index.html ├── 07-30-2014 ├── index.html ├── monitor.png └── oldskool.js ├── 07-31-2014 ├── flippant.js └── index.html ├── 08-01-2014 ├── codequalizer.js └── index.html ├── 08-02-2014 ├── index.html └── trochoidia.js ├── 08-03-2014 ├── avatar.png ├── index.html ├── logo.png ├── part.png └── zombalytics.js ├── 08-04-2014 ├── bg.jpg ├── dovah.js ├── fonts │ ├── dovah.css │ ├── dovahzul-webfont.eot │ ├── dovahzul-webfont.svg │ ├── dovahzul-webfont.ttf │ └── dovahzul-webfont.woff └── index.html ├── 08-05-2014 ├── chars.js └── index.html ├── 08-06-2014 ├── index.html ├── logo.png └── onedegree.js ├── 08-07-2014 ├── flashy.js └── index.html ├── 08-08-2014 ├── bottle.jpg ├── index.html └── wata.js ├── 08-09-2014 ├── index.html └── markovSeq.js ├── 08-10-2014 ├── graph1.js └── index.html ├── 08-11-2014 ├── graph2.js └── index.html ├── 08-12-2014 ├── index.html └── plasticbrain.js ├── 08-13-2014 └── index.html ├── 08-14-2014 ├── arrows.svg ├── ddresque.js ├── img │ ├── down.png │ ├── left.png │ ├── right.png │ └── up.png └── index.html ├── 08-15-2014 ├── index.html └── obfuscator.js ├── 08-16-2014 ├── data.json ├── imgs │ ├── archimedes.jpg │ ├── euclid.jpg │ ├── euler.jpg │ ├── fermat.jpg │ ├── gauss.jpg │ ├── hilbert.jpg │ ├── lagrange.jpg │ ├── leibniz.jpg │ ├── newton.jpg │ ├── poincare.jpg │ └── riemann.jpg ├── index.html └── mathematicians.js ├── 08-17-2014 ├── godmode.js ├── index.html └── wp.jpg ├── 08-18-2014 ├── index.html ├── path.js └── svg.json ├── 08-19-2014 ├── index.html └── spiraldynamics.js ├── 08-20-2014 ├── index.html └── parametric.js ├── 08-21-2014 ├── index.html └── moody.js ├── 08-22-2014 ├── index.html └── oscillate.js ├── 08-23-2014 ├── index.html └── piepack.js ├── 08-24-2014 ├── index.html └── treepiepack.js ├── 08-25-2014 ├── index.html ├── infome.js └── me.jpg ├── 08-26-2014 ├── index.html └── stack.js ├── 08-27-2014 ├── index.html └── scale.js ├── 08-28-2014 ├── index.html └── recursion.js ├── 08-29-2014 ├── index.html └── recursion2.js ├── 08-30-2014 ├── harmonic.js └── index.html ├── 08-31-2014 ├── cellula.js └── index.html ├── 09-01-2014 ├── cellula2.js └── index.html ├── 09-02-2014 ├── hamming.js └── index.html ├── 09-03-2014 ├── index.html └── rot13.js ├── 09-04-2014 ├── capixel.js └── index.html ├── 09-05-2014 ├── attractor.js └── index.html ├── 09-06-2014 ├── imgs │ └── rover-bg.jpg ├── index.html ├── rover.js └── roverWidget.js ├── 09-07-2014 ├── index.html └── rave.js ├── 09-08-2014 ├── index.html └── polyrave.js ├── 09-09-2014 ├── companies-pos.json ├── index.html └── pos.js ├── 09-10-2014 ├── book.js └── index.html ├── 09-11-2014 ├── imgs │ ├── 0.png │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── index.html └── scratchy.js ├── 09-12-2014 ├── index.html └── jellyfish.pde ├── 09-13-2014 ├── index.html └── spiral-growth.pde ├── 09-14-2014 ├── index.html └── tremble.pde ├── 09-15-2014 ├── index.html └── spiral-wallpaper.pde ├── 09-16-2014 ├── amplitude.pde └── index.html ├── 09-17-2014 ├── index.html └── sacred.pde ├── 09-18-2014 ├── index.html └── proximity.pde ├── 09-19-2014 ├── index.html └── wobbles.pde ├── 09-20-2014 ├── index.html └── stream.pde ├── 09-21-2014 ├── illuminate.pde └── index.html ├── 09-22-2014 ├── index.html └── scalable.js ├── 09-23-2014 ├── bunnienaci.js ├── bunnypair.png └── index.html ├── 09-24-2014 ├── distance.pde └── index.html ├── 09-25-2014 ├── consumed.pde └── index.html ├── 09-26-2014 ├── index.html └── swarm.pde ├── 09-27-2014 ├── afterwords.pde └── index.html ├── 09-28-2014 ├── index.html └── scanner.pde ├── 09-29-2014 ├── golden.pde ├── goldens.jpg └── index.html ├── 09-30-2014 ├── index.html ├── kitty.jpg ├── puppy.jpg └── stretchmode.pde ├── 10-01-2014 ├── index.html └── seizure.pde ├── 10-02-2014 ├── buns.jpg ├── buns.pde └── index.html ├── 10-03-2014 ├── index.html └── moveit.pde ├── 10-04-2014 ├── atomic.pde └── index.html ├── 10-05-2014 ├── engine.pde └── index.html ├── 10-06-2014 ├── crc.js └── index.html ├── 10-07-2014 ├── index.html └── summation.js ├── 10-08-2014 ├── index.html └── jection.js ├── 10-09-2014 ├── cayley.js └── index.html ├── 10-10-2014 ├── index.html └── triangleMouse.js ├── 10-11-2014 ├── db.gif ├── index.html └── initials.js ├── 10-12-2014 ├── cluster_scan.pde └── index.html ├── 10-13-2014 ├── index.html └── loves.pde ├── 10-14-2014 ├── heatmap.pde └── index.html ├── 10-15-2014 ├── index.html └── slice.pde ├── 10-16-2014 ├── index.html └── newborn-calc.js ├── 10-17-2014 ├── gate.pde └── index.html ├── 10-18-2014 ├── alienradar.pde └── index.html ├── 10-19-2014 ├── index.html └── spirallight.pde ├── 10-20-2014 ├── goldenFont.js ├── index.html └── loader.GIF ├── 10-21-2013 ├── index.html └── swing.js ├── 10-21-2014 ├── goodbye.pde └── index.html ├── 10-22-2013 ├── index.html └── texty.js ├── 10-23-2013 ├── index.html └── magic.js ├── 10-24-2013 ├── index.html ├── split.js └── texture.png ├── 10-25-2013 ├── index.html ├── verlet-1.0.0.min.js └── verlet.js ├── 10-26-2013 ├── doot.js └── index.html ├── 10-27-2013 ├── index.html └── matrix.js ├── 10-28-2013 ├── cat1.jpg ├── cat2.jpg ├── floob.js └── index.html ├── 10-29-2013 ├── index.html └── spline.js ├── 10-30-2013 ├── everything.js ├── index.html └── words.json ├── 10-31-2013 ├── boo.js └── index.html ├── 11-01-2013 ├── architect.js └── index.html ├── 11-02-2013 ├── image.js └── index.html ├── 11-03-2013 ├── index.html ├── zombie-icon.png └── zombies.js ├── 11-04-2013 ├── bar.js └── index.html ├── 11-05-2013 ├── index.html ├── redacted.js └── squairy_light.png ├── 11-06-2013 ├── frogs.js ├── images │ ├── bg.png │ ├── frog_bud.png │ ├── frog_er.png │ └── frog_weis.png ├── index.html └── sounds │ ├── bud.mp3 │ ├── er.mp3 │ └── weis.mp3 ├── 11-07-2013 ├── animatey.js ├── face.svg ├── index.html └── snap.svg-min.js ├── 11-08-2013 ├── decoder.js ├── index.html └── sounds │ ├── baap.mp3 │ ├── bap.mp3 │ ├── beep.mp3 │ ├── bep.mp3 │ ├── biip.mp3 │ ├── bip.mp3 │ ├── boop.mp3 │ ├── bop.mp3 │ ├── bup.mp3 │ └── buup.mp3 ├── 11-09-2013 ├── index.html └── kbd.js ├── 11-10-2013 ├── index.html └── site.js ├── 11-11-2013 ├── aoskdsok111.js ├── grass.jpg └── index.html ├── 11-12-2013 ├── index.html └── pulsar.js ├── 11-13-2013 ├── index.html ├── jquery.tiltShift.css ├── jquery.tiltShift.js └── kittentilt.js ├── 11-14-2013 ├── index.html └── wiggle.js ├── 11-15-2013 ├── index.html └── void.js ├── 11-16-2013 ├── index.html └── rectongular.js ├── 11-17-2013 ├── index.html ├── leet.js └── quotes.json ├── 11-18-2013 ├── eye.svg ├── index.html └── jitter.js ├── 11-19-2013 ├── index.html └── spiral.js ├── 11-20-2013 ├── index.html ├── jquery.knob.js ├── spiral.js └── starfield.jpg ├── 11-21-2013 ├── index.html └── torii.js ├── 11-22-2013 ├── index.html ├── mountains.js └── mtn.jpg ├── 11-23-2013 ├── index.html └── random.js ├── 11-24-2013 ├── index.html └── principles.js ├── 11-25-2013 ├── index.html └── random.js ├── 11-26-2013 ├── displaced.js ├── imgs │ ├── cat.jpg │ ├── dog.jpg │ ├── hellokitty.gif │ ├── otter.jpg │ └── worldmap.jpg └── index.html ├── 11-27-2013 ├── donuts.js ├── img │ ├── bacon_cover.jpg │ ├── chocolate_cover.jpg │ ├── dot_cover.jpg │ ├── glazed_cover.jpg │ ├── pink_cover.jpg │ ├── sprinkled_cover.jpg │ └── white_cover.jpg └── index.html ├── 11-28-2013 ├── index.html ├── mona.jpg └── mona.js ├── 11-29-2013 ├── index.html ├── mega.js └── megaman.png ├── 11-30-2013 ├── index.html ├── kuklos.js └── times │ ├── 10pm.css │ ├── 1120pm.css │ ├── 1pm.css │ ├── 920pm.css │ └── 930am.css ├── 12-01-2013 ├── index.html ├── snow.jpg ├── snowflake.png └── snowy.js ├── 12-02-2013 ├── headlines.js └── index.html ├── 12-03-2013 ├── bookbg.jpg ├── index.html └── neuro.js ├── 12-04-2013 ├── atomic.js └── index.html ├── 12-05-2013 ├── bender.jpg ├── bender.js └── index.html ├── 12-06-2013 ├── cthulonstitution.js ├── cthulu.jpg └── index.html ├── 12-07-2013 ├── index.html └── message.js ├── 12-08-2013 ├── creation.js └── index.html ├── 12-09-2013 ├── faceoff.js ├── imgs │ ├── ears 3.jpeg │ ├── ears1.jpeg │ ├── ears2.jpeg │ ├── ears3.jpeg │ ├── eyes1.jpeg │ ├── eyes2.jpeg │ ├── eyes3.jpeg │ ├── head1.jpeg │ ├── head2.jpeg │ ├── head3.jpeg │ ├── lips1.jpeg │ ├── lips2.jpeg │ ├── lips3.jpeg │ ├── mustache1.jpeg │ ├── mustache2.jpeg │ ├── mustache3.jpeg │ ├── nose1.jpeg │ ├── nose2.jpeg │ └── nose3.jpeg └── index.html ├── 12-10-2013 ├── index.html ├── jupitermap.jpg └── popping.js ├── 12-11-2013 ├── concrete_wall.png ├── gridme.png ├── growth.js └── index.html ├── 12-12-2013 ├── img │ ├── bark.jpg │ ├── mtn.gif │ └── space.jpg ├── index.html └── spacecookie.js ├── 12-13-2013 ├── imgs │ ├── galaxy-mmo.JPG │ ├── space.jpg │ └── sphere.jpg ├── index.html └── kardashev.js ├── 12-14-2013 ├── imgs │ ├── az_subtle.png │ ├── dimension.png │ ├── escheresque_ste.png │ ├── geometry.png │ ├── notebook.png │ ├── pw_pattern.png │ ├── pyramid.png │ ├── subtle_dots.png │ ├── tree_bark.png │ ├── wet_snow.png │ └── wild_oliva.png ├── index.html └── pyramid.js ├── 12-15-2013 ├── index.html └── tcag.js ├── 12-16-2013 ├── goodbye.js └── index.html ├── 12-17-2013 ├── index.html └── pixl.js ├── 12-18-2013 ├── index.html └── props.js ├── 12-19-2013 ├── index.html └── watcher.js ├── 12-20-2013 ├── index.html └── watcher.js ├── 12-21-2013 ├── index.html └── splitzie.js ├── 12-22-2013 ├── index.html └── splitzie.js ├── 12-23-2013 ├── checkmeout.js └── index.html ├── 12-24-2013 ├── index.html └── presents.js ├── 12-25-2013 ├── index.html ├── ornate-bg.jpg └── xmas.js ├── 12-26-2013 ├── index.html └── trapped-inputs.js ├── 12-27-2013 ├── index.html └── uplift.js ├── 12-28-2013 ├── index.html └── squaredy.js ├── 12-29-2013 ├── bezier.js └── index.html ├── 12-30-2013 ├── baby-otter.jpg ├── index.html └── ottervision.js ├── 12-31-2013 ├── index.html └── magictime.js ├── Gruntfile.js ├── LICENSE ├── Makefile ├── README.md ├── css ├── epilogue.css ├── global.css ├── template.css └── vendor │ ├── animate.min.css │ ├── flexbox-grid.min.css │ ├── font-awesome.min.css │ ├── hover-min.css │ ├── jquery-ui.min.css │ ├── normalize.css │ ├── nprogress.css │ ├── typeplate.css │ └── vis.min.css ├── epilogue.html ├── favicon.ico ├── filenames.txt ├── fixtures └── html-tags.json ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf └── fontawesome-webfont.woff ├── img ├── asfalt.png ├── az_subtle.png ├── binding_dark.png ├── cartographer.png ├── classy_fabric.png ├── dark_geometric.png ├── dimension.png ├── escheresque_ste.png ├── geometry.png ├── gridme.png ├── moulin.png ├── noisy_grid.png ├── notebook.png ├── pw_pattern.png ├── pyramid.png ├── struckaxiom.png ├── subtle_dots.png ├── tiny_grid.png ├── tree_bark.png ├── type.png ├── wet_snow.png └── wild_oliva.png ├── index.html ├── js ├── d3.geometer.js ├── fabric-art-tools.js ├── utils.d3.data.js ├── utils.js ├── utils.math.js ├── vendor │ ├── Font.js │ ├── angular-route.min.js │ ├── angular.min.js │ ├── bigtext.min.js │ ├── d3.min.js │ ├── dat.gui.min.js │ ├── dynamo.min.js │ ├── funky.min.js │ ├── gh3.js │ ├── ghostwriter.min.js │ ├── headtrackr.min.js │ ├── howler.min.js │ ├── imagesloaded.min.js │ ├── jquery-ui.min.js │ ├── jquery.imageScroll.min.js │ ├── jquery.parallax.js │ ├── jquery.slabtext.min.js │ ├── knwl.min.js │ ├── lodash.min.js │ ├── masonry.min.js │ ├── nprogress.js │ ├── orbit.js │ ├── parallax.min.js │ ├── processing.min.js │ ├── smartresize.js │ ├── three-shaders │ │ ├── DotScreenShader.js │ │ ├── KaleidoShader.js │ │ └── RGBShiftShader.js │ ├── three.min.js │ ├── three │ │ ├── CopyShader.js │ │ ├── EffectComposer.js │ │ ├── MaskPass.js │ │ ├── RenderPass.js │ │ └── ShaderPass.js │ ├── tinycolor-min.js │ ├── tween.min.js │ ├── underscore-min.js │ ├── vis.map │ └── vis.min.js └── widgets │ ├── diagram-panel.js │ ├── excitation.js │ ├── grapher.js │ ├── modal.js │ └── side-panel.js ├── libs.txt ├── logo.png ├── package.json ├── sass ├── _animations.scss ├── _btns.scss ├── _code.scss ├── _colors.scss ├── _flipbtns.scss ├── _global_mixins.scss ├── _scrollbars.scss ├── _shims.scss ├── _tables.scss ├── _typography.scss ├── _vendor.scss ├── global.scss └── widgets │ ├── _cards.scss │ ├── _diagram-maker.scss │ ├── _dtree.scss │ ├── _mobile-menu.scss │ ├── _modal.scss │ ├── _nested-panels.scss │ └── _side-panel.scss ├── screenshots.js ├── screenshots.py └── screenshots ├── .gitkeep ├── 01-01-2014_cropped.png ├── 01-02-2014_cropped.png ├── 01-03-2014_cropped.png ├── 01-04-2014_cropped.png ├── 01-05-2014_cropped.png ├── 01-06-2014_cropped.png ├── 01-07-2014_cropped.png ├── 01-08-2014_cropped.png ├── 01-09-2014_cropped.png ├── 01-10-2014_cropped.png ├── 01-11-2014_cropped.png ├── 01-12-2014_cropped.png ├── 01-13-2014_cropped.png ├── 01-14-2014_cropped.png ├── 01-15-2014_cropped.png ├── 01-16-2014_cropped.png ├── 01-17-2014_cropped.png ├── 01-18-2014_cropped.png ├── 01-19-2014_cropped.png ├── 01-20-2014_cropped.png ├── 01-21-2014_cropped.png ├── 01-22-2014_cropped.png ├── 01-23-2014_cropped.png ├── 01-24-2014_cropped.png ├── 01-25-2014_cropped.png ├── 01-26-2014_cropped.png ├── 01-27-2014_cropped.png ├── 01-28-2014_cropped.png ├── 01-29-2014_cropped.png ├── 01-30-2014_cropped.png ├── 01-31-2014_cropped.png ├── 02-01-2014_cropped.png ├── 02-02-2014_cropped.png ├── 02-03-2014_cropped.png ├── 02-04-2014_cropped.png ├── 02-05-2014_cropped.png ├── 02-06-2014_cropped.png ├── 02-07-2014_cropped.png ├── 02-08-2014_cropped.png ├── 02-09-2014_cropped.png ├── 02-10-2014_cropped.png ├── 02-11-2014_cropped.png ├── 02-12-2014_cropped.png ├── 02-13-2014_cropped.png ├── 02-14-2014_cropped.png ├── 02-15-2014_cropped.png ├── 02-16-2014_cropped.png ├── 02-17-2014_cropped.png ├── 02-18-2014_cropped.png ├── 02-19-2014_cropped.png ├── 02-20-2014_cropped.png ├── 02-21-2014_cropped.png ├── 02-22-2014_cropped.png ├── 02-23-2014_cropped.png ├── 02-24-2014_cropped.png ├── 02-25-2014_cropped.png ├── 02-26-2014_cropped.png ├── 02-27-2014_cropped.png ├── 02-28-2014_cropped.png ├── 03-01-2014_cropped.png ├── 03-02-2014_cropped.png ├── 03-03-2014_cropped.png ├── 03-04-2014_cropped.png ├── 03-05-2014_cropped.png ├── 03-06-2014_cropped.png ├── 03-07-2014_cropped.png ├── 03-08-2014_cropped.png ├── 03-09-2014_cropped.png ├── 03-10-2014_cropped.png ├── 03-11-2014_cropped.png ├── 03-12-2014_cropped.png ├── 03-13-2014_cropped.png ├── 03-14-2014_cropped.png ├── 03-15-2014_cropped.png ├── 03-16-2014_cropped.png ├── 03-17-2014_cropped.png ├── 03-18-2014_cropped.png ├── 03-19-2014_cropped.png ├── 03-20-2014_cropped.png ├── 03-21-2014_cropped.png ├── 03-22-2014_cropped.png ├── 03-23-2014_cropped.png ├── 03-24-2014_cropped.png ├── 03-25-2014_cropped.png ├── 03-26-2014_cropped.png ├── 03-27-2014_cropped.png ├── 03-28-2014_cropped.png ├── 03-29-2014_cropped.png ├── 03-30-2014_cropped.png ├── 03-31-2014_cropped.png ├── 04-01-2014_cropped.png ├── 04-02-2014_cropped.png ├── 04-03-2014_cropped.png ├── 04-04-2014_cropped.png ├── 04-05-2014_cropped.png ├── 04-06-2014_cropped.png ├── 04-07-2014_cropped.png ├── 04-08-2014_cropped.png ├── 04-09-2014_cropped.png ├── 04-10-2014_cropped.png ├── 04-11-2014_cropped.png ├── 04-12-2014_cropped.png ├── 04-13-2014_cropped.png ├── 04-14-2014_cropped.png ├── 04-15-2014_cropped.png ├── 04-16-2014_cropped.png ├── 04-17-2014_cropped.png ├── 04-18-2014_cropped.png ├── 04-19-2014_cropped.png ├── 04-20-2014_cropped.png ├── 04-21-2014_cropped.png ├── 04-22-2014_cropped.png ├── 04-23-2014_cropped.png ├── 04-24-2014_cropped.png ├── 04-25-2014_cropped.png ├── 04-26-2014_cropped.png ├── 04-27-2014_cropped.png ├── 04-28-2014_cropped.png ├── 04-29-2014_cropped.png ├── 04-30-2014_cropped.png ├── 05-01-2014_cropped.png ├── 05-02-2014_cropped.png ├── 05-03-2014_cropped.png ├── 05-04-2014_cropped.png ├── 05-05-2014_cropped.png ├── 05-06-2014_cropped.png ├── 05-07-2014_cropped.png ├── 05-08-2014_cropped.png ├── 05-09-2014_cropped.png ├── 05-10-2014_cropped.png ├── 05-11-2014_cropped.png ├── 05-12-2014_cropped.png ├── 05-13-2014_cropped.png ├── 05-14-2014_cropped.png ├── 05-15-2014_cropped.png ├── 05-16-2014_cropped.png ├── 05-17-2014_cropped.png ├── 05-18-2014_cropped.png ├── 05-19-2014_cropped.png ├── 05-20-2014_cropped.png ├── 05-21-2014_cropped.png ├── 05-22-2014_cropped.png ├── 05-23-2014_cropped.png ├── 05-24-2014_cropped.png ├── 05-25-2014_cropped.png ├── 05-26-2014_cropped.png ├── 05-27-2014_cropped.png ├── 05-28-2014_cropped.png ├── 05-29-2014_cropped.png ├── 05-30-2014_cropped.png ├── 05-31-2014_cropped.png ├── 06-01-2014_cropped.png ├── 06-02-2014_cropped.png ├── 06-03-2014_cropped.png ├── 06-04-2014_cropped.png ├── 06-05-2014_cropped.png ├── 06-06-2014_cropped.png ├── 06-07-2014_cropped.png ├── 06-08-2014_cropped.png ├── 06-09-2014_cropped.png ├── 06-10-2014_cropped.png ├── 06-11-2014_cropped.png ├── 06-12-2014_cropped.png ├── 06-13-2014_cropped.png ├── 06-14-2014_cropped.png ├── 06-15-2014_cropped.png ├── 06-16-2014_cropped.png ├── 06-17-2014_cropped.png ├── 06-18-2014_cropped.png ├── 06-19-2014_cropped.png ├── 06-20-2014_cropped.png ├── 06-21-2014_cropped.png ├── 06-22-2014_cropped.png ├── 06-23-2014_cropped.png ├── 06-24-2014_cropped.png ├── 06-25-2014_cropped.png ├── 06-26-2014_cropped.png ├── 06-27-2014_cropped.png ├── 06-28-2014_cropped.png ├── 06-29-2014_cropped.png ├── 06-30-2014_cropped.png ├── 07-01-2014_cropped.png ├── 07-02-2014_cropped.png ├── 07-03-2014_cropped.png ├── 07-04-2014_cropped.png ├── 07-05-2014_cropped.png ├── 07-06-2014_cropped.png ├── 07-07-2014_cropped.png ├── 07-08-2014_cropped.png ├── 07-09-2014_cropped.png ├── 07-10-2014_cropped.png ├── 07-11-2014_cropped.png ├── 07-12-2014_cropped.png ├── 07-13-2014_cropped.png ├── 07-14-2014_cropped.png ├── 07-15-2014_cropped.png ├── 07-16-2014_cropped.png ├── 07-17-2014_cropped.png ├── 07-18-2014_cropped.png ├── 07-19-2014_cropped.png ├── 07-20-2014_cropped.png ├── 07-21-2014_cropped.png ├── 07-22-2014_cropped.png ├── 07-23-2014_cropped.png ├── 07-24-2014_cropped.png ├── 07-25-2014_cropped.png ├── 07-26-2014_cropped.png ├── 07-27-2014_cropped.png ├── 07-28-2014_cropped.png ├── 07-29-2014_cropped.png ├── 07-30-2014_cropped.png ├── 07-31-2014_cropped.png ├── 08-01-2014_cropped.png ├── 08-02-2014_cropped.png ├── 08-03-2014_cropped.png ├── 08-04-2014_cropped.png ├── 08-05-2014_cropped.png ├── 08-06-2014_cropped.png ├── 08-07-2014_cropped.png ├── 08-08-2014_cropped.png ├── 08-09-2014_cropped.png ├── 08-10-2014_cropped.png ├── 08-11-2014_cropped.png ├── 08-12-2014_cropped.png ├── 08-13-2014_cropped.png ├── 08-14-2014_cropped.png ├── 08-15-2014_cropped.png ├── 08-16-2014_cropped.png ├── 08-17-2014_cropped.png ├── 08-18-2014_cropped.png ├── 08-19-2014_cropped.png ├── 08-20-2014_cropped.png ├── 08-21-2014_cropped.png ├── 08-22-2014_cropped.png ├── 08-23-2014_cropped.png ├── 08-24-2014_cropped.png ├── 08-25-2014_cropped.png ├── 08-26-2014_cropped.png ├── 08-27-2014_cropped.png ├── 08-28-2014_cropped.png ├── 08-29-2014_cropped.png ├── 08-30-2014_cropped.png ├── 08-31-2014_cropped.png ├── 09-01-2014_cropped.png ├── 09-02-2014_cropped.png ├── 09-03-2014_cropped.png ├── 09-04-2014_cropped.png ├── 09-05-2014_cropped.png ├── 09-06-2014_cropped.png ├── 09-07-2014_cropped.png ├── 09-08-2014_cropped.png ├── 09-09-2014_cropped.png ├── 09-10-2014_cropped.png ├── 09-11-2014_cropped.png ├── 09-12-2014_cropped.png ├── 09-13-2014_cropped.png ├── 09-14-2014_cropped.png ├── 09-15-2014_cropped.png ├── 09-16-2014_cropped.png ├── 09-17-2014_cropped.png ├── 09-18-2014_cropped.png ├── 09-19-2014_cropped.png ├── 09-20-2014_cropped.png ├── 09-21-2014_cropped.png ├── 09-22-2014_cropped.png ├── 09-23-2014_cropped.png ├── 09-24-2014_cropped.png ├── 09-25-2014_cropped.png ├── 09-26-2014_cropped.png ├── 09-27-2014_cropped.png ├── 09-28-2014_cropped.png ├── 09-29-2014_cropped.png ├── 09-30-2014_cropped.png ├── 10-01-2014_cropped.png ├── 10-02-2014_cropped.png ├── 10-03-2014_cropped.png ├── 10-04-2014_cropped.png ├── 10-05-2014_cropped.png ├── 10-06-2014_cropped.png ├── 10-07-2014_cropped.png ├── 10-08-2014_cropped.png ├── 10-09-2014_cropped.png ├── 10-10-2014_cropped.png ├── 10-11-2014_cropped.png ├── 10-12-2014_cropped.png ├── 10-13-2014_cropped.png ├── 10-14-2014_cropped.png ├── 10-15-2014_cropped.png ├── 10-16-2014_cropped.png ├── 10-17-2014_cropped.png ├── 10-18-2014_cropped.png ├── 10-19-2014_cropped.png ├── 10-20-2014_cropped.png ├── 10-21-2013_cropped.png ├── 10-21-2014_cropped.png ├── 10-22-2013_cropped.png ├── 10-23-2013_cropped.png ├── 10-24-2013_cropped.png ├── 10-25-2013_cropped.png ├── 10-26-2013_cropped.png ├── 10-27-2013_cropped.png ├── 10-28-2013_cropped.png ├── 10-29-2013_cropped.png ├── 10-30-2013_cropped.png ├── 10-31-2013_cropped.png ├── 11-01-2013_cropped.png ├── 11-02-2013_cropped.png ├── 11-03-2013_cropped.png ├── 11-04-2013_cropped.png ├── 11-05-2013_cropped.png ├── 11-06-2013_cropped.png ├── 11-07-2013_cropped.png ├── 11-08-2013_cropped.png ├── 11-09-2013_cropped.png ├── 11-10-2013_cropped.png ├── 11-11-2013_cropped.png ├── 11-12-2013_cropped.png ├── 11-13-2013_cropped.png ├── 11-14-2013_cropped.png ├── 11-15-2013_cropped.png ├── 11-16-2013_cropped.png ├── 11-17-2013_cropped.png ├── 11-18-2013_cropped.png ├── 11-19-2013_cropped.png ├── 11-20-2013_cropped.png ├── 11-21-2013_cropped.png ├── 11-22-2013_cropped.png ├── 11-23-2013_cropped.png ├── 11-24-2013_cropped.png ├── 11-25-2013_cropped.png ├── 11-26-2013_cropped.png ├── 11-27-2013_cropped.png ├── 11-28-2013_cropped.png ├── 11-29-2013_cropped.png ├── 11-30-2013_cropped.png ├── 12-01-2013_cropped.png ├── 12-02-2013_cropped.png ├── 12-03-2013_cropped.png ├── 12-04-2013_cropped.png ├── 12-05-2013_cropped.png ├── 12-06-2013_cropped.png ├── 12-07-2013_cropped.png ├── 12-08-2013_cropped.png ├── 12-09-2013_cropped.png ├── 12-10-2013_cropped.png ├── 12-11-2013_cropped.png ├── 12-12-2013_cropped.png ├── 12-13-2013_cropped.png ├── 12-14-2013_cropped.png ├── 12-15-2013_cropped.png ├── 12-16-2013_cropped.png ├── 12-17-2013_cropped.png ├── 12-18-2013_cropped.png ├── 12-19-2013_cropped.png ├── 12-20-2013_cropped.png ├── 12-21-2013_cropped.png ├── 12-22-2013_cropped.png ├── 12-23-2013_cropped.png ├── 12-24-2013_cropped.png ├── 12-25-2013_cropped.png ├── 12-26-2013_cropped.png ├── 12-27-2013_cropped.png ├── 12-28-2013_cropped.png ├── 12-29-2013_cropped.png ├── 12-30-2013_cropped.png └── 12-31-2013_cropped.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/.jshintrc -------------------------------------------------------------------------------- /01-01-2014/bokeh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-01-2014/bokeh.jpg -------------------------------------------------------------------------------- /01-01-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-01-2014/index.html -------------------------------------------------------------------------------- /01-01-2014/resolutions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-01-2014/resolutions.js -------------------------------------------------------------------------------- /01-02-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-02-2014/index.html -------------------------------------------------------------------------------- /01-02-2014/poem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-02-2014/poem.js -------------------------------------------------------------------------------- /01-03-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-03-2014/index.html -------------------------------------------------------------------------------- /01-03-2014/piglatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-03-2014/piglatin.js -------------------------------------------------------------------------------- /01-04-2014/bezier2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-04-2014/bezier2.js -------------------------------------------------------------------------------- /01-04-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-04-2014/index.html -------------------------------------------------------------------------------- /01-05-2014/clox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-05-2014/clox.js -------------------------------------------------------------------------------- /01-05-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-05-2014/index.html -------------------------------------------------------------------------------- /01-06-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-06-2014/index.html -------------------------------------------------------------------------------- /01-06-2014/kaleidodot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-06-2014/kaleidodot.js -------------------------------------------------------------------------------- /01-07-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-07-2014/index.html -------------------------------------------------------------------------------- /01-07-2014/recursion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-07-2014/recursion.js -------------------------------------------------------------------------------- /01-08-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-08-2014/index.html -------------------------------------------------------------------------------- /01-08-2014/shader2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-08-2014/shader2.js -------------------------------------------------------------------------------- /01-09-2014/TestShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-09-2014/TestShader.js -------------------------------------------------------------------------------- /01-09-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-09-2014/index.html -------------------------------------------------------------------------------- /01-09-2014/shadey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-09-2014/shadey.js -------------------------------------------------------------------------------- /01-10-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-10-2014/index.html -------------------------------------------------------------------------------- /01-10-2014/returnofx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-10-2014/returnofx.js -------------------------------------------------------------------------------- /01-11-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-11-2014/index.html -------------------------------------------------------------------------------- /01-11-2014/xy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-11-2014/xy.js -------------------------------------------------------------------------------- /01-12-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-12-2014/index.html -------------------------------------------------------------------------------- /01-12-2014/xyxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-12-2014/xyxy.js -------------------------------------------------------------------------------- /01-13-2014/dotline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-13-2014/dotline.js -------------------------------------------------------------------------------- /01-13-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-13-2014/index.html -------------------------------------------------------------------------------- /01-14-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-14-2014/index.html -------------------------------------------------------------------------------- /01-14-2014/netneutrality.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-14-2014/netneutrality.js -------------------------------------------------------------------------------- /01-15-2014/dotline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-15-2014/dotline.js -------------------------------------------------------------------------------- /01-15-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-15-2014/index.html -------------------------------------------------------------------------------- /01-16-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-16-2014/index.html -------------------------------------------------------------------------------- /01-16-2014/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-16-2014/typography.js -------------------------------------------------------------------------------- /01-17-2014/depends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-17-2014/depends.js -------------------------------------------------------------------------------- /01-17-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-17-2014/index.html -------------------------------------------------------------------------------- /01-18-2014/bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-18-2014/bubble.js -------------------------------------------------------------------------------- /01-18-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-18-2014/index.html -------------------------------------------------------------------------------- /01-19-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-19-2014/index.html -------------------------------------------------------------------------------- /01-19-2014/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-19-2014/watcher.js -------------------------------------------------------------------------------- /01-20-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-20-2014/index.html -------------------------------------------------------------------------------- /01-20-2014/textry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-20-2014/textry.js -------------------------------------------------------------------------------- /01-21-2014/cfa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-21-2014/cfa.js -------------------------------------------------------------------------------- /01-21-2014/imgs/berry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-21-2014/imgs/berry.jpg -------------------------------------------------------------------------------- /01-21-2014/imgs/bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-21-2014/imgs/bird.jpg -------------------------------------------------------------------------------- /01-21-2014/imgs/flower1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-21-2014/imgs/flower1.jpg -------------------------------------------------------------------------------- /01-21-2014/imgs/geo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-21-2014/imgs/geo.jpg -------------------------------------------------------------------------------- /01-21-2014/imgs/harry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-21-2014/imgs/harry.jpg -------------------------------------------------------------------------------- /01-21-2014/imgs/octo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-21-2014/imgs/octo.jpg -------------------------------------------------------------------------------- /01-21-2014/imgs/orchid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-21-2014/imgs/orchid.jpg -------------------------------------------------------------------------------- /01-21-2014/imgs/squid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-21-2014/imgs/squid.jpg -------------------------------------------------------------------------------- /01-21-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-21-2014/index.html -------------------------------------------------------------------------------- /01-22-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-22-2014/index.html -------------------------------------------------------------------------------- /01-22-2014/lsys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-22-2014/lsys.js -------------------------------------------------------------------------------- /01-23-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-23-2014/index.html -------------------------------------------------------------------------------- /01-23-2014/ordered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-23-2014/ordered.js -------------------------------------------------------------------------------- /01-24-2014/bezier2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-24-2014/bezier2.js -------------------------------------------------------------------------------- /01-24-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-24-2014/index.html -------------------------------------------------------------------------------- /01-25-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-25-2014/index.html -------------------------------------------------------------------------------- /01-25-2014/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-25-2014/run.js -------------------------------------------------------------------------------- /01-26-2014/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-26-2014/heart.svg -------------------------------------------------------------------------------- /01-26-2014/heartrun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-26-2014/heartrun.js -------------------------------------------------------------------------------- /01-26-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-26-2014/index.html -------------------------------------------------------------------------------- /01-27-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-27-2014/index.html -------------------------------------------------------------------------------- /01-27-2014/xyz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-27-2014/xyz.js -------------------------------------------------------------------------------- /01-28-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-28-2014/index.html -------------------------------------------------------------------------------- /01-28-2014/orderredux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-28-2014/orderredux.js -------------------------------------------------------------------------------- /01-29-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-29-2014/index.html -------------------------------------------------------------------------------- /01-29-2014/permu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-29-2014/permu.js -------------------------------------------------------------------------------- /01-30-2014/dropcap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-30-2014/dropcap.js -------------------------------------------------------------------------------- /01-30-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-30-2014/index.html -------------------------------------------------------------------------------- /01-31-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-31-2014/index.html -------------------------------------------------------------------------------- /01-31-2014/sbux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-31-2014/sbux.js -------------------------------------------------------------------------------- /01-31-2014/transactions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/01-31-2014/transactions.csv -------------------------------------------------------------------------------- /02-01-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-01-2014/index.html -------------------------------------------------------------------------------- /02-01-2014/starsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-01-2014/starsy.js -------------------------------------------------------------------------------- /02-02-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-02-2014/index.html -------------------------------------------------------------------------------- /02-02-2014/starsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-02-2014/starsy.js -------------------------------------------------------------------------------- /02-03-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-03-2014/index.html -------------------------------------------------------------------------------- /02-03-2014/wooz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-03-2014/wooz.js -------------------------------------------------------------------------------- /02-04-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-04-2014/index.html -------------------------------------------------------------------------------- /02-04-2014/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-04-2014/steps.js -------------------------------------------------------------------------------- /02-05-2014/follow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-05-2014/follow.js -------------------------------------------------------------------------------- /02-05-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-05-2014/index.html -------------------------------------------------------------------------------- /02-06-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-06-2014/index.html -------------------------------------------------------------------------------- /02-06-2014/pixl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-06-2014/pixl.js -------------------------------------------------------------------------------- /02-07-2014/fractal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-07-2014/fractal.js -------------------------------------------------------------------------------- /02-07-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-07-2014/index.html -------------------------------------------------------------------------------- /02-08-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-08-2014/index.html -------------------------------------------------------------------------------- /02-08-2014/pixl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-08-2014/pixl.js -------------------------------------------------------------------------------- /02-09-2014/automata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-09-2014/automata.js -------------------------------------------------------------------------------- /02-09-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-09-2014/index.html -------------------------------------------------------------------------------- /02-10-2014/angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-10-2014/angle.js -------------------------------------------------------------------------------- /02-10-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-10-2014/index.html -------------------------------------------------------------------------------- /02-11-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-11-2014/index.html -------------------------------------------------------------------------------- /02-11-2014/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-11-2014/row.js -------------------------------------------------------------------------------- /02-12-2014/auto2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-12-2014/auto2.js -------------------------------------------------------------------------------- /02-12-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-12-2014/index.html -------------------------------------------------------------------------------- /02-13-2014/cellu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-13-2014/cellu.js -------------------------------------------------------------------------------- /02-13-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-13-2014/index.html -------------------------------------------------------------------------------- /02-14-2014/cellu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-14-2014/cellu.js -------------------------------------------------------------------------------- /02-14-2014/img/bigheart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-14-2014/img/bigheart.png -------------------------------------------------------------------------------- /02-14-2014/img/heartsbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-14-2014/img/heartsbg.jpg -------------------------------------------------------------------------------- /02-14-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-14-2014/index.html -------------------------------------------------------------------------------- /02-15-2014/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-15-2014/box.js -------------------------------------------------------------------------------- /02-15-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-15-2014/index.html -------------------------------------------------------------------------------- /02-16-2014/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-16-2014/box.js -------------------------------------------------------------------------------- /02-16-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-16-2014/index.html -------------------------------------------------------------------------------- /02-17-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-17-2014/index.html -------------------------------------------------------------------------------- /02-17-2014/recruiting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-17-2014/recruiting.js -------------------------------------------------------------------------------- /02-18-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-18-2014/index.html -------------------------------------------------------------------------------- /02-18-2014/spiro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-18-2014/spiro.js -------------------------------------------------------------------------------- /02-19-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-19-2014/index.html -------------------------------------------------------------------------------- /02-19-2014/spaceallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-19-2014/spaceallax.js -------------------------------------------------------------------------------- /02-20-2014/angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-20-2014/angle.js -------------------------------------------------------------------------------- /02-20-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-20-2014/index.html -------------------------------------------------------------------------------- /02-21-2014/angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-21-2014/angle.js -------------------------------------------------------------------------------- /02-21-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-21-2014/index.html -------------------------------------------------------------------------------- /02-22-2014/arts2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-22-2014/arts2.js -------------------------------------------------------------------------------- /02-22-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-22-2014/index.html -------------------------------------------------------------------------------- /02-23-2014/arts3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-23-2014/arts3.js -------------------------------------------------------------------------------- /02-23-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-23-2014/index.html -------------------------------------------------------------------------------- /02-24-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-24-2014/index.html -------------------------------------------------------------------------------- /02-24-2014/typeart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-24-2014/typeart.js -------------------------------------------------------------------------------- /02-25-2014/img/cloudy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/img/cloudy.jpg -------------------------------------------------------------------------------- /02-25-2014/img/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/img/cloudy.svg -------------------------------------------------------------------------------- /02-25-2014/img/rain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/img/rain.jpg -------------------------------------------------------------------------------- /02-25-2014/img/rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/img/rain.svg -------------------------------------------------------------------------------- /02-25-2014/img/snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/img/snow.jpg -------------------------------------------------------------------------------- /02-25-2014/img/snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/img/snow.svg -------------------------------------------------------------------------------- /02-25-2014/img/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/img/snowflake.png -------------------------------------------------------------------------------- /02-25-2014/img/sunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/img/sunny.jpg -------------------------------------------------------------------------------- /02-25-2014/img/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/img/sunny.svg -------------------------------------------------------------------------------- /02-25-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/index.html -------------------------------------------------------------------------------- /02-25-2014/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-25-2014/weather.js -------------------------------------------------------------------------------- /02-26-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-26-2014/index.html -------------------------------------------------------------------------------- /02-26-2014/typeart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-26-2014/typeart.js -------------------------------------------------------------------------------- /02-27-2014/facebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-27-2014/facebox.js -------------------------------------------------------------------------------- /02-27-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-27-2014/index.html -------------------------------------------------------------------------------- /02-28-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-28-2014/index.html -------------------------------------------------------------------------------- /02-28-2014/stroop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/02-28-2014/stroop.js -------------------------------------------------------------------------------- /03-01-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-01-2014/index.html -------------------------------------------------------------------------------- /03-01-2014/petals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-01-2014/petals.js -------------------------------------------------------------------------------- /03-02-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-02-2014/index.html -------------------------------------------------------------------------------- /03-02-2014/petals2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-02-2014/petals2.js -------------------------------------------------------------------------------- /03-03-2014/coords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-03-2014/coords.js -------------------------------------------------------------------------------- /03-03-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-03-2014/index.html -------------------------------------------------------------------------------- /03-04-2014/drawerin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-04-2014/drawerin.js -------------------------------------------------------------------------------- /03-04-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-04-2014/index.html -------------------------------------------------------------------------------- /03-05-2014/drawerin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-05-2014/drawerin.js -------------------------------------------------------------------------------- /03-05-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-05-2014/index.html -------------------------------------------------------------------------------- /03-06-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-06-2014/index.html -------------------------------------------------------------------------------- /03-06-2014/zigzag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-06-2014/zigzag.js -------------------------------------------------------------------------------- /03-07-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-07-2014/index.html -------------------------------------------------------------------------------- /03-07-2014/polyanim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-07-2014/polyanim.js -------------------------------------------------------------------------------- /03-08-2014/imgs/kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-08-2014/imgs/kitten.jpg -------------------------------------------------------------------------------- /03-08-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-08-2014/index.html -------------------------------------------------------------------------------- /03-08-2014/polyanim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-08-2014/polyanim.js -------------------------------------------------------------------------------- /03-09-2014/dropcolors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-09-2014/dropcolors.js -------------------------------------------------------------------------------- /03-09-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-09-2014/index.html -------------------------------------------------------------------------------- /03-10-2014/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-10-2014/css/app.css -------------------------------------------------------------------------------- /03-10-2014/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-10-2014/img/header-bg.png -------------------------------------------------------------------------------- /03-10-2014/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-10-2014/img/logo.svg -------------------------------------------------------------------------------- /03-10-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-10-2014/index.html -------------------------------------------------------------------------------- /03-10-2014/js/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-10-2014/js/app/app.js -------------------------------------------------------------------------------- /03-11-2014/circentric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-11-2014/circentric.js -------------------------------------------------------------------------------- /03-11-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-11-2014/index.html -------------------------------------------------------------------------------- /03-12-2014/dizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-12-2014/dizzle.js -------------------------------------------------------------------------------- /03-12-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-12-2014/index.html -------------------------------------------------------------------------------- /03-13-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-13-2014/index.html -------------------------------------------------------------------------------- /03-13-2014/snippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-13-2014/snippet.js -------------------------------------------------------------------------------- /03-14-2014/circles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-14-2014/circles.js -------------------------------------------------------------------------------- /03-14-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-14-2014/index.html -------------------------------------------------------------------------------- /03-15-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-15-2014/index.html -------------------------------------------------------------------------------- /03-15-2014/slogan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-15-2014/slogan.js -------------------------------------------------------------------------------- /03-16-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-16-2014/index.html -------------------------------------------------------------------------------- /03-16-2014/robots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-16-2014/robots.js -------------------------------------------------------------------------------- /03-16-2014/svg/head-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-16-2014/svg/head-0.svg -------------------------------------------------------------------------------- /03-16-2014/svg/head-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-16-2014/svg/head-1.svg -------------------------------------------------------------------------------- /03-16-2014/svg/head-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-16-2014/svg/head-2.svg -------------------------------------------------------------------------------- /03-16-2014/svg/head-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-16-2014/svg/head-3.svg -------------------------------------------------------------------------------- /03-16-2014/svg/head-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-16-2014/svg/head-4.svg -------------------------------------------------------------------------------- /03-17-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-17-2014/index.html -------------------------------------------------------------------------------- /03-17-2014/typary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-17-2014/typary.js -------------------------------------------------------------------------------- /03-18-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-18-2014/index.html -------------------------------------------------------------------------------- /03-18-2014/scrolltasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-18-2014/scrolltasm.js -------------------------------------------------------------------------------- /03-19-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-19-2014/index.html -------------------------------------------------------------------------------- /03-19-2014/sigil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-19-2014/sigil.js -------------------------------------------------------------------------------- /03-20-2014/colorscale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-20-2014/colorscale.js -------------------------------------------------------------------------------- /03-20-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-20-2014/index.html -------------------------------------------------------------------------------- /03-21-2014/facequery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-21-2014/facequery.js -------------------------------------------------------------------------------- /03-21-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-21-2014/index.html -------------------------------------------------------------------------------- /03-22-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-22-2014/index.html -------------------------------------------------------------------------------- /03-22-2014/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-22-2014/tags.js -------------------------------------------------------------------------------- /03-23-2014/colorscale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-23-2014/colorscale.js -------------------------------------------------------------------------------- /03-23-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-23-2014/index.html -------------------------------------------------------------------------------- /03-24-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-24-2014/index.html -------------------------------------------------------------------------------- /03-24-2014/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-24-2014/jobs.js -------------------------------------------------------------------------------- /03-25-2014/guitool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-25-2014/guitool.js -------------------------------------------------------------------------------- /03-25-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-25-2014/index.html -------------------------------------------------------------------------------- /03-26-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-26-2014/index.html -------------------------------------------------------------------------------- /03-27-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-27-2014/index.html -------------------------------------------------------------------------------- /03-27-2014/zing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-27-2014/zing.js -------------------------------------------------------------------------------- /03-28-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-28-2014/index.html -------------------------------------------------------------------------------- /03-28-2014/spiral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-28-2014/spiral.js -------------------------------------------------------------------------------- /03-29-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-29-2014/index.html -------------------------------------------------------------------------------- /03-29-2014/quotz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-29-2014/quotz.js -------------------------------------------------------------------------------- /03-30-2014/htmlscape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-30-2014/htmlscape.js -------------------------------------------------------------------------------- /03-30-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-30-2014/index.html -------------------------------------------------------------------------------- /03-31-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-31-2014/index.html -------------------------------------------------------------------------------- /03-31-2014/spiral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/03-31-2014/spiral.js -------------------------------------------------------------------------------- /04-01-2014/bands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-01-2014/bands.js -------------------------------------------------------------------------------- /04-01-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-01-2014/index.html -------------------------------------------------------------------------------- /04-02-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-02-2014/index.html -------------------------------------------------------------------------------- /04-02-2014/sets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-02-2014/sets.js -------------------------------------------------------------------------------- /04-03-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-03-2014/index.html -------------------------------------------------------------------------------- /04-03-2014/zagg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-03-2014/zagg.js -------------------------------------------------------------------------------- /04-04-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-04-2014/index.html -------------------------------------------------------------------------------- /04-04-2014/seismo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-04-2014/seismo.js -------------------------------------------------------------------------------- /04-05-2014/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-05-2014/cursor.png -------------------------------------------------------------------------------- /04-05-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-05-2014/index.html -------------------------------------------------------------------------------- /04-05-2014/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-05-2014/menu.js -------------------------------------------------------------------------------- /04-06-2014/colorhair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-06-2014/colorhair.js -------------------------------------------------------------------------------- /04-06-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-06-2014/index.html -------------------------------------------------------------------------------- /04-07-2014/graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-07-2014/graphs.js -------------------------------------------------------------------------------- /04-07-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-07-2014/index.html -------------------------------------------------------------------------------- /04-08-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-08-2014/index.html -------------------------------------------------------------------------------- /04-08-2014/subd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-08-2014/subd.js -------------------------------------------------------------------------------- /04-09-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-09-2014/index.html -------------------------------------------------------------------------------- /04-09-2014/wave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-09-2014/wave.js -------------------------------------------------------------------------------- /04-10-2014/eye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-10-2014/eye.js -------------------------------------------------------------------------------- /04-10-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-10-2014/index.html -------------------------------------------------------------------------------- /04-11-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-11-2014/index.html -------------------------------------------------------------------------------- /04-11-2014/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-11-2014/run.js -------------------------------------------------------------------------------- /04-12-2014/facet1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-12-2014/facet1.js -------------------------------------------------------------------------------- /04-12-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-12-2014/index.html -------------------------------------------------------------------------------- /04-13-2014/imaginary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-13-2014/imaginary.js -------------------------------------------------------------------------------- /04-13-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-13-2014/index.html -------------------------------------------------------------------------------- /04-14-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-14-2014/index.html -------------------------------------------------------------------------------- /04-14-2014/polytope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-14-2014/polytope.js -------------------------------------------------------------------------------- /04-15-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-15-2014/index.html -------------------------------------------------------------------------------- /04-15-2014/polytope2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-15-2014/polytope2.js -------------------------------------------------------------------------------- /04-16-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-16-2014/index.html -------------------------------------------------------------------------------- /04-16-2014/paper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-16-2014/paper.js -------------------------------------------------------------------------------- /04-17-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-17-2014/index.html -------------------------------------------------------------------------------- /04-17-2014/svganim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-17-2014/svganim.js -------------------------------------------------------------------------------- /04-18-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-18-2014/index.html -------------------------------------------------------------------------------- /04-18-2014/walker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-18-2014/walker.js -------------------------------------------------------------------------------- /04-19-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-19-2014/index.html -------------------------------------------------------------------------------- /04-19-2014/walker2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-19-2014/walker2.js -------------------------------------------------------------------------------- /04-20-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-20-2014/index.html -------------------------------------------------------------------------------- /04-20-2014/vangraaf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-20-2014/vangraaf.js -------------------------------------------------------------------------------- /04-21-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-21-2014/index.html -------------------------------------------------------------------------------- /04-21-2014/intp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-21-2014/intp.js -------------------------------------------------------------------------------- /04-22-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-22-2014/index.html -------------------------------------------------------------------------------- /04-23-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-23-2014/index.html -------------------------------------------------------------------------------- /04-23-2014/primer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-23-2014/primer.js -------------------------------------------------------------------------------- /04-24-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-24-2014/index.html -------------------------------------------------------------------------------- /04-24-2014/letric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-24-2014/letric.js -------------------------------------------------------------------------------- /04-25-2014/flummoxed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-25-2014/flummoxed.js -------------------------------------------------------------------------------- /04-25-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-25-2014/index.html -------------------------------------------------------------------------------- /04-26-2014/appui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-26-2014/appui.js -------------------------------------------------------------------------------- /04-26-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-26-2014/index.html -------------------------------------------------------------------------------- /04-27-2014/connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-27-2014/connector.js -------------------------------------------------------------------------------- /04-27-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-27-2014/index.html -------------------------------------------------------------------------------- /04-28-2014/drippler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-28-2014/drippler.js -------------------------------------------------------------------------------- /04-28-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-28-2014/index.html -------------------------------------------------------------------------------- /04-29-2014/imgs/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-29-2014/imgs/p1.jpg -------------------------------------------------------------------------------- /04-29-2014/imgs/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-29-2014/imgs/p2.jpg -------------------------------------------------------------------------------- /04-29-2014/imgs/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-29-2014/imgs/p3.jpg -------------------------------------------------------------------------------- /04-29-2014/imgs/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-29-2014/imgs/p4.jpg -------------------------------------------------------------------------------- /04-29-2014/imgs/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-29-2014/imgs/p5.jpg -------------------------------------------------------------------------------- /04-29-2014/imgs/p6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-29-2014/imgs/p6.jpg -------------------------------------------------------------------------------- /04-29-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-29-2014/index.html -------------------------------------------------------------------------------- /04-29-2014/thankyou.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-29-2014/thankyou.js -------------------------------------------------------------------------------- /04-30-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-30-2014/index.html -------------------------------------------------------------------------------- /04-30-2014/lamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/04-30-2014/lamp.js -------------------------------------------------------------------------------- /05-01-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-01-2014/index.html -------------------------------------------------------------------------------- /05-01-2014/lettergraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-01-2014/lettergraph.js -------------------------------------------------------------------------------- /05-02-2014/dott.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-02-2014/dott.js -------------------------------------------------------------------------------- /05-02-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-02-2014/index.html -------------------------------------------------------------------------------- /05-03-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-03-2014/index.html -------------------------------------------------------------------------------- /05-03-2014/ripple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-03-2014/ripple.js -------------------------------------------------------------------------------- /05-04-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-04-2014/index.html -------------------------------------------------------------------------------- /05-04-2014/ripple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-04-2014/ripple.js -------------------------------------------------------------------------------- /05-05-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-05-2014/index.html -------------------------------------------------------------------------------- /05-05-2014/lameo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-05-2014/lameo.js -------------------------------------------------------------------------------- /05-06-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-06-2014/index.html -------------------------------------------------------------------------------- /05-06-2014/truthy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-06-2014/truthy.js -------------------------------------------------------------------------------- /05-07-2014/ghostbubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-07-2014/ghostbubble.js -------------------------------------------------------------------------------- /05-07-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-07-2014/index.html -------------------------------------------------------------------------------- /05-08-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-08-2014/index.html -------------------------------------------------------------------------------- /05-08-2014/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-08-2014/web.js -------------------------------------------------------------------------------- /05-09-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-09-2014/index.html -------------------------------------------------------------------------------- /05-09-2014/start.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-09-2014/start.pde -------------------------------------------------------------------------------- /05-10-2014/cube.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-10-2014/cube.pde -------------------------------------------------------------------------------- /05-10-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-10-2014/index.html -------------------------------------------------------------------------------- /05-11-2014/buzz.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-11-2014/buzz.pde -------------------------------------------------------------------------------- /05-11-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-11-2014/index.html -------------------------------------------------------------------------------- /05-12-2014/gloweb.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-12-2014/gloweb.pde -------------------------------------------------------------------------------- /05-12-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-12-2014/index.html -------------------------------------------------------------------------------- /05-13-2014/eye.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-13-2014/eye.pde -------------------------------------------------------------------------------- /05-13-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-13-2014/index.html -------------------------------------------------------------------------------- /05-14-2014/bomb.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-14-2014/bomb.pde -------------------------------------------------------------------------------- /05-14-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-14-2014/index.html -------------------------------------------------------------------------------- /05-15-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-15-2014/index.html -------------------------------------------------------------------------------- /05-15-2014/playdraw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-15-2014/playdraw.js -------------------------------------------------------------------------------- /05-16-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-16-2014/index.html -------------------------------------------------------------------------------- /05-16-2014/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-16-2014/space.jpg -------------------------------------------------------------------------------- /05-16-2014/space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-16-2014/space.js -------------------------------------------------------------------------------- /05-16-2014/space.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-16-2014/space.pde -------------------------------------------------------------------------------- /05-17-2014/countdowns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-17-2014/countdowns.js -------------------------------------------------------------------------------- /05-17-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-17-2014/index.html -------------------------------------------------------------------------------- /05-18-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-18-2014/index.html -------------------------------------------------------------------------------- /05-18-2014/sequencer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-18-2014/sequencer.js -------------------------------------------------------------------------------- /05-19-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-19-2014/index.html -------------------------------------------------------------------------------- /05-19-2014/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-19-2014/us.png -------------------------------------------------------------------------------- /05-19-2014/xoxo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-19-2014/xoxo.js -------------------------------------------------------------------------------- /05-20-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-20-2014/index.html -------------------------------------------------------------------------------- /05-20-2014/threescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-20-2014/threescroll.js -------------------------------------------------------------------------------- /05-21-2014/barloop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-21-2014/barloop.js -------------------------------------------------------------------------------- /05-21-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-21-2014/index.html -------------------------------------------------------------------------------- /05-22-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-22-2014/index.html -------------------------------------------------------------------------------- /05-22-2014/wavytext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-22-2014/wavytext.js -------------------------------------------------------------------------------- /05-23-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-23-2014/index.html -------------------------------------------------------------------------------- /05-23-2014/warp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-23-2014/warp.js -------------------------------------------------------------------------------- /05-24-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-24-2014/index.html -------------------------------------------------------------------------------- /05-24-2014/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-24-2014/spinner.js -------------------------------------------------------------------------------- /05-25-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-25-2014/index.html -------------------------------------------------------------------------------- /05-25-2014/juxtapose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-25-2014/juxtapose.js -------------------------------------------------------------------------------- /05-26-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-26-2014/index.html -------------------------------------------------------------------------------- /05-26-2014/moiremoire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-26-2014/moiremoire.js -------------------------------------------------------------------------------- /05-27-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-27-2014/index.html -------------------------------------------------------------------------------- /05-27-2014/tm-void.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-27-2014/tm-void.pde -------------------------------------------------------------------------------- /05-28-2014/cornucopia.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-28-2014/cornucopia.pde -------------------------------------------------------------------------------- /05-28-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-28-2014/index.html -------------------------------------------------------------------------------- /05-29-2014/birds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-29-2014/birds.svg -------------------------------------------------------------------------------- /05-29-2014/crow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-29-2014/crow.js -------------------------------------------------------------------------------- /05-29-2014/crow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-29-2014/crow.mp3 -------------------------------------------------------------------------------- /05-29-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-29-2014/index.html -------------------------------------------------------------------------------- /05-29-2014/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-29-2014/notes.svg -------------------------------------------------------------------------------- /05-30-2014/convos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-30-2014/convos.js -------------------------------------------------------------------------------- /05-30-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-30-2014/index.html -------------------------------------------------------------------------------- /05-31-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-31-2014/index.html -------------------------------------------------------------------------------- /05-31-2014/tower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/05-31-2014/tower.js -------------------------------------------------------------------------------- /06-01-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-01-2014/index.html -------------------------------------------------------------------------------- /06-01-2014/space.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-01-2014/space.pde -------------------------------------------------------------------------------- /06-02-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-02-2014/index.html -------------------------------------------------------------------------------- /06-02-2014/wtfimtired.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-02-2014/wtfimtired.js -------------------------------------------------------------------------------- /06-03-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-03-2014/index.html -------------------------------------------------------------------------------- /06-04-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-04-2014/index.html -------------------------------------------------------------------------------- /06-04-2014/ror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-04-2014/ror.js -------------------------------------------------------------------------------- /06-05-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-05-2014/index.html -------------------------------------------------------------------------------- /06-05-2014/voro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-05-2014/voro.js -------------------------------------------------------------------------------- /06-06-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-06-2014/index.html -------------------------------------------------------------------------------- /06-06-2014/treebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-06-2014/treebox.js -------------------------------------------------------------------------------- /06-07-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-07-2014/index.html -------------------------------------------------------------------------------- /06-07-2014/treezy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-07-2014/treezy.js -------------------------------------------------------------------------------- /06-08-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-08-2014/index.html -------------------------------------------------------------------------------- /06-08-2014/tired.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-08-2014/tired.js -------------------------------------------------------------------------------- /06-09-2014/bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-09-2014/bars.js -------------------------------------------------------------------------------- /06-09-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-09-2014/index.html -------------------------------------------------------------------------------- /06-10-2014/blarg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-10-2014/blarg.js -------------------------------------------------------------------------------- /06-10-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-10-2014/index.html -------------------------------------------------------------------------------- /06-11-2014/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-11-2014/avatar.jpg -------------------------------------------------------------------------------- /06-11-2014/gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-11-2014/gui.js -------------------------------------------------------------------------------- /06-11-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-11-2014/index.html -------------------------------------------------------------------------------- /06-11-2014/titanfall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-11-2014/titanfall.jpg -------------------------------------------------------------------------------- /06-12-2014/bubblee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-12-2014/bubblee.js -------------------------------------------------------------------------------- /06-12-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-12-2014/index.html -------------------------------------------------------------------------------- /06-13-2014/bioclass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-13-2014/bioclass.js -------------------------------------------------------------------------------- /06-13-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-13-2014/index.html -------------------------------------------------------------------------------- /06-14-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-14-2014/index.html -------------------------------------------------------------------------------- /06-14-2014/zoomable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-14-2014/zoomable.js -------------------------------------------------------------------------------- /06-15-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-15-2014/index.html -------------------------------------------------------------------------------- /06-15-2014/voroweb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-15-2014/voroweb.js -------------------------------------------------------------------------------- /06-16-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-16-2014/index.html -------------------------------------------------------------------------------- /06-16-2014/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-16-2014/name.js -------------------------------------------------------------------------------- /06-17-2014/comps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-17-2014/comps.json -------------------------------------------------------------------------------- /06-17-2014/fastcomp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-17-2014/fastcomp.js -------------------------------------------------------------------------------- /06-17-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-17-2014/index.html -------------------------------------------------------------------------------- /06-18-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-18-2014/index.html -------------------------------------------------------------------------------- /06-18-2014/red-wines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-18-2014/red-wines.js -------------------------------------------------------------------------------- /06-19-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-19-2014/index.html -------------------------------------------------------------------------------- /06-19-2014/piccadilly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-19-2014/piccadilly.js -------------------------------------------------------------------------------- /06-20-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-20-2014/index.html -------------------------------------------------------------------------------- /06-20-2014/learnding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-20-2014/learnding.js -------------------------------------------------------------------------------- /06-21-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-21-2014/index.html -------------------------------------------------------------------------------- /06-21-2014/learnding2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-21-2014/learnding2.js -------------------------------------------------------------------------------- /06-22-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-22-2014/index.html -------------------------------------------------------------------------------- /06-22-2014/learnding3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-22-2014/learnding3.js -------------------------------------------------------------------------------- /06-23-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-23-2014/index.html -------------------------------------------------------------------------------- /06-23-2014/learnding4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-23-2014/learnding4.js -------------------------------------------------------------------------------- /06-24-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-24-2014/index.html -------------------------------------------------------------------------------- /06-24-2014/transcend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-24-2014/transcend.js -------------------------------------------------------------------------------- /06-25-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-25-2014/index.html -------------------------------------------------------------------------------- /06-26-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-26-2014/index.html -------------------------------------------------------------------------------- /06-26-2014/shapeof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-26-2014/shapeof.js -------------------------------------------------------------------------------- /06-27-2014/follow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-27-2014/follow.js -------------------------------------------------------------------------------- /06-27-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-27-2014/index.html -------------------------------------------------------------------------------- /06-28-2014/eyeballs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-28-2014/eyeballs.js -------------------------------------------------------------------------------- /06-28-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-28-2014/index.html -------------------------------------------------------------------------------- /06-29-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-29-2014/index.html -------------------------------------------------------------------------------- /06-29-2014/node1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-29-2014/node1.js -------------------------------------------------------------------------------- /06-30-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/06-30-2014/index.html -------------------------------------------------------------------------------- /07-01-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-01-2014/index.html -------------------------------------------------------------------------------- /07-01-2014/subject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-01-2014/subject.js -------------------------------------------------------------------------------- /07-02-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-02-2014/index.html -------------------------------------------------------------------------------- /07-02-2014/rec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-02-2014/rec.js -------------------------------------------------------------------------------- /07-03-2014/graphhle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-03-2014/graphhle.js -------------------------------------------------------------------------------- /07-03-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-03-2014/index.html -------------------------------------------------------------------------------- /07-04-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-04-2014/index.html -------------------------------------------------------------------------------- /07-04-2014/murka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-04-2014/murka.js -------------------------------------------------------------------------------- /07-05-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-05-2014/index.html -------------------------------------------------------------------------------- /07-06-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-06-2014/index.html -------------------------------------------------------------------------------- /07-06-2014/jungle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-06-2014/jungle.js -------------------------------------------------------------------------------- /07-07-2014/geometer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-07-2014/geometer.js -------------------------------------------------------------------------------- /07-07-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-07-2014/index.html -------------------------------------------------------------------------------- /07-08-2014/geometer2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-08-2014/geometer2.js -------------------------------------------------------------------------------- /07-08-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-08-2014/index.html -------------------------------------------------------------------------------- /07-09-2014/geometer3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-09-2014/geometer3.js -------------------------------------------------------------------------------- /07-09-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-09-2014/index.html -------------------------------------------------------------------------------- /07-10-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-10-2014/index.html -------------------------------------------------------------------------------- /07-10-2014/radian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-10-2014/radian.js -------------------------------------------------------------------------------- /07-11-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-11-2014/index.html -------------------------------------------------------------------------------- /07-11-2014/intangles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-11-2014/intangles.js -------------------------------------------------------------------------------- /07-12-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-12-2014/index.html -------------------------------------------------------------------------------- /07-12-2014/scrollsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-12-2014/scrollsy.js -------------------------------------------------------------------------------- /07-13-2014/anniversary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-13-2014/anniversary.js -------------------------------------------------------------------------------- /07-13-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-13-2014/index.html -------------------------------------------------------------------------------- /07-14-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-14-2014/index.html -------------------------------------------------------------------------------- /07-14-2014/quaddle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-14-2014/quaddle.js -------------------------------------------------------------------------------- /07-15-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-15-2014/index.html -------------------------------------------------------------------------------- /07-15-2014/vorotree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-15-2014/vorotree.js -------------------------------------------------------------------------------- /07-16-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-16-2014/index.html -------------------------------------------------------------------------------- /07-16-2014/modality.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-16-2014/modality.js -------------------------------------------------------------------------------- /07-17-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-17-2014/index.html -------------------------------------------------------------------------------- /07-17-2014/sidebarp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-17-2014/sidebarp.js -------------------------------------------------------------------------------- /07-18-2014/d3modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-18-2014/d3modals.js -------------------------------------------------------------------------------- /07-18-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-18-2014/index.html -------------------------------------------------------------------------------- /07-19-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-19-2014/index.html -------------------------------------------------------------------------------- /07-19-2014/radii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-19-2014/radii.js -------------------------------------------------------------------------------- /07-20-2014/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-20-2014/data.json -------------------------------------------------------------------------------- /07-20-2014/dtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-20-2014/dtree.js -------------------------------------------------------------------------------- /07-20-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-20-2014/index.html -------------------------------------------------------------------------------- /07-21-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-21-2014/index.html -------------------------------------------------------------------------------- /07-21-2014/logotrends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-21-2014/logotrends.js -------------------------------------------------------------------------------- /07-22-2014/coordos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-22-2014/coordos.js -------------------------------------------------------------------------------- /07-22-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-22-2014/index.html -------------------------------------------------------------------------------- /07-23-2014/diagrammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-23-2014/diagrammer.js -------------------------------------------------------------------------------- /07-23-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-23-2014/index.html -------------------------------------------------------------------------------- /07-24-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-24-2014/index.html -------------------------------------------------------------------------------- /07-25-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-25-2014/index.html -------------------------------------------------------------------------------- /07-25-2014/notagain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-25-2014/notagain.js -------------------------------------------------------------------------------- /07-26-2014/geoflower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-26-2014/geoflower.js -------------------------------------------------------------------------------- /07-26-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-26-2014/index.html -------------------------------------------------------------------------------- /07-27-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-27-2014/index.html -------------------------------------------------------------------------------- /07-28-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-28-2014/index.html -------------------------------------------------------------------------------- /07-28-2014/protractin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-28-2014/protractin.js -------------------------------------------------------------------------------- /07-29-2014/directions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-29-2014/directions.js -------------------------------------------------------------------------------- /07-29-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-29-2014/index.html -------------------------------------------------------------------------------- /07-30-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-30-2014/index.html -------------------------------------------------------------------------------- /07-30-2014/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-30-2014/monitor.png -------------------------------------------------------------------------------- /07-30-2014/oldskool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-30-2014/oldskool.js -------------------------------------------------------------------------------- /07-31-2014/flippant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-31-2014/flippant.js -------------------------------------------------------------------------------- /07-31-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/07-31-2014/index.html -------------------------------------------------------------------------------- /08-01-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-01-2014/index.html -------------------------------------------------------------------------------- /08-02-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-02-2014/index.html -------------------------------------------------------------------------------- /08-02-2014/trochoidia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-02-2014/trochoidia.js -------------------------------------------------------------------------------- /08-03-2014/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-03-2014/avatar.png -------------------------------------------------------------------------------- /08-03-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-03-2014/index.html -------------------------------------------------------------------------------- /08-03-2014/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-03-2014/logo.png -------------------------------------------------------------------------------- /08-03-2014/part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-03-2014/part.png -------------------------------------------------------------------------------- /08-03-2014/zombalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-03-2014/zombalytics.js -------------------------------------------------------------------------------- /08-04-2014/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-04-2014/bg.jpg -------------------------------------------------------------------------------- /08-04-2014/dovah.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-04-2014/dovah.js -------------------------------------------------------------------------------- /08-04-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-04-2014/index.html -------------------------------------------------------------------------------- /08-05-2014/chars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-05-2014/chars.js -------------------------------------------------------------------------------- /08-05-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-05-2014/index.html -------------------------------------------------------------------------------- /08-06-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-06-2014/index.html -------------------------------------------------------------------------------- /08-06-2014/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-06-2014/logo.png -------------------------------------------------------------------------------- /08-06-2014/onedegree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-06-2014/onedegree.js -------------------------------------------------------------------------------- /08-07-2014/flashy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-07-2014/flashy.js -------------------------------------------------------------------------------- /08-07-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-07-2014/index.html -------------------------------------------------------------------------------- /08-08-2014/bottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-08-2014/bottle.jpg -------------------------------------------------------------------------------- /08-08-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-08-2014/index.html -------------------------------------------------------------------------------- /08-08-2014/wata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-08-2014/wata.js -------------------------------------------------------------------------------- /08-09-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-09-2014/index.html -------------------------------------------------------------------------------- /08-09-2014/markovSeq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-09-2014/markovSeq.js -------------------------------------------------------------------------------- /08-10-2014/graph1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-10-2014/graph1.js -------------------------------------------------------------------------------- /08-10-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-10-2014/index.html -------------------------------------------------------------------------------- /08-11-2014/graph2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-11-2014/graph2.js -------------------------------------------------------------------------------- /08-11-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-11-2014/index.html -------------------------------------------------------------------------------- /08-12-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-12-2014/index.html -------------------------------------------------------------------------------- /08-13-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-13-2014/index.html -------------------------------------------------------------------------------- /08-14-2014/arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-14-2014/arrows.svg -------------------------------------------------------------------------------- /08-14-2014/ddresque.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-14-2014/ddresque.js -------------------------------------------------------------------------------- /08-14-2014/img/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-14-2014/img/down.png -------------------------------------------------------------------------------- /08-14-2014/img/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-14-2014/img/left.png -------------------------------------------------------------------------------- /08-14-2014/img/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-14-2014/img/right.png -------------------------------------------------------------------------------- /08-14-2014/img/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-14-2014/img/up.png -------------------------------------------------------------------------------- /08-14-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-14-2014/index.html -------------------------------------------------------------------------------- /08-15-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-15-2014/index.html -------------------------------------------------------------------------------- /08-15-2014/obfuscator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-15-2014/obfuscator.js -------------------------------------------------------------------------------- /08-16-2014/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-16-2014/data.json -------------------------------------------------------------------------------- /08-16-2014/imgs/euler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-16-2014/imgs/euler.jpg -------------------------------------------------------------------------------- /08-16-2014/imgs/gauss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-16-2014/imgs/gauss.jpg -------------------------------------------------------------------------------- /08-16-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-16-2014/index.html -------------------------------------------------------------------------------- /08-17-2014/godmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-17-2014/godmode.js -------------------------------------------------------------------------------- /08-17-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-17-2014/index.html -------------------------------------------------------------------------------- /08-17-2014/wp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-17-2014/wp.jpg -------------------------------------------------------------------------------- /08-18-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-18-2014/index.html -------------------------------------------------------------------------------- /08-18-2014/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-18-2014/path.js -------------------------------------------------------------------------------- /08-18-2014/svg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-18-2014/svg.json -------------------------------------------------------------------------------- /08-19-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-19-2014/index.html -------------------------------------------------------------------------------- /08-20-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-20-2014/index.html -------------------------------------------------------------------------------- /08-20-2014/parametric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-20-2014/parametric.js -------------------------------------------------------------------------------- /08-21-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-21-2014/index.html -------------------------------------------------------------------------------- /08-21-2014/moody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-21-2014/moody.js -------------------------------------------------------------------------------- /08-22-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-22-2014/index.html -------------------------------------------------------------------------------- /08-22-2014/oscillate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-22-2014/oscillate.js -------------------------------------------------------------------------------- /08-23-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-23-2014/index.html -------------------------------------------------------------------------------- /08-23-2014/piepack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-23-2014/piepack.js -------------------------------------------------------------------------------- /08-24-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-24-2014/index.html -------------------------------------------------------------------------------- /08-24-2014/treepiepack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-24-2014/treepiepack.js -------------------------------------------------------------------------------- /08-25-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-25-2014/index.html -------------------------------------------------------------------------------- /08-25-2014/infome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-25-2014/infome.js -------------------------------------------------------------------------------- /08-25-2014/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-25-2014/me.jpg -------------------------------------------------------------------------------- /08-26-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-26-2014/index.html -------------------------------------------------------------------------------- /08-26-2014/stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-26-2014/stack.js -------------------------------------------------------------------------------- /08-27-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-27-2014/index.html -------------------------------------------------------------------------------- /08-27-2014/scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-27-2014/scale.js -------------------------------------------------------------------------------- /08-28-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-28-2014/index.html -------------------------------------------------------------------------------- /08-28-2014/recursion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-28-2014/recursion.js -------------------------------------------------------------------------------- /08-29-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-29-2014/index.html -------------------------------------------------------------------------------- /08-29-2014/recursion2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-29-2014/recursion2.js -------------------------------------------------------------------------------- /08-30-2014/harmonic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-30-2014/harmonic.js -------------------------------------------------------------------------------- /08-30-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-30-2014/index.html -------------------------------------------------------------------------------- /08-31-2014/cellula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-31-2014/cellula.js -------------------------------------------------------------------------------- /08-31-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/08-31-2014/index.html -------------------------------------------------------------------------------- /09-01-2014/cellula2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-01-2014/cellula2.js -------------------------------------------------------------------------------- /09-01-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-01-2014/index.html -------------------------------------------------------------------------------- /09-02-2014/hamming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-02-2014/hamming.js -------------------------------------------------------------------------------- /09-02-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-02-2014/index.html -------------------------------------------------------------------------------- /09-03-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-03-2014/index.html -------------------------------------------------------------------------------- /09-03-2014/rot13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-03-2014/rot13.js -------------------------------------------------------------------------------- /09-04-2014/capixel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-04-2014/capixel.js -------------------------------------------------------------------------------- /09-04-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-04-2014/index.html -------------------------------------------------------------------------------- /09-05-2014/attractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-05-2014/attractor.js -------------------------------------------------------------------------------- /09-05-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-05-2014/index.html -------------------------------------------------------------------------------- /09-06-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-06-2014/index.html -------------------------------------------------------------------------------- /09-06-2014/rover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-06-2014/rover.js -------------------------------------------------------------------------------- /09-06-2014/roverWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-06-2014/roverWidget.js -------------------------------------------------------------------------------- /09-07-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-07-2014/index.html -------------------------------------------------------------------------------- /09-07-2014/rave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-07-2014/rave.js -------------------------------------------------------------------------------- /09-08-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-08-2014/index.html -------------------------------------------------------------------------------- /09-08-2014/polyrave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-08-2014/polyrave.js -------------------------------------------------------------------------------- /09-09-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-09-2014/index.html -------------------------------------------------------------------------------- /09-09-2014/pos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-09-2014/pos.js -------------------------------------------------------------------------------- /09-10-2014/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-10-2014/book.js -------------------------------------------------------------------------------- /09-10-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-10-2014/index.html -------------------------------------------------------------------------------- /09-11-2014/imgs/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/0.png -------------------------------------------------------------------------------- /09-11-2014/imgs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/1.png -------------------------------------------------------------------------------- /09-11-2014/imgs/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/10.png -------------------------------------------------------------------------------- /09-11-2014/imgs/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/11.png -------------------------------------------------------------------------------- /09-11-2014/imgs/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/12.png -------------------------------------------------------------------------------- /09-11-2014/imgs/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/13.png -------------------------------------------------------------------------------- /09-11-2014/imgs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/2.png -------------------------------------------------------------------------------- /09-11-2014/imgs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/3.png -------------------------------------------------------------------------------- /09-11-2014/imgs/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/4.png -------------------------------------------------------------------------------- /09-11-2014/imgs/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/5.png -------------------------------------------------------------------------------- /09-11-2014/imgs/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/6.png -------------------------------------------------------------------------------- /09-11-2014/imgs/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/7.png -------------------------------------------------------------------------------- /09-11-2014/imgs/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/8.png -------------------------------------------------------------------------------- /09-11-2014/imgs/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/imgs/9.png -------------------------------------------------------------------------------- /09-11-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/index.html -------------------------------------------------------------------------------- /09-11-2014/scratchy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-11-2014/scratchy.js -------------------------------------------------------------------------------- /09-12-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-12-2014/index.html -------------------------------------------------------------------------------- /09-12-2014/jellyfish.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-12-2014/jellyfish.pde -------------------------------------------------------------------------------- /09-13-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-13-2014/index.html -------------------------------------------------------------------------------- /09-14-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-14-2014/index.html -------------------------------------------------------------------------------- /09-14-2014/tremble.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-14-2014/tremble.pde -------------------------------------------------------------------------------- /09-15-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-15-2014/index.html -------------------------------------------------------------------------------- /09-16-2014/amplitude.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-16-2014/amplitude.pde -------------------------------------------------------------------------------- /09-16-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-16-2014/index.html -------------------------------------------------------------------------------- /09-17-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-17-2014/index.html -------------------------------------------------------------------------------- /09-17-2014/sacred.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-17-2014/sacred.pde -------------------------------------------------------------------------------- /09-18-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-18-2014/index.html -------------------------------------------------------------------------------- /09-18-2014/proximity.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-18-2014/proximity.pde -------------------------------------------------------------------------------- /09-19-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-19-2014/index.html -------------------------------------------------------------------------------- /09-19-2014/wobbles.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-19-2014/wobbles.pde -------------------------------------------------------------------------------- /09-20-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-20-2014/index.html -------------------------------------------------------------------------------- /09-20-2014/stream.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-20-2014/stream.pde -------------------------------------------------------------------------------- /09-21-2014/illuminate.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-21-2014/illuminate.pde -------------------------------------------------------------------------------- /09-21-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-21-2014/index.html -------------------------------------------------------------------------------- /09-22-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-22-2014/index.html -------------------------------------------------------------------------------- /09-22-2014/scalable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-22-2014/scalable.js -------------------------------------------------------------------------------- /09-23-2014/bunnienaci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-23-2014/bunnienaci.js -------------------------------------------------------------------------------- /09-23-2014/bunnypair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-23-2014/bunnypair.png -------------------------------------------------------------------------------- /09-23-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-23-2014/index.html -------------------------------------------------------------------------------- /09-24-2014/distance.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-24-2014/distance.pde -------------------------------------------------------------------------------- /09-24-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-24-2014/index.html -------------------------------------------------------------------------------- /09-25-2014/consumed.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-25-2014/consumed.pde -------------------------------------------------------------------------------- /09-25-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-25-2014/index.html -------------------------------------------------------------------------------- /09-26-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-26-2014/index.html -------------------------------------------------------------------------------- /09-26-2014/swarm.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-26-2014/swarm.pde -------------------------------------------------------------------------------- /09-27-2014/afterwords.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-27-2014/afterwords.pde -------------------------------------------------------------------------------- /09-27-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-27-2014/index.html -------------------------------------------------------------------------------- /09-28-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-28-2014/index.html -------------------------------------------------------------------------------- /09-28-2014/scanner.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-28-2014/scanner.pde -------------------------------------------------------------------------------- /09-29-2014/golden.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-29-2014/golden.pde -------------------------------------------------------------------------------- /09-29-2014/goldens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-29-2014/goldens.jpg -------------------------------------------------------------------------------- /09-29-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-29-2014/index.html -------------------------------------------------------------------------------- /09-30-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-30-2014/index.html -------------------------------------------------------------------------------- /09-30-2014/kitty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-30-2014/kitty.jpg -------------------------------------------------------------------------------- /09-30-2014/puppy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/09-30-2014/puppy.jpg -------------------------------------------------------------------------------- /10-01-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-01-2014/index.html -------------------------------------------------------------------------------- /10-01-2014/seizure.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-01-2014/seizure.pde -------------------------------------------------------------------------------- /10-02-2014/buns.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-02-2014/buns.jpg -------------------------------------------------------------------------------- /10-02-2014/buns.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-02-2014/buns.pde -------------------------------------------------------------------------------- /10-02-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-02-2014/index.html -------------------------------------------------------------------------------- /10-03-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-03-2014/index.html -------------------------------------------------------------------------------- /10-03-2014/moveit.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-03-2014/moveit.pde -------------------------------------------------------------------------------- /10-04-2014/atomic.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-04-2014/atomic.pde -------------------------------------------------------------------------------- /10-04-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-04-2014/index.html -------------------------------------------------------------------------------- /10-05-2014/engine.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-05-2014/engine.pde -------------------------------------------------------------------------------- /10-05-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-05-2014/index.html -------------------------------------------------------------------------------- /10-06-2014/crc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-06-2014/crc.js -------------------------------------------------------------------------------- /10-06-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-06-2014/index.html -------------------------------------------------------------------------------- /10-07-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-07-2014/index.html -------------------------------------------------------------------------------- /10-07-2014/summation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-07-2014/summation.js -------------------------------------------------------------------------------- /10-08-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-08-2014/index.html -------------------------------------------------------------------------------- /10-08-2014/jection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-08-2014/jection.js -------------------------------------------------------------------------------- /10-09-2014/cayley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-09-2014/cayley.js -------------------------------------------------------------------------------- /10-09-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-09-2014/index.html -------------------------------------------------------------------------------- /10-10-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-10-2014/index.html -------------------------------------------------------------------------------- /10-11-2014/db.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-11-2014/db.gif -------------------------------------------------------------------------------- /10-11-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-11-2014/index.html -------------------------------------------------------------------------------- /10-11-2014/initials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-11-2014/initials.js -------------------------------------------------------------------------------- /10-12-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-12-2014/index.html -------------------------------------------------------------------------------- /10-13-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-13-2014/index.html -------------------------------------------------------------------------------- /10-13-2014/loves.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-13-2014/loves.pde -------------------------------------------------------------------------------- /10-14-2014/heatmap.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-14-2014/heatmap.pde -------------------------------------------------------------------------------- /10-14-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-14-2014/index.html -------------------------------------------------------------------------------- /10-15-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-15-2014/index.html -------------------------------------------------------------------------------- /10-15-2014/slice.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-15-2014/slice.pde -------------------------------------------------------------------------------- /10-16-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-16-2014/index.html -------------------------------------------------------------------------------- /10-17-2014/gate.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-17-2014/gate.pde -------------------------------------------------------------------------------- /10-17-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-17-2014/index.html -------------------------------------------------------------------------------- /10-18-2014/alienradar.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-18-2014/alienradar.pde -------------------------------------------------------------------------------- /10-18-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-18-2014/index.html -------------------------------------------------------------------------------- /10-19-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-19-2014/index.html -------------------------------------------------------------------------------- /10-20-2014/goldenFont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-20-2014/goldenFont.js -------------------------------------------------------------------------------- /10-20-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-20-2014/index.html -------------------------------------------------------------------------------- /10-20-2014/loader.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-20-2014/loader.GIF -------------------------------------------------------------------------------- /10-21-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-21-2013/index.html -------------------------------------------------------------------------------- /10-21-2013/swing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-21-2013/swing.js -------------------------------------------------------------------------------- /10-21-2014/goodbye.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-21-2014/goodbye.pde -------------------------------------------------------------------------------- /10-21-2014/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-21-2014/index.html -------------------------------------------------------------------------------- /10-22-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-22-2013/index.html -------------------------------------------------------------------------------- /10-22-2013/texty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-22-2013/texty.js -------------------------------------------------------------------------------- /10-23-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-23-2013/index.html -------------------------------------------------------------------------------- /10-23-2013/magic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-23-2013/magic.js -------------------------------------------------------------------------------- /10-24-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-24-2013/index.html -------------------------------------------------------------------------------- /10-24-2013/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-24-2013/split.js -------------------------------------------------------------------------------- /10-24-2013/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-24-2013/texture.png -------------------------------------------------------------------------------- /10-25-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-25-2013/index.html -------------------------------------------------------------------------------- /10-25-2013/verlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-25-2013/verlet.js -------------------------------------------------------------------------------- /10-26-2013/doot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-26-2013/doot.js -------------------------------------------------------------------------------- /10-26-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-26-2013/index.html -------------------------------------------------------------------------------- /10-27-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-27-2013/index.html -------------------------------------------------------------------------------- /10-27-2013/matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-27-2013/matrix.js -------------------------------------------------------------------------------- /10-28-2013/cat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-28-2013/cat1.jpg -------------------------------------------------------------------------------- /10-28-2013/cat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-28-2013/cat2.jpg -------------------------------------------------------------------------------- /10-28-2013/floob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-28-2013/floob.js -------------------------------------------------------------------------------- /10-28-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-28-2013/index.html -------------------------------------------------------------------------------- /10-29-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-29-2013/index.html -------------------------------------------------------------------------------- /10-29-2013/spline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-29-2013/spline.js -------------------------------------------------------------------------------- /10-30-2013/everything.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-30-2013/everything.js -------------------------------------------------------------------------------- /10-30-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-30-2013/index.html -------------------------------------------------------------------------------- /10-30-2013/words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-30-2013/words.json -------------------------------------------------------------------------------- /10-31-2013/boo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-31-2013/boo.js -------------------------------------------------------------------------------- /10-31-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/10-31-2013/index.html -------------------------------------------------------------------------------- /11-01-2013/architect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-01-2013/architect.js -------------------------------------------------------------------------------- /11-01-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-01-2013/index.html -------------------------------------------------------------------------------- /11-02-2013/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-02-2013/image.js -------------------------------------------------------------------------------- /11-02-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-02-2013/index.html -------------------------------------------------------------------------------- /11-03-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-03-2013/index.html -------------------------------------------------------------------------------- /11-03-2013/zombies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-03-2013/zombies.js -------------------------------------------------------------------------------- /11-04-2013/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-04-2013/bar.js -------------------------------------------------------------------------------- /11-04-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-04-2013/index.html -------------------------------------------------------------------------------- /11-05-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-05-2013/index.html -------------------------------------------------------------------------------- /11-05-2013/redacted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-05-2013/redacted.js -------------------------------------------------------------------------------- /11-06-2013/frogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-06-2013/frogs.js -------------------------------------------------------------------------------- /11-06-2013/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-06-2013/images/bg.png -------------------------------------------------------------------------------- /11-06-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-06-2013/index.html -------------------------------------------------------------------------------- /11-06-2013/sounds/bud.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-06-2013/sounds/bud.mp3 -------------------------------------------------------------------------------- /11-06-2013/sounds/er.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-06-2013/sounds/er.mp3 -------------------------------------------------------------------------------- /11-07-2013/animatey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-07-2013/animatey.js -------------------------------------------------------------------------------- /11-07-2013/face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-07-2013/face.svg -------------------------------------------------------------------------------- /11-07-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-07-2013/index.html -------------------------------------------------------------------------------- /11-08-2013/decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-08-2013/decoder.js -------------------------------------------------------------------------------- /11-08-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-08-2013/index.html -------------------------------------------------------------------------------- /11-08-2013/sounds/bap.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-08-2013/sounds/bap.mp3 -------------------------------------------------------------------------------- /11-08-2013/sounds/bep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-08-2013/sounds/bep.mp3 -------------------------------------------------------------------------------- /11-08-2013/sounds/bip.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-08-2013/sounds/bip.mp3 -------------------------------------------------------------------------------- /11-08-2013/sounds/bop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-08-2013/sounds/bop.mp3 -------------------------------------------------------------------------------- /11-08-2013/sounds/bup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-08-2013/sounds/bup.mp3 -------------------------------------------------------------------------------- /11-09-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-09-2013/index.html -------------------------------------------------------------------------------- /11-09-2013/kbd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-09-2013/kbd.js -------------------------------------------------------------------------------- /11-10-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-10-2013/index.html -------------------------------------------------------------------------------- /11-10-2013/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-10-2013/site.js -------------------------------------------------------------------------------- /11-11-2013/aoskdsok111.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-11-2013/aoskdsok111.js -------------------------------------------------------------------------------- /11-11-2013/grass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-11-2013/grass.jpg -------------------------------------------------------------------------------- /11-11-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-11-2013/index.html -------------------------------------------------------------------------------- /11-12-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-12-2013/index.html -------------------------------------------------------------------------------- /11-12-2013/pulsar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-12-2013/pulsar.js -------------------------------------------------------------------------------- /11-13-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-13-2013/index.html -------------------------------------------------------------------------------- /11-13-2013/kittentilt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-13-2013/kittentilt.js -------------------------------------------------------------------------------- /11-14-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-14-2013/index.html -------------------------------------------------------------------------------- /11-14-2013/wiggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-14-2013/wiggle.js -------------------------------------------------------------------------------- /11-15-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-15-2013/index.html -------------------------------------------------------------------------------- /11-15-2013/void.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-15-2013/void.js -------------------------------------------------------------------------------- /11-16-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-16-2013/index.html -------------------------------------------------------------------------------- /11-16-2013/rectongular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-16-2013/rectongular.js -------------------------------------------------------------------------------- /11-17-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-17-2013/index.html -------------------------------------------------------------------------------- /11-17-2013/leet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-17-2013/leet.js -------------------------------------------------------------------------------- /11-17-2013/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-17-2013/quotes.json -------------------------------------------------------------------------------- /11-18-2013/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-18-2013/eye.svg -------------------------------------------------------------------------------- /11-18-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-18-2013/index.html -------------------------------------------------------------------------------- /11-18-2013/jitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-18-2013/jitter.js -------------------------------------------------------------------------------- /11-19-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-19-2013/index.html -------------------------------------------------------------------------------- /11-19-2013/spiral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-19-2013/spiral.js -------------------------------------------------------------------------------- /11-20-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-20-2013/index.html -------------------------------------------------------------------------------- /11-20-2013/jquery.knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-20-2013/jquery.knob.js -------------------------------------------------------------------------------- /11-20-2013/spiral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-20-2013/spiral.js -------------------------------------------------------------------------------- /11-20-2013/starfield.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-20-2013/starfield.jpg -------------------------------------------------------------------------------- /11-21-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-21-2013/index.html -------------------------------------------------------------------------------- /11-21-2013/torii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-21-2013/torii.js -------------------------------------------------------------------------------- /11-22-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-22-2013/index.html -------------------------------------------------------------------------------- /11-22-2013/mountains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-22-2013/mountains.js -------------------------------------------------------------------------------- /11-22-2013/mtn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-22-2013/mtn.jpg -------------------------------------------------------------------------------- /11-23-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-23-2013/index.html -------------------------------------------------------------------------------- /11-23-2013/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-23-2013/random.js -------------------------------------------------------------------------------- /11-24-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-24-2013/index.html -------------------------------------------------------------------------------- /11-24-2013/principles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-24-2013/principles.js -------------------------------------------------------------------------------- /11-25-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-25-2013/index.html -------------------------------------------------------------------------------- /11-25-2013/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-25-2013/random.js -------------------------------------------------------------------------------- /11-26-2013/displaced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-26-2013/displaced.js -------------------------------------------------------------------------------- /11-26-2013/imgs/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-26-2013/imgs/cat.jpg -------------------------------------------------------------------------------- /11-26-2013/imgs/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-26-2013/imgs/dog.jpg -------------------------------------------------------------------------------- /11-26-2013/imgs/otter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-26-2013/imgs/otter.jpg -------------------------------------------------------------------------------- /11-26-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-26-2013/index.html -------------------------------------------------------------------------------- /11-27-2013/donuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-27-2013/donuts.js -------------------------------------------------------------------------------- /11-27-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-27-2013/index.html -------------------------------------------------------------------------------- /11-28-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-28-2013/index.html -------------------------------------------------------------------------------- /11-28-2013/mona.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-28-2013/mona.jpg -------------------------------------------------------------------------------- /11-28-2013/mona.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-28-2013/mona.js -------------------------------------------------------------------------------- /11-29-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-29-2013/index.html -------------------------------------------------------------------------------- /11-29-2013/mega.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-29-2013/mega.js -------------------------------------------------------------------------------- /11-29-2013/megaman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-29-2013/megaman.png -------------------------------------------------------------------------------- /11-30-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-30-2013/index.html -------------------------------------------------------------------------------- /11-30-2013/kuklos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-30-2013/kuklos.js -------------------------------------------------------------------------------- /11-30-2013/times/10pm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-30-2013/times/10pm.css -------------------------------------------------------------------------------- /11-30-2013/times/1pm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/11-30-2013/times/1pm.css -------------------------------------------------------------------------------- /12-01-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-01-2013/index.html -------------------------------------------------------------------------------- /12-01-2013/snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-01-2013/snow.jpg -------------------------------------------------------------------------------- /12-01-2013/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-01-2013/snowflake.png -------------------------------------------------------------------------------- /12-01-2013/snowy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-01-2013/snowy.js -------------------------------------------------------------------------------- /12-02-2013/headlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-02-2013/headlines.js -------------------------------------------------------------------------------- /12-02-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-02-2013/index.html -------------------------------------------------------------------------------- /12-03-2013/bookbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-03-2013/bookbg.jpg -------------------------------------------------------------------------------- /12-03-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-03-2013/index.html -------------------------------------------------------------------------------- /12-03-2013/neuro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-03-2013/neuro.js -------------------------------------------------------------------------------- /12-04-2013/atomic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-04-2013/atomic.js -------------------------------------------------------------------------------- /12-04-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-04-2013/index.html -------------------------------------------------------------------------------- /12-05-2013/bender.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-05-2013/bender.jpg -------------------------------------------------------------------------------- /12-05-2013/bender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-05-2013/bender.js -------------------------------------------------------------------------------- /12-05-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-05-2013/index.html -------------------------------------------------------------------------------- /12-06-2013/cthulu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-06-2013/cthulu.jpg -------------------------------------------------------------------------------- /12-06-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-06-2013/index.html -------------------------------------------------------------------------------- /12-07-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-07-2013/index.html -------------------------------------------------------------------------------- /12-07-2013/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-07-2013/message.js -------------------------------------------------------------------------------- /12-08-2013/creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-08-2013/creation.js -------------------------------------------------------------------------------- /12-08-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-08-2013/index.html -------------------------------------------------------------------------------- /12-09-2013/faceoff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-09-2013/faceoff.js -------------------------------------------------------------------------------- /12-09-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-09-2013/index.html -------------------------------------------------------------------------------- /12-10-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-10-2013/index.html -------------------------------------------------------------------------------- /12-10-2013/jupitermap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-10-2013/jupitermap.jpg -------------------------------------------------------------------------------- /12-10-2013/popping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-10-2013/popping.js -------------------------------------------------------------------------------- /12-11-2013/gridme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-11-2013/gridme.png -------------------------------------------------------------------------------- /12-11-2013/growth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-11-2013/growth.js -------------------------------------------------------------------------------- /12-11-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-11-2013/index.html -------------------------------------------------------------------------------- /12-12-2013/img/bark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-12-2013/img/bark.jpg -------------------------------------------------------------------------------- /12-12-2013/img/mtn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-12-2013/img/mtn.gif -------------------------------------------------------------------------------- /12-12-2013/img/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-12-2013/img/space.jpg -------------------------------------------------------------------------------- /12-12-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-12-2013/index.html -------------------------------------------------------------------------------- /12-12-2013/spacecookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-12-2013/spacecookie.js -------------------------------------------------------------------------------- /12-13-2013/imgs/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-13-2013/imgs/space.jpg -------------------------------------------------------------------------------- /12-13-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-13-2013/index.html -------------------------------------------------------------------------------- /12-13-2013/kardashev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-13-2013/kardashev.js -------------------------------------------------------------------------------- /12-14-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-14-2013/index.html -------------------------------------------------------------------------------- /12-14-2013/pyramid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-14-2013/pyramid.js -------------------------------------------------------------------------------- /12-15-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-15-2013/index.html -------------------------------------------------------------------------------- /12-15-2013/tcag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-15-2013/tcag.js -------------------------------------------------------------------------------- /12-16-2013/goodbye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-16-2013/goodbye.js -------------------------------------------------------------------------------- /12-16-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-16-2013/index.html -------------------------------------------------------------------------------- /12-17-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-17-2013/index.html -------------------------------------------------------------------------------- /12-17-2013/pixl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-17-2013/pixl.js -------------------------------------------------------------------------------- /12-18-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-18-2013/index.html -------------------------------------------------------------------------------- /12-18-2013/props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-18-2013/props.js -------------------------------------------------------------------------------- /12-19-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-19-2013/index.html -------------------------------------------------------------------------------- /12-19-2013/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-19-2013/watcher.js -------------------------------------------------------------------------------- /12-20-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-20-2013/index.html -------------------------------------------------------------------------------- /12-20-2013/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-20-2013/watcher.js -------------------------------------------------------------------------------- /12-21-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-21-2013/index.html -------------------------------------------------------------------------------- /12-21-2013/splitzie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-21-2013/splitzie.js -------------------------------------------------------------------------------- /12-22-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-22-2013/index.html -------------------------------------------------------------------------------- /12-22-2013/splitzie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-22-2013/splitzie.js -------------------------------------------------------------------------------- /12-23-2013/checkmeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-23-2013/checkmeout.js -------------------------------------------------------------------------------- /12-23-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-23-2013/index.html -------------------------------------------------------------------------------- /12-24-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-24-2013/index.html -------------------------------------------------------------------------------- /12-24-2013/presents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-24-2013/presents.js -------------------------------------------------------------------------------- /12-25-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-25-2013/index.html -------------------------------------------------------------------------------- /12-25-2013/ornate-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-25-2013/ornate-bg.jpg -------------------------------------------------------------------------------- /12-25-2013/xmas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-25-2013/xmas.js -------------------------------------------------------------------------------- /12-26-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-26-2013/index.html -------------------------------------------------------------------------------- /12-27-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-27-2013/index.html -------------------------------------------------------------------------------- /12-27-2013/uplift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-27-2013/uplift.js -------------------------------------------------------------------------------- /12-28-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-28-2013/index.html -------------------------------------------------------------------------------- /12-28-2013/squaredy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-28-2013/squaredy.js -------------------------------------------------------------------------------- /12-29-2013/bezier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-29-2013/bezier.js -------------------------------------------------------------------------------- /12-29-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-29-2013/index.html -------------------------------------------------------------------------------- /12-30-2013/baby-otter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-30-2013/baby-otter.jpg -------------------------------------------------------------------------------- /12-30-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-30-2013/index.html -------------------------------------------------------------------------------- /12-30-2013/ottervision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-30-2013/ottervision.js -------------------------------------------------------------------------------- /12-31-2013/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-31-2013/index.html -------------------------------------------------------------------------------- /12-31-2013/magictime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/12-31-2013/magictime.js -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/README.md -------------------------------------------------------------------------------- /css/epilogue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/css/epilogue.css -------------------------------------------------------------------------------- /css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/css/global.css -------------------------------------------------------------------------------- /css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/css/template.css -------------------------------------------------------------------------------- /css/vendor/hover-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/css/vendor/hover-min.css -------------------------------------------------------------------------------- /css/vendor/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/css/vendor/normalize.css -------------------------------------------------------------------------------- /css/vendor/nprogress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/css/vendor/nprogress.css -------------------------------------------------------------------------------- /css/vendor/typeplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/css/vendor/typeplate.css -------------------------------------------------------------------------------- /css/vendor/vis.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/css/vendor/vis.min.css -------------------------------------------------------------------------------- /epilogue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/epilogue.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/favicon.ico -------------------------------------------------------------------------------- /filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/filenames.txt -------------------------------------------------------------------------------- /fixtures/html-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/fixtures/html-tags.json -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /img/asfalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/asfalt.png -------------------------------------------------------------------------------- /img/az_subtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/az_subtle.png -------------------------------------------------------------------------------- /img/binding_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/binding_dark.png -------------------------------------------------------------------------------- /img/cartographer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/cartographer.png -------------------------------------------------------------------------------- /img/classy_fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/classy_fabric.png -------------------------------------------------------------------------------- /img/dark_geometric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/dark_geometric.png -------------------------------------------------------------------------------- /img/dimension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/dimension.png -------------------------------------------------------------------------------- /img/escheresque_ste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/escheresque_ste.png -------------------------------------------------------------------------------- /img/geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/geometry.png -------------------------------------------------------------------------------- /img/gridme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/gridme.png -------------------------------------------------------------------------------- /img/moulin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/moulin.png -------------------------------------------------------------------------------- /img/noisy_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/noisy_grid.png -------------------------------------------------------------------------------- /img/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/notebook.png -------------------------------------------------------------------------------- /img/pw_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/pw_pattern.png -------------------------------------------------------------------------------- /img/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/pyramid.png -------------------------------------------------------------------------------- /img/struckaxiom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/struckaxiom.png -------------------------------------------------------------------------------- /img/subtle_dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/subtle_dots.png -------------------------------------------------------------------------------- /img/tiny_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/tiny_grid.png -------------------------------------------------------------------------------- /img/tree_bark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/tree_bark.png -------------------------------------------------------------------------------- /img/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/type.png -------------------------------------------------------------------------------- /img/wet_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/wet_snow.png -------------------------------------------------------------------------------- /img/wild_oliva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/img/wild_oliva.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/index.html -------------------------------------------------------------------------------- /js/d3.geometer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/d3.geometer.js -------------------------------------------------------------------------------- /js/fabric-art-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/fabric-art-tools.js -------------------------------------------------------------------------------- /js/utils.d3.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/utils.d3.data.js -------------------------------------------------------------------------------- /js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/utils.js -------------------------------------------------------------------------------- /js/utils.math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/utils.math.js -------------------------------------------------------------------------------- /js/vendor/Font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/Font.js -------------------------------------------------------------------------------- /js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/angular.min.js -------------------------------------------------------------------------------- /js/vendor/bigtext.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/bigtext.min.js -------------------------------------------------------------------------------- /js/vendor/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/d3.min.js -------------------------------------------------------------------------------- /js/vendor/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/dat.gui.min.js -------------------------------------------------------------------------------- /js/vendor/dynamo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/dynamo.min.js -------------------------------------------------------------------------------- /js/vendor/funky.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/funky.min.js -------------------------------------------------------------------------------- /js/vendor/gh3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/gh3.js -------------------------------------------------------------------------------- /js/vendor/howler.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/howler.min.js -------------------------------------------------------------------------------- /js/vendor/knwl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/knwl.min.js -------------------------------------------------------------------------------- /js/vendor/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/lodash.min.js -------------------------------------------------------------------------------- /js/vendor/masonry.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/masonry.min.js -------------------------------------------------------------------------------- /js/vendor/nprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/nprogress.js -------------------------------------------------------------------------------- /js/vendor/orbit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/orbit.js -------------------------------------------------------------------------------- /js/vendor/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/parallax.min.js -------------------------------------------------------------------------------- /js/vendor/smartresize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/smartresize.js -------------------------------------------------------------------------------- /js/vendor/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/three.min.js -------------------------------------------------------------------------------- /js/vendor/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/tween.min.js -------------------------------------------------------------------------------- /js/vendor/vis.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/vis.map -------------------------------------------------------------------------------- /js/vendor/vis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/vendor/vis.min.js -------------------------------------------------------------------------------- /js/widgets/excitation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/widgets/excitation.js -------------------------------------------------------------------------------- /js/widgets/grapher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/widgets/grapher.js -------------------------------------------------------------------------------- /js/widgets/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/widgets/modal.js -------------------------------------------------------------------------------- /js/widgets/side-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/js/widgets/side-panel.js -------------------------------------------------------------------------------- /libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/libs.txt -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/package.json -------------------------------------------------------------------------------- /sass/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_animations.scss -------------------------------------------------------------------------------- /sass/_btns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_btns.scss -------------------------------------------------------------------------------- /sass/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_code.scss -------------------------------------------------------------------------------- /sass/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_colors.scss -------------------------------------------------------------------------------- /sass/_flipbtns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_flipbtns.scss -------------------------------------------------------------------------------- /sass/_global_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_global_mixins.scss -------------------------------------------------------------------------------- /sass/_scrollbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_scrollbars.scss -------------------------------------------------------------------------------- /sass/_shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_shims.scss -------------------------------------------------------------------------------- /sass/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_tables.scss -------------------------------------------------------------------------------- /sass/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_typography.scss -------------------------------------------------------------------------------- /sass/_vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/_vendor.scss -------------------------------------------------------------------------------- /sass/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/global.scss -------------------------------------------------------------------------------- /sass/widgets/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/widgets/_cards.scss -------------------------------------------------------------------------------- /sass/widgets/_dtree.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/widgets/_dtree.scss -------------------------------------------------------------------------------- /sass/widgets/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/sass/widgets/_modal.scss -------------------------------------------------------------------------------- /screenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/screenshots.js -------------------------------------------------------------------------------- /screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christabor/etude/HEAD/screenshots.py -------------------------------------------------------------------------------- /screenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------