<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2026-07-21T17:09:40+00:00</updated><id>/feed.xml</id><title type="html">ABSAT</title><subtitle>Are blogs still a thing?</subtitle><author><name>Raymond Rosales</name></author><entry><title type="html">Is this thing on?</title><link href="/2026/07/19/is-this-thing-on.html" rel="alternate" type="text/html" title="Is this thing on?" /><published>2026-07-19T00:00:00+00:00</published><updated>2026-07-19T00:00:00+00:00</updated><id>/2026/07/19/is-this-thing-on</id><content type="html" xml:base="/2026/07/19/is-this-thing-on.html"><![CDATA[<p>It’s cliché to open a tech blog like this, so cliché that pointing it out is itself cliché. But what can I say but…</p>
<h2 id="hello-world">“Hello, world!”</h2>

<p>As you can see, this is now my blog. You probably don’t remember what this website used to look like. In fact, you shouldn’t. I would be incredibly weirded out if you did.</p>

<p>If you look far enough back in the GitHub repo (please don’t), you’ll see me using a pre-existing HTML5 template. I remember sitting at the desk in my freshman dorm when I first cobbled that together, bright-tailed and bushy-eyed, following some tutorial. This was so long ago that I messed up my Git credentials (I think I was using GitHub Desktop at this point), causing three Raymonds to be in the commit history. Gotta love how Git never forgets. <em>And never forgives.</em></p>

<p>Anyway.</p>

<p>Since we’re on the topic of origin stories, where did this “Hello, world” business come from? This practice, like many things in computer science, comes from <em>K&amp;R</em>.<sup id="fnref:1" role="doc-noteref"><a href="#fn:1" class="footnote" rel="footnote">1</a></sup></p>

<div class="language-c highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="n">main</span><span class="p">()</span>
<span class="p">{</span>
     <span class="n">printf</span><span class="p">(</span><span class="s">"hello, world</span><span class="se">\n</span><span class="s">"</span><span class="p">);</span>
<span class="p">}</span>
</code></pre></div></div>

<p>But this isn’t where it originated. This example was also used by Kernighan in an internal document he wrote prior, <em>Programming in C: A Tutorial</em>. 
But wait! That wasn’t the origin either. It came from <em>another</em> tutorial Kernighan wrote, this one on the language B.</p>

<pre><code class="language-B">main( ) {
    extrn a, b, c;
    putchar(a); putchar(b); putchar(c); putchar('!*n');
}
 
a 'hell';
b 'o, w';
c 'orld';
</code></pre>

<p>This language is so old it doesn’t even have syntax highlighting supported here.
Although this is the first recorded instance of the “Hello, world” program, it can allegedly back to BCPL in 1967. Turtles all the way down.</p>
<h2 id="getting-func-y-and-esoteric">Getting Func-y (and Esoteric)</h2>

<p>But not all “Hello, worlds” are created equal. Some “Hello, worlds” aren’t even “Hello, worlds.”<sup id="fnref:2" role="doc-noteref"><a href="#fn:2" class="footnote" rel="footnote">2</a></sup></p>

<blockquote>
  <p><a href="https://en.wikipedia.org/wiki/Functional_programming" title="Functional programming">Functional programming</a> languages, such as <a href="https://en.wikipedia.org/wiki/Lisp_\(programming_language\)" title="Lisp (programming language)">Lisp</a>, <a href="https://en.wikipedia.org/wiki/ML_\(programming_language\)" title="ML (programming language)">ML</a>, and <a href="https://en.wikipedia.org/wiki/Haskell" title="Haskell">Haskell</a>, tend to substitute a <a href="https://en.wikipedia.org/wiki/Factorial" title="Factorial">factorial</a> program for “Hello, world”, as functional programming emphasizes recursive techniques, whereas the original examples emphasize I/O, which violates the spirit of pure functional programming by producing <a href="https://en.wikipedia.org/wiki/Side_effect_\(computer_science\)" title="Side effect (computer science)">side effects</a>.</p>
</blockquote>

<p>(Oh, how I love you, functional programming.)</p>

<p>But even in these cooler, better languages, just printing out “Hello, world” is quite boring.</p>

<div class="language-lisp highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c1">;;; Hello world in Common Lisp</span>

<span class="p">(</span><span class="nb">print</span> <span class="s">"Hello World"</span><span class="p">)</span>
</code></pre></div></div>

<div class="language-sml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c">(*</span><span class="cm"> Hello World in SML *)</span>

<span class="kr">fun</span> <span class="nf">hello</span><span class="p">()</span> <span class="p">=</span> <span class="n">output</span><span class="p">(</span><span class="n">std_out</span><span class="p">,</span> <span class="s2">"Hello World!"</span><span class="p">);</span>
</code></pre></div></div>

<div class="language-haskell highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c1">-- Hello World in Haskell</span>
 
<span class="n">main</span> <span class="o">=</span> <span class="n">putStrLn</span> <span class="s">"Hello World"</span>
</code></pre></div></div>

<p>Where’s the pizzazz? Where’s the zhuzh? Where’s the “joy and whimsy” as people are so eager to say nowadays? Well, you’re not gonna find it in industry.
Any discussion involving the quirks of programming language must eventually turn to esolangs, because those guys are the only ones who know how to party.</p>

<p>Speaking of fun,<sup id="fnref:3" role="doc-noteref"><a href="#fn:3" class="footnote" rel="footnote">3</a></sup> if there’s one thing programmers loved to do back in the day, it’s create a big comprehensive text file on something. So of course, there was a “Hello, world” list which spread around on old BBSes, which eventually bloomed into a “Hello, world” webpage, which is now the Hello World Collection.<sup id="fnref:4" role="doc-noteref"><a href="#fn:4" class="footnote" rel="footnote">4</a></sup> That’s where many of the code snippets in this post have been sourced from. It features all sorts of language, from boring to proper esoteric.</p>

<p>For example, Piet’s<sup id="fnref:5" role="doc-noteref"><a href="#fn:5" class="footnote" rel="footnote">5</a></sup> “Hello, world” looks like this:</p>

<p><img src="/assets/images/piet.png" alt="A bunch of squares" /></p>

<p>My favorite<sup id="fnref:6" role="doc-noteref"><a href="#fn:6" class="footnote" rel="footnote">6</a></sup> entry on the page, belonging to the language “Pocket Calculator,”<sup id="fnref:7" role="doc-noteref"><a href="#fn:7" class="footnote" rel="footnote">7</a></sup> is just the number 0.7734, which is even funnier since modern graphing calculators can actually run code.
The language Oz<sup id="fnref:8" role="doc-noteref"><a href="#fn:8" class="footnote" rel="footnote">8</a></sup> somehow starts its implementation with the word “functor.”
Ecstatic’s<sup id="fnref:9" role="doc-noteref"><a href="#fn:9" class="footnote" rel="footnote">9</a></sup> source code is about 11*10^111<sup id="fnref:10" role="doc-noteref"><a href="#fn:10" class="footnote" rel="footnote">10</a></sup> exclamation points in a row with nothing else.</p>

<p>But the most impressive “Hello, world” by far belongs to Malbolge.</p>

<pre><code class="language-malbolge">(=&lt;`$9]7&lt;5YXz7wT.3,+O/o'K%$H"'~D|#z@b=`{^Lx8%$Xmrkpohm-kNi;gsedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?&gt;=&lt;;:9876543s+O&lt;oLm
</code></pre>

<p>Once again, I’ll let <a href="https://en.wikipedia.org/wiki/Malbolge#Programming_in_Malbolge">Wikipedia</a> do the talking.</p>

<blockquote>
  <p>Malbolge was very difficult to understand when it arrived, taking two years for the first Malbolge program to appear. The author himself has never written a Malbolge program. The first program was not written by a human being; it was generated by a <a href="https://en.wikipedia.org/wiki/Beam_search" title="Beam search">beam search</a> algorithm designed by Andrew Cooke and implemented in <a href="https://en.wikipedia.org/wiki/Lisp_\(programming_language\)" title="Lisp (programming language)">Lisp</a>.</p>
</blockquote>

<p>And to top it all off, it doesn’t even print “Hello, world.” It prints “HEllO WORld.”</p>
<h2 id="i-always-sucked-at-writing-conclusions">I always sucked at writing conclusions.</h2>

<p>In the end, while we may scoff at the simplicity of “Hello, world” in other languages like Python, you can’t argue with practicality. If all you need your program to do is say hi, all it needs to hear is “say hi.” But there’s a time and place for practicality. Why live in constant 9-to-5 mode?</p>

<p>I’m glad esolangs exist. It shows programmers can actually have fun with this stuff. Not everything has to be cut and dry, business business business. I hope this blog is less industry language and more esolang: rarely practical, but always fun.</p>

<p align="center"> 𓇼 ⋆.˚ 𓆉 𓆝 𓆡⋆.˚ 𓇼 </p>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1" role="doc-endnote">
      <p>The code has been rendered as it appeared in the first edition of <em>The C Programming Language</em>. I checked. I also checked the code itself, which is no longer compliant with ISO C99 and later (at the time of writing this, we’re at C23, released on Halloween<sup id="fnref:11" role="doc-noteref"><a href="#fn:11" class="footnote" rel="footnote">11</a></sup> of 2024). Nowadays, you need to include the <code class="language-plaintext highlighter-rouge">stdio.h</code> library header and you need to explicitly state that <code class="language-plaintext highlighter-rouge">main</code> returns an <code class="language-plaintext highlighter-rouge">int</code>. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:2" role="doc-endnote">
      <p>This quote, like most of the information in this post, was shamelessly stolen from the <a href="https://en.wikipedia.org/wiki/Hello,_world">Wikipedia page on “Hello, world”</a>. <a href="#fnref:2" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:3" role="doc-endnote">
      <p>No pun intended. <a href="#fnref:3" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:4" role="doc-endnote">
      <p>Rösler, Wolfram et al. <em>The Hello World Collection</em>, 14 Sept. 2014, helloworldcollection.de/. <a href="#fnref:4" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:5" role="doc-endnote">
      <p>Ibid. <a href="#fnref:5" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:6" role="doc-endnote">
      <p>My least favorite entry on the page belongs to Java. <a href="#fnref:6" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:7" role="doc-endnote">
      <p>Ibid. <a href="#fnref:7" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:8" role="doc-endnote">
      <p>Ibid. <a href="#fnref:8" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:9" role="doc-endnote">
      <p>Ibid. <a href="#fnref:9" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:10" role="doc-endnote">
      <p>The exact number, according to the <a href="https://esolangs.org/wiki/Ecstatic">Esolang Wiki</a>, is 11,745,396,970,761,548,557,844,427,413,766,327,995,589,772,739,314,086,919,355,093,720,961,223,541,738,614,442,550,691,210,954,782,889,076,179,929,044. <a href="#fnref:10" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:11" role="doc-endnote">
      <p>How frightening! <a href="#fnref:11" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Raymond Rosales</name></author><category term="hello world" /><summary type="html"><![CDATA[It’s cliché to open a tech blog like this, so cliché that pointing it out is itself cliché. But what can I say but… “Hello, world!”]]></summary></entry></feed>