Skip to content

Commit 6cb7f6c

Browse files
committed
example project structure
1 parent 85b0d12 commit 6cb7f6c

File tree

6 files changed

+31
-12
lines changed

6 files changed

+31
-12
lines changed

_config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ collections:
1616
classes:
1717
output: true
1818
permalink: /classes/:path/
19+
projects:
20+
output: true
21+
permalink: /projects/:path/
1922
faqs:
2023
output: false
2124
defaults:

_includes/project.html

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<article>
2+
<h4>{{ include.project.name }}</h4>
3+
{{ include.project.content }}
4+
</article>

_layouts/person.html

+8-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@
44
<div class="row">
55
{% if content %}
66
<section class="col-md-6 col-sm-6">
7-
<h1>{{page.title}}</h1>
7+
<h1>{{ page.title }}</h1>
88
{{content}}
9-
10-
{% assign project = 'projects/' | append: 'alexander-miller.md' %}
11-
{% capture project_include %}{% include {{ project }} %}{% endcapture %}
12-
{{ project_include | markdownify }}
9+
{% assign projects = site.projects | where: "artist", slug %}
10+
{% if projects != '' %}
11+
<h3>Projects</h3>
12+
{% for project in projects %}
13+
{% include project.html project=project %}
14+
{% endfor %}
15+
{% endif %}
1316
</section>
1417
{% endif %}
1518
<section class="info col-md-4 col-md-offset-1 col-sm-6">

_people/alexander-miller.md

-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,5 @@ affiliation:
88
website: http://spacefiller.space/
99
instagram: space.filler.art
1010
place: Seattle, WA
11-
projects:
12-
- alexander-miller
1311
---
1412
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 numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
---
2-
title: The Emergence and Decay of Computation
3-
artist: Alexander Miller
2+
name: The Emergence and Decay of Computation
3+
artist: alexander-miller
44
images:
55
- alexander-miller-1.jpg
66
- alexander-miller-2.jpg
77
- alexander-miller-3.jpg
88
- alexander-miller-4.jpg
99
---
10-
<iframe src="https://player.vimeo.com/video/336939272" width="640" height="360" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
11-
<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>
1210

1311
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.
1412

15-
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+
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.

_projects/the-second-project.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: The Second Project
3+
artist: other-person
4+
images:
5+
- alexander-miller-1.jpg
6+
- alexander-miller-2.jpg
7+
- alexander-miller-3.jpg
8+
- alexander-miller-4.jpg
9+
---
10+
11+
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.
12+
13+
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 commit comments

Comments
 (0)