About Social Code
summaryrefslogtreecommitdiff
path: root/html/notes/digital_garden.html
blob: a26ec7346882d8f9fe98df8ab1aad2b19b2003a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>

<html class="html-note-page" lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>Digital Garden</title>
    <meta name="dcterms.date" content="2022-10-30" />

    <link rel="stylesheet" href="/assets/style.css">
    <link rel="icon" type="image/x-icon" href="/assets/favicon.svg">
    <link rel="icon" type="image/png" href="/assets/favicon.png">
    <link rel="alternate" type="application/atom+xml" title="Fryzek Concepts" href="/feed.xml">
</head>

<body>
    <div class="header-bar">
        <a href="/index.html">
            <img src="/assets/favicon.svg" alt="frycon logo">
        </a>
        <div class="header-links">
                        <a href="/about.html" class="header-link">About</a>
            <a rel="me" href="https://mastodon.social/@hazematman" class="header-link">Social</a>
            <a href="https://git.fryzekconcepts.com" class="header-link">Code</a>
        </div>
    </div>
    <main>
<div class="page-title-header-container">
    <h1 class="page-title-header">Digital Garden</h1>
        <div class="page-info-container">
                    <div class="plant-status">
                    <img src="/assets/seedling.svg">
                    <div class="plant-status-text">
                    <p>seedling</p>
                    </div>
                    </div>
                <div class="page-info-date-container">
            <p class="page-info-date">Published: 2022-10-30</p>
            <p class="page-info-date">Last Edited: 2023-01-17</p>
        </div>
    </div>
    </div>
<div class="note-divider"></div>
<div class="main-container">
    <div class="note-body">
<p>After reading Maggie Appleton page on <a
href="https://maggieappleton.com/garden-history">digital gardens</a> I
was inspired to convert my own website into a digital garden.</p>
<p>I have many half baked ideas that I seem to be able to finish. Some
of them get to a published state like <a
href="/notes/rasterizing-triangles.html">Rasterizing Triangles</a> and
<a href="/notes/baremetal-risc-v.html">Baremetal RISC-V</a>, but many of
them never make it to the published state. The idea of digital garden
seems very appealing to me, as it encourages you to post on a topic even
if you haven’t made it “publishable” yet.</p>
<h2 id="how-this-site-works">How this site works</h2>
<p>I wanted a bit of challenge when putting together this website as I
don’t do a lot of web development in my day to day life, so I thought it
would be a good way to learn more things. This site has been entirely
built from scratch using a custom static site generator I setup with
pandoc. It relies on pandoc’s filters to implement some of the classic
“Digital Garden” features like back linking. The back linking feature
has not been totally developed yet and right now it just provides with a
convenient way to link to other notes or pages on this site.</p>
<p>I hope to develop this section more and explain how I got various
features in pandoc to work as a static site generator.</p>
    </div>
</div>    </main>
</body>
</html>