<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"
    xmlns:fh="http://purl.org/syndication/history/1.0"
    xmlns:at="http://purl.org/atompub/tombstones/1.0">

    <title>Sockpuppet</title>
    
    <subtitle><![CDATA[<h2 id="None_h2_1_Sockpuppet">Sockpuppet<a href="#None_h2_1_Sockpuppet" class="toc_link"></a></h2>
<ol>
<li><em>n.</em> A puppet made from a sock or similar garment.</li>
<li><em>n.</em> (Internet) An alternate identity used by someone in order to appear as if they are someone else.</li>
<li><em>v.</em> To maintain one or more such alternate identities.</li>
</ol>
]]></subtitle>
    
    <link href="http://sockpuppet.band/feed?id=1087" rel="self" />
    
    <link href="http://sockpuppet.band/feed" rel="current" />
    <fh:archive/>
    

    <link href="https://busybee.superfeedr.com" rel="hub" />
    
    <link href="http://sockpuppet.band/feed?id=2670" rel="prev-archive" />
    
    
    <link href="http://sockpuppet.band/feed?id=121" rel="next-archive" />
    
    <link href="http://sockpuppet.band/" />
    <id>tag:sockpuppet.band,2025-12-21:_all</id>
    <updated>2025-04-26T19:42:06-07:00</updated>

    

    <entry>
        
        <title>Blog: Bulk-editing Bandcamp per-track pricing</title>
        <link href="http://sockpuppet.band/blog/1087-Bulk-editing-Bandcamp-per-track-pricing" rel="alternate" type="text/html" />
        <published>2025-04-26T19:42:06-07:00</published>
        <updated>2025-04-26T19:42:06-07:00</updated>
        <id>urn:uuid:57b94f47-2c3f-539a-b479-e7395576f9d1</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>Bandcamp recently rolled out <a href="https://get.bandcamp.help/hc/en-us/articles/31667693315735-How-do-I-use-the-Bulk-Edit-feature">bulk editing for albums</a>, but unfortunately it only lets you bulk-edit album prices, rather than the prices of individual tracks within an album. Fortunately, it isn&rsquo;t too difficult to do this with a little Javascript.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        <p>Bandcamp recently rolled out <a href="https://get.bandcamp.help/hc/en-us/articles/31667693315735-How-do-I-use-the-Bulk-Edit-feature">bulk editing for albums</a>, but unfortunately it only lets you bulk-edit album prices, rather than the prices of individual tracks within an album. Fortunately, it isn&rsquo;t too difficult to do this with a little Javascript.</p><p>For each album that you want to change the prices on:</p>
<ol>
<li><p>Open up your album&rsquo;s editor</p></li>
<li><p>Open up your browser&rsquo;s Javascript console (usually using <kbd>ctrl-alt-I</kbd> on a PC, or <kbd>cmd-alt-I</kbd> on a Mac)</p></li>
<li><p>Paste in this bit of code (assuming you want to set the price to 1.50 per track in your local currency; change the <code>&#39;1.50&#39;</code> to whatever value you want it to be otherwise) and press <kbd>Enter</kbd>:</p><figure class="blockcode"><pre class="highlight" data-language="javascript" data-line-numbers><span class="line" id="e1087cb1L1"><a class="line-number" href="http://sockpuppet.band/blog/1087-Bulk-editing-Bandcamp-per-track-pricing#e1087cb1L1"></a><span class="line-content"><span class="nb">document</span><span class="p">.</span><span class="nx">querySelectorAll</span><span class="p">(</span><span class="s1">&#39;input.price[name^=&quot;track.price&quot;]&#39;</span><span class="p">)</span></span></span>
<span class="line" id="e1087cb1L2"><a class="line-number" href="http://sockpuppet.band/blog/1087-Bulk-editing-Bandcamp-per-track-pricing#e1087cb1L2"></a><span class="line-content"><span class="w">    </span><span class="p">.</span><span class="nx">forEach</span><span class="p">(</span><span class="nx">e</span><span class="p">=&gt;{</span><span class="nx">e</span><span class="p">.</span><span class="nx">value</span><span class="o">=</span><span class="s1">&#39;1.50&#39;</span><span class="p">;</span><span class="nx">e</span><span class="p">.</span><span class="nx">dispatchEvent</span><span class="p">(</span><span class="ow">new</span><span class="w"> </span><span class="nx">Event</span><span class="p">(</span><span class="s1">&#39;change&#39;</span><span class="p">))})</span></span></span>
</pre></figure></li>
<li><p>Verify that the prices are the way you want them and then click &ldquo;update album&rdquo;</p></li>
</ol>


        
            <p>Note that copy-pasting random Javascript from the web is generally unsafe to do, so I&rsquo;ll explain exactly what this code does:</p>
<ol>
<li><code>document.querySelectorAll</code> asks the browser to give a list of items on a webpage; in this case, the query <code>input.price[name^=&quot;track.price&quot;]</code> asks for all of the text inputs which have a <code>class</code> of <code>price</code> and a <code>name</code> starting with <code>track.price</code>, which is how Bandcamp marks a text input as being a track price</li>
<li><code>forEach</code> runs a function on each of the text inputs; in this case, for each one, it

<ol>
<li>sets the <code>value</code> attribute (which is the text in the box) to <code>1.50</code></li>
<li>notifies the browser that the value has changed (which is necessary because Bandcamp is using custom validation and data binding logic)</li>
</ol></li>
</ol>
<p>Anyway. This is still not <em>great</em>, process-wise, but it&rsquo;s a lot easier than having to edit every single track manually.</p>
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=bandcamp">#Bandcamp</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=pricing">#Pricing</a>
        

        ]]>



        </content>
        <category term="Blog" label="Blog" />
        
        
        <category term="Bandcamp" label="bandcamp" />
        
        <category term="Pricing" label="pricing" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: Moonlit EU</title>
        <link href="http://sockpuppet.band/live/904-Moonlit-EU" rel="alternate" type="text/html" />
        <published>2025-04-23T12:00:00-07:00</published>
        <updated>2025-04-23T12:00:00-07:00</updated>
        <id>urn:uuid:bfa4d9a0-2670-5e72-92c6-cb9a18935872</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p> </p><p>I will be performing at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series, this time for the European time slot. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        
<figure class="images"><a href="http://sockpuppet.band/live/904-Moonlit-EU"><img src="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp" width="240" height="240" srcset="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp 1x, http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_480x480_q50.webp 2x" loading="lazy" class="u-photo" style="shape-outside: url('http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240.png')" alt="moonlit.png"></a></figure>
<p>I will be performing at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series, this time for the European time slot. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p>

        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Trans+Academy">#TransAcademy</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Moonlit">#Moonlit</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=short+set">#ShortSet</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="TransAcademy" label="Trans Academy" />
        
        <category term="Moonlit" label="Moonlit" />
        
        <category term="ShortSet" label="short set" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: Moonlit EU</title>
        <link href="http://sockpuppet.band/live/2011-Moonlit-EU" rel="alternate" type="text/html" />
        <published>2025-04-09T12:00:00-07:00</published>
        <updated>2025-04-09T12:00:00-07:00</updated>
        <id>urn:uuid:ea386764-15fb-53cd-bfe0-e28d23f70201</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p> </p><p>I did two songs and a bonus third song for <a href="https://vrc.group/TRANS.7885">Trans Academy</a>&rsquo;s &ldquo;Moonlit&rdquo; concert series.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        
<figure class="images"><a href="http://sockpuppet.band/live/2011-Moonlit-EU"><img src="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp" width="240" height="240" srcset="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp 1x, http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_480x480_q50.webp 2x" loading="lazy" class="u-photo" style="shape-outside: url('http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240.png')" alt="moonlit.png"></a></figure>
<p>I did two songs and a bonus third song for <a href="https://vrc.group/TRANS.7885">Trans Academy</a>&rsquo;s &ldquo;Moonlit&rdquo; concert series.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/DGCj-kodkU0?si=poHcbitd4ywkp0nY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>


        
            <p>(Apologies for the audio quality; I forgot to record my direct audio this time, so this is the in-game audio captured by Rory Pelham of the Trans Academy&rsquo;s broadcast team. Thanks, Rory!)</p>
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Trans+Academy">#TransAcademy</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Moonlit">#Moonlit</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=short+set">#ShortSet</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="TransAcademy" label="Trans Academy" />
        
        <category term="Moonlit" label="Moonlit" />
        
        <category term="ShortSet" label="short set" />
        

        

    </entry>
    <entry>
        
        <title>Blog: Vinyl releases</title>
        <link href="http://sockpuppet.band/blog/1031-Vinyl-releases" rel="alternate" type="text/html" />
        <published>2025-04-03T11:22:02-07:00</published>
        <updated>2025-04-03T11:22:02-07:00</updated>
        <id>urn:uuid:840dfa93-8d35-5132-9f59-966e572779ec</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>I recently learned about <a href="https://elasticstage.com/">elasticStage</a>, an on-demand vinyl LP manufacturing company. I&rsquo;ve always wanted to get some of my albums on vinyl, especially <a href="http://sockpuppet.band/album/transitions">Transitions</a> and <a href="http://sockpuppet.band/album/refactor">Refactor</a>, two albums which are very near and dear to my heart.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        <p>I recently learned about <a href="https://elasticstage.com/">elasticStage</a>, an on-demand vinyl LP manufacturing company. I&rsquo;ve always wanted to get some of my albums on vinyl, especially <a href="http://sockpuppet.band/album/transitions">Transitions</a> and <a href="http://sockpuppet.band/album/refactor">Refactor</a>, two albums which are very near and dear to my heart.</p><p>As such, I&rsquo;ve set up an <a href="http://sockpuppet.band/elasticStage">elasticStage page</a> where you can order my stuff on vinyl! I&rsquo;ll probably add more albums as they come.</p><p>I&rsquo;m still waiting for my test copies to arrive (and they likely won&rsquo;t arrive for a little while) so if you order a copy right now it&rsquo;s at your own risk, <em>but</em> all of the reviews I&rsquo;ve seen of the service are incredibly positive. On Refactor in particular I&rsquo;ve scheduled it as a preorder to be released on June 14, which is both the 10th anniversary of the original release of the album and also my birthday.</p><p>I&rsquo;ll definitely be reviewing the test copies when they arrive, and if you want to take a chance on something unproven, right now is the time to order, as the actual manufacturing lead time is currently around 6 weeks.</p>

        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=vinyl">#Vinyl</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=distribution">#Distribution</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Transitions">#Transitions</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Refactor">#Refactor</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=elasticStage">#elasticStage</a>
        

        ]]>



        </content>
        <category term="Blog" label="Blog" />
        
        
        <category term="Vinyl" label="vinyl" />
        
        <category term="Distribution" label="distribution" />
        
        <category term="Transitions" label="Transitions" />
        
        <category term="Refactor" label="Refactor" />
        
        <category term="elasticStage" label="elasticStage" />
        

        

    </entry>
    <entry>
        
        <title>Blog: Transgender Day of Visibility</title>
        <link href="http://sockpuppet.band/blog/1010-Transgender-Day-of-Visibility" rel="alternate" type="text/html" />
        <published>2025-03-31T00:00:00-07:00</published>
        <updated>2025-03-31T00:00:00-07:00</updated>
        <id>urn:uuid:927454a8-2aa6-5bc7-9a8a-bc2a167b9c2d</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>Today is <a href="https://glaad.org/tdov/">Transgender Day of Visibility</a>, and as a transgender musician who has been releasing music online since the 1990s (and writing music since the 1980s), it&rsquo;s super important to me that members of my community get seen today. The complex feelings around being transgender have always been a big part of my music, even before I had the words to express it.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        <p>Today is <a href="https://glaad.org/tdov/">Transgender Day of Visibility</a>, and as a transgender musician who has been releasing music online since the 1990s (and writing music since the 1980s), it&rsquo;s super important to me that members of my community get seen today. The complex feelings around being transgender have always been a big part of my music, even before I had the words to express it.</p>

        
            <p>My album <a href="http://sockpuppet.band/album/transitions">Transitions</a> (and its companion <a href="http://sockpuppet.band/album/deadnames">Deadnames</a>) are perhaps the most obviously on-the-nose trans-related albums of mine, but it&rsquo;s woven into the DNA of so much of my music. The songs <a href="http://sockpuppet.band/track/all-tan">All Tan</a>, <a href="http://sockpuppet.band/track/adding-up-to-nothing">Adding Up to Nothing</a>, <a href="http://sockpuppet.band/track/hypnagogic">Hypnagogic</a>, <a href="http://sockpuppet.band/track/material-change">Material Change</a>, and <a href="http://sockpuppet.band/track/fool-in-the-middle">Fool in the Middle</a> are all quite specifically about gender feels, but being trans has informed everything about my life and my existence.</p><p>Here are some other lesser-known trans musicians of note (in no particular order):</p>
<ul>
<li><a href="https://bedussey.bandcamp.com">Bedussey</a>, self-described as &ldquo;bedroom pop-punk&rdquo;</li>
<li><a href="https://elizabethveldon.bandcamp.com">elizabeth veldon</a>, a noise/drone artist</li>
<li><a href="https://ellaguro.bandcamp.com/">ella guro</a> makes ridiculously awesome abstract chiptune soundscapes</li>
<li><a href="https://jennifervenawood.bandcamp.com/music">Jennifer Vena Wood</a> goes more for affirmational acoustic folksy stuff which feels super underrepresented in trans music these days and I&rsquo;m 100% here for it</li>
<li><a href="https://kookiesings.carrd.co/">Kookie</a> sings a bunch of songs about being trans, and about being a Linux user, two things which are super entwined in my experience</li>
<li><a href="https://leftatlondon.bandcamp.com/music">Left at London</a> does a super interesting fusion of classic and modern forms</li>
<li><a href="https://patriciataxxon.bandcamp.com/">Patricia Taxxon</a> does incredible weird experimental music</li>
<li><a href="https://ratwyfe.bandcamp.com/">Ratwyfe</a> makes fun songs about all sorts of things; definitely check out <a href="https://ratwyfe.bandcamp.com/track/cryptid-mothman">cryptid (mothman)</a> which is super relatable</li>
<li><a href="https://trustfundozu.bandcamp.com">Trust Fund Ozu</a> makes some amazingly lush musical textures in what feels like an amazing balance between rock and hyperpop</li>
</ul>
<p>There are of course many, many more out there; I put out <a href="https://plush.city/@fluffy/114198067666133480">a call for recommendations</a> and was absolutely overwhelmed by the number of trans artists I was pointed to! It was super difficult to pick just a few to showcase here, and it would be a disservice to let them go without further mention. Thank you so much to everyone who shared their own picks.</p><p>Also, please check out the <a href="https://stanceseattle.org/">Seattle Trans and Nonbinary Choral Ensemble</a>, a choir I am extremely proud to be a part of.</p>
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=music">#Music</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=trans">#Trans</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=transgender">#Transgender</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=recommendations">#Recommendations</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=LGBTQIA">#LGBTQIA</a>
        

        ]]>



        </content>
        <category term="Blog" label="Blog" />
        
        
        <category term="Music" label="music" />
        
        <category term="Trans" label="trans" />
        
        <category term="Transgender" label="transgender" />
        
        <category term="Recommendations" label="recommendations" />
        
        <category term="LGBTQIA" label="LGBTQIA" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: C&amp;D: Ceaseless City</title>
        <link href="http://sockpuppet.band/live/1606-C-D-Ceaseless-City" rel="alternate" type="text/html" />
        <published>2025-03-30T16:30:00-07:00</published>
        <updated>2025-03-30T16:30:00-07:00</updated>
        <id>urn:uuid:9e201164-83e9-5a8a-a423-ada61f6d957d</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>This performance took place in VRChat, and was hosted by <a href="https://vrc.group/CMFS.6845">Corbelle&rsquo;s Music Fesivals</a>.</p>]]></summary>
        <content type="html"><![CDATA[

		

        
        <figure><a href="http://sockpuppet.band/live/1606-C-D-Ceaseless-City"><img src="/static/_img/5d/4777/29CDCeaselessCity_9843cf4800_350x197.jpg" width="350" height="197" srcset="/static/_img/5d/4777/29CDCeaselessCity_9843cf4800_350x197.jpg 1x, /_img/WyJjb250ZW50L2xpdmUvMjlDRENlYXNlbGVzc0NpdHkucG5nIiwyLHsid2lkdGgiOjM1MCwiZm9ybWF0IjoianBnIn1d.tqEu52GQwcBz7g7O0Qh3aUVi0h4 2x" loading="lazy" alt="29CDCeaselessCity.png"></a></figure>
        



        <p>This performance took place in VRChat, and was hosted by <a href="https://vrc.group/CMFS.6845">Corbelle&rsquo;s Music Fesivals</a>.</p>
<iframe title="Cease &amp; Desist: Ceaseless City (March 30, 2025)" width="560" height="315" src="https://makertube.net/videos/embed/h1RJm2ZTDLyPyyjTfnUuEu" frameborder="0" allowfullscreen="" sandbox="allow-same-origin allow-scripts allow-popups allow-forms"></iframe>


        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=concert">#Concert</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Corbelle">#Corbelle</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="Concert" label="concert" />
        
        <category term="Corbelle" label="Corbelle" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: Moonlit EU</title>
        <link href="http://sockpuppet.band/live/1149-Moonlit-EU" rel="alternate" type="text/html" />
        <published>2025-03-26T13:00:00-07:00</published>
        <updated>2025-03-26T13:00:00-07:00</updated>
        <id>urn:uuid:19705157-463e-5617-90a0-62c7bf558f67</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p> </p><p>I will be performing up to two songs (time permitting!) at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        
<figure class="images"><a href="http://sockpuppet.band/live/1149-Moonlit-EU"><img src="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp" width="240" height="240" srcset="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp 1x, http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_480x480_q50.webp 2x" loading="lazy" class="u-photo" style="shape-outside: url('http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240.png')" alt="moonlit.png"></a></figure>
<p>I will be performing up to two songs (time permitting!) at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p>

        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Trans+Academy">#TransAcademy</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Moonlit">#Moonlit</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=short+set">#ShortSet</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="TransAcademy" label="Trans Academy" />
        
        <category term="Moonlit" label="Moonlit" />
        
        <category term="ShortSet" label="short set" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: Moonlit EU</title>
        <link href="http://sockpuppet.band/live/2312-Moonlit-EU" rel="alternate" type="text/html" />
        <published>2025-03-12T13:00:00-07:00</published>
        <updated>2025-03-12T13:00:00-07:00</updated>
        <id>urn:uuid:9d4bb247-5673-54ed-8165-1fe7e0ed7223</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p> </p><p>I will be performing a song or two at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        
<figure class="images"><a href="http://sockpuppet.band/live/2312-Moonlit-EU"><img src="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp" width="240" height="240" srcset="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp 1x, http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_480x480_q50.webp 2x" loading="lazy" class="u-photo" style="shape-outside: url('http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240.png')" alt="moonlit.png"></a></figure>
<p>I will be performing a song or two at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p>

        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Trans+Academy">#TransAcademy</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Moonlit">#Moonlit</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=short+set">#ShortSet</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="TransAcademy" label="Trans Academy" />
        
        <category term="Moonlit" label="Moonlit" />
        
        <category term="ShortSet" label="short set" />
        

        

    </entry>
    <entry>
        
        <title>Blog: Bandcamp Friday for March 2025</title>
        <link href="http://sockpuppet.band/blog/2648-Bandcamp-Friday-for-March-2025" rel="alternate" type="text/html" />
        <published>2025-03-07T00:27:41-08:00</published>
        <updated>2025-03-07T00:27:41-08:00</updated>
        <id>urn:uuid:727a2bf7-e49e-5722-b244-aab70486204a</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>Today, March 7, 2025, is <a href="https://isitbandcampfriday.com/">Bandcamp Friday</a>! That means that for the next 23.5 hours as of the time of this posting, Bandcamp waives their cut of the purchase price. So if you have any music you want to buy on Bandcamp, today is the best day to do it.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        <p>Today, March 7, 2025, is <a href="https://isitbandcampfriday.com/">Bandcamp Friday</a>! That means that for the next 23.5 hours as of the time of this posting, Bandcamp waives their cut of the purchase price. So if you have any music you want to buy on Bandcamp, today is the best day to do it.</p><p>To that end, I have <a href="http://sockpuppet.band/album/strawberry-jelly-9">a new album out</a>, which you might be interested in if you&rsquo;re seeing this post.</p><p>Other than that, there&rsquo;s what I&rsquo;ll be buying today:</p>
<ul>
<li>The entire discography of <a href="https://vulthra.bandcamp.com/music">Vulthra</a></li>
<li>I&rsquo;ll be doing catchup on <a href="https://err-rawr.bandcamp.com/">err:Rawr</a>&rsquo;s discography</li>
<li>And the entire discography of <a href="https://balancelost.bandcamp.com/">Balance Lost</a>, a Song Fight!er of note</li>
</ul>
<p>Sharing is caring!</p>

        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=bandcamp+friday">#BandcampFriday</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=recommendations">#Recommendations</a>
        

        ]]>



        </content>
        <category term="Blog" label="Blog" />
        
        
        <category term="BandcampFriday" label="bandcamp friday" />
        
        <category term="Recommendations" label="recommendations" />
        

        

    </entry>
    <entry>
        
        <title>Blog: Fixed some template stuff</title>
        <link href="http://sockpuppet.band/blog/2111-Fixed-some-template-stuff" rel="alternate" type="text/html" />
        <published>2025-03-01T10:17:49-08:00</published>
        <updated>2025-03-01T10:17:49-08:00</updated>
        <id>urn:uuid:24fbbb52-c9a1-5d4b-a41e-30c6c6ba3f1b</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>For folks who follow this site <a href="https://bsky.app/profile/sockpuppet.band">directly on bluesky</a> you might have noticed that the view there has&hellip; problems. I&rsquo;m mostly posting this to see if some of those problems have been resolved.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        <p>For folks who follow this site <a href="https://bsky.app/profile/sockpuppet.band">directly on bluesky</a> you might have noticed that the view there has&hellip; problems. I&rsquo;m mostly posting this to see if some of those problems have been resolved.</p><p>Unfortunately, as things stand, bluesky is really just not a great substitute for a proper feed reader, so I&rsquo;d suggest getting one of those instead rather than trying to have a single social feed be your one view to the universe.</p><p>(Following <a href="https://bsky.app/profile/fluffy.beesbuzz.biz">my actual bluesky profile</a> probably is a better experience overall, anyway.)</p>

        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=meta">#Meta</a>
        

        ]]>



        </content>
        <category term="Blog" label="Blog" />
        
        
        <category term="Meta" label="meta" />
        

        

    </entry>
    <entry>
        
        <title>Releases: strawberry jelly :9</title>
        <link href="http://sockpuppet.band/album/strawberry-jelly-9" rel="alternate" type="text/html" />
        <published>2025-03-01T00:00:00-08:00</published>
        <updated>2025-02-28T00:00:00+00:00</updated>
        <id>urn:uuid:d6b4d572-c198-51a1-80aa-def3b267849a</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[
]]></summary>
        <content type="html"><![CDATA[

		

        
        <figure><a href="http://sockpuppet.band/album/strawberry-jelly-9"><img src="/static/_img/25/9216/strawberry-jelly-9_431eb48b67_350x350.jpg" width="350" height="350" srcset="/static/_img/25/9216/strawberry-jelly-9_431eb48b67_350x350.jpg 1x, /static/_img/25/9216/strawberry-jelly-9_431eb48b67_700x700.jpg 2x" loading="lazy" alt="strawberry jelly 9.jpg"></a></figure>
        



        <iframe src="https://cdn.sockpuppet.band/strawberry-jelly-9/#compact" seamless><a href="https://cdn.sockpuppet.band/strawberry-jelly-9/">strawberry jelly :9 by Sockpuppet</a></iframe>


        
            <p>Music done for <a href="https://itch.io/jam/strawberry-jam-9">Strawberry Jam 9</a> and a couple other things.</p>
            

            
            <h2>More info</h2>
            <ul>
                
                <li>Track: <a href="http://sockpuppet.band/track/times-running-out">Time&rsquo;s Running Out</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/chilling">Chilling</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/die-walk-re-die">Die, Walküre, Die</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/kairo">Kairo</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/worrying">Worrying</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/wandering">Wandering</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/the-advice">The Advice</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/pull-yourself-together">Pull Yourself Together</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/spycraft">Spycraft</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/gone-fishin">Gone Fishin&#39;</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/rossini-al-dente">Rossini Al Dente</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/sex-in-the-closet">Sex in the Closet</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/sexy-funtimes">Sexy Funtimes</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/rumination">Rumination</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/synthcraft">Synthcraft</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/armored-combat">Armored Combat</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/women-fear-me-fish-love-me">Women Fear Me, Fish Love Me</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/fishing-is-my-cardio">Fishing Is My Cardio</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/diegetic-potato">Diegetic Potato</a></li>
                
                <li>Track: <a href="http://sockpuppet.band/track/a-night-on-the-town">A Night on the Town</a></li>
                
            </ul>
            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=collection:CD">#CD</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=collection:Game+jams">#GameJams</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=collection:OST">#OST</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=collection:Strawberry+Jam">#StrawberryJam</a>
        

        ]]>



        </content>
        <category term="Releases" label="Releases" />
        
        
        <category term="CD" label="collection:CD" />
        
        <category term="GameJams" label="collection:Game jams" />
        
        <category term="OST" label="collection:OST" />
        
        <category term="StrawberryJam" label="collection:Strawberry Jam" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: Moonlit EU</title>
        <link href="http://sockpuppet.band/live/497-Moonlit-EU" rel="alternate" type="text/html" />
        <published>2025-02-19T12:00:00-08:00</published>
        <updated>2025-02-19T12:00:00-08:00</updated>
        <id>urn:uuid:e1adadf9-291c-557a-ba23-deb0b7e61d86</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p> </p><p>I will be performing two songs at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        
<figure class="images"><a href="http://sockpuppet.band/live/497-Moonlit-EU"><img src="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp" width="240" height="240" srcset="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp 1x, http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_480x480_q50.webp 2x" loading="lazy" class="u-photo" style="shape-outside: url('http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240.png')" alt="moonlit.png"></a></figure>
<p>I will be performing two songs at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p><p>Set list:</p>
<ul>
<li><a href="http://sockpuppet.band/track/120-mph">120 MPH</a></li>
<li><a href="http://sockpuppet.band/track/safety-in-numbers">Safety In Numbers</a></li>
</ul>


        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Trans+Academy">#TransAcademy</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Moonlit">#Moonlit</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=short+set">#ShortSet</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="TransAcademy" label="Trans Academy" />
        
        <category term="Moonlit" label="Moonlit" />
        
        <category term="ShortSet" label="short set" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: Moonlit Academy (EU): Short love songs</title>
        <link href="http://sockpuppet.band/live/733-Moonlit-Academy-EU-Short-love-songs" rel="alternate" type="text/html" />
        <published>2025-02-12T12:00:00-08:00</published>
        <updated>2025-02-12T12:00:00-08:00</updated>
        <id>urn:uuid:e7bb924e-2be2-59a4-8d5e-ad75d774f206</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p> </p><p>I will be once again performing at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series, this time for the European time slot. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        
<figure class="images"><a href="http://sockpuppet.band/live/733-Moonlit-Academy-EU-Short-love-songs"><img src="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp" width="240" height="240" srcset="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp 1x, http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_480x480_q50.webp 2x" loading="lazy" class="u-photo" style="shape-outside: url('http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240.png')" alt="moonlit.png"></a></figure>
<p>I will be once again performing at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series, this time for the European time slot. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p><p>I will be performing a song or two, depending on avalable time.</p>

        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Trans+Academy">#TransAcademy</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Moonlit">#Moonlit</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=short+set">#ShortSet</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="TransAcademy" label="Trans Academy" />
        
        <category term="Moonlit" label="Moonlit" />
        
        <category term="ShortSet" label="short set" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: Wolfie&#39;s Hangout 2-Year Celebration</title>
        <link href="http://sockpuppet.band/live/2595-Wolfie-s-Hangout-2-Year-Celebration" rel="alternate" type="text/html" />
        <published>2025-02-07T14:30:00-08:00</published>
        <updated>2025-02-07T14:30:00-08:00</updated>
        <id>urn:uuid:2ed1ae24-02a8-5f3c-99dc-08d64b0fdc9c</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>I will be performing at Wolfie&rsquo;s Hangout for their second anniversay celebration, in benefit of Doctors Without Borders. Join group <a href="https://vrc.group/CMFS.6845">CMFS.6845</a> to get access to the concert instance! Or, <a href="https://twitch.tv/corbelleplays">watch on Twitch</a>.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        <p>I will be performing at Wolfie&rsquo;s Hangout for their second anniversay celebration, in benefit of Doctors Without Borders. Join group <a href="https://vrc.group/CMFS.6845">CMFS.6845</a> to get access to the concert instance! Or, <a href="https://twitch.tv/corbelleplays">watch on Twitch</a>.</p><p>Scheduled time is approximate and subject to change.</p>

        
            
<figure class="images"><a href="http://sockpuppet.band/live/2595-Wolfie-s-Hangout-2-Year-Celebration"><img src="http://sockpuppet.band/static/_img/a1/7ec8/28Wolfies2025_193ff14eb7_640x360_q50.webp" width="640" height="360" srcset="http://sockpuppet.band/static/_img/a1/7ec8/28Wolfies2025_193ff14eb7_640x360_q50.webp 1x, http://sockpuppet.band/static/_img/a1/7ec8/28Wolfies2025_193ff14eb7_1280x720_q50.webp 2x" loading="lazy" class="u-photo" alt="28Wolfies2025.png"></a></figure>

            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=concert">#Concert</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Corbelle">#Corbelle</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Wolfie&#39;s+Hangout">#WolfiesHangout</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="Concert" label="concert" />
        
        <category term="Corbelle" label="Corbelle" />
        
        <category term="WolfiesHangout" label="Wolfie&#39;s Hangout" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: A small practice show</title>
        <link href="http://sockpuppet.band/live/1096-A-small-practice-show" rel="alternate" type="text/html" />
        <published>2025-02-01T14:30:00-08:00</published>
        <updated>2025-02-01T14:30:00-08:00</updated>
        <id>urn:uuid:0f56577a-c100-5100-8843-7c3c6802df37</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>Because of <a href="https://beesbuzz.biz/blog/867-Are-you-having-COMPUTER-PROBLEMS">recent events</a> and in preparation for the <a href="http://sockpuppet.band/live/2595-Wolfie-s-Hangout-2-Year-Celebration">Wolfie&rsquo;s Hangout anniversary show</a> I will be doing a show on my own. Join VRChat group <a href="https://vrc.group/MUSIC.1138">MUSIC.1138</a>, or watch on <a href="https://live.sockpuppet.us">my Owncast instance</a>.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        <p>Because of <a href="https://beesbuzz.biz/blog/867-Are-you-having-COMPUTER-PROBLEMS">recent events</a> and in preparation for the <a href="http://sockpuppet.band/live/2595-Wolfie-s-Hangout-2-Year-Celebration">Wolfie&rsquo;s Hangout anniversary show</a> I will be doing a show on my own. Join VRChat group <a href="https://vrc.group/MUSIC.1138">MUSIC.1138</a>, or watch on <a href="https://live.sockpuppet.us">my Owncast instance</a>.</p>

        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=concert">#Concert</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="Concert" label="concert" />
        

        

    </entry>
    <entry>
        
        <title>Blog: A new ambient experiment fixation</title>
        <link href="http://sockpuppet.band/blog/1636-A-new-ambient-experiment-fixation" rel="alternate" type="text/html" />
        <published>2025-01-29T01:46:16-08:00</published>
        <updated>2025-01-29T01:46:16-08:00</updated>
        <id>urn:uuid:531bc817-230d-5ba7-9ed4-0e052eae4722</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>Convolution reverbs are pretty neat. Basically you take a recording of a space&rsquo;s acoustics and then the reverb characteristics of that space can then be applied to any audio signal. I usually use convolution reverbs for most of my music, since it&rsquo;s a lot easier for me to use someone&rsquo;s recorded impulse response of, say, the <a href="https://en.wikipedia.org/wiki/Ulm_Minster">Ulm chapel</a> than to fly to Germany to record there in person.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        <p>Convolution reverbs are pretty neat. Basically you take a recording of a space&rsquo;s acoustics and then the reverb characteristics of that space can then be applied to any audio signal. I usually use convolution reverbs for most of my music, since it&rsquo;s a lot easier for me to use someone&rsquo;s recorded impulse response of, say, the <a href="https://en.wikipedia.org/wiki/Ulm_Minster">Ulm chapel</a> than to fly to Germany to record there in person.</p><p>You can also use recordings of things other than acoustic spaces for interesting effects; Logic&rsquo;s <a href="https://support.apple.com/guide/logicpro/space-designer-overview-lgce357aa791/mac">Space Designer</a> comes with a whole bunch of impulse responses that are used for various effects, including drum transformers, ghost rhythms, and other such things. A lot of my more sound designy stuff makes heavy use of this.</p><p>But what if you use whole songs as an impulse response?</p>

        
            <p>Here&rsquo;s some results I got while messing around with it just now:</p>
<iframe src="https://cdn.sockpuppet.band/ir-experiments/" width="100%" height="300px" seamless style="border:none"></iframe>
<p>The way I did these in logic:</p>
<figure class="images"><a href="http://sockpuppet.band/static/_img/e3/cd30/ir-project-layout_2516f6a659.png"><img src="http://sockpuppet.band/static/_img/e3/cd30/ir-project-layout_2516f6a659_640x377_q50.webp" width="640" height="377" srcset="http://sockpuppet.band/static/_img/e3/cd30/ir-project-layout_2516f6a659_640x377_q50.webp 1x, http://sockpuppet.band/static/_img/e3/cd30/ir-project-layout_2516f6a659_1280x755_q50.webp 2x" loading="lazy" class="u-photo" alt="ir-project-layout.png"></a><a href="http://sockpuppet.band/static/_img/d1/6e23/ir-space-designer_d5d03b0789.png"><img src="http://sockpuppet.band/static/_img/d1/6e23/ir-space-designer_d5d03b0789_537x422_q50.webp" width="537" height="422" srcset="http://sockpuppet.band/static/_img/d1/6e23/ir-space-designer_d5d03b0789_537x422_q50.webp 1x, http://sockpuppet.band/static/_img/d1/6e23/ir-space-designer_d5d03b0789_1074x843_q50.webp 2x" loading="lazy" class="u-photo" alt="ir-space-designer.png"></a></figure>

<ol>
<li>Create an audio track with the source audio</li>
<li>Add a Space Designer plugin, and drag the convolution audio onto it</li>
<li>Set the &ldquo;dry&rdquo; level to Mute, and the &ldquo;wet&rdquo; level to 0</li>
<li>Create an empty instrument track, and make an empty region that&rsquo;s roughly the length of the convolution audio that starts at the end of your source audio (to give it a proper reverb tail)</li>
<li>Apply the Mastering Assistant</li>
<li>Bounce!</li>
</ol>
<p>This seems like a really good framework for experimentation, especially for drone tones and ambient soundscapes. I&rsquo;d be super interested to see what other people come up with!</p>
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=music">#Music</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=music+production">#MusicProduction</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=ambient">#Ambient</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=experiments">#Experiments</a>
        

        ]]>



        </content>
        <category term="Blog" label="Blog" />
        
        
        <category term="Music" label="music" />
        
        <category term="MusicProduction" label="music production" />
        
        <category term="Ambient" label="ambient" />
        
        <category term="Experiments" label="experiments" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: Moonlit EU</title>
        <link href="http://sockpuppet.band/live/1582-Moonlit-EU" rel="alternate" type="text/html" />
        <published>2025-01-22T12:00:00-08:00</published>
        <updated>2025-01-22T12:00:00-08:00</updated>
        <id>urn:uuid:56d4951c-acd6-42bc-a279-980283d4d36c</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p> </p><p>I will be performing two songs at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        
<figure class="images"><a href="http://sockpuppet.band/live/1582-Moonlit-EU"><img src="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp" width="240" height="240" srcset="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp 1x, http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_480x480_q50.webp 2x" loading="lazy" class="u-photo" style="shape-outside: url('http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240.png')" alt="moonlit.png"></a></figure>
<p>I will be performing two songs at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p><p>Tentative set list:</p>
<ul>
<li><a href="http://sockpuppet.band/track/fool-in-the-middle">Fool in the Middle</a></li>
<li><a href="http://sockpuppet.band/track/paper-cuts">Paper Cuts</a></li>
</ul>


        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Trans+Academy">#TransAcademy</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Moonlit">#Moonlit</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=short+set">#ShortSet</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="TransAcademy" label="Trans Academy" />
        
        <category term="Moonlit" label="Moonlit" />
        
        <category term="ShortSet" label="short set" />
        

        

    </entry>
    <entry>
        
        <title>Blog: Minimal listens for January 11-17</title>
        <link href="http://sockpuppet.band/blog/1091-Minimal-listens-for-January-11-17" rel="alternate" type="text/html" />
        <published>2025-01-18T00:00:00-08:00</published>
        <updated>2025-01-18T00:00:00-08:00</updated>
        <id>urn:uuid:cd101bba-fba0-5f38-a2c2-78a29b7445a6</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>Gosh, I almost forgot to post this, but that&rsquo;s because I haven&rsquo;t actually listened to much music this week. Dunno why. But here&rsquo;s some things I heard:</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        <p>Gosh, I almost forgot to post this, but that&rsquo;s because I haven&rsquo;t actually listened to much music this week. Dunno why. But here&rsquo;s some things I heard:</p>
<ul>
<li>The <a href="https://archive.org/details/14.-kenji-ninuma-disco-prince">We &hearts; Katamari soundtrack</a>; specifically I have an old gamerip that unfortunately has the full per-level runtime tracks which get kind of old after a while, but it was surprisingly fun to listen to while driving for some errands</li>
<li><a href="https://soundvision.bandcamp.com/album/psychic-realty-revisited">Psychic Realty (Revisited)</a>: An amazing remix album of one of Jeremy Blake&rsquo;s already-amazing albums</li>
<li>&hellip; and that&rsquo;s it, that&rsquo;s everything I listened to this week</li>
</ul>
<p>Sometimes I just gotta give my ears a break, I guess.</p>

        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=listening">#Listening</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=recommendations">#Recommendations</a>
        

        ]]>



        </content>
        <category term="Blog" label="Blog" />
        
        
        <category term="Listening" label="listening" />
        
        <category term="Recommendations" label="recommendations" />
        

        

    </entry>
    <entry>
        
        <title>Blog: Music listens for January 4-10</title>
        <link href="http://sockpuppet.band/blog/1646-Music-listens-for-January-4-10" rel="alternate" type="text/html" />
        <published>2025-01-11T00:00:00-08:00</published>
        <updated>2025-01-11T00:00:00-08:00</updated>
        <id>urn:uuid:51d27516-4558-5a64-946e-28858688be9a</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p>I didn&rsquo;t listen to much music this week, but here&rsquo;s some stuff I enjoyed:</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        <p>I didn&rsquo;t listen to much music this week, but here&rsquo;s some stuff I enjoyed:</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Electroman_%28album%29">Benny Benassi - Electroman</a>: I bought this because &ldquo;Good Girl&rdquo; was on <a href="https://en.wikipedia.org/wiki/Lumines:_Electronic_Symphony">Lumines Electric Symphony</a> for the PS Vita, pretty much the only game that I spent any significant amount of time playing on that doomed system. The album as a whole seems like it&rsquo;s a lighthearted parody/homage of all of the dance music styles that were popular in 2011. Or at least I found a lot of humor in it.</li>
<li><a href="https://revengeday.bandcamp.com/album/disappear-single">Disappear</a> by <a href="https://revengeday.bandcamp.com/">Revengeday</a></li>
<li><a href="https://sadkermit.bandcamp.com/album/the-rainbow-disconnection">The Rainbow Disconnection</a> by <a href="https://sadkermit.bandcamp.com/">Sad Kermit</a>: I absolutely cannot believe that this album is allowed to continue to exist. I could have sworn it was DMCAed at one point. Also back when I got it, it was a free download from the artist&rsquo;s website, I think. There&rsquo;s more tracks that have been added since my acquisition.</li>
<li><a href="https://archive.org/details/The_Weekend_EP-21747/">The Weekend EP</a> by <a href="https://archive.org/search?query=creator%3A%22This+Mess+is+Mine%22">This Mess is Mine</a></li>
<li><a href="https://lusine.bandcamp.com/album/a-certain-distance">A Certain Distance</a> by <a href="https://lusine.bandcamp.com/music">Lusine</a>: some amazingly lush electronica that makes my ears very happy</li>
</ul>


        
            <p>Also, I&rsquo;ve gone ahead and enabled <a href="https://indieweb.org/webmention">webmention</a> on this site in lieu of comments. The layout is just the defaults from <a href="https://github.com/PlaidWeb/webmention.js">webmention.js</a>. Someday I&rsquo;ll get around to building <a href="https://beesbuzz.biz/blog/7457-Some-thoughts-on-comments">a proper comment system</a> instead.</p>
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=listening">#Listening</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=recommendations">#Recommendations</a>
        

        ]]>



        </content>
        <category term="Blog" label="Blog" />
        
        
        <category term="Listening" label="listening" />
        
        <category term="Recommendations" label="recommendations" />
        

        

    </entry>
    <entry>
        
        <title>Live Shows: Moonlit Academy (NA): Everybody Calm Down</title>
        <link href="http://sockpuppet.band/live/2667-Moonlit-Academy-NA-Everybody-Calm-Down" rel="alternate" type="text/html" />
        <published>2025-01-08T19:00:00-08:00</published>
        <updated>2025-01-08T19:00:00-08:00</updated>
        <id>urn:uuid:14837fee-0aca-5171-8b59-e57cc5ee6be7</id>
        <author><name>fluffy</name></author>
        <summary type="html"><![CDATA[<p> </p><p>I will be once again performing the song <a href="http://sockpuppet.band/track/everybody-calm-down">Everybody Calm Down</a> at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series, this time for the North America time slot. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p>]]></summary>
        <content type="html"><![CDATA[

		

        



        
<figure class="images"><a href="http://sockpuppet.band/live/2667-Moonlit-Academy-NA-Everybody-Calm-Down"><img src="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp" width="240" height="240" srcset="http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240_q50.webp 1x, http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_480x480_q50.webp 2x" loading="lazy" class="u-photo" style="shape-outside: url('http://sockpuppet.band/static/_img/0a/e1a2/moonlit_2e89472c93_240x240.png')" alt="moonlit.png"></a></figure>
<p>I will be once again performing the song <a href="http://sockpuppet.band/track/everybody-calm-down">Everybody Calm Down</a> at the Trans Academy&rsquo;s &ldquo;Moonlit&rdquo; concert series, this time for the North America time slot. Join <a href="https://vrc.group/TRANS.7885">TRANS.7885</a> for access, or watch on <a href="https://twitch.tv/transacademyvr">the Twitch stream</a>.</p><p>This will be the last time I can perform at Trans Academy Moonlit NA for a while.</p>

        
            
            

            

        
        <a rel="tag" href="http://sockpuppet.band/?tag=VRChat">#VRChat</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Trans+Academy">#TransAcademy</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=Moonlit">#Moonlit</a>
        
        <a rel="tag" href="http://sockpuppet.band/?tag=single">#Single</a>
        

        ]]>



        </content>
        <category term="LiveShows" label="Live Shows" />
        
        
        <category term="VRChat" label="VRChat" />
        
        <category term="TransAcademy" label="Trans Academy" />
        
        <category term="Moonlit" label="Moonlit" />
        
        <category term="Single" label="single" />
        

        

    </entry>
    

    
    <at:deleted-entry ref="urn:uuid:2b755109-2f78-51ab-aadc-db0b07d11af7" when="2025-04-16T12:00:00-07:00">
        <link>http://sockpuppet.band/3204</link>
    </at:deleted-entry>
    
</feed>