{{ page.description }}
6 | 7 | {% highlight javascript %} 8 | {{ page.content }} 9 | {% endhighlight %} 10 |├── .ruby-version ├── assets ├── .ruby-version ├── ron-burgundy.jpg ├── starry-night.jpg ├── diamond.svg ├── spade.svg ├── club.svg ├── heart.svg └── suites.svg ├── _config.yml ├── _layouts ├── default.html └── post.html ├── _site ├── 2014 │ ├── 10 │ │ ├── 10 │ │ │ └── animated-blend-modes.html │ │ ├── 12 │ │ │ └── square-tunnel.html │ │ ├── 15 │ │ │ └── arc-grid.html │ │ ├── 01 │ │ │ └── hue-flower.html │ │ ├── 04 │ │ │ └── rainbow-pseudo-spirograph.html │ │ └── 05 │ │ │ └── geometric-star.html │ ├── 11 │ │ ├── 13 │ │ │ └── hue-flower-2.html │ │ ├── 06 │ │ │ └── spiral-circles.html │ │ └── 07 │ │ │ └── sine-wave-dots.html │ └── 09 │ │ ├── 27 │ │ └── raster-circles.html │ │ ├── 28 │ │ └── sine-waves.html │ │ └── 29 │ │ └── sine-waves-hue-shifting.html ├── 2015 │ └── 02 │ │ └── 28 │ │ └── beosound.html ├── assets │ ├── ron-burgundy.jpg │ ├── starry-night.jpg │ ├── diamond.svg │ ├── spade.svg │ ├── club.svg │ ├── heart.svg │ └── suites.svg ├── js │ └── site.js ├── README.md ├── css │ ├── site.css │ ├── syntax.css │ └── normalize.css └── page3 │ └── index.html ├── js └── site.js ├── README.md ├── _includes ├── footer.html └── header.html ├── _posts ├── 2014-11-6-spiral-circles.md ├── 2014-10-1-hue-flower.md ├── 2014-11-7-sine-wave-dots.md ├── 2014-09-28-sine-waves.md ├── 2014-10-4-rainbow-pseudo-spirograph.md ├── 2014-09-29-sine-waves-hue-shifting.md ├── 2014-10-12-square-tunnel.md ├── 2014-11-13-hue-flower-2.md ├── 2014-10-5-geometric-star.md ├── 2014-09-27-raster-circles.md ├── 2015-02-28-beosound.md ├── 2014-10-7-shaded-cubes.md ├── 2014-10-10-animated-blend-modes.md ├── 2014-10-15-arc-grid.md ├── 2014-11-11-oscillating-dots.md ├── 2014-11-14-ron-burgundy.md ├── 2014-10-13-animated-woofer.md ├── 2014-11-4-basic-voronoi.md ├── 2014-09-30-gradient-hexagon.md ├── 2014-10-30-smoke-particles.md └── 2014-11-5-identicon-invaders.md ├── index.html └── css ├── site.css ├── syntax.css └── normalize.css /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.2 2 | -------------------------------------------------------------------------------- /assets/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.2-github 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | baseurl: /pixelbits 2 | paginate: 10 3 | 4 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | {% include header.html %} 2 | {{content}} 3 | {% include footer.html %} 4 | -------------------------------------------------------------------------------- /assets/ron-burgundy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlong/pixelbits/gh-pages/assets/ron-burgundy.jpg -------------------------------------------------------------------------------- /assets/starry-night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlong/pixelbits/gh-pages/assets/starry-night.jpg -------------------------------------------------------------------------------- /_site/assets/ron-burgundy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlong/pixelbits/gh-pages/_site/assets/ron-burgundy.jpg -------------------------------------------------------------------------------- /_site/assets/starry-night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlong/pixelbits/gh-pages/_site/assets/starry-night.jpg -------------------------------------------------------------------------------- /js/site.js: -------------------------------------------------------------------------------- 1 | $(document).on('click', '.js-show-code', function(e){ 2 | e.preventDefault(); 3 | $(this).parent().next('.code').show(); 4 | }); 5 | -------------------------------------------------------------------------------- /_site/js/site.js: -------------------------------------------------------------------------------- 1 | $(document).on('click', '.js-show-code', function(e){ 2 | e.preventDefault(); 3 | $(this).parent().next('.code').show(); 4 | }); 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is an experiment to do a regular creative coding sketch. So far, I've only used Paper.js, but I plan on trying P5.js, Three.js, and others. 2 | -------------------------------------------------------------------------------- /_site/README.md: -------------------------------------------------------------------------------- 1 | This is an experiment to do a regular creative coding sketch. So far, I've only used Paper.js, but I plan on trying P5.js, Three.js, and others. 2 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | {% include header.html %} 2 |
{{ page.description }}
6 | 7 | {% highlight javascript %} 8 | {{ page.content }} 9 | {% endhighlight %} 10 |