<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
    <title>Nick Salvatore</title>
    <link rel="self" type="application/atom+xml" href="https://nmsalvatore.com/atom.xml"/>
    <link rel="alternate" type="text/html" href="https://nmsalvatore.com"/>
    <generator uri="https://www.getzola.org/">Zola</generator>
    <updated>2026-05-25T07:09:10-07:00</updated>
    <id>https://nmsalvatore.com/atom.xml</id>
    <entry xml:lang="en">
        <title>Good Morning</title>
        <published>2026-05-25T07:09:10-07:00</published>
        <updated>2026-05-25T07:09:10-07:00</updated>
        
        <author>
          <name>
            
              Nick Salvatore
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://nmsalvatore.com/good-morning/"/>
        <id>https://nmsalvatore.com/good-morning/</id>
        
        <content type="html" xml:base="https://nmsalvatore.com/good-morning/">&lt;p&gt;I don&#x27;t do well with options. I have said that without the convenience of desperation, I am forced to consider, which is the source of my anxiety. And though it feels an accurate reflection of my experience, the framing doesn&#x27;t actually offer me a way out. To live in desperation would be its own hell. So as a person of good fortune, I&#x27;m left with freedom and calm and options. So many options. Even to reduce them to a select few—my most beloved—doesn&#x27;t ease my wandering mind. As long as there is &lt;em&gt;another&lt;&#x2F;em&gt;, outside of my current selection, I will, without question, consider it. My only escape seems to come with a sort of recreational desperation—in activities that demand inconsideration. But again, I can&#x27;t live there. Even to immerse myself momentarily in such activities makes me feel like a madman. I thrive in that place &lt;em&gt;because&lt;&#x2F;em&gt; it makes me a madman. I become fixated and once my attention is fixed, I become absent in every other activity.&lt;&#x2F;p&gt;
&lt;p&gt;I have said that I can&#x27;t enjoy things that I enjoy because I become a slave to them. They turn me into an addict and I can&#x27;t experience calm as an addict, not even in the satisfaction of my addictions. So I reach for middle options, those things between dread and desire. I try to keep myself at a distance at all times in order to not tempt my destruction. Fated to mediocrity by my own rules.&lt;&#x2F;p&gt;
&lt;p&gt;I have a propensity for drama, obviously. All of this is fine. 🐕🔥&lt;&#x2F;p&gt;
&lt;p&gt;I find satisfaction and calm in the middle, not in ends. That&#x27;s the lesson here. It&#x27;s ends that taunt me—images of satisfaction. The simple act of &lt;em&gt;imagining&lt;&#x2F;em&gt; turns everything into an end. So is it in imagination that my mind betrays me? Perhaps. And again, the framing offers me little. But it&#x27;s something to pay attention to nevertheless.&lt;&#x2F;p&gt;
&lt;p&gt;This is good. We&#x27;re really setting the tone for the chaos that will become of this blog.&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>A Year of Zig ⚡</title>
        <published>2026-05-21T00:00:00+00:00</published>
        <updated>2026-05-21T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Nick Salvatore
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://nmsalvatore.com/a-year-of-zig/"/>
        <id>https://nmsalvatore.com/a-year-of-zig/</id>
        
        <content type="html" xml:base="https://nmsalvatore.com/a-year-of-zig/">&lt;p&gt;I&#x27;ve decided to commit to learning Zig for the next year or so. The rationale is pretty simple: I want to work in a language that allows me to build real software without unnecessary headaches but also forces me to learn how computers really work and what high-level languages abstract away.&lt;&#x2F;p&gt;
&lt;p&gt;I just got started yesterday, reading Chapter 1 of &lt;a rel=&quot;external&quot; href=&quot;https:&#x2F;&#x2F;pedropark99.github.io&#x2F;zig-book&quot;&gt;Introduction to Zig ↗&lt;&#x2F;a&gt; and tackling the &lt;a rel=&quot;external&quot; href=&quot;https:&#x2F;&#x2F;exercism.org&#x2F;tracks&#x2F;zig&#x2F;exercises&#x2F;hello-world&quot;&gt;Hello World ↗&lt;&#x2F;a&gt; exercise on Exercism. Hello World exercises usually feel like a joke, especially on Exercism. They hand you a function that says &quot;Goodbye, Mars!&quot; and you modify the text to say &quot;Hello, World!&quot; Run the tests. Pass. Done. And to be clear, that&#x27;s exactly what the Zig exercise was, but there was enough unfamiliarity in the function signature for me to pause and dig into it more.&lt;&#x2F;p&gt;
&lt;p&gt;The point of this post isn&#x27;t to educate, but to illustrate my
point briefly—and it&#x27;s a dumb point—here&#x27;s the &lt;code&gt;hello()&lt;&#x2F;code&gt; function:&lt;&#x2F;p&gt;
&lt;pre&gt;&lt;code data-lang=&quot;zig&quot;&gt;pub fn hello() []const u8 {
    return &amp;quot;Hello, World!&amp;quot;;
}
&lt;&#x2F;code&gt;&lt;&#x2F;pre&gt;
&lt;p&gt;Coming from Python and Go, if I return a string in a function, my return type is something like &lt;code&gt;str&lt;&#x2F;code&gt; or &lt;code&gt;string&lt;&#x2F;code&gt;, not &lt;code&gt;[]const u8&lt;&#x2F;code&gt;. I looked up what a &lt;code&gt;u8&lt;&#x2F;code&gt; type is: unsigned 8-bit integer. So the return type is a slice of &lt;code&gt;const&lt;&#x2F;code&gt; (?) of unsigned 8-bit integers. Why would a slice of integers be the return type for a string? Why &lt;code&gt;const&lt;&#x2F;code&gt;? I wrote the questions I had down, then researched until I could answer each one. As I said, the point of this isn&#x27;t to explain all of this. The point is that this is the first Hello World exercise I&#x27;ve encountered where I wasn&#x27;t just learning about language-specific syntax to make a program do what I want it to do. Obviously, Zig is not alone in this, but it nevertheless excited me to have a simple exercise push me deeper into the computer.&lt;&#x2F;p&gt;
&lt;p&gt;So yeah, I&#x27;m looking forward to this next year.&lt;&#x2F;p&gt;
</content>
        
    </entry>
</feed>
