<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
    <title>Michael Huynh</title>
    <subtitle>Systems engineer by day, painter by night. Notes on code, paint, and the space between.</subtitle>
    <link rel="self" type="application/atom+xml" href="https://mhuynh.org/atom.xml"/>
    <link rel="alternate" type="text/html" href="https://mhuynh.org"/>
    <generator uri="https://www.getzola.org/">Zola</generator>
    <updated>2026-04-22T00:00:00+00:00</updated>
    <id>https://mhuynh.org/atom.xml</id>
    <entry xml:lang="en">
        <title>First Post — Setting Up This Blog</title>
        <published>2026-04-22T00:00:00+00:00</published>
        <updated>2026-04-22T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Unknown
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://mhuynh.org/notes/first-post/"/>
        <id>https://mhuynh.org/notes/first-post/</id>
        
        <content type="html" xml:base="https://mhuynh.org/notes/first-post/">&lt;p&gt;Welcome. This is the first post on mhuynh.org, which exists mostly as a place to write down what I’m learning while I learn it — systems work by day, painterly anime studies at night, whatever else is worth recording in between.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;how-to-write-new-posts&quot;&gt;How to write new posts&lt;&#x2F;h2&gt;
&lt;p&gt;Drop a markdown file into &lt;code&gt;content&#x2F;tech&#x2F;&lt;&#x2F;code&gt;, &lt;code&gt;content&#x2F;art&#x2F;&lt;&#x2F;code&gt;, &lt;code&gt;content&#x2F;projects&#x2F;&lt;&#x2F;code&gt;, or &lt;code&gt;content&#x2F;notes&#x2F;&lt;&#x2F;code&gt;. The filename becomes the URL slug. Front matter at the top sets the metadata:&lt;&#x2F;p&gt;
&lt;pre class=&quot;giallo&quot; style=&quot;color: #E1E4E8; background-color: #24292E;&quot;&gt;&lt;code data-lang=&quot;plain&quot;&gt;&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;+++&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;title = &amp;quot;Post title&amp;quot;&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;description = &amp;quot;Subtitle shown under the title.&amp;quot;&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;date = 2026-04-22&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;[taxonomies]&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;tags = [&amp;quot;rust&amp;quot;, &amp;quot;tooling&amp;quot;]&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;[extra]&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;topic = &amp;quot;PowerShell&amp;quot;    # optional — shows in the left rail&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;+++&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;Post content in markdown...&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;&lt;h2 id=&quot;how-to-embed-art&quot;&gt;How to embed art&lt;&#x2F;h2&gt;
&lt;p&gt;Use the &lt;code&gt;figure&lt;&#x2F;code&gt; shortcode to get the gallery frame and zoom-on-click behaviour:&lt;&#x2F;p&gt;
&lt;pre class=&quot;giallo&quot; style=&quot;color: #E1E4E8; background-color: #24292E;&quot;&gt;&lt;code data-lang=&quot;plain&quot;&gt;&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;{{ figure(&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;  src=&amp;quot;&#x2F;images&#x2F;art&#x2F;2026-04-22-session-3.jpg&amp;quot;,&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;  alt=&amp;quot;Session 3 — value structure practice&amp;quot;,&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;  fignum=&amp;quot;Figure 1&amp;quot;,&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;  caption=&amp;quot;Study after Sargent, ninety minutes, Procreate.&amp;quot;&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;
&lt;span class=&quot;giallo-l&quot;&gt;&lt;span&gt;) }}&lt;&#x2F;span&gt;&lt;&#x2F;span&gt;&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;p&gt;Put the image file at &lt;code&gt;static&#x2F;images&#x2F;art&#x2F;2026-04-22-session-3.jpg&lt;&#x2F;code&gt; and it’ll be served at that URL.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;categories-and-tags&quot;&gt;Categories and tags&lt;&#x2F;h2&gt;
&lt;p&gt;The top nav — Tech, Art, Projects, Notes — is the &lt;em&gt;primary&lt;&#x2F;em&gt; taxonomy; each lives as its own folder under &lt;code&gt;content&#x2F;&lt;&#x2F;code&gt;. Tags are secondary and cross-cutting, declared in front matter. A post about a Rust CLI in the tech section can be tagged &lt;code&gt;rust&lt;&#x2F;code&gt; and &lt;code&gt;tooling&lt;&#x2F;code&gt;; a painting in the art section can be tagged &lt;code&gt;portrait&lt;&#x2F;code&gt; and &lt;code&gt;sargent&lt;&#x2F;code&gt;. Tag pages are auto-generated.&lt;&#x2F;p&gt;
&lt;p&gt;That’s the mechanics. The rest is writing.&lt;&#x2F;p&gt;
</content>
        
    </entry>
</feed>
