You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

143 lines
3.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>01 - Pathways</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<header>
<h1>
doc
doc
doc
</h1>
<div class="sub">
documenting code documentation
</div>
<div class="info">
hello! welcome
this is an archive to navigate through different ways of making code documentation
navigate in the sense of learning how to find things, like
there is no clear path / a practice to learn / shared practice personal practice
</div>
<div class="attempt">
first attempt focuses on:
tag system as a writing machine,
navigable both as an index but also through several pathways
</div>
</header>
<section>
<h2>Pathways</h2>
<p>
Every pathway is a (semi) curated collection of entries.
It groups together different experiences.
It's different by just filtering by tag,
because it provides also context around the entries
note:
a pathway could be also imagined as (written with) a markup languge
using tags to insert entries in a broader text,
either specifying a particular entry or just referring to a generic tag
(and then for example fetch an entry from that category)
it could be a way to play with the tag system as a writing machine
</p>
<ul class="pathways">
<li>
<a href="pop">Politics of Participation</a>
</li>
<li><a href="rs">Representation Specs</a></li>
<li><a href="hw">Hello Worlding</a></li>
</ul>
</section>
<section>
<h2>Tags</h2>
<ul class="tags">
<li>docstring</li>
<li>personal project</li>
<li>worlding</li>
<li>workshop</li>
<li>situated</li>
<li>feminist servers</li>
<li>fediverse</li>
<li>academia</li>
<li>education</li>
<li>readme</li>
<li>javascript</li>
<li>python</li>
<li>course</li>
<li>OS</li>
<li>tutorial</li>
<li>series</li>
<li>decoupled</li>
</ul>
</section>
<section>
<h2>Entries</h2>
<ul class="entries">
<li class="entry">
<div class="title">The screenless office</div>
<div class="tags">docstrings, python, personal project, worlding</div>
</li>
<li class="entry">
<div class="title">360 degrees</div>
<div class="tags">workshop, situated, feminist servers, fediverse</div>
</li>
<li class="entry">
<div class="title">Sharing programming knowledge</div>
<div class="tags">workshop, accademia, education</div>
</li>
<li class="entry">
<div class="title">pad-bis</div>
<div class="tags">readme, situated, worlding</div>
</li>
<li class="entry">
<div class="title">drw</div>
<div class="tags">readme, situated, javascript</div>
</li>
<li class="entry">
<div class="title">Plan 9 from Bell Labs</div>
<div class="tags">explanations, research, OS</div>
</li>
<li class="entry">
<div class="title">From NAND to Tetris</div>
<div class="tags">course, academia, OS, abstraction</div>
</li>
<li class="entry">
<div class="title">Programming projects for Advanced Beginners</div>
<div class="tags">series, decoupled, tutorial</div>
</li>
</ul>
</section>
</body>
</html>