<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>staires!</title>
    <meta name="description" content="an adventure in listening">
    <meta property="og:title" content="staires!">
    <meta property="og:description" content="an adventure in listening">
    <meta property="og:type" content="website">
    <meta property="og:url" content="https://staires.org">
    <meta property="og:image" content="https://staires.org/social-share.png">
    <meta name="twitter:image" content="https://staires.org/social-share.png">
    <meta property="twitter:card" content="summary_large_image">
    <meta property="twitter:title" content="staires!">
    <meta property="twitter:description" content="an adventure in listening">

    <link rel="stylesheet" href="/css/style.css">
    <link rel="alternate" type="application/rss+xml" title="staires! RSS Feed" href="/rss.xml">
    <meta name="apple-mobile-web-app-title" content="staires!"/><link rel="icon" href="/favicon-32x32.png" sizes="32x32" type="image/png">
<link rel="icon" href="/favicon-192x192.png" sizes="192x192" type="image/png">
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180">
<meta property="og:image" content="https://staires.org/social-share.png">
<meta name="twitter:image" content="https://staires.org/social-share.png">
<link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml" />
    <script>
    // Gallery functionality for image embeds
    function initGallery(galleryId) {
        const gallery = document.getElementById(galleryId);
        if (!gallery) return;

        const slides = gallery.querySelectorAll('.gallery-slide');
        const dots = gallery.querySelectorAll('.gallery-dot');

        // Initialize the first slide
        showSlide(galleryId, 0);

        // Add active class to first dot
        if (dots.length > 0) {
            dots[0].classList.add('active');
        }
    }

    function showSlide(galleryId, slideIndex) {
        const gallery = document.getElementById(galleryId);
        if (!gallery) return;

        const slides = gallery.querySelectorAll('.gallery-slide');
        const dots = gallery.querySelectorAll('.gallery-dot');

        // Hide all slides
        for (let i = 0; i < slides.length; i++) {
            slides[i].style.display = 'none';
            if (dots[i]) dots[i].classList.remove('active');
        }

        // Show the selected slide and activate dot
        slides[slideIndex].style.display = 'block';
        if (dots[slideIndex]) dots[slideIndex].classList.add('active');
    }

    function nextSlide(galleryId) {
        const gallery = document.getElementById(galleryId);
        if (!gallery) return;

        const slides = gallery.querySelectorAll('.gallery-slide');
        const dots = gallery.querySelectorAll('.gallery-dot');

        // Find active slide
        let activeIndex = 0;
        for (let i = 0; i < slides.length; i++) {
            if (slides[i].style.display === 'block') {
                activeIndex = i;
                break;
            }
        }

        // Calculate next slide index
        const nextIndex = (activeIndex + 1) % slides.length;
        showSlide(galleryId, nextIndex);
    }

    function prevSlide(galleryId) {
        const gallery = document.getElementById(galleryId);
        if (!gallery) return;

        const slides = gallery.querySelectorAll('.gallery-slide');
        const dots = gallery.querySelectorAll('.gallery-dot');

        // Find active slide
        let activeIndex = 0;
        for (let i = 0; i < slides.length; i++) {
            if (slides[i].style.display === 'block') {
                activeIndex = i;
                break;
            }
        }

        // Calculate previous slide index
        const prevIndex = (activeIndex - 1 + slides.length) % slides.length;
        showSlide(galleryId, prevIndex);
    }

    // Lightbox functionality
    document.addEventListener('DOMContentLoaded', function() {
        // Initialize lightbox
        const lightbox = document.createElement('div');
        lightbox.id = 'lightbox';
        lightbox.innerHTML = `
            <div class="lightbox-content">
                <button class="lightbox-close">&times;</button>
                <div class="lightbox-image-container">
                    <img id="lightbox-image" src="" alt="Lightbox image">
                </div>
                <div class="lightbox-nav">
                    <button class="lightbox-prev">&#x2039;</button>
                    <button class="lightbox-next">&#x203a;</button>
                </div>
            </div>
        `;
        document.body.appendChild(lightbox);

        // Track current image group and index
        let currentGroup = '';
        let currentIndex = 0;
        let groupImages = [];

        // Handle lightbox trigger clicks
        document.querySelectorAll('.lightbox-trigger').forEach(trigger => {
            trigger.addEventListener('click', function(e) {
                e.preventDefault();

                // Get the image group and build the array of images in this group
                const group = this.getAttribute('data-lightbox');
                groupImages = Array.from(document.querySelectorAll(`[data-lightbox="${group}"]`));
                currentGroup = group;
                currentIndex = groupImages.indexOf(this);

                // Show the lightbox with the selected image
                openLightbox(this.getAttribute('href'), this.getAttribute('data-title'));
            });
        });

        // Close lightbox when clicking the close button or outside the image
        document.querySelector('.lightbox-close').addEventListener('click', closeLightbox);
        lightbox.addEventListener('click', function(e) {
            if (e.target === lightbox) {
                closeLightbox();
            }
        });

        // Navigation buttons
        document.querySelector('.lightbox-prev').addEventListener('click', function() {
            if (groupImages.length <= 1) return;

            currentIndex = (currentIndex - 1 + groupImages.length) % groupImages.length;
            const prevTrigger = groupImages[currentIndex];
            openLightbox(prevTrigger.getAttribute('href'), prevTrigger.getAttribute('data-title'));
        });

        document.querySelector('.lightbox-next').addEventListener('click', function() {
            if (groupImages.length <= 1) return;

            currentIndex = (currentIndex + 1) % groupImages.length;
            const nextTrigger = groupImages[currentIndex];
            openLightbox(nextTrigger.getAttribute('href'), nextTrigger.getAttribute('data-title'));
        });

        // Keyboard navigation
        document.addEventListener('keydown', function(e) {
            if (!lightbox.classList.contains('active')) return;

            if (e.key === 'Escape') {
                closeLightbox();
            } else if (e.key === 'ArrowLeft') {
                document.querySelector('.lightbox-prev').click();
            } else if (e.key === 'ArrowRight') {
                document.querySelector('.lightbox-next').click();
            }
        });

        // Helper functions
        function openLightbox(imageSrc, imageTitle) {
            const lightboxImage = document.getElementById('lightbox-image');
            lightboxImage.src = imageSrc;
            lightboxImage.alt = imageTitle || 'Image';

            // Show/hide navigation based on group size
            const navButtons = document.querySelectorAll('.lightbox-nav button');
            navButtons.forEach(btn => {
                btn.style.display = groupImages.length > 1 ? 'block' : 'none';
            });

            lightbox.classList.add('active');
            document.body.style.overflow = 'hidden'; // Prevent scrolling when lightbox is open
        }

        function closeLightbox() {
            lightbox.classList.remove('active');
            document.body.style.overflow = '';
        }

        // Initialize all galleries on the page
        document.querySelectorAll('[id^="gallery-"]').forEach(gallery => {
            initGallery(gallery.id);
        });
    });
    </script>
</head>
<body>
    <!-- Right edge fade - covers overflow from giant text -->
    <div class="right-edge-fade"></div>

    <div class="container">
        <!-- Hero header with giant background text -->
        <header class="hero-header">
            <!-- Giant background text - blog name uppercase -->
            <span class="giant-text" aria-hidden="true">staires!</span>
            <!-- Foreground content -->
            <div class="hero-content">
                <h1><a href="/">staires!</a></h1>
                <p class="tagline">an adventure in listening</p>
            </div>
            <div class="hero-divider"></div>
        </header>

        <!-- Navigation -->
        <nav class="main-nav">
            <a href="/">Home</a>
            <a href="/archives/">Archives</a>

            <a href="/tags/">Tags</a>
        </nav>

        <!-- Main content area -->
        <div class="content-wrapper">
            <main>
                <article class="post">
    <!-- Giant background text - post title uppercase -->
    <span class="post-giant-text" aria-hidden="true">Sakanaction - Wasureararenaino</span>

    <!-- Foreground content -->
    <div class="post-foreground">
        <h2><a href="/2026/02/24/sakanaction-wasureararenaino/">Sakanaction - Wasureararenaino</a></h2>

        <div class="post-meta">
            <span class="post-date">February 24, 2026 at 01:26 PM</span>
            <span class="post-tags">
                <a href="/tags/sakanaction/" class="tag">#sakanaction</a>
            </span>
        </div>

        <div class="post-content">
            <div class="embed youtube-embed">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/BxqYUbNR-c0"
        frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
        allowfullscreen></iframe>
    </div>
<p>My dog loves this song.</p><p>My dachshund is very finicky when it comes to eating his food. He's not so bad that I have to hand feed him each bite of kibble, but typically I have to do some sort of activity around him to motivate him to eat. This can be relatively simple, typically I have to kick a ball around on the floor near him, occasionally letting him grab it and take it over to his food bowl, where I reclaim it and kick it around some more as he eats.</p><p>Sometimes that does not work and I have to introduce variants of this behavior: sometimes I have to pick up the ball and bounce it off the floor and catch it repeatedly; sometimes I have to play wall-soccer with the ball; and other times, I have to play music. That's where this song comes in.</p><p>I discovered this song thanks to TikTok, which seems to be the theme of this week as the last three songs I've posted have been TikTok discoveries. Since I don't have a commute anymore, the ball-kicking-or-bouncing periods of the morning and evening have become prime "listen to new music" times for me. This is how I discovered that my dog loves this song.</p><p>Now, maybe it's just the result of "it's always in the last place you look", but I feel I've seen solid evidence that this song gets my dog excited enough to eat his food fairly reliably, when no amount of ball kicking or bouncing has enticed him.</p><p>And who could blame him? This song fucking rules. It's so funky. It's infectious. I'd sing along, but I don't think my mouth makes the right shapes. Apple Music Sing has karaoke mode for this song with anglicized Japanese so people like me can sing along, but when I do it, it sounds like I'm performing <a href="https://www.youtube.com/watch?v=BORwhLvPgD8">the Simlish version</a> of the song, it's just not right.</p><p>This video is a lot of fun, too. In the YouTube comments, someone says the whole video was shot in one take; another person disagrees, saying the cuts are only well disguised. What do I think? I have no idea, I use TikTok, I don't have the attention span to sit through an entire music video without getting distracted. You watch it and tell me. You could <a href="https://discuss.bradroot.me/t/music-sharing/40/10?u=amiantos">talk about this song</a> over on my Discourse server if you really wanted to. Really!</p><p>It would also be unacceptable for me not to call out the chick bassist. What is it about a chick bassist in a band that makes every guy on the internet go "omfg, a chick bassist, so bad ass, wow", like it's so unheard of, as if she were wielding a battle axe three times her size? Keep it in your pants, fellas.</p>
        </div>
    </div>

    <div class="post-divider"></div>
</article>
<article class="post">
    <!-- Giant background text - post title uppercase -->
    <span class="post-giant-text" aria-hidden="true">Tōth - Easy</span>

    <!-- Foreground content -->
    <div class="post-foreground">
        <h2><a href="/2026/02/23/toth-easy/">Tōth - Easy</a></h2>

        <div class="post-meta">
            <span class="post-date">February 23, 2026 at 08:27 PM</span>
            <span class="post-tags">
                <a href="/tags/toth/" class="tag">#tōth</a>
            </span>
        </div>

        <div class="post-content">
            <div class="embed youtube-embed">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/JtFf-k2_39I"
        frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
        allowfullscreen></iframe>
    </div>
<p>This is such a fun song and feels like such a throwback to the late 2000's / early 2010's.</p><p>I see someone in the YouTube comments, multiple someones really, saying this song is very 90's.</p><p>WRONG. YOU ARE WRONG.</p><p>But whatever, we can't expect everyone on the internet to have the right knowledge needed to describe music accurately. There are people in the YouTube comments saying "grunge vibes". What? What in the actual fuck? There isn't even a distorted guitar in this song. And how many grunge songs had <em>horns</em> in them?</p><p>Are these people stupid? IS EVERYONE STUPID?</p><p>Man, this annoys me. But that's okay, because this song is pretty good, and the video is cool, too!</p><p>I took a stab at listening to the other songs on this album, which isn't out yet, and they really didn't do it for me. They were actually <em>too</em> early-2010's for me. Like, <a href="https://www.youtube.com/watch?v=XDWJcmMfPBA">this song</a>, this song is not good, I don't like it, this is some "we are young!!" bullshit, make it go away.</p><p>But Easy! This song, this song is good. It's too bad Tōth's fans might be idiots, but maybe that's just YouTube for you.</p>
        </div>
    </div>

    <div class="post-divider"></div>
</article>
<article class="post">
    <!-- Giant background text - post title uppercase -->
    <span class="post-giant-text" aria-hidden="true">Victor Jones - Go to Work</span>

    <!-- Foreground content -->
    <div class="post-foreground">
        <h2><a href="/2026/02/21/victor-jones-go-to-work/">Victor Jones - Go to Work</a></h2>

        <div class="post-meta">
            <span class="post-date">February 21, 2026 at 09:30 PM</span>
            <span class="post-tags">
                <a href="/tags/victor-jones/" class="tag">#victor jones</a>
            </span>
        </div>

        <div class="post-content">
            <div class="embed youtube-embed">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/WL3ZLLoIBCk"
        frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
        allowfullscreen></iframe>
    </div>
<p>I talked a lot of shit on TikTok for years, to my wife, who used it for a long time before I finally caved in and started using it. But all it would show me was half-naked women dancing poorly, so I deleted it for a year or two until picking it back up again, and these days my feed is a lot of DIY music, dachshunds, horses acting like big dogs (which I didn't know I had any interest in), and occasionally better clothed women dancing pretty well.</p><p>For quite a while, the DIY music I would get was really bad, but in recent months the music has started to get a lot better. Now, you might be listening to this song now, thinking, "Is this supposed to be the better music he's talking about?" to which I answer, yes, actually, I am! No, wait, don't leave!</p><p>Well, whatever, I guess not everyone is going to <em>get it</em>, but that's okay. Victor Jones calls this <em>dance punk</em> and, you know, that is probably the best description for it. It's like a bizarro mix of Electric Six and... uh... some other music... like... LCD Soundsystem... god, I asked Google AI and it said Jeff Rosenstock and Gilla Band... what?? I mean, I guess I can see the Jeff Rosenstock comparison, lyrically, especially with Jones' 2025 breakout hit "<a href="https://www.youtube.com/watch?v=1xaf8ovAFVE">Shoulder Song</a>", which might be more your speed if you don't like this one.</p><p>There's a term people use derogatorily toward music on TikTok, if it's painfully mediocre, they call it "coworker music"–and good lord, if I ever publicly post music and someone calls it "coworker music" I will curb stomp myself–and you know what, if Victor Jones' songwriting wasn't so goddamn strong, this would probably be coworker music, but the kid's got heart, he's got a big ol' heart, and I can feel it in my bones. If you don't like this, <em>fuck you!</em></p>
        </div>
    </div>

    <div class="post-divider"></div>
</article>
<article class="post">
    <!-- Giant background text - post title uppercase -->
    <span class="post-giant-text" aria-hidden="true">Courtney Barnett - History Eraser</span>

    <!-- Foreground content -->
    <div class="post-foreground">
        <h2><a href="/2026/02/20/courtney-barnett-history-eraser/">Courtney Barnett - History Eraser</a></h2>

        <div class="post-meta">
            <span class="post-date">February 20, 2026 at 10:48 AM</span>
            <span class="post-tags">
                <a href="/tags/courtney-barnett/" class="tag">#courtney barnett</a>
            </span>
        </div>

        <div class="post-content">
            <div class="embed youtube-embed">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/k6_G5PlEXdk"
        frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
        allowfullscreen></iframe>
    </div>
<p>Australia week comes to an end, and with a bit of a "throwback", to an artist who emerged right after this blog's first death. So I never got to write about Courtney Barnett back then, which is fine, because I listened to her good songs so many times I got so sick of them I hadn't listened to them for probably 12 years until yesterday, when I realized she was Australian and would help me close out "Australia week". And, again, this is cheating, this is an artist who was/is universally popular and has extremely generic and <a href="https://genius.com/Courtney-barnett-history-eraser-lyrics">pre-AI-but-AI-sounding song bios</a> all over Genius; she's mass market! I might as well have posted Gotye!!! No cred, I have no cred, or, as is the parlance of our times: negative aura.</p><p>Oh well, at least I am posting what was personally my favorite Courtney Barnett song, and not just the safe pick–<a href="https://www.youtube.com/watch?v=bcnIhzaDTd0">Avant Gardener</a>, which if you haven't heard before, go listen to it now, it's good, also these two music videos have very interesting aspect ratios and that's <em>cool</em>. Anyway, that's it, that's all I got. Until next time, Australia.</p>
        </div>
    </div>

    <div class="post-divider"></div>
</article>
<article class="post">
    <!-- Giant background text - post title uppercase -->
    <span class="post-giant-text" aria-hidden="true">King Gizzard &amp; The Lizard Wizard - Perihelion</span>

    <!-- Foreground content -->
    <div class="post-foreground">
        <h2><a href="/2026/02/19/king-gizzard-the-lizard-wizard-perihelion/">King Gizzard &amp; The Lizard Wizard - Perihelion</a></h2>

        <div class="post-meta">
            <span class="post-date">February 19, 2026 at 09:44 PM</span>
            <span class="post-tags">
                <a href="/tags/king-gizzard-the-lizard-wizard/" class="tag">#king gizzard &amp; the lizard wizard</a>
            </span>
        </div>

        <div class="post-content">
            <div class="embed youtube-embed">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/G8s3Stq0ato"
        frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
        allowfullscreen></iframe>
    </div>
<p>It's probably cheating to post King Gizzard during our impromptu "Australia week", when I've used bands you've almost certainly never heard of prior to this moment. Everyone's heard of King Gizzard! But have you heard this King Gizzard? Thrash metal Gizzard? Because it rocks so insanely hard.</p><p>This album doesn't really sound like any other metal that has come before it, because it just feels way more indebted to video game music than any other vaguely similar band. There's just something Doom, something Sonic Mayhem's Quake 2 sound track about this entire album. It's theatrical, it's heavy, it's scary and thrilling.</p><p>This album forced me to open myself up to more types of metal, and I dabbled in a few other bands as a result: Red Mountain, High On Fire, Anthrax, early Metallica, Orange Goblin, and probably some others, but none of them stuck with me the way Infest the Rats' Nest did. No joke, I listened to this album probably over 50 times in 2019 - 2020...</p>
        </div>
    </div>

    <div class="post-divider"></div>
</article>
<article class="post">
    <!-- Giant background text - post title uppercase -->
    <span class="post-giant-text" aria-hidden="true">Delivery - Baader Meinhof</span>

    <!-- Foreground content -->
    <div class="post-foreground">
        <h2><a href="/2026/02/18/delivery-baader-meinhof/">Delivery - Baader Meinhof</a></h2>

        <div class="post-meta">
            <span class="post-date">February 18, 2026 at 08:22 PM</span>
            <span class="post-tags">
                <a href="/tags/delivery/" class="tag">#delivery</a>
            </span>
        </div>

        <div class="post-content">
            <div class="embed youtube-embed">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/n956JQuzTK8"
        frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
        allowfullscreen></iframe>
    </div>
<p>Fine, we're keeping up with this week being "Australia Week", which is difficult because there's no way for me to search my music library for "bands from Australia", I just have to, like, use my fuckin' memory and shit. And that's hard, I'm like 40 now, and the amount of THC I pump into my system every day, gosh, it's a miracle I even remember I have a music blog. But, I do, miracles of miracles, and I remembered this great punk band.</p><p>I've listened to this song many times, but never watched the music video. It's a lot of fun. I love the microKORG being flung around and played acoustically, what a hoot.</p><p>They've released at least two albums I've listened to, and they're both real good. Check them out over <a href="https://deliveryband.bandcamp.com">on their Bandcamp</a>.</p>
        </div>
    </div>

    <div class="post-divider"></div>
</article>
<article class="post">
    <!-- Giant background text - post title uppercase -->
    <span class="post-giant-text" aria-hidden="true">Sour Worm - Okay</span>

    <!-- Foreground content -->
    <div class="post-foreground">
        <h2><a href="/2026/02/17/sour-worm-okay/">Sour Worm - Okay</a></h2>

        <div class="post-meta">
            <span class="post-date">February 17, 2026 at 09:21 AM</span>
            <span class="post-tags">
                <a href="/tags/sour-worm/" class="tag">#sour worm</a>
            </span>
        </div>

        <div class="post-content">
            <div class="embed youtube-embed">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/Px-iVBD9QHo"
        frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
        allowfullscreen></iframe>
    </div>
<p>Man, I love a song that sounds like it represents being on the verge of a mental breakdown / total shutdown, and I think this song is that. It's mellow, but it's also overwhelming. It reminds me of those times where all you can do in an argument is start going, "okay, okay, okay, okay, okay, okay, okay," because there's nothing left to do, you can't even think anymore, and submission feels like a form of release.</p><p>P.S. This is another band from Australia! Cool! Is this Australia Week?</p><p>P.P.S. I also think the singer <a href="https://www.instagram.com/p/C7V5YCKNhHW/">looks a bit like if my wife and I had a son</a>, which is fun.</p>
        </div>
    </div>

    <div class="post-divider"></div>
</article>
<article class="post">
    <!-- Giant background text - post title uppercase -->
    <span class="post-giant-text" aria-hidden="true">Dr. Sure&#39;s Unusual Practice - Elephant In The Room</span>

    <!-- Foreground content -->
    <div class="post-foreground">
        <h2><a href="/2026/02/16/dr-sure-s-unusual-practice-elephant-in-the-room/">Dr. Sure&#39;s Unusual Practice - Elephant In The Room</a></h2>

        <div class="post-meta">
            <span class="post-date">February 16, 2026 at 08:14 PM</span>
            <span class="post-tags">
                <a href="/tags/dr-sure-s-unusual-practice/" class="tag">#dr. sure&#39;s unusual practice</a>
            </span>
        </div>

        <div class="post-content">
            <div class="embed youtube-embed">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/E5uTW1uU6Ss"
        frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
        allowfullscreen></iframe>
    </div>
<p>I'm assuming someone over at <a href="https://drsuresunusualpractice.bandcamp.com">Dr. Sure's Incorporated</a> made a mistake, because the album this song is from, Total Reality, has been yeeted off streaming services (as is the parlance of our times), along with essentially the entirety of their catalog. Let's hope it returns, because it's not fair for YouTube to have their music and not Spotify and Apple Music, they're all owned by same soul-sucking corporate bastards deep down, aren't they? Aren't we?</p><p>Dr. Sure's Unusual Practice usually sounds a bit more rambunctious, <a href="https://www.youtube.com/watch?v=zZn_plDxx98">a bit more punk rock</a> than this song is, but I just really dig the deep 90's vibe of this song. Thank god for Australia, churning out some good pop punk, I'll post a few more bands from that continent later on, I'm sure.</p>
        </div>
    </div>

    <div class="post-divider"></div>
</article>
<article class="post">
    <!-- Giant background text - post title uppercase -->
    <span class="post-giant-text" aria-hidden="true">Nick Lutsko - Sometimes</span>

    <!-- Foreground content -->
    <div class="post-foreground">
        <h2><a href="/2026/01/15/nick-lutsko-sometimes/">Nick Lutsko - Sometimes</a></h2>

        <div class="post-meta">
            <span class="post-date">January 15, 2026 at 10:18 AM</span>
            <span class="post-tags">
                <a href="/tags/nick-lutsko/" class="tag">#nick lutsko</a>
            </span>
        </div>

        <div class="post-content">
            <div class="embed youtube-embed">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/5x3_MLPnRFU"
        frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
        allowfullscreen></iframe>
    </div>
<p>This song, this whole album, is a trip. And judging from this music video, the live show leans into all the circus / carnival motifs spread across the whole album; and it looks like a freakin' blast, I wish I had known about this guy back in 2019.</p><p>It's funny that in the last song I posted I was basically complaining about eclecticism run amok, in the style of music of the mid-2000's, which this album is severely guilty of. But in this case, the hyper-active variety of instrumentation is in support of a general theatricality that is sustained consistently from the first song (Sideshow, which is an <em>excellent</em> song and maybe better than this song I'm posting now) to the last song.</p><p>That doesn't mean the album is perfect, no, I think the first half (up to Sometimes) is really strong, while the back half of the album loses me pretty quickly with silly songs and others bordering on ballads. A song like Shadows is just too much of a joke, more suitable to a Weird Al Yankovic album than as a companion to the first half of this album. But, that's okay, I'm not going to fault Nick Lutsko for being <em>too</em> creative, that would be unfair.</p>
        </div>
    </div>

    <div class="post-divider"></div>
</article>
<article class="post">
    <!-- Giant background text - post title uppercase -->
    <span class="post-giant-text" aria-hidden="true">Home Counties - Push Comes To Shove</span>

    <!-- Foreground content -->
    <div class="post-foreground">
        <h2><a href="/2026/01/13/home-counties-push-comes-to-shove/">Home Counties - Push Comes To Shove</a></h2>

        <div class="post-meta">
            <span class="post-date">January 13, 2026 at 01:50 PM</span>
            <span class="post-tags">
                <a href="/tags/home-counties/" class="tag">#home counties</a><a href="/tags/the-fiery-furnaces/" class="tag">#the fiery furnaces</a>
            </span>
        </div>

        <div class="post-content">
            <div class="embed youtube-embed">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/cCSYR5KmyAw"
        frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
        allowfullscreen></iframe>
    </div>
<p>This song is so good. It's hitting the same notes as The New Pornographers at their best, with a groovy funky little swivel in it. It's good! Just listen to it.</p><p>But I'll warn you, if you like this song and you expect the rest of its album to sound anything like it, you will be sorely disappointed. The album, "Exactly As It Seems", is all over the place. It opens with house music, then turns into some funky disco stuff that simply does not work very well in my opinion, and never really gets over how quirky it thinks it is. I'm all for eclectic bands melding genres together in bursts of joyful experimentation (I did live through the era in which people unironically liked The Fiery Furnaces, a band Home Counties is undoubtedly inspired by), but there's just something about this album that starts to chafe.</p><p>But damn, this song is fun! In comparison to the rest of the album, it's low energy and boring, but I guess that's just who I am now, low energy and boring.</p>
        </div>
    </div>

    <div class="post-divider"></div>
</article>
<div class="more-posts">
    <a href="&#x2F;2026&#x2F;02&#x2F;">View more posts &rarr;</a>
</div>

            </main>

            <aside class="sidebar">
                <div class="sidebar-text">
    <h2>About</h2>
    <div class="sidebar-text-content">
        <p>est. 2008</p><p>Email tips to <a href="/cdn-cgi/l/email-protection#d8baaab9bc98abacb9b1aabdabf6b7aabf"><span class="__cf_email__" data-cfemail="016373606541727560687364722f6e7366">[email&#160;protected]</span></a></p>
    </div>
</div><div class="sidebar-links">
    <h2>More</h2>
    <ul>
        <li><a href="https://amiantos.net">amiantos.net</a></li>
<li><a href="https://bradroot.me/">bradroot.me</a></li>
<li><a href="https://ihavebeenfloated.org">ihavebeenfloated.org</a></li>
<li><a href="https://postalgic.app">postalgic.app</a></li>
<li><a href="https://discuss.bradroot.me">discuss.bradroot.me</a></li>

    </ul>
</div>
            </aside>
        </div>

        <footer>
            <p>&copy; 2026 staires! by <a href="https://bradroot.me" target="_blank">Brad Root</a>. Generated with <a href="https://postalgic.app">Postalgic</a>.</p>
        </footer>
    </div>
    <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script async  src="https://scripts.simpleanalyticscdn.com/latest.js"></script>
</body>
</html>
