5 Commits

Author SHA1 Message Date
3bdd79de62 Update reading lists, support and copyright year 2021-01-14 13:21:04 +00:00
e68f94ae24 Update reading lists 2021-01-14 12:44:17 +00:00
0490e56c06 Add October 2020 artwork 2020-11-29 17:36:12 +00:00
4ccbd14d2f Add auto overflow to fix formatting 2020-11-29 15:26:28 +00:00
971e5d4907 Add Xiao drawing and order artwork by year 2020-09-14 14:02:04 +01:00
13 changed files with 554 additions and 265 deletions

751
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -178,6 +178,15 @@ fn fungi_photo_guide() -> Template {
Template::render("fungi/photo_guide", &context)
}
#[get("/fungi/reading-list")]
fn fungi_reading_list() -> Template {
let context = FlashContext {
flash_name: None,
flash_msg: None,
};
Template::render("fungi/reading_list", &context)
}
#[get("/")]
fn home() -> Template {
let context = FlashContext {
@ -301,6 +310,7 @@ fn main() {
fungi_lichen_space,
fungi_network_resilience,
fungi_photo_guide,
fungi_reading_list,
home,
lists,
meditation,

BIN
static/art/archer.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
static/art/beetle.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

BIN
static/art/ninja.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

BIN
static/art/xiao_wen_ju.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -2,16 +2,18 @@
{% block title %}mycelial technology | art{% endblock title %}
{% block content %}
<h2>Art</h2>
<h3>2020</h3>
<div class="flex-grid">
<img class="col" alt="Line drawing of an aloe plant" src="art/aloe.jpg" title="Aloe plant" />
<img class="col" alt="Line drawing of an American kestrel" src="art/kestrel.jpg" title="American kestrel" />
<img class="col" alt="Line drawing of a black oval surrounded by two rings of glyphs" src="art/obsidian_artifact.jpg" title="Obsidian Artifact" />
<img class="col" alt="Line drawing of a Japanese archer with a longbow" src="art/archer.jpg" title="Archer" />
<img class="col" alt="Pen and ink drawing of a tiger beetle with mesas and clouds in the background" src="art/beetle.jpg" title="Beetle" />
<img class="col" alt="Pen and ink drawing of a man standing with his hands in his pockets. He has a katana slung across his back and there are rocks scattered around and hills in the background" src="art/ninja.jpg" title="Ninja" />
</div>
<div class="flex-grid">
<img class="col" alt="Line drawing of a mountain with a teardrop-shaped symbol above it, with mountains and clouds in the background" src="art/mystic_mountain.jpg" title="Mystic Mountain" />
<img class="col" alt="Line drawing of an ant with a long, antenna-like mushroom growing from its thorax" src="art/cordyceps_ant.jpg" title="Ophiocordyceps unilateralis on ant host" />
<img class="col" alt="Line drawing of a meditating figure with haloes of glyphs surrounding them" src="art/halo.svg" title="Halo" />
<img class="col" alt="Inked portrait of a beautiful young person" src="art/xiao_wen_ju.jpg" title="Xiao Wen Ju" />
<img class="col" alt="Black and white event poster of a spacecraft, astronaut and planet" src="art/extrasolar.jpg" title="Extrasolar" />
<img class="col" alt="Line drawing of a woman in a hooded parka" src="art/parka.jpg" title="Parka" />
</div>
<h3>2019</h3>
<div class="flex-grid">
<img class="col" alt="Line drawing of a humyn skull with mushrooms growing from it and text beneath reading 'Death is not the End'" src="art/death_is_not_the_end.jpg" title="Death is not the End" />
<img class="col" alt="Line drawing of a monk ringing a bell" src="art/ring_monk.jpg" title="Ring" />
@ -27,9 +29,16 @@
<img class="col" alt="Line drawing of a physalis fruit" src="art/physalis.jpg" title="Frail" />
<img class="col" alt="Line drawing of a humyn hand reaching out to touch a mycelial network" src="art/hyphal_fusion.svg" title="Hyphal Fusion" />
</div>
<h3>2018</h3>
<div class="flex-grid">
<img class="col" alt="Black and white event poster of a spacecraft, astronaut and planet" src="art/extrasolar.jpg" title="Extrasolar" />
<img class="col" alt="Line drawing of a woman in a hooded parka" src="art/parka.jpg" title="Parka" />
<img class="col" alt="Line drawing of an aloe plant" src="art/aloe.jpg" title="Aloe plant" />
<img class="col" alt="Line drawing of an American kestrel" src="art/kestrel.jpg" title="American kestrel" />
<img class="col" alt="Line drawing of a black oval surrounded by two rings of glyphs" src="art/obsidian_artifact.jpg" title="Obsidian Artifact" />
</div>
<div class="flex-grid">
<img class="col" alt="Line drawing of a mountain with a teardrop-shaped symbol above it, with mountains and clouds in the background" src="art/mystic_mountain.jpg" title="Mystic Mountain" />
<img class="col" alt="Line drawing of an ant with a long, antenna-like mushroom growing from its thorax" src="art/cordyceps_ant.jpg" title="Ophiocordyceps unilateralis on ant host" />
<img class="col" alt="Line drawing of a meditating figure with haloes of glyphs surrounding them" src="art/halo.svg" title="Halo" />
</div>
<hr>
{%- endblock %}

View File

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<link rel="shortcut icon" type="image/png" href="/favicon.png"/>
<title>{% block title %}{% endblock title %}</title>
<meta name="author" content="glyph">
<meta name="description" content="Welcome to the personal website of glyph: a mycelial technologist coding and cultivating a decentralized, multispecies future. On my site you will find art, musings and projects relating to carbon-based and silicon-based technologies. Sowing seeds of symbiosis, weaving webs of wu wei.">
@ -58,6 +58,7 @@
.col {
flex: 1;
padding: 1rem;
overflow: auto;
}
@media (max-width: 400px) {

View File

@ -19,5 +19,11 @@
<li><a href="/fungi/photo-guide">Photographing Mushrooms for Identification</a> - <i>25 August, 2020</i></li>
</ul>
</div>
<h3>Reading List</h3>
<div class="card">
<ul>
<li><a href="/fungi/reading-list">Mycology Reading List</a></li>
</ul>
</div>
<hr>
{%- endblock %}

View File

@ -0,0 +1,13 @@
{% extends "nav" %}
{% block title %}mycelial technology | reading list{% endblock title %}
{% block content %}
<h2>Mycology Literature Reading List</h2>
<h3>2021</h3>
<p>I'm aiming to read 100 mycology journal articles and textbook chapters this year. Any entries marked with a * have been read and discussed as part of the Hyphal Fusion Reading Group.</p>
<ol>
<li>Hiscox J, O'Leary J, Boddy L (2018). Fungus wars: basidiomycete battles in wood decay. <i>Studies in Mycology</i> <b>89</b>: 117124. *</li>
<li>Crowther TW, Boddy L, Maynard DS (2018). The use of artificial media in fungal ecology. <i>Fungal Ecology</i> <b>32</b>: 8791.</li>
<li>Parfitt D, Hunt J, Dockrell D, <i>et al.</i> (2010). Do all trees carry the seeds of their own destruction? PCR reveals numerous wood decay fungi latently present in sapwood of a wide range of angiosperm trees. <i>Fungal Ecology</i>, <b>3</b>: 338346.</li>
</ol>
<hr>
{%- endblock %}

View File

@ -5,11 +5,14 @@
<h3>Books</h3>
<p>Currently Reading</p>
<ul>
<li><i>Aurora</i> - Kim Stanley Robinson</li>
<li><i>Radical Mycology</i> - Peter McCoy</li>
<li><i>Jonathan Strange & Mr Norrell</i> - Susanna Clarke</li>
</ul>
<p>Previously Read</p>
<ul>
<li><i>Seveneves</i> - Neal Stephenson</li>
<li><i>Agency</i> - William Gibson</li>
<li><i>A Closed and Common Orbit</i> - Becky Chambers</li>
<li><i>Ready Player One</i> - Ernest Cline</li>
<li><i>Red Moon</i> - Kim Stanley Robinson</li>
@ -20,6 +23,7 @@
<ul>
<li><i>The Mushroom at the End of the World</i> - Anna Lowenhaupt Tsing</li>
</ul>
<p>* - <i>Reread</i></p>
<h3>Graphic Novels</h3>
<p>Currently Reading</p>
<ul>
@ -28,6 +32,9 @@
</ul>
<p>Previously Read</p>
<ul>
<li><i>Seven to Eternity, Vol. 1</i> - Rick Remender, Jerome Opeña and Matt Hollingsworth</li>
<li><i>Extremity, Vol. 1</i> - Daniel Warren Johnson and Mike Spicer</li>
<li><i>Descender, Vol. 1</i> - Jeff Lemire and Dustin Nguyen</li>
<li><i>Invisible Kingdom, Vol. 1</i> - G. Willow Wilson and Christian Ward</li>
<li><i>Isola, Vol. 1</i> - Brenden Fletcher and Karl Kerschl</li>
</ul>

View File

@ -18,6 +18,6 @@
</nav>
{%- block content %}{%- endblock %}
<footer style="display: flex;">
<p>&#169; 2020 glyph<p>
<p>&#169; 2021 glyph<p>
</footer>
{%- endblock %}

View File

@ -11,8 +11,6 @@
<h2>Supporting</h2>
<p>These are the projects and friends I currently contribute to:</p>
<ul>
<li>@cel - $5 per month for <a href="https://celehner.com/projects.html" title="cel's Projects">Scuttlebutt</a> development</li>
<li>@SoapDog - $5 per month for <a href="http://patchfox.org" title="PatchFox Website">PatchFox</a> development</li>
<li>Joey Santore - $5 per month for <a href="https://www.patreon.com/CrimePaysButBotanyDoesnt" title="Crime Pays But Botany Doesn't Patreon">Crime Pays But Botany Doesn't</a></li>
</ul>
<hr>