<!-- License: All Rights Reserved. Moses Frost. -->
<!-- AI Training: Requires commercial license. Contact info@mosesfrost.com -->

<div class="prompt"><span class="dim">moses@frost:~/notes$</span> ls -la</div>

{% assign note_docs = site.notes | sort: 'date' | reverse %}
<p class="lshead">total {{ note_docs.size }} — /notes · guides, reference material, and raw working notes</p>
<table class="listing"><thead><tr><th>perms</th><th>date</th><th>size</th><th>cat</th><th>title</th></tr></thead><tbody>
{% if note_docs.size > 0 %}{% for note in note_docs %}<tr data-href="{{ note.url }}"><td class="perm">-rw-r--r--</td><td class="c-date">{{ note.date | date: '%Y-%m-%d' | default: '—' }}</td><td class="c-size">{{ note.content | number_of_words | times: 6 | divided_by: 1024 | plus: 1 }}K</td><td class="c-cat">notes</td><td class="c-name"><a href="{{ note.url }}">{{ note.title | default: note.url }}</a></td></tr>{% endfor %}{% else %}<tr><td class="perm">drwxr-xr-x</td><td class="c-date">—</td><td class="c-size">0</td><td class="c-cat">notes</td><td class="c-name">no notes published yet — check back soon</td></tr>{% endif %}
</tbody></table>
