<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.4">Jekyll</generator><link href="https://stedmanhalliday.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://stedmanhalliday.com/" rel="alternate" type="text/html" /><updated>2026-02-23T19:34:30-08:00</updated><id>https://stedmanhalliday.com/feed.xml</id><title type="html">Stedman Halliday</title><subtitle>Stedman Halliday is a technical generalist based in San Francisco creating values-aligned products, brands, media, and experiences.</subtitle><author><name>Stedman Halliday</name></author><entry><title type="html">The Models [Don’t] Have Eyes</title><link href="https://stedmanhalliday.com/blog/perceptual-reasoning-gap" rel="alternate" type="text/html" title="The Models [Don’t] Have Eyes" /><published>2026-01-27T00:00:00-08:00</published><updated>2026-01-27T00:00:00-08:00</updated><id>https://stedmanhalliday.com/blog/perceptual-reasoning-gap</id><content type="html" xml:base="https://stedmanhalliday.com/blog/perceptual-reasoning-gap"><![CDATA[<p><img src="/assets/img/2026-01-27-perceptual-reasoning-gap.webp" alt="Perceptual reasoning neural network" /></p>

<h2 id="closing-generative-uis-perceptual-reasoning-gap">Closing Generative UI’s Perceptual Reasoning Gap</h2>

<p>Anyone who’s vibecoded for more than an afternoon knows the pattern: the AI nails your component logic, wires up your state management, even writes reasonable tests. Then it spends 46 turns failing to center a play button in a circle.</p>

<p>The memes about centering a div write themselves. But underneath the frustration is a real architectural limitation worth understanding.</p>

<div class="soft-break"></div>

<h2 id="the-problem-the-models-dont-have-eyes">The Problem: The Models [Don’t] Have Eyes</h2>

<p>As the name suggests, large language models process the world through language [or more abstractly, text; see <a href="https://scale.com/blog/text-universal-interface"><em>Text Is the Universal Interface</em> by Roon</a>]. When they write styles, they’re pattern-matching against millions of code examples, statistically converging on what syntactically looks like correct styling. But syntax isn’t style. The true primitives of visual design are feature detectors in human optical perception. That’s a black box these models presently have little access to.</p>

<p>This matters because metric correctness and optical soundness are often very different things.</p>

<p>The play button problem is a rather trivial example that is likely solved for in most instances today, but it is nonetheless illustrative of the greater issue. Put a triangle inside a circle. The mathematically centered position, equal padding on all sides, looks wrong. The visual weight of the triangle pulls leftward. Every designer knows you nudge it right by a few pixels until it feels centered. That “feel” is the gap.</p>

<p>The naive approach (metric centering) is trivially encodable. The correct approach (optical centering) requires either:</p>

<ol>
  <li>Geometric construction heuristics, which exist but are rarely encoded <em>generally</em> in training data (as opposed to datasets just including plenty of optically sound examples)</li>
  <li>A feedback loop with strong visual perception</li>
</ol>

<p>Current models don’t rely strongly on either. They generate style values, imagine what visual output probably looks like based mostly on diffing against expected patterns from text samples and sometimes a snapshot, and ship it. There’s a lack of rigor in the intermediate perceptual verification step of the feedback loop.</p>

<div class="soft-break"></div>

<h2 id="why-multimodal-doesnt-solve-this-yet">Why Multimodal Doesn’t Solve This (Yet)</h2>

<p>“But Claude/GPT-4 can see images now!” True. However, bolting vision onto a language model doesn’t automatically yield perceptual intelligence. The model can usually describe what it sees decently well, but it can’t yet reliably evaluate whether what it sees matches optical intent before tracing that evaluation back to the specific style values that need adjustment.</p>

<p>The missing piece is a causal link: perception → aesthetic judgment → code modification → verification loop. Abstractly, this is solving for taste, but that’s a superset of the more precisely defined problems in scope here that offer excellent places to start.</p>

<p>The previous generation of UI engineering saw visual regression testing tools like <a href="https://percy.io">Percy</a> that solved a related problem for humans: snapshot the UI, diff against baseline, and flag unexpected changes. But that’s change detection, not aesthetic evaluation; it still requires humans to judge whether changes are improvements or not.</p>

<p>VLA models for robotics are solving similar problems in 3-space and the time domain. Implementations for 2-D screen media would be dramatically simpler, but I don’t have detailed knowledge about which of today’s multimodal efforts mechanistically rely on rigorous (if dimensionally constrained) VLA loops. Later extensions could include motion design, 3D tools like Blender, and potentially interface paradigms we haven’t seen yet.</p>

<div class="soft-break"></div>

<h2 id="todays-workarounds">Today’s Workarounds</h2>

<p>The current tactics:</p>

<p><strong>Style bibles in context</strong></p>
<ul>
  <li><a href="https://vercel.com/design/guidelines">Vercel’s Web Interface Guidelines</a> and <a href="https://refactoringui.com">Refactoring UI</a> are helpful distillations of good heuristics, but you’re just cramming best practices into a context window without true perceptual grounding.</li>
</ul>

<p><strong>Agentic tool use</strong></p>
<ul>
  <li>Vercel’s <a href="https://skills.sh/vercel-labs/agent-skills/vercel-react-best-practices">React Best Practices</a> and <a href="https://skills.sh/vercel-labs/agent-skills/web-design-guidelines">Web Interface Guidelines</a> skills are like code snippets on steroids in that they allow the models to better apply guidelines intelligently to codebases not included in training data, but they still can’t <em>see.</em></li>
  <li><a href="https://github.com/0xdesign/design-plugin">0xdesign/design-plugin</a> generates variations to place in front of a human in the loop for feedback to iterate on, but it still needs a lot of human decision making to bear fruit.</li>
</ul>

<p><strong>Training on “things people like to look at”</strong></p>
<ul>
  <li>Model weights converge on the class of aesthetically pleasing outputs, which gets you directionally correct results more often but lacks precision. The results are inexact and not reliably reproducible; they are the result of statistical convergence rather than genuinely rigorous perceptual reasoning.</li>
</ul>

<p>None of these give models the ability to see their own output and judge it the way a designer would. They are all workarounds that are necessary today but do not address the root issue.</p>

<div class="soft-break"></div>

<h2 id="what-would-actually-work">What Would Actually Work</h2>

<p>A lightweight perception-action loop for UI generation:</p>

<ol>
  <li>Model generates styling code</li>
  <li>Code renders to pixels</li>
  <li>Vision model evaluates rendering against perceptual criteria (not just “does this match the mockup” but “does this look right”—initially at the consumer level, then later to the standards of professional design critique)</li>
  <li>Evaluation feeds back an explicit loss function with basis in perceptual heuristics; the gradient signal allows explicit and iterable corrective actions</li>
  <li>Iterate until loss is minimized to yield perceptually sound results that both users and designers expect (on par with and eventually exceeding human capability)</li>
</ol>

<p>This isn’t wildly speculative; it’s just VLA with lower-dimensional output. Consider typographic rag: the ragged edge of a text block where lines break at different lengths. A good rag flows smoothly; a bad one creates distracting shapes or awkward word breaks. You want models that can see, articulate, and correct something like this (which corresponds exactly to the vision-language-action loop). Interestingly, a sizable contingent of practicing designers can’t do this exceptionally well either. Most have trained heavily on perception and action, but the tradition of craft practice has historically neglected the language step (articulation) in comparison. Models that close this loop could outperform many humans at the craft layer with futher iteration eventually unlocking the taste layer.</p>

<p>The infrastructure exists. I’m sure it’s being actively developed in some shops. Nonetheless, frontier models are still left wanting despite impressive capability gains with December 2025 releases. Someone needs to build the appropriate training pipelines for perceptual reward models tuned to screen media in order to advance the frontier further. Today’s models can view and describe output, but until they can actually <em>see,</em> aesthetically evaluate, and <em>act</em> on what they perceive, vibecoding will remain stuck at 90% magic, 10% hair-pulling. That final 10% is exactly where taste lives.</p>

<div class="soft-break"></div>

<p>Do you have thoughts on this post? I’d greatly appreciate your feedback. 
<a href="https://x.com/messages/compose?recipient_id=1632742023991300096&amp;text=Hey%2C+I+just+read+The+Models+%5BDon%27t%5D+Have+Eyes.">Message me on X (Twitter)</a> and let’s talk shop.</p>]]></content><author><name>Stedman Halliday</name></author><category term="technology" /><category term="design" /><category term="engineering" /><category term="software" /><category term="artificial intelligence" /><summary type="html"><![CDATA[Closing generative UI's perceptual reasoning gap]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://stedmanhalliday.com/assets/img/2026-01-27-perceptual-reasoning-gap.webp" /><media:content medium="image" url="https://stedmanhalliday.com/assets/img/2026-01-27-perceptual-reasoning-gap.webp" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Training Intuition at the Edge of the Possible</title><link href="https://stedmanhalliday.com/blog/training-intuition" rel="alternate" type="text/html" title="Training Intuition at the Edge of the Possible" /><published>2026-01-21T00:00:00-08:00</published><updated>2026-01-21T00:00:00-08:00</updated><id>https://stedmanhalliday.com/blog/training-intuition</id><content type="html" xml:base="https://stedmanhalliday.com/blog/training-intuition"><![CDATA[<p><img src="/assets/img/2026-01-21-iroko-tree.webp" alt="Iroko Tree" /></p>

<h2 id="divination-hyperstitioning-and-the-punk-spirit-in-the-age-of-artificial-intelligence">Divination, Hyperstitioning, and the Punk Spirit in the Age of Artificial Intelligence</h2>

<p><em>There is no better time and place to be a punk than San Francisco at the dawn of the artificial intelligence age.</em> I wrote that the moment I decided to move here in 2023, before I fully understood what it would mean to live on top of the tectonic shifts that define this time of transition. Creative tools and the means of production are increasingly democratized by the day. Product in the traditional sense is dead. What remains is the surface between capability and intent.</p>

<p>And here at that surface, something strange and ancient is resurgent: the prevalence (dare I say exploitation) of intuitive ways of being.</p>

<div class="soft-break"></div>

<h3 id="divination-as-cognitive-technology">Divination as Cognitive Technology</h3>

<p>When people hear “tarot” or “divination,” they reach for the woo bucket. Superstition. Confirmation bias. A parlor trick for people who want the universe to tell them what they already believe. I’m not interested in defending or dismissing those straw men. What I am most interested in at this moment is a parallel mechanism: divination as a priming technology for focus, attention, and narrative development.</p>

<p>Consider Oblique Strategies, the deck of creative prompts jointly created by Brian Eno and Peter Schmidt over half a century ago. No one accuses musicians of believing that a card has mystical powers when they pull “Honor thy error as a hidden intention” and suddenly construe their stuck project differently. The card is a perturbation; it breaks the creator out of a local optimum by introducing something compressed, coherent, and strategic that the mind then integrates into meaning.</p>

<p>Tarot, for example, can operate on similar principles, just with richer symbolism and longer historical accretion that compresses large swaths of the collective unconscious. You pull The Tower, and your brain doesn’t passively receive “object destruction” in a straightforward and general sense. It actively searches your situational context for where that frame applies. Whether or not the card knows something is perhaps irrelevant as far as this mechanism is concerned. You know something you weren’t letting yourself access, and the card grants permission to interrogate it more explicitly.</p>

<p>That’s actually a real life example from just yesterday. I shared tea with a woman on Frontier Tower’s Longevity floor who posed a question about how intuition can be trained. I asked what was salient for her in that very moment and she mentioned an impending interview and doubts about the strength of her pitch. We pulled a single tarot card from <a href="https://llewellyn.com/tarot_reading.php">Llewellyn’s online reading page:</a> The Tower.</p>

<p>“Looks like you’re pivoting,” I joked before revealing the card (which traditionally symbolizes destruction and chaos). My actual suggestion wasn’t “your interview will be a disaster.” It was: maybe this is legitimizing the doubt you already feel. Maybe you should take a subtractive approach, simplify, examine what isn’t working. The card gave her permission to interrogate a concern she was suppressing.</p>

<p>This is what I mean by training intuition: building a practice of externalizing the prompt, making the subconscious conscious, and then allowing the mind’s pattern-matching machinery to do what it does best. Finding the thread, weaving the narrative, identifying the move. Sometimes the move is subversion. Sometimes your intuition points in the opposite direction of what was exposed and you’ve clarified what you <em>don’t</em> want. It’s not always direct, but the practice offers a nucleation surface for reflexively directed narrative and intention setting.</p>

<div class="soft-break"></div>

<h3 id="narrative-as-the-human-superpower">Narrative as the Human Superpower</h3>

<p>Narrative is how we position ourselves inside time and reality with agency. It’s how we compress the past, present, and incompressible future into stories we can grip, steer, and navigate.</p>

<p>Nick Land coined the term “hyperstitioning” to highlight this universal human proclivity. It describes how fictions make themselves real by amassing belief and being acted upon. A sufficiently compelling story about the future doesn’t just predict; it recruits. It attracts resources, attention, and effort. It becomes true because people treated it as true before it was.</p>

<p>I invoke Land with some reluctance. He is a neo-reactionary voice, writing for the Dark Enlightenment, espousing anti-democratic and anti-egalitarian views whose genesis I can conceptually understand yet whose conclusions I find rather repugnant. However, ideas owe no allegiance. When they reflect behaviors in reality, when they describe something true about how narrative and belief actually operate, I can credit the observation without endorsing the associated politics. As the rationalists might say, the map is not the territory. Ancient navigators did in fact use the stars to cross oceans regardless of their mythology about what stars were. The positions and indications can transmit truths that are independent of (or at least <em>seemingly</em> orthogonal to) a cosmology that acts as a cognitive lens for focusing attention.</p>

<p>The mechanism Land identified is real: humans hyperstition constantly. Every startup pitch deck is a hyperstition. Every social movement. Every declaration of intent that bootstraps itself into existence through the sheer momentum of collective belief. What matters is what you point it at. The White House didn’t staff an astonishing number of Gen Z memelords by accident.</p>

<div class="soft-break"></div>

<h3 id="the-deep-fates-program">The Deep Fates Program</h3>

<p>If you want to understand this story—the intersection of woo and tech, of divination practice and capability explosion—you need to know about <a href="https://www.deepfates.com/">deepfates.</a> His work, The Deep Fates Program, is the quintessential shaping of this inquiry. The Deep Fates Program is not a footnote; it is the throughline.</p>

<p>The trickster presentation belies the rigor. deepfates has taken this theoretical inquiry very seriously as practice and research. Not “wouldn’t it be interesting if” but “here is the protocol, here is what changes when you commit to it, here are my tools and practice.” That’s the difference between philosophy and training. Training changes you. It deposits new patterns in your nervous system. It makes intuition reliable rather than lucky. The Deep Fates Program propagates this training across many practitioners for compounding effects.</p>

<div class="soft-break"></div>

<h3 id="the-risks-of-over-indexing">The Risks of Over-Indexing</h3>

<p>I would be dishonest if I presented all of this as pure upside. Overtraining intuition carries very real risks. A prominent one is apophenia: the tendency to perceive meaningful connections between largely unrelated things.</p>

<p>Of course everything is connected. You can traverse paved road from pretty much any driveway in the continental United States to any other. Ideas work the same way: you can improvise a path from any starting point to any destination because that’s how meaning-making and language work. But if you overindulge this and allow the associative engine to run without a governor, you might end up in hypomanic territory. Everything becomes significant. Generative racing thoughts make sleep seem optional. Grandiosity inflates; if the universe is speaking to you specifically through patterns, you must be pretty damn important as an individual… right?</p>

<p>This isn’t hypothetical. Before his re-emergence as a Dark Enlightenment intellectual, Nick Land himself fell off the map following a bout of amphetamine abuse. I suspect that this is not stricly unrelated to his philosophy or way of being and that certain chemical states and modes of apophenic thinking reinforce one another in potentially dangerous ways. I’ve met unexpectedly brilliant individuals on the streets of cities like San Francisco and Los Angeles; broken clocks that were once rather nice wristwatches, complications still gleaming on occasion as they catch the right light in front of keener observers. I’d wager that some of them followed a version of this path too far without sufficient guardrails in place.</p>

<p>The antidote is not to abandon intuition but to pair it with reality negotiation as a healthy foil. You are not exempt from physics, biology, or social consequence because you have a compelling narrative. Your story must earn its place by improving your navigation of the world, not by insulating you from feedback.</p>

<div class="soft-break"></div>

<h3 id="meaningful-choices-in-an-incompressible-future">Meaningful Choices in an Incompressible Future</h3>

<p>When people ask me about my vision for the future, I am sure of very little. The coming decades seem utterly unpredictable and incompressible: too many variables, too many nonlinear interactions, too much genuine novelty. I do not know if we flourish or collapse or something stranger than either. However, there is one thing I am absolutely certain of: I would like people to have meaningful choices.</p>

<p>If humanity follows those choices to extinction, so be it; that would be our self-determined destiny as a species. But the capacity to choose—real choices, not the theater of choice within predetermined constraints—is something worth preserving to me. It’s the kernel of democracy that survives even when its institutional forms degrade. [It’s arguably closer to the primordial Hellenistic ideal when you toss oracular mysticism back into the mix.] This can be hard to square seeing that constraining action is a necessary element of functional governance. However, constraining desire is something else entirely. I’m naturally suspicious of anyone who seeks to preemptively control what others are allowed to want.</p>

<p><em>Aside: This is what the community at <a href="https://frontiertower.io">Frontier Tower</a> means to me in this moment. The Tower (interpret the turn of phrase as you will) is a prism that refracts the present into many possible futures that people can get excited about, grab the handles of, and participate in. Not a single vision imposed, but a space where agency and optionality can flourish, intermingle, and compound.</em></p>

<div class="soft-break"></div>

<h3 id="grip-the-reins-anyway">Grip the Reins Anyway</h3>

<p>There is much talk of wizardry about in the world today. Genuinely strange, capability-expanding work that would have read as science fiction five years ago. The barriers stretch further from our old conceptions of realism with each passing month. Hyperstitions pass for the future and then become it.</p>

<p>The punk spirit is invaluable here in this moment. Not necessarily the aesthetic, but the disposition: the refusal to wait for permission, the willingness to try something before you’ve fully convinced yourself it’s possible, the confidence that resourcefulness trumps credentials. DIY: do it yourself.</p>

<p>It calls to mind a scene from <em>SLC Punk!</em>, James Merendino’s 1998 bildungsroman about young people coming of age and crafting their narratives in contemporaneous Salt Lake City. Matthew Lillard’s protagonist Stevo meets Brandy at a party, and she chews him out: “Wouldn’t it be more of an act of rebellion if you didn’t spend so much time buying blue hair dye and going out to get punky clothes? You look like you’re wearing a uniform. You look like a punk. That’s not rebellion… that’s fashion. Rebellion happens in the mind. You can’t create it… you just are that way.”</p>

<p>That’s what I’m talking about: the disposition, not the costume. I think that’s a lot of what present-day San Francisco is about too: young people trying to come of age, figure out who they are, and craft narratives worth living inside. The city has always attracted people in that mode, and the AI explosion has only intensified the stakes and the possibilities (albeit amid the noisy reality distortion fields and shifting incentives that follow technocapital excess).</p>

<p>That’s what divination is about in the end. As much as it is fortune-telling, it’s focus training. It’s the deliberate cultivation of the capacity to see paths and then walk them. It’s a powerful choice to say “I’m not sure” and grip the reins anyway, rather than sit idly by and watch as the future slips into attraction basins that siphon your life force and that of those you care for most. Narrative is a part of that. Hyperstitioning is a key lever of narrative control and propagation. And intuition—trained, tested, kept honest by contact with reality—is essential to developing that capacity.</p>

<p>The future is deeply uncertain and incompressible. Choose anyway and write your story.</p>]]></content><author><name>Stedman Halliday</name></author><category term="reflection" /><category term="philosophy" /><category term="technology" /><category term="artificial intelligence" /><category term="san francisco" /><summary type="html"><![CDATA[Divination, hyperstitioning, and the punk spirit in the age of artificial intelligence]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://stedmanhalliday.com/assets/img/2026-01-21-iroko-tree.webp" /><media:content medium="image" url="https://stedmanhalliday.com/assets/img/2026-01-21-iroko-tree.webp" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">skrrtStats 2025</title><link href="https://stedmanhalliday.com/blog/2026/01/11/skrrtstats-2025" rel="alternate" type="text/html" title="skrrtStats 2025" /><published>2026-01-11T00:00:00-08:00</published><updated>2026-01-11T00:00:00-08:00</updated><id>https://stedmanhalliday.com/blog/2026/01/11/skrrtstats-2025</id><content type="html" xml:base="https://stedmanhalliday.com/blog/2026/01/11/skrrtstats-2025"><![CDATA[<p>Another year, another deep dive into my <a href="https://twitch.tv/yungskrrt">Yung Skrrt</a> listening data. This marks year five of tracking my consumption of the Gimbus GOAT’s catalog, and 2025 was a big one.</p>

<figure><video class="lazy" poster="/assets/video/2026-01-12-SkrrtStats2025-video-poster.webp" controls="" playsinline="" data-src="/assets/video/2026-01-12-SkrrtStats2025-video.webm"></video>
<figcaption>skrrtStats 2025 <a href="https://www.remotion.dev/">Remotion</a> retrospective (view on <a href="https://github.com/stedmanhalliday/skrrtStats-video">GitHub</a>)</figcaption>
</figure>

<div class="soft-break"></div>

<h2 id="skrrtstats-2025">skrrtStats 2025</h2>

<p>82.41 listening hours (3.43 days) for 288 unique tracks</p>

<figure><iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/3H4F8xGFY3AFB48fB5Foq8?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe></figure>

<h3 id="top-tracks">Top Tracks</h3>

<table>
  <thead>
    <tr>
      <th>#</th>
      <th>Track</th>
      <th>Plays</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>01</td>
      <td><em>World Speed</em></td>
      <td>50</td>
    </tr>
    <tr>
      <td>02</td>
      <td><em>Pop Like 3</em></td>
      <td>41</td>
    </tr>
    <tr>
      <td>03</td>
      <td><em>Icarus Prophecy</em></td>
      <td>33</td>
    </tr>
    <tr>
      <td>04</td>
      <td><em>mirrorFaced</em></td>
      <td>25</td>
    </tr>
    <tr>
      <td>05</td>
      <td><em>justDance</em></td>
      <td>22</td>
    </tr>
    <tr>
      <td>06</td>
      <td><em>In The Back</em></td>
      <td>21</td>
    </tr>
    <tr>
      <td>07</td>
      <td><em>Down &amp; Out</em></td>
      <td>21</td>
    </tr>
    <tr>
      <td>08</td>
      <td><em>Safecode (No Matter)</em></td>
      <td>20</td>
    </tr>
    <tr>
      <td>09</td>
      <td><em>2.2</em></td>
      <td>18</td>
    </tr>
    <tr>
      <td>10</td>
      <td><em>Arbitrary (No Service)</em></td>
      <td>17</td>
    </tr>
    <tr>
      <td>11</td>
      <td><em>Stay True, Light Blue</em></td>
      <td>17</td>
    </tr>
    <tr>
      <td>12</td>
      <td><em>3.5</em></td>
      <td>16</td>
    </tr>
    <tr>
      <td>13</td>
      <td><em>Stand-In Stannis Standards</em></td>
      <td>16</td>
    </tr>
    <tr>
      <td>14</td>
      <td><em>2.1</em></td>
      <td>15</td>
    </tr>
    <tr>
      <td>15</td>
      <td><em>Say Cut</em></td>
      <td>15</td>
    </tr>
    <tr>
      <td>16</td>
      <td><em>4.6</em></td>
      <td>14</td>
    </tr>
    <tr>
      <td>17</td>
      <td><em>4.2</em></td>
      <td>14</td>
    </tr>
    <tr>
      <td>18</td>
      <td><em>everyDay (pardonMe)</em></td>
      <td>14</td>
    </tr>
    <tr>
      <td>19</td>
      <td><em>Chia Sceptre</em></td>
      <td>14</td>
    </tr>
    <tr>
      <td>20</td>
      <td><em>Scissors Cut It</em></td>
      <td>13</td>
    </tr>
    <tr>
      <td>21</td>
      <td><em>3.2</em></td>
      <td>13</td>
    </tr>
    <tr>
      <td>22</td>
      <td><em>3.4</em></td>
      <td>13</td>
    </tr>
  </tbody>
</table>

<div class="soft-break"></div>

<h2 id="retrospective-5-years-of-gimbus">Retrospective: 5 Years of Gimbus</h2>

<p>With five years of data now in the books, here’s how 2025 stacks up:</p>

<table>
  <thead>
    <tr>
      <th>Year</th>
      <th>Hours</th>
      <th>Days</th>
      <th>Unique Songs</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>2021</td>
      <td>55.54</td>
      <td>2.31</td>
      <td>142</td>
    </tr>
    <tr>
      <td>2022</td>
      <td>96.50</td>
      <td>4.02</td>
      <td>223</td>
    </tr>
    <tr>
      <td>2023</td>
      <td>67.56</td>
      <td>2.82</td>
      <td>223</td>
    </tr>
    <tr>
      <td>2024</td>
      <td>51.59</td>
      <td>2.15</td>
      <td>261</td>
    </tr>
    <tr>
      <td><strong>2025</strong></td>
      <td><strong>82.41</strong></td>
      <td><strong>3.43</strong></td>
      <td><strong>288</strong></td>
    </tr>
  </tbody>
</table>

<p><strong>Lifetime total: 353.6 hours (14.7 days) of Yung Skrrt</strong></p>

<h3 id="the-numbers">The Numbers</h3>

<p>2025 was the second-highest listening year, trailing only the peak of 2022. But what stands out is the variety: 288 unique tracks is the most diverse year yet, suggesting I’m finally catching up with the ever-expanding Skrrt discography.</p>

<h3 id="top-track-evolution">Top Track Evolution</h3>

<table>
  <thead>
    <tr>
      <th>Year</th>
      <th>#1 Track</th>
      <th>Plays</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>2021</td>
      <td><em>Ascendant Mode (Speedforce)</em></td>
      <td>155</td>
    </tr>
    <tr>
      <td>2022</td>
      <td><em>Guardian Protector</em></td>
      <td>103</td>
    </tr>
    <tr>
      <td>2023</td>
      <td><em>Arbitrary (No Service)</em></td>
      <td>124</td>
    </tr>
    <tr>
      <td>2024</td>
      <td><em>jumpSkateSlide</em></td>
      <td>105</td>
    </tr>
    <tr>
      <td>2025</td>
      <td><em>World Speed</em></td>
      <td>50</td>
    </tr>
  </tbody>
</table>

<p>The top play count dropping from 155 to 50 over five years tells a story: less obsessive looping, more even distribution across the catalog. <em>World Speed</em> earned its crown through consistent rotation rather than manic repetition.</p>

<h3 id="perennial-favorites">Perennial Favorites</h3>

<p>Some tracks just keep showing up year after year:</p>

<ul>
  <li><strong><em>Scissors Cut It</em></strong> - the only track to appear in the top 22 all five years</li>
  <li><strong><em>Never Nemesis</em></strong> - 2021, 2022, 2024</li>
  <li><strong><em>Ascendant Mode (Speedforce)</em></strong> - went from #1 in 2021 to still charting in 2024</li>
  <li><strong><em>Arbitrary (No Service)</em></strong> - #1 in 2023, still top 10 in 2025</li>
</ul>

<h3 id="2025-highlights">2025 Highlights</h3>

<p>This year saw heavy rotation of Skrrt’s two ambient double-albums, which bookend the tracking years: <em>1+2(Ambient)</em> (2021) and <em>3+4(Ambient)</em> (2025). It seems that Yung Skrrt can offer a warm fleece during trying times just as well as a jumper cable shock when life calls for motion. New favorites like <em>Pop Like 3</em>, <em>Icarus Prophecy</em>, and <em>mirrorFaced</em> broke into the rotation alongside returning champions <em>World Speed</em> and <em>In The Back</em>.</p>

<div class="soft-break"></div>

<p>For the DIY crowd looking to generate your own artist stats, check out <a href="/blog/skrrtStats2024#diy">last year’s post</a> for code and instructions.</p>

<p>Did you like this post? Do you have thoughts about Yung Skrrt? Wanna show me what your top artist breakdown looks like? 
<a href="https://x.com/messages/compose?recipient_id=1632742023991300096&amp;text=Hey%2C+I+just+read+skrrtStats+2025.">Message me on X (Twitter)</a> and let’s yap about it.</p>]]></content><author><name>Stedman Halliday</name></author><category term="music" /><category term="data" /><category term="code" /><summary type="html"><![CDATA[Annual analytics for my Yung Skrrt streaming data]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://stedmanhalliday.com/assets/video/2026-01-12-SkrrtStats2025-video-poster.webp" /><media:content medium="image" url="https://stedmanhalliday.com/assets/video/2026-01-12-SkrrtStats2025-video-poster.webp" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Building Canals: On Songwriting</title><link href="https://stedmanhalliday.com/blog/songwriting" rel="alternate" type="text/html" title="Building Canals: On Songwriting" /><published>2025-11-27T00:00:00-08:00</published><updated>2025-11-27T00:00:00-08:00</updated><id>https://stedmanhalliday.com/blog/songwriting</id><content type="html" xml:base="https://stedmanhalliday.com/blog/songwriting"><![CDATA[<p>I recently finished a recording of a song called <a href="https://untitled.stream/library/project/DmwNTG2NgCvAjKDDIuANA"><em>cocoa</em>.</a> It’s the first one I’ve completed with a vocal performance, and the first I’d call truly done. I started it during the lockdown period of the COVID-19 pandemic, building an instrumental (and later a concept) around a field recording of my mother preparing hot cocoa for me. It took shape slowly, across long intervals of creative stalling and spurts, while I juggled many other projects (I’m a little ashamed it took me five years to the very day, but creative pursuits aren’t always linear and that’s fine). I’m not sure how much I actually like the final product, but I know I don’t hate it. I don’t think it’s pushing a sonic envelope or sitting at some high watermark of intentional craft, but firsts can matter for other reasons. It was important for me to get something out, to finish, to have a anything at all to stand on and move forward from.</p>

<p>With a bit of distance in the reflective wake of finishing something, I’m considering how I might structure a more intentional approach to craft and point it at what I’d like to do next. I’d like that consideration to incorporate an honest appraisal of my abilities, strengths, weaknesses, desires, preferences, habits, cognitive style, and more. I’m curious what I could bring to the songwriting process if I make it my goal to take the largest step I can manage between the completion of this initial work and a next effort (of course without circling the drain with the kind of perfectionism that would protract it all into another five-year process).</p>

<div class="soft-break"></div>

<h2 id="instrumentalizing-idiosyncrasy">Instrumentalizing idiosyncrasy</h2>

<p>Thesis: my primary instrument is my own nervous system.</p>

<p>What do I know about myself? I think a great deal about everything. I am highly sensitive, aurally and conceptually speaking. I like to explore with ability; I will do as much of everything available to me as decently as I can. I can have bursts of hyperactivity with long reprieves in between for coalescence of ideas. My cognition is associative to a degree that sometimes borders on apophenia, but at its best it weaves compelling, unexpected, indirectly perceptible thematic ties. I like collaborating a lot of the time.</p>

<p>Some of the same traits that give me range also make me annoying to myself on occasion. I do not always have a strong bias for engaging creative activity. I don’t always communicate in ways that can be understood or felt well… I know I’m not for everyone. I am terribly distractible at times and very focused at others; there’s a bifurcation that mostly points to ADHD or hyper-fixation as attractor states and I need to strategize exploits to make those modes or any in-betweenness operable. I am unlikely to explore productively at length without some payoff matrix or feedback loop that converges on usable outcomes.</p>

<p>I can be a directional perfectionist, but that’s far from deterministic. Sometimes I fixate extremely to the detriment of overall productivity. Other times “good enough” is exactly that and I refuse to explore further even when I think it likely that deeper effort would improve something. Collaboration, critique, and clear evaluation frameworks can be salves here, but I also value control too much to be an ideal collaborator with surefire consistency.</p>

<p>Accordingly, my songwriting system needs to be designed around those realities. My strengths and weaknesses are not moral verdicts. They are structural constraints. My goal is to let the strengths run while putting rails around the weaknesses so the whole thing still pushes songs out instead of everything just swirling around in my head indefinitely.</p>

<p>Operating atop idiosyncrasy isn’t just about theoretic or cognitive approaches to songwriting; it concerns the practical in equal measure. If the goal is to output real songs that resonate, it’s not enough to accommodate my inner workings. I also have to map what lands as part of the listening experience. That means intentionally monitoring and investigating other listeners’ subjective experiences and listening closely when they tell me what stands out to them. It means seeking both casual and critical feedback frequently, honing in on signal, and folding that back into considerations that inform process.</p>

<p>Although I am in some ways early in my songwriting journey, a number of throughlines have already surfaced. Listeners have highlighted themes like baritone vocal delivery (especially how it’s less expected alongside modern pop sensibilities and arrangements), and layered textures and approaches to stereo space that give arrangements depth. People take note of an especially percussive approach to rhythm that brings a powerful sense of motion to compositions. A few have spontaneously remarked that <em>cocoa</em> evokes images of the same environment in their minds, converging on a specific flavor of nostalgia connotatively carried by instrumentation, sound design, and other elements of the sonic palette.</p>

<p>While I’m obviously aware that all of these elements are present and their inclusions are intentional, some of the specific effects they’ve had on others’ listening experiences are not purposeful, nor are they things I would’ve guessed at first. I’m not even sure I necessarily agree with some evaluations or that I even wholly enjoy some of the elements that draw others’ attention, but I’m still able to take it on faith that there is exploitable signal in the feedback and tension there that can add to a kind of reverse-engineered, self-reflective taste.</p>

<div class="soft-break"></div>

<h2 id="differential-generative-capacities">Differential generative capacities</h2>

<p>My mind and my words tend to greatly outpace my hands in generative capacity.</p>

<p>I produce a lot of ideas, tie them together, remix them, and can scaffold temples from thoughts and language (I didn’t say they always stand upright). I enjoy elegant solutions to dense conceptual puzzles. I like the constraint of casting my pet ideas as molds to shape the building blocks of a system. I can then trace paths through the resulting maze, where structure emerges from a blend of semiotic connection, clever invention, and organic assembly (like water flowing downhill).</p>

<p>The flip side is that my tendency to produce tangible outcomes through manual processes other than writing is inversely low-volume. I tend to prune concepts by way of mental modeling and defensive pessimism, dimensionally limit my real-world experimentation, and put forward a few tangible solutions to compare and advance. I naturally choose considered elegance over brute force or breadth and that is not always what creative output needs. It’s antithetical to the <a href="https://austinkleon.com/2020/12/10/quantity-leads-to-quality-the-origin-of-a-parable/">pottery class parable</a> that stresses quantity of production as the most reliable path to quality, but I naturally value <em>work smart</em> over <em>work hard</em> under conditions of manipulable uncertainty.</p>

<p>Rather than trying to become a largely different kind of person after a decades-long personal and professional history of creative output, I can assume my tendencies will remain somewhat baked-in if they haven’t changed by now (the needle has moved, but not some immense distance that portends an eventual grand shift in my nature). Resultantly, my theory of songwriting should treat cognitive productivity as my main fuel source and then build mechanisms that convert that fuel into creative output without overextending me in weak dimensions. The question is not <em>how do I think less?</em> but rather <em>how do I let my thinking do more of the heavy lifting while the system passively handles output?</em></p>

<div class="soft-break"></div>

<h2 id="structure-and-substrate">Structure and substrate</h2>

<p>Charlie Kaufman’s deconstruction of crazed auteurism in <a href="https://en.wikipedia.org/wiki/Synecdoche,_New_York"><em>Synecdoche, New York</em></a> seems central to how I think about an important part of the creative process. Protagonist Caden Cotard’s conceit is to pour the entirety of his twisted angst, selfhood, and the world around him that informs it all into his ludicrously grand and absurdly realistic theater production. The MacArthur Fellowship he’s received may validate his creative ability by proxy through its “Genius Grant” reputation, but practically speaking from the eyes of an uninformed observer in the diegesis, the guy’s an absolute fucking kook with a mess of a life on fire. Without the colossal warehouse to contain the manifestation of his ideas and realize his work inside, he would perceptually remain a kook. Worse, he’d be a crank: unable to produce anything of value at all (let alone in his chosen medium) with only his insanity and pitiable selfhood to show for all his supposedly brilliant creative impulses.</p>

<p>It seems obvious to me that my creative success or failure with grander ideas hinges on securing a “warehouse” of my own. The ideas need to flow into something expressive that isn’t <em>just</em> language. The executional distance to human performance in the chosen medium is also often too large to be tractable given the volume of my cognitive creative impulses and comparatively meager average manual productivity. I am trying to build a workable sink for neuroses and narratives. Maybe over time, a more elegant model emerges with canals, levees, moving locks, and modulated flows; something that orders and organizes chaos and entropy.</p>

<p>It is crucially important for me to understand the difference between pouring water into the apparatus and watching it behave beautifully versus trying to construct the apparatus out of water itself. I suspect I’ve been trying to accomplish the latter more as of late and I intend to stop. Conversely, I realize I don’t always have to fix the game, but if I neglect to choose which one I’m playing at all on the other hand… well, good luck to me, I guess.</p>

<p>Takeaway: find a good “warehouse” to work in. Find a good sink to throw ideas inside where they can clump together and assume naturally stable shapes to engage in further play.</p>

<div class="soft-break"></div>

<h2 id="evolving-the-writing-approach">Evolving the writing approach</h2>

<h3 id="1-structure-first-coloring-inside-the-lines">1. Structure first: coloring inside the lines</h3>

<p>The conventional approach and my initial one goes something like this: part to whole, then color inside the lines with sonic ideas and other parts that make sense. Arrangement structure constrains ideas, ornament adorns foundational structure, sometimes the mutual interplay changes things along the way. It’s all rather intentional and relatively linear, repeatable, predictable, yet still uniquely challenging and variable a bunch of the time.</p>

<p>For me, some of this changes from song to song, but in general this method is too dimensionally reductive given my limited productive capacity. It requires a lot of organic experimentation to drive results that work exceptionally well while still feeling surprising. That kind of open-ended trial and error is exactly where I lose steam.</p>

<p>I can get some of that activation energy for experimentation from collaboration, but I also lose control there in ways that can be undesirable. I rely on happy accidents too much within this frame. It can be a stable setup that churns out good things but it’s far from optimal given what I know my strengths to be.</p>

<p>In other words: a pure structure-first approach does not fully harness my associative mind and it leans heavily on behaviors which I do not reliably execute.</p>

<h3 id="2-motif-and-concept-first-solving-the-puzzle-backwards">2. Motif and concept first: solving the puzzle backwards</h3>

<p>I’m interested in making some macroscopic changes to my writing process and exploring different tactics. I can collect and log conceptual and sonic motifs that will eventually constrain structure through how they most naturally assemble and complement or contrast with one another. I can treat songwriting as a puzzle solved both backwards and inside-out, working from a globally formless yet locally characterizable solution set to determine the shape of the maze, how the turns are juxtaposed, what surfaces the motifs show up on, and how their quality is affected.</p>

<p>This lets my cognitive capacity stand in for the productive kind. My music starts to make itself around and between broader ideas. I do not know exactly what it will sound like at the start, but I can listen carefully to make sure it works. I get to use my ears like my audience, a collaborator, or a critic and still surprise myself while scratching my other real itch: linguistic and conceptual play. I get to have my cake and eat it too.</p>

<p>In this mode, structure is not a prefab cage I drop fitting ideas into. Instead, form emerges from the way motifs interact. My ideas are not loose anymore nor are they rigid, they become the molds for the building blocks, and the song’s architecture crystallizes around their intersections.</p>

<div class="soft-break"></div>

<h2 id="recombination-and-reinvigoration">Recombination and reinvigoration</h2>

<p>One of the more concrete tools here is deliberate recombination of known inputs.</p>

<p>I can get additional variation by taking my favorite established inputs and swapping intermediary outputs and recombination mechanisms. The aim is fresh yet familiar outputs. There is something special about achieving timelessness by making what is old feel new again.</p>

<p>For instance, I can define formulas based on recombination of specific influences, genre interpolation, instrumentation, sonic palettes, performance techniques, production workflows, arrangement styles, content (conceptual, lyrical, narrative), vocal delivery, and more.</p>

<p>The important part is not the exact recipe but the fact that it <em>is</em> a recipe. I can predefine these assembly lines and treat them as reusable compositional operators. I can take these down to a more granular level too: e.g., sound design, processing chains, synthesis… the list goes on. I don’t have to wait for fusion or spirited and sensible reinvention to occur by accident. I can specify transform pipelines up front (rather than intended outcomes): progression style, rhythmic grid, instrumentation palette, textural paradigm, and modern dynamic or arrangement vocabularies.</p>

<p>For a given song, I can plug a new emotional or conceptual motif informed by my real-world subjective experience and narrative into one of these pipelines, see what falls out, and play with it until it’s hitting right and even surprises me in some radical ways that yield special moments. The “new” quality comes from which motif I introduce and how I tweak the parameters, not from reinventing the entire stylistic frame.</p>

<div class="soft-break"></div>

<h2 id="engineering-serendipity">Engineering serendipity</h2>

<p>From the outside, this might look like forcing happy accidents. But that phrase does not quite describe what I am actually seeking to rely on in this new paradigm.</p>

<p>What I am really doing is designing a process that surfaces latent stimuli which converge on euphonic consonance while also carrying deliberate conceptual or emotional connotations. The form might accumulate variance because it has a strange pattern of appearing as an end before becoming the means before once again becoming the end, but the shuffling is carefully designed into the process.</p>

<p>I expect to find these moments and I’m surveying for them in advance. Like an archaeological team that hypothesizes the yield of a planned dig, I can have a solid idea of what I expect to find and still be quite surprised. However, the character of the discoveries and the process that shapes them are important. Although I’d hesitate to call it a happy accident, the nature of surprise of an unsuspecting man unearthing a body while doing yard work outside a home he purchased three years ago is quite different. I am engineering manifestation of inventiveness through intersection here. I am concerned with planned discoveries, not random blessings from the muse (although there is plenty of room for that to trickle in as well). Sometimes an uninformed audience might not be able to discern one from the other, but this is largely irrelevant to the itches I’m attempting to scratch. I seek to satisfy myself with my processes.</p>

<p>Surprise should be frequently present, but it will live inside or emerge from a search space that I have architected with deep intention. My job is to design that space and then curate and manipulate the outputs it throws back at me.</p>

<div class="soft-break"></div>

<h2 id="maturity-limits-and-self-knowledge">Maturity, limits, and self-knowledge</h2>

<p>One nice thing about aging (temporally and creatively) is that I’ve tried enough things to know what I am naturally quite bad at and unlikely to improve upon without deliberate workarounds. There is a kind of maturity that trades the promise of infinite potential for acceptance of limitations and a level of self-knowledge that leads to real efficacy.</p>

<p>I am not going to become the person who happily runs fifty takes a day for six months straight just to “see what happens.” I <em>can</em> do that occasionally in some pursuits, but it is far from my default. I am not always going to communicate my ideas in the simplest way for others. I am going to overthink… I guarantee it. I am going to oscillate between being distractible and entering deep fixation. I am going to care about control.</p>

<p>The theory, then, is not about purging those traits. It is about routing around them and along with their grooves, using them as fuel. I can carve out time for apparatus-building and alternate that with separate, short, discrete sessions for pouring water into the system. I can collaborate where my weaknesses are most costly and protect my need for control where surrender would point me to shutting down. I can accept that my brain wants to build temples of thought and then make sure those temples have doors an actual song can walk through.</p>

<p>I am hoping that this kind of maturity improves my productivity in the years to come, creative and otherwise. Even if my raw energy declines a little, the efficiency of the apparatus can increase. That’s the benefit I expect from compounding self-knowledge and practice. Some might even call it wisdom.</p>

<div class="soft-break"></div>

<p>That is my personal theory of songwriting right now: a way of turning an associative, overthinking, intermittently focused brain into a working compositional engine. It will change, but at least it gives me something solid to pour water into for the time being. I’m happy to get back to work with that sketched out. Got any of your own thoughts about songwriting or music of your own that you’d like to share? 
<a href="https://x.com/messages/compose?recipient_id=1632742023991300096&amp;text=Hey%2C+I+just+read+Building+Canals%3A+On+Songwriting.">Message me on X (Twitter)</a> and let’s chat.</p>]]></content><author><name>Stedman Halliday</name></author><category term="music" /><category term="reflection" /><summary type="html"><![CDATA[Reflections on songwriting process]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://stedmanhalliday.com/assets/img/2025-11-03-cocoa-artwork.webp" /><media:content medium="image" url="https://stedmanhalliday.com/assets/img/2025-11-03-cocoa-artwork.webp" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">7 Songs: May 2025</title><link href="https://stedmanhalliday.com/blog/2025/05/29/7-songs-may-2025" rel="alternate" type="text/html" title="7 Songs: May 2025" /><published>2025-05-29T00:00:00-07:00</published><updated>2025-05-29T00:00:00-07:00</updated><id>https://stedmanhalliday.com/blog/2025/05/29/7-songs-may-2025</id><content type="html" xml:base="https://stedmanhalliday.com/blog/2025/05/29/7-songs-may-2025"><![CDATA[<h3><em>Xkyrgios</em>—Evian Christ</h3>

<p>Evian Christ thrives on elevating sound design in electronic music, weaving between the familiar and alien. <em>Xkyrgios</em> continues his exploration of atmospheric textures and unconventional rhythmic structures, building tension through restraint. The approach feels architectural, each element deliberately placed, contributing to a larger sonic structure that reveals itself slowly.</p>

<p>The track embodies the kind of forward-thinking electronic music that doesn’t announce its innovations loudly but instead lets them emerge through careful listening. Evian Christ understands that the most compelling electronic music often happens in the gaps between genres, and <em>Xkyrgios</em> occupies that space with confidence and purpose in a way that feels worthy of a soundtrack.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/08jhfamzypo9XCL5gncI9e?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>Gimme Half</em>—The Devil Wears Prada</h3>

<p><em>Gimme Half</em> makes this month’s list in recognition of Daniel Williams: longtime drummer of The Devil Wears Prada who perished in a sudden plane crash a week ago. I learned to drum along to this track and many of the others on <em>With Roots Above and Branches Below</em>. Williams just smacks the kit almost all the way through; the momentum is aggressive and many of the rolling fills are very stimulating to play.</p>

<p>The record represents an apotheosis of aughts metalcore’s more melodic and commercial flavors in both style and production. Roots is pretty much a snapshot of the moment immediately before Joey Sturgis’s Foundation sound felt overproduced and more artificial than ideally maximal. Clean vocals are quite tuned, studio arrangement doesn’t let up often, and the drums are triggered almost to hell, but retain enough feel to punch through very satisfactorily. This LP turns those knobs about as high as they can go before listenability dives sharply—I’m looking forward to banging out a full playthrough in a newly renovated drum room in honor of Daniel. Anyone who’s encouraged me to play more music deserves that tribute.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/1jBfKLo7PdlRqMHXTsbgcz?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>World Speed</em>—Yung Skrrt</h3>

<p>Yung Skrrt has been sitting in a lane all his own for a long time: fiercely independent, wildly syncretic, and unapologetically individual. Maybe sonic exploration this broad and unfiltered is a natural consequence of embracing production as a live performance: Skrrt cuts about a thousand tracks a year in front of a livestream audience on <a href="https://www.twitch.tv/yungskrrt">Twitch</a>, streaming every single day (he’s live as I’m writing this). It’s clear that the man’s primary reason for making at this point is for his own entertainment and appreciation, and that’s special.</p>

<p>Plenty of Skrrt’s work falls back on a tried and true formula, but there are so many nuggets of novelty sprinkled throughout his very expansive catalog. It’s clear from his live-production broadcasts that his approach is more gestural than compositional and prioritizes feel despite being very fundamentally digital—the man really <em>plays</em> the laptop. Throw a literal fortune wheel of genre into the process and you get some deliciously unexpected moments. Some hit immediately, others grow on you over time, some get recycled in a place they fit much better… it’s like Yung Skrrt’s process and music are a sonic clearinghouse for a plethora of ideas that work in more tightly curated releases. More often than some might expect, he is your favorite producer’s favorite producer.</p>

<p><em>World Speed</em> has some real earworm qualities for these reasons. It’s on one of Skrrt’s <em>Half Words</em> projects which play fast and loose with partial lyrical motifs crooned through heavy autotune that would be more at home in an Internet parody of a Playboi Carti reference track. It keeps the listener in a state of keeping up right from the moment a jarring tone cluster blows through a traditional shimmering synth intro characteristic of a Skrrt track. The 808 pattern on this one is something else entirely. I didn’t like it at first but I kept revisiting it in an attempt to wrap my head around syncopation so zany that it feels like a polyrhythmic locomotive. It got its hooks into me and I can’t get enough of it now. Who would do this in a song and why? Which other artist is punching in with bars about sipping yerba mate like a double cup? This guy is utterly peerless; true one of one.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/6BW3kWQwfRJJI4o5ClC9cu?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>Genie on My Back</em>—ICYTWAT</h3>

<p>ICYTWAT’s sound is tough and ethereal at the same time in a way that’s frequently hypnotic. The haunting minor string melodies on this track sound right out of a medieval RPG or a title like <em>Silent Hill</em> while the drums knock with a kick that can make a room shake. Perfect soundtrack to lift or walk around to when I can’t bring myself to care about anything at all.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/21NNBt9HGFvivLmTCFUZGe?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>Childhood</em>—Kensuke Ushio</h3>

<p>There’s something simply moving about the way that Kensuke Ushio approaches emotional storytelling through sound. <em>Childhood</em> carries the same delicate weight as many of his other iconic soundtracks as a piece that feels like memory itself: fragile, nostalgic, and achingly beautiful.</p>

<p>Ushio’s background in both classical piano and electronic music shines through here. The track manages to be both intimate and expansive, capturing something universal about the bittersweet nature of looking back. It’s the kind of composition that makes you pause whatever you’re doing and just listen as it picks up a click tempo an swings around to its gently swelling resolution.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/6e22PmNxZbDR3N8JMe7EvD?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>Feather (feat. Cise Starr &amp; Akin from CYNE)</em>—Nujabes</h3>

<p>Musicians who have perished in transportation accidents seems to be a spurious theme this month. Few producers have left as indelible a mark on hip-hop as Nujabes, and <em>Feather</em> stands as one of his most enduring achievements. The way he weaves jazz samples into something entirely new while maintaining respect for both traditions is nothing short of masterful. Cise Starr and Akin deliver verses that feel like conversations with old friends—thoughtful, unpretentious, and deeply human.</p>

<p>The track embodies everything that made Nujabes special: the ability to create music that’s simultaneously nostalgic and forward-thinking, complex and accessible, serious and joyful. More than fifteen years after his passing, <em>Feather</em> still feels like a blueprint for how to honor musical heritage while pushing it into new territory. I’m grateful to my friend Russel for <a href="https://x.com/rslantonie/status/1927335213668983123">priming a full listen of <em>Modal Soul</em></a> as I walked the streets of downtown Chicago in the morning.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/2ej1A2Ze6P2EOW7KfIosZR?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>Right Now</em>—Mario Abney</h3>

<p>I was pleasurably introduced to Mario Abney’s music at the 50th anniversary show for Andy’s Jazz Club in Chicago where he and his band played with New Orleans legend Donald Harrison Jr. Abney has cultivated a jazz sensibility that feels both rooted in tradition and unafraid to explore new territory. <em>Right Now</em> showcases his ability to create music that’s sophisticated without being pretentious, accessible without being simple. There’s a spiritual quality to the composition that suggests deeper currents running beneath the surface.</p>

<p>The track works on multiple levels—as a showcase for technical skill, as an emotional journey, and as a piece of music that simply feels good to experience. Abney understands that the best jazz has always been about communication, and <em>Right Now</em> is a conversation worth joining right from the beginning as his trumpet talks to a saxophone.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/0GbxeWWv8cuc20Bg5V6KZU?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<div class="soft-break"></div>

<p>If you’ve read this far (thanks), you probably like music quite a lot. 
<a href="https://x.com/messages/compose?recipient_id=1632742023991300096&amp;text=Hey%2C+I+just+read+7+Songs%3A+May+2025.">Message me on X (Twitter)</a> if you’d like to get some <code>🏓 Playlist Ping Pong</code> going or chat about music.</p>]]></content><author><name>Stedman Halliday</name></author><category term="music" /><category term="7 songs" /><summary type="html"><![CDATA[*7 Songs* periodically features curated tracks and commentary for more personal music discovery.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://stedmanhalliday.com/assets/og-image.png" /><media:content medium="image" url="https://stedmanhalliday.com/assets/og-image.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Selected Quotes: May 2025</title><link href="https://stedmanhalliday.com/blog/2025/05/26/selected-quotes-may-2025" rel="alternate" type="text/html" title="Selected Quotes: May 2025" /><published>2025-05-26T00:00:00-07:00</published><updated>2025-05-26T00:00:00-07:00</updated><id>https://stedmanhalliday.com/blog/2025/05/26/selected-quotes-may-2025</id><content type="html" xml:base="https://stedmanhalliday.com/blog/2025/05/26/selected-quotes-may-2025"><![CDATA[<h2 id="theodore-n-vail-on-difficulty">Theodore N. Vail on difficulty</h2>

<blockquote>
  <p><em>Real difficulties can be overcome; it is only the imaginary ones that are unconquerable.</em></p>

  <p><cite>—Theodore N. Vail</cite></p>
</blockquote>

<div class="soft-break"></div>

<h2 id="paul-kalanithi-on-perseverance">Paul Kalanithi on perseverance</h2>

<blockquote>
  <p><em>I can’t go on. I’ll go on.</em></p>

  <p><cite>—Paul Kalanithi, <em>When Breath Becomes Air</em></cite></p>
</blockquote>

<div class="soft-break"></div>

<h2 id="musashi-miyamoto-on-triumph">Musashi Miyamoto on triumph</h2>

<blockquote>
  <p><em>Today is victory over yourself of yesterday; tomorrow is your victory over lesser men.</em></p>

  <p><cite>—Musashi Miyamoto, <em>The Book of Five Rings</em></cite></p>
</blockquote>

<div class="soft-break"></div>

<p>Did you like this post? 
<a href="https://x.com/messages/compose?recipient_id=1632742023991300096&amp;text=Hey%2C+I+just+read+Selected+Quotes%3A+May+2025.">Message me on X (Twitter)</a> and let me know what resonated with you.</p>]]></content><author><name>Stedman Halliday</name></author><category term="quotes" /><category term="reflection" /><summary type="html"><![CDATA[*Selected Quotes* periodically presents thoughtfully curated quotes to inspire reflection.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://stedmanhalliday.com/assets/og-image.png" /><media:content medium="image" url="https://stedmanhalliday.com/assets/og-image.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">7 Songs: Apr 2025</title><link href="https://stedmanhalliday.com/blog/2025/04/28/7-songs-apr-2025" rel="alternate" type="text/html" title="7 Songs: Apr 2025" /><published>2025-04-28T00:00:00-07:00</published><updated>2025-04-28T00:00:00-07:00</updated><id>https://stedmanhalliday.com/blog/2025/04/28/7-songs-apr-2025</id><content type="html" xml:base="https://stedmanhalliday.com/blog/2025/04/28/7-songs-apr-2025"><![CDATA[<h3 id="wash2jon-bellion"><em>WASH2</em>—Jon Bellion</h3>

<p>It’s a rare and refreshing thing these days to hear an artist capable of spanning both maximalist pop production and the raw immediacy of stripped-down performance. On <em>WASH2</em>, Jon Bellion dials it all the way back—just voice and piano—and the result is quietly devastating. <em>WASH</em> adds that pop instrumentation and production, but the songwriting and voice on this alternate take are powerful enough to carry all the weight.</p>

<p>Jon’s upcoming album drops in June, and if recent releases and the trailer are any indication, it’s going to be something special. It’s good to see him back and flexing range in a way that still feels grounded.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/7hzak3sRAXxzoU4cOXFSjt?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<figure class="mt-100">
    <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class="embed-container">    <iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/-0lXs1tSJPI" frameborder="0" allowfullscreen=""></iframe></div>
    <figcaption>FATHER FIGURE (Stadium Trailer)</figcaption>
</figure>

<h3 class="mt-200"><em>Deal</em>—Organ Tapes, 500</h3>

<p>I’ve been focusing on vocal production recently in the studio, so I’m listening to vocals with a lot more attention than usual. I’m getting a lot out of a careful ear on tracks where more emphasis is on vibe than vocal performance. Organ Tapes embraces subdued delivery in this way, but I’m emulating a good amount of production technique when it comes to using space in captivating ways: doubling and octaves, different delay and reverb plays on wet vocal chains, panning and tremolo, unique automation throws, etc. There are a lot of fun sounds in here and it’s a nice, relaxed track to skate slowly and carve to when the sun’s out.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/283YMjj2Q6R2C8hKcFDiQb?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>SCREAM</em>—MIKE DEAN</h3>

<p>I’ve come to admire Mike Dean as something like the anti-Rick Rubin. Like Rubin, he’s an industry veteran in his sixties who has dutifully earned his place on hip-hop’s Mount Rushmore of behind-the-scenes architects many times over. But instead of prominently projecting sagely aura, Dean maintains a low profile and a blunt on him at all times. Where Rubin has sported a bald crown with hair on the sides and a Zeus beard, Dean has at times opted for the exact opposite haircut. Rubin claims not to play any instruments (at least adeptly), whereas Dean has at least once casually blurted out that he’s classically trained in a way that seems almost accidental and somewhat antithetical to his image and comportment.</p>

<p>Dean plays multiple instruments but is best known for his analog synth work, often being called the Synth God. Lately, he’s taken to livestreaming his studio improv sessions from a room packed with synths, occasionally shaping those jams into full LPs. His annual <em>420</em> releases collect these moments: expansive, moody, often surprisingly listenable between things. <em>SCREAM</em> is one of the cuts that leans harder into energy. The synths are melodic, dynamic, and gritty in relief against the chill yet incisive drums. Always nice when the Synth God decides to raise his voice a little.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/1lQNdXccNyaq4Gsxz3mwMO?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>Stylo</em>—Gorillaz feat. Mos Def and Bobby Womack</h3>

<p>Another track with a driving rhythm, synth attack, and an iconic wail. There’s something I really admire about how the bones of Damon Albarn’s process still show through in much of his finished work. You can feel the core loop, the drum machine, the simple idea at its heart, and yet the final product emerges as something entirely fresh, built through sonic iteration and Albarn’s trademark genre syncretism. <em>Stylo</em> is a great example of that sensibility. The hypnotic refrain from Mos Def and the searing, soulful chorus from Bobby Womack take what could have been a mechanical groove and give it emotional life.</p>

<p>There’s an Apple Music interview from a couple years back that captures this simple songwriting approach. Albarn walks Zane Lowe through a studio and casually demos how <em>Clint Eastwood</em> came to be. He reveals that Gorillaz’s breakout single from over two decades ago was basically pulled straight off of the first preset on a Suzuki Omnichord. It doesn’t make the song any worse, as the decisive transformations between that loop and the final track are a masterful way to drive home the idea that simplicity can become greatness. It’s a good reminder that great songs don’t need to be complex—they just need a spark, and the willingness to follow it.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/6LUfuyLgvgqrykiTE6sJHY?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<figure class="mt-100">
    <div class="grid col2" style="grid-template-columns: 1fr 1fr">
        <img src="/assets/img/2025-04-28-omnichord-0.jpg" alt="Suzuki Omnichord OM-108" />
        <img src="/assets/img/2025-04-28-omnichord-1.jpg" alt="Suzuki Omnichord OM-108" />
    </div>
    <figcaption>Suzuki Omnichord OM-108</figcaption>
    <div class="mt-100">
        <style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class="embed-container">    <iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/EDX6l9_58RA" frameborder="0" allowfullscreen=""></iframe></div>
    </div>
    <figcaption>Damon Albarn &amp; Zane Lowe</figcaption>
</figure>

<h3 class="mt-200"><em>Alba del orate</em>—The Mars Volta</h3>

<p>The Mars Volta’s new record is full of surprises. It moves through jazz, pop, and Latin metal with a fluidity that’s hard to pin down. <em>Alba del orate</em> stands out. The gradual transition into double-timey polyrhythmic jazz percussion and the sudden attack of wobbling saw waves are exciting.</p>

<p>This album feels like a continuous current, flowing from one track to the next with a mix of uncanny cohesion and unexpected turns. There’s something thrilling about how much ground it covers while still feeling so focused. I don’t know what I expected from a new Mars Volta release in 2025, but I’m glad to have heard something that makes it feel like album craft is not a lost art.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/3W8kTyO5WuQORyptg0kYR5?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>Black Dunes (Woman in the Dunes Mix)</em>—This Will Destroy You, Holy Other</h3>

<p><em>Tunnel Blanket</em> is an instrumental record that’s among my favorites, having stood the test of time for nearly 15 years now. Coming in at nearly an hour, it’s a long-form meditative journey through psychedelic transcendence that’s as comforting in some pockets as it is challenging in others. Holy Other’s take on the penultimate track condenses its length considerably and breathes new life and rhythm into it (especially with the crescendo beneath staccato synth leads at the end) while preserving and enhancing the original track’s atmosphere using signature vocal sampling technique.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/5yYz39nEuOXpNir7FSB8rA?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>Mouse Policy</em>—Cloud Nothings</h3>

<p><em>Mouse Policy</em> barrels forward with Cloud Nothings channelling some of the urgency and youthful garage rock energy that made me fall in love with <em>Attack on Memory</em> back in 2012, but it’s tempered now. It’s more patient and layered with still simple yet more refined songwriting. The chorus soars while the outro glows with a wistful and nostalgic post-rock sparkle.</p>

<p><em>Final Summer</em> is an apt title for this full-length release from last year. Listening to it makes me feel like I’m back in college for a moment: still figuring everything out, still angry for no good reason, still subtly puppeteered by the idea that guitars could save me.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/4wW5MeIK2XxXDKWRP2WWy0?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<div class="soft-break"></div>

<p>If you’ve read this far (thanks), you probably like music quite a lot. 
<a href="https://x.com/messages/compose?recipient_id=1632742023991300096&amp;text=Hey%2C+I+just+read+7+Songs%3A+Apr+2025.">Message me on X (Twitter)</a> if you’d like to get some <code>🏓 Playlist Ping Pong</code> going or chat about music.</p>]]></content><author><name>Stedman Halliday</name></author><category term="music" /><category term="7 songs" /><summary type="html"><![CDATA[*7 Songs* periodically features curated tracks and commentary for more personal music discovery.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://stedmanhalliday.com/assets/img/2025-04-28-omnichord-0.jpg" /><media:content medium="image" url="https://stedmanhalliday.com/assets/img/2025-04-28-omnichord-0.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Selected Quotes: Apr 2025</title><link href="https://stedmanhalliday.com/blog/2025/04/19/selected-quotes-apr-2025" rel="alternate" type="text/html" title="Selected Quotes: Apr 2025" /><published>2025-04-19T00:00:00-07:00</published><updated>2025-04-19T00:00:00-07:00</updated><id>https://stedmanhalliday.com/blog/2025/04/19/selected-quotes-apr-2025</id><content type="html" xml:base="https://stedmanhalliday.com/blog/2025/04/19/selected-quotes-apr-2025"><![CDATA[<h2 id="mike-tyson-on-humility">Mike Tyson on humility</h2>

<blockquote>
  <p><em>If you’re not humble, life will visit humbleness upon you.</em></p>

  <p><cite>—Mike Tyson</cite></p>
</blockquote>

<div class="soft-break"></div>

<h2 id="mark-twain-on-humility">Mark Twain on humility</h2>

<blockquote>
  <p><em>I was gratified to be able to answer promptly, and I did. I said I didn’t know.</em></p>

  <p><cite>—Mark Twain</cite></p>
</blockquote>

<div class="soft-break"></div>

<h2 id="archbishop-desmond-tutu-on-humility">Archbishop Desmond Tutu on humility</h2>

<blockquote>
  <p><em>Humility allows us to celebrate the gifts of others, but it does not mean you have to deny your own gifts or shrink from using them.</em></p>

  <p><cite>—Archbishop Desmond Tutu, <em>The Book of Joy</em></cite></p>
</blockquote>

<div class="soft-break"></div>

<p>Did you like this post? 
<a href="https://x.com/messages/compose?recipient_id=1632742023991300096&amp;text=Hey%2C+I+just+read+Selected+Quotes%3A+Apr+2025.">Message me on X (Twitter)</a> and let me know what resonated with you.</p>]]></content><author><name>Stedman Halliday</name></author><category term="quotes" /><category term="reflection" /><summary type="html"><![CDATA[*Selected Quotes* periodically presents thoughtfully curated quotes to inspire reflection.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://stedmanhalliday.com/assets/og-image.png" /><media:content medium="image" url="https://stedmanhalliday.com/assets/og-image.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">7 Songs: Mar 2025</title><link href="https://stedmanhalliday.com/blog/2025/03/31/7-songs-mar-2025" rel="alternate" type="text/html" title="7 Songs: Mar 2025" /><published>2025-03-31T00:00:00-07:00</published><updated>2025-03-31T00:00:00-07:00</updated><id>https://stedmanhalliday.com/blog/2025/03/31/7-songs-mar-2025</id><content type="html" xml:base="https://stedmanhalliday.com/blog/2025/03/31/7-songs-mar-2025"><![CDATA[<h3 id="tears-in-heaveneric-clapton"><em>Tears in Heaven</em>—Eric Clapton</h3>

<p>I can never quite predict the lessons I’ll come away from grief with. What seems true over time is that those lessons become easier to learn and that I grow in my ability to accept and process them more readily (even if some fighting and difficulty are involved). For the last few months, loss is something that has been more salient than I’d ideally like it to be, but I’m emerging from it as a stronger person with a more reassured and independent sense of self. I’m grateful for the transformation brought about by having known someone who is now gone; someone that has always been there for as long as I can remember and will now continue to be there, albeit in a different way.</p>

<p><em>Tears in Heaven</em> is a tune with grief at its core: Clapton’s tragic memorial of his son gone too soon after tumbling through a window at the tender age of four. The forlorn longing in his voice is palpable when he pleadingly asks if his deceased boy would know his name should they meet in heaven. I’m not sure things like that matter to me now—I have known and will remember her name in this life and I am better for it.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/1kgdslQYmeTR4thk9whoRw?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>Self/Less</em>—Alecia Creti</h3>

<p>I featured a track from Gallant in <a href="/blog/2025/02/19/7-songs-feb-2025">last month’s 7 Songs</a> and mentioned I’d had a chance to watch him perform live for the first time in a while at the Independent in San Francisco. Alecia Creti opened for him at that show and it was wonderful to get acquainted with her music alongside her detailed narratives about each number on her setlist. Her vocal performance was astounding and her simultaneous piano accompaniment intimate and moving.</p>

<p>Despite occasionally surfacing twinges of emotional immaturity, her interstitial monologues painted an authentic and endearing portrait of a young artist in the midst of experiencing their dreams come to fruition and developing a stronger sense of self that manifests powerfully in their craft. <em>Self/Less</em> is a track about having the courage and strength to put oneself first when doing so seems to run counter to duty to others (namely family). That theme resonated with me powerfully as I stood in the audience while Alecia belted the words.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/7358J7q6CvnvVPui2ogvlE?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>magnetic</em>—UMI</h3>

<p>I remember a lot about the first time I heard <em>Forest in the City</em> years ago. It was a very fitting record to sulk to as I left the place I call home in a sense more final than ever before—my love for someone receding; unmaintanable in the face of timing, circumstance, and the different ways life tends to work out for different people. <em>magnetic</em> potently highlights that contrast between yearning and realism: love, however broad and deep, isn’t always sufficient to ensure its own preservation.</p>

<p>While once a deeply sad listen, the shape of melancholy it brings forth is different now. It’s about having had the privilege to love, gaining the wisdom to know that sharing a life with someone is about more than feelings, and growing enough to let go of being drawn to someone when that needs to happen to make room for more life.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/64tHsFnlwPJucfb6ohkkRt?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>On a Mountain Under Full Moon</em>—Wicca Phase Springs Eternal feat. Fantasy Camp</h3>

<p>Adam McIlwee sings like a boy with a sometimes magical and other times painful, yet always rich inner world who’s frequently catching himself in the middle of urban or rural nowhere, wistfully appreciating the mysteries of the universe… and I <em>get</em> that. The importance of regarding the moon—full or otherwise—should not be discounted, whether on a mountain or on the range. The outro’s acoustic guitar harmonics with time-stretched reverse delay are a great example of doing a lot with a little. Gestures like that inspire novel approaches to my own arrangements.</p>

<p>More on letting go as a lyrical theme in this one, much of it from the Fantasy Camp feature:</p>

<p><em>It’s the mystery I’m after</em><br />
<em>It’s the magic I believe in</em><br />
<em>On a mountain under full moon</em><br />
<em>I can say goodnight and mean it</em></p>

<p><em>But if you ever really loved me</em><br />
<em>You would say goodnight and set me free</em></p>

<p><em>So don’t you worry ‘bout me</em><br />
<em>I kinda like this feeling</em><br />
<em>I’m the master of my own world</em><br />
<em>Riding into the evening</em></p>

<figure>
    <div class="grid col2" style="grid-template-rows: auto auto">
        <img style="grid-row: 1 / 3" alt="present nowhere" src="/assets/img/2025-03-31-present-nowhere_01.webp" />
        <img alt="present nowhere" src="/assets/img/2025-03-31-present-nowhere_02.webp" />
        <img alt="present nowhere" src="/assets/img/2025-03-31-present-nowhere_03.webp" />
    </div>
    <figcaption>Thanks Megan. Thanks Dan.</figcaption>
</figure>

<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/7ENs0e9ZM3azBKM58lDM47?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>Heaven Will Come</em>—Tim Hecker</h3>

<p>Tim Hecker’s sonic landscaping feels inextricably focused on evoking the divine, giving equal attention to both its heavenly and haunting auras. If there ever were an assurance that heaven will come, it can be found in reverberating organ progressions textured and modulated with the signatures of careful Max patchwork.</p>

<p>It’s another great soundtrack for momentary nowheres—time between events, space between places that become holy sites unto themselves in newfound ways. Appreciating ambient music conditions an appreciation of being with spaciousness. In Hecker’s work, that spaciousness is a divine void that shifts between light and dark, warm and cool, this world and another. Perhaps here, it can be a shift between the darker sides of grief and the room for something newer and brighter that lies beyond.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/4XL9nn0qDcLA25X88wxmrw?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>A Greater Love</em>—Yves Tumor</h3>

<p><em>A Greater Love</em> is the moody and ethereal conclusion to 2020’s <em>Heaven To A Tortured Mind</em>. It’s a song about change: the change in the seasons, the weather, and the emotions and connections that shift as time has its way with all of us. The power of loss to change us for the better—to beneficially reshape our relationships with others and with ourselves—is an under-acknowledged silver lining of grief.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/3u3kKwR4TgxtPxJFvVWn7F?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<h3 class="mt-200"><em>道 (Michi)</em>—Hikaru Utada</h3>

<p>Human beings, narratively obsessed as we are, tend to hope that the culmination of grieving heralds a return to normalcy and perhaps even greener pastures beyond: a road to thriving in greater wholeness. Utada’s <em>道 (Michi)</em>—<em>road</em> in English—draws the contours of that road. It’s the opening track on 2016’s <em>Fantôme</em>: a return from a lengthy hiatus, and a record that Utada takes particular pride in: “[<em>Fantôme</em>] marked the beginning of a new chapter of my life as an artist and as a human being.”</p>

<p>The track and the album as a whole surfaced meditations on loss and grief in the wake of the artist’s mother’s tragic suicide. The chorus offers an enduring reminder that we can be lonely, yet not alone; that life can be grieved but also celebrated and that it can give birth to new life, much like Utada’s career beginnings were inspired by her mother’s musicianship.</p>

<p>It is in 2024’s <em>Science Fiction</em> compilation album that <em>Michi</em> finds new life of its own, still an upbeat and danceable standout even amidst collaborations with A.G. Cook and Floating Points. It was seemingly a happier time for Utada, marking the 25th anniversary of her debut while she raises a child of her own (also featured on the album). I think that’s how I’d like to end this month’s list: with an upbeat and hopeful reflection on what’s possible after grief subsides.</p>

<iframe class="mt-50" style="border-radius:12px" src="https://open.spotify.com/embed/track/4H8iChdvjdsxrxSAVi9Wy1?utm_source=generator" width="100%" height="152" frameborder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<div class="soft-break"></div>

<p>If you’ve read this far (thanks), you probably like music quite a lot. 
<a href="https://x.com/messages/compose?recipient_id=1632742023991300096&amp;text=Hey%2C+I+just+read+7+Songs%3A+Mar+2025.">Message me on X (Twitter)</a> if you’d like to get some <code>🏓 Playlist Ping Pong</code> going or chat about music.</p>]]></content><author><name>Stedman Halliday</name></author><category term="music" /><category term="7 songs" /><summary type="html"><![CDATA[*7 Songs* periodically features curated tracks and commentary for more personal music discovery.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://stedmanhalliday.com/assets/img/2025-03-31-present-nowhere_03.webp" /><media:content medium="image" url="https://stedmanhalliday.com/assets/img/2025-03-31-present-nowhere_03.webp" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Selected Quotes: Mar 2025</title><link href="https://stedmanhalliday.com/blog/2025/03/11/selected-quotes-mar-2025" rel="alternate" type="text/html" title="Selected Quotes: Mar 2025" /><published>2025-03-11T00:00:00-07:00</published><updated>2025-03-11T00:00:00-07:00</updated><id>https://stedmanhalliday.com/blog/2025/03/11/selected-quotes-mar-2025</id><content type="html" xml:base="https://stedmanhalliday.com/blog/2025/03/11/selected-quotes-mar-2025"><![CDATA[<h2 id="andre-agassi-on-self-defined-success">Andre Agassi on self-defined success</h2>

<blockquote>
  <p><em>I’ve been cheered by thousands, booed by thousands, but nothing feels as bad as the booing inside your own head during those ten minutes before you fall asleep.</em></p>

  <p><cite>—Andre Agassi, <em>Open</em></cite></p>
</blockquote>

<div class="soft-break"></div>

<h2 id="john-wooden-on-acceptance-and-optimism">John Wooden on acceptance and optimism</h2>

<blockquote>
  <p><em>Things work out best for those who make the best of how things work out.</em></p>

  <p><cite>—John Wooden</cite></p>
</blockquote>

<div class="soft-break"></div>

<h2 id="viktor-frankl-on-the-power-of-choice">Viktor Frankl on the power of choice</h2>

<blockquote>
  <p><em>Between stimulus and response there is a space. In that space is our power to choose our response. In our response lies our growth and our freedom.</em></p>

  <p><cite>—Viktor Frankl</cite></p>
</blockquote>

<div class="soft-break"></div>

<p>Did you like this post? 
<a href="https://x.com/messages/compose?recipient_id=1632742023991300096&amp;text=Hey%2C+I+just+read+Selected+Quotes%3A+Mar+2025.">Message me on X (Twitter)</a> and let me know what resonated with you.</p>]]></content><author><name>Stedman Halliday</name></author><category term="quotes" /><category term="reflection" /><summary type="html"><![CDATA[*Selected Quotes* periodically presents thoughtfully curated quotes to inspire reflection.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://stedmanhalliday.com/assets/og-image.png" /><media:content medium="image" url="https://stedmanhalliday.com/assets/og-image.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry></feed>