Skip to content

Commit

Permalink
example project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
solon committed Jan 8, 2020
1 parent 85b0d12 commit 6cb7f6c
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 12 deletions.
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ collections:
classes:
output: true
permalink: /classes/:path/
projects:
output: true
permalink: /projects/:path/
faqs:
output: false
defaults:
Expand Down
4 changes: 4 additions & 0 deletions _includes/project.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<article>
<h4>{{ include.project.name }}</h4>
{{ include.project.content }}
</article>
13 changes: 8 additions & 5 deletions _layouts/person.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@
<div class="row">
{% if content %}
<section class="col-md-6 col-sm-6">
<h1>{{page.title}}</h1>
<h1>{{ page.title }}</h1>
{{content}}

{% assign project = 'projects/' | append: 'alexander-miller.md' %}
{% capture project_include %}{% include {{ project }} %}{% endcapture %}
{{ project_include | markdownify }}
{% assign projects = site.projects | where: "artist", slug %}
{% if projects != '' %}
<h3>Projects</h3>
{% for project in projects %}
{% include project.html project=project %}
{% endfor %}
{% endif %}
</section>
{% endif %}
<section class="info col-md-4 col-md-offset-1 col-sm-6">
Expand Down
2 changes: 0 additions & 2 deletions _people/alexander-miller.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@ affiliation:
website: http://spacefiller.space/
instagram: space.filler.art
place: Seattle, WA
projects:
- alexander-miller
---
Alex is a programmer, teacher and artist who is interested in real-time interactive generative systems. His work explores the ideas of order, chaos, complexity, emergent behavior, and scientific modeling.
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
---
title: The Emergence and Decay of Computation
artist: Alexander Miller
name: The Emergence and Decay of Computation
artist: alexander-miller
images:
- alexander-miller-1.jpg
- alexander-miller-2.jpg
- alexander-miller-3.jpg
- alexander-miller-4.jpg
---
<iframe src="https://player.vimeo.com/video/336939272" width="640" height="360" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
<p><a href="https://vimeo.com/336939272">The Emergence and Decay of Computation</a> from <a href="https://vimeo.com/alexmiller">SPACEFILLER</a> on <a href="https://vimeo.com">Vimeo</a>.</p>

Hacked receipt printers hang from their own receipts above a basin of water and slowly print themselves to death over the course of three days. The printers output rows of a cellular automaton — a mathematical simulation that generates emergent patterns from simple rules. Entering the water short circuits the printer, permanently killing it. The output of the cellular automaton simulation is directly linked to the destruction of the device computing the simulation.

The piece explores the tension between temporary structures and the inevitability of decay. It celebrates the beauty and order of computation as an emergent phenomenon of the universe, while also emphasizing its finiteness and ephemerality.
The piece explores the tension between temporary structures and the inevitability of decay. It celebrates the beauty and order of computation as an emergent phenomenon of the universe, while also emphasizing its finiteness and ephemerality.
13 changes: 13 additions & 0 deletions _projects/the-second-project.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: The Second Project
artist: other-person
images:
- alexander-miller-1.jpg
- alexander-miller-2.jpg
- alexander-miller-3.jpg
- alexander-miller-4.jpg
---

Hacked receipt printers hang from their own receipts above a basin of water and slowly print themselves to death over the course of three days. The printers output rows of a cellular automaton — a mathematical simulation that generates emergent patterns from simple rules. Entering the water short circuits the printer, permanently killing it. The output of the cellular automaton simulation is directly linked to the destruction of the device computing the simulation.

The piece explores the tension between temporary structures and the inevitability of decay. It celebrates the beauty and order of computation as an emergent phenomenon of the universe, while also emphasizing its finiteness and ephemerality.

0 comments on commit 6cb7f6c

Please sign in to comment.