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

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

{% assign blog_posts = site.thoughts | where: "categories", "blog" | sort: 'date' | reverse %}
<p class="lshead">total {{ blog_posts.size }} — /blog · notes on cybersecurity, cloud hacking, and automation</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 blog_posts.size > 0 %}{% for post in blog_posts %}<tr data-href="{{ post.url }}"><td class="perm">-rw-r--r--</td><td class="c-date">{{ post.date | date: '%Y-%m-%d' }}</td><td class="c-size">{{ post.content | number_of_words | times: 6 | divided_by: 1024 | plus: 1 }}K</td><td class="c-cat">blog</td><td class="c-name"><a href="{{ post.url }}">{{ post.title }}</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">blog</td><td class="c-name">no entries published yet — check back soon</td></tr>{% endif %}
</tbody></table>
