Add projects page and update background info

This commit is contained in:
glyph 2020-06-28 15:26:07 +01:00
parent c87c4a7bc8
commit 1e9d083476
5 changed files with 32 additions and 15 deletions

View File

@ -151,6 +151,15 @@ fn lists() -> Template {
Template::render("lists", &context)
}
#[get("/meditation")]
fn meditation() -> Template {
let context = FlashContext {
flash_name: None,
flash_msg: None,
};
Template::render("meditation", &context)
}
#[get("/plants")]
fn plants() -> Template {
let context = FlashContext {
@ -196,13 +205,13 @@ fn plants_potato_tech() -> Template {
Template::render("plants/potato_tech", &context)
}
#[get("/meditation")]
fn meditation() -> Template {
#[get("/projects")]
fn projects() -> Template {
let context = FlashContext {
flash_name: None,
flash_msg: None,
};
Template::render("meditation", &context)
Template::render("projects", &context)
}
#[get("/support")]
@ -244,12 +253,13 @@ fn main() {
fungi_lichen_space,
home,
lists,
meditation,
plants,
plants_aloe_there,
plants_blueberry_dance,
plants_botanical_deceptions,
plants_potato_tech,
meditation,
projects,
support
],
)

View File

@ -3,7 +3,8 @@
<article>
<h2>Background</h2>
<p>I was born and raised in the coastal city of Durban, South Africa, which lies between the Indian Ocean and Drakensberg Mountains. Following completion of high school I moved to Michigan, USA and completed a Bachelor of Science in anthropology (major) and biology (minor) at <a href="https://www.gvsu.edu/">Grand Valley State University</a>. I later returned to South Africa and completed a Master of Social Science in social anthropology at the <a href="http://www.uct.ac.za/">University of Cape Town</a>, with <a href="https://open.uct.ac.za/handle/11427/6795">research</a> focused on decentralised networks of medicinal plant harvesters and herbalists (Rasta bush doctors). I then went on to work as an applied anthropologist and ethnobotanist in the non-profit sector.</p>
<p>Following a year spent travelling in South America, I restructured my life and livelihood around my core interests: carbon-based and silicon-based technologies (biology and computers). Since then I have founded <a href="https://harmonicmycology.com">Harmonic Mycology</a>, a mycology collective dedicated to developing and distributing mycelial medicines, teaching mushroom cultivation and encouraging the formation of humyn-fungal networks. In parallel to those activities, I have worked as an autodidactic software developer on private and open-source projects; most-recently, <a href="https://opencollective.com/peachcloud">PeachCloud</a>.</p>
<p>Following a year spent travelling in South America, I restructured my life and livelihood around my core interests: carbon-based and silicon-based technologies (biology and computers). In 2016 I co-founded <a href="https://harmonicmycology.com">Harmonic Mycology</a>, a mycology business based in Cape Town, and served as Creative Director until leaving to pursue personal and collective projects in 2020. I have developed mycelial medicines, cultivated edible and medicinal fungi and taught workshops on mushroom cultivation, biomaterials and medicinal fungi. My mycological work is now focused on encouraging the formation of humyn-fungal networks and practicing low-tech, ecologically-integrated cultivation.</p>
<p>In parallel to my mycological endeavours, I work as an autodidactic software developer on private and open-source projects; most-recently, <a href="https://opencollective.com/peachcloud">PeachCloud</a>. I also enjoy tinkering with electronics and have a couple of solar-powered projects in the works.</p>
<p>I hold a deep fascination with the processes through which humyns form relationships with other living beings. When not in the lab or behind a keyboard, you can find me looking at mushrooms, riding my bicycle or reading sci-fi. I'm dreaming of a three-month adventure across Japan ⛩.</p>
<img src="glyph_laetiporus.jpg" alt="A young man crouching beside a large orange chicken-of-the-woods mushroom growing from the trunk of an oak tree. Trees, shrubs and grasses fill the foreground and background." style="width: 100%;" />
</article>

View File

@ -7,7 +7,7 @@
<title>mycelial technology | glyph</title>
<meta name="author" content="glyph">
<meta name="description" content="The personal website of glyph.">
<meta name="keywords" content="mycology, fermentation, coding">
<meta name="keywords" content="botany, coding, electronics, fermentation, fungi, meditation, mycology, plants">
<style>
a {
color: #111;

View File

@ -10,8 +10,9 @@
<li class="nav-item"><a href="/computers">computers</a></li>
<li class="nav-item"><a href="/fungi">fungi</a></li>
<li class="nav-item"><a href="/lists">lists</a></li>
<li class="nav-item"><a href="/plants">plants</a></li>
<li class="nav-item"><a href="/meditation">meditation</a></li>
<li class="nav-item"><a href="/plants">plants</a></li>
<li class="nav-item"><a href="/projects">projects</a></li>
<li class="nav-item"><a href="/support">support</a></li>
</ol>
</nav>

View File

@ -1,15 +1,20 @@
{% extends "nav" %}
{% block content %}
<h2>Projects</h2>
<p>I'm a tortoise and I shuffle between projects in eccentric orbits; sometimes I complete one. Here are some of the things I'm currently working on:</p>
<p>I'm a tortoise and I shuffle between projects in eccentric orbits; sometimes I complete one.</p>
<h3>Active</h3>
<ul>
<li><a href="https://opencollective.com/peachcloud">PeachCloud</a>: solarpunk social hardware</li>
<li>Cultivation</li>
<ul>
<li><i>Grifola frondosa</i></li>
<li><i>Pleurotus eryngii</i></li>
<li><i>Pleurotus ostreatus</i></li>
</ul>
<li><a href="https://opencollective.com/peachcloud">PeachCloud</a>: solarpunk social hardware with Scuttlebutt</li>
<li><a href="https://hyphalfusion.network">Hyphal Fusion Network</a>: distributed mycology research</li>
<li>spore: a manual for the mycelial arts</li>
</ul>
<h3>On-hold</h3>
<ul>
<li><a href="https://two.camp.scuttlebutt.nz/">Scuttlecamp 2</a>: gathering of the Butts</li>
</ul>
<h3>Complete</h3>
<ul>
<li>An RSS generator for mycelial.technology (<a href="https://git.sr.ht/~glyph/website/tree/master/src/bin/generate_rss.rs" title="Rust source code for a custom RSS generator">source</a>)</li>
</ul>
<hr>
{%- endblock %}