<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <title>Uncle Tallest Productions</title>
  <subtitle>Weird Wisdom &amp; Off the Rails</subtitle>
  <link href="https://blog.uncletallest-productions.org/feed.xml" rel="self" />
  <link href="https://blog.uncletallest-productions.org/" />
  <updated>2026-04-22T00:00:00Z</updated>
  <id>https://blog.uncletallest-productions.org/</id>
  <author>
    <name>Jerry Jackson</name>
  </author>
  <entry>
    <title>A Greater Me — Articulating My Belief System</title>
    <link href="https://blog.uncletallest-productions.org/content/off-the-rails/a-greater-me/" />
    <updated>2026-04-01T00:00:00Z</updated>
    <id>https://blog.uncletallest-productions.org/content/off-the-rails/a-greater-me/</id>
    <content type="html">&lt;p&gt;Anything viewed through the perceptions of a human is inherently flawed.
Religion suffers from that more than most fields of thought — not because
the underlying questions aren&#39;t worth asking, but because the answers got
handed down through too many layers of human interpretation before they
reached you.&lt;/p&gt;
&lt;p&gt;I&#39;ve always steered away from the moniker of &#39;Atheist&#39; or &#39;Agnostic&#39; as
neither truly fit within my mind for what I could not articulate until
recently. Deist was more correct but still has issues for me since it
presupposes that the object of said Deism is a &#39;god&#39;.&lt;/p&gt;
&lt;p&gt;What I have decided is that I have finally managed to articulate what it
is that I &#39;believe&#39; vis-a-vis a &#39;higher power&#39;.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;The &#39;higher power&#39; is just a &lt;em&gt;greater me&lt;/em&gt;. Each of us has one.&lt;/p&gt;
&lt;p&gt;This simple statement fits with every honest faith out there in some way
that satisfies my self-imposed requirement for &#39;proof&#39; before belief. It
even holds up when folks start talking about multiple dimensions and
alternate realities.&lt;/p&gt;
&lt;p&gt;Since I was very young I have believed that &lt;em&gt;this&lt;/em&gt; reality is merely a
plane of perception — a lab of sorts where our &#39;real&#39; selves can get
answers to questions by living through them to find an answer. That has
not changed.&lt;/p&gt;
&lt;p&gt;This Greater Me is exactly that: the primary shard of my being — soul,
if you must — and therefore has access to all my knowledge. The stuff I
can occasionally tap into seemingly without prior experience of it. They
have a question and need an answer. They send a piece of themselves to
this reality as an experiment to find the answers they seek. This life
and this reality are part of that journey and, at its end, will return
to their source.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;This realization has resolved a lot of things I didn&#39;t even realize I
was still brooding over. It allows me to have faith in the one thing I
can prove exists — myself.&lt;/p&gt;
&lt;p&gt;It also explains a few things about how I&#39;m wired.&lt;/p&gt;
&lt;p&gt;The brain that thinks in three-dimensional constructs, stores everything
as a future data point, refuses inherited mental models, builds the tools
when they don&#39;t exist — that&#39;s not a disorder. That&#39;s the experimental
apparatus the Greater Me sent here. The neurodivergence isn&#39;t incidental
to the experiment. It &lt;em&gt;is&lt;/em&gt; the experiment.&lt;/p&gt;
&lt;p&gt;If that sounds like a convenient rationalization, consider: I arrived at
this framework before I had language for the neurodivergence. The Greater
Me model came first. The diagnosis — or lack of one — came later. The
framework held.&lt;/p&gt;
&lt;p&gt;This may sound silly to others. But it gives me hope for the future. And
it&#39;s the most honest answer I have to the question of why I am the way I
am, and why I keep building things anyway.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;— Pliny, the Moderately Informed&lt;/em&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>How to Read forEach</title>
    <link href="https://blog.uncletallest-productions.org/weird-wisdom/how-to-read-foreach/" />
    <updated>2026-04-15T00:00:00Z</updated>
    <id>https://blog.uncletallest-productions.org/weird-wisdom/how-to-read-foreach/</id>
    <content type="html">&lt;p&gt;The &lt;code&gt;forEach&lt;/code&gt; method seems confusing to some folks, and this is normal —
computers evaluate data differently than humans.&lt;/p&gt;
&lt;p&gt;Use this color-coded breakdown to read yours so it makes sense to your
inefficient human mind.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Color order: Green &amp;gt; Red &amp;gt; Grey &amp;gt; Yellow&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;🟢 &lt;strong&gt;Green&lt;/strong&gt; — For Each&lt;/li&gt;
&lt;li&gt;🔴 &lt;strong&gt;Red&lt;/strong&gt; — item&lt;/li&gt;
&lt;li&gt;⚫ &lt;strong&gt;Grey&lt;/strong&gt; — in this array&lt;/li&gt;
&lt;li&gt;🟡 &lt;strong&gt;Yellow&lt;/strong&gt; — do the following&lt;/li&gt;
&lt;/ul&gt;
&lt;figure class=&quot;post-figure&quot;&gt;
  &lt;img src=&quot;https://blog.uncletallest-productions.org/assets/images/weird-wisdom/foreach-color-coded.png&quot; alt=&quot;forEach color coded: Green = For Each, Red = item, Grey = in this array, Yellow = do the following&quot; class=&quot;post-image&quot;&gt;
&lt;/figure&gt;
&lt;p&gt;Read it out loud: &lt;em&gt;&amp;quot;For each &lt;strong&gt;cardData&lt;/strong&gt; in &lt;strong&gt;initialCards&lt;/strong&gt;, do the
following...&amp;quot;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Your brain wants subject-verb-object. &lt;code&gt;forEach&lt;/code&gt; hands you the verb first.
Once you see the color order, you can&#39;t unsee it.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;This works for any &lt;code&gt;forEach&lt;/code&gt; — swap out the variable names and the
pattern holds. Same colors, same order, every time.&lt;/em&gt;&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Choosing a Working Stack That Works</title>
    <link href="https://blog.uncletallest-productions.org/content/off-the-rails/choosing-a-working-stack/" />
    <updated>2026-04-22T00:00:00Z</updated>
    <id>https://blog.uncletallest-productions.org/content/off-the-rails/choosing-a-working-stack/</id>
    <content type="html">&lt;p&gt;Everyone has opinions about tech stacks. Most of those opinions are about performance benchmarks, ecosystem size, or whatever the last conference talk was about.&lt;/p&gt;
&lt;p&gt;None of that is wrong. But for those of us whose brains work a little differently, there&#39;s a question that comes before all of that:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Will I still be able to work in this when I come back to it after two weeks away?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;That&#39;s the real filter.&lt;/p&gt;
</content>
  </entry>
</feed>