<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Josh Saddler &#187; Gentoo</title>
	<atom:link href="http://blogs.gentoo.org/nightmorph/category/gentoo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.gentoo.org/nightmorph</link>
	<description>Wordsmith and Code Poet</description>
	<lastBuildDate>Tue, 19 Mar 2013 10:18:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>fonts</title>
		<link>http://blogs.gentoo.org/nightmorph/2013/03/19/fonts/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blogs.gentoo.org/nightmorph/2013/03/19/fonts/#comments</comments>
		<pubDate>Tue, 19 Mar 2013 10:18:34 +0000</pubDate>
		<dc:creator>nightmorph</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Xfce]]></category>

		<guid isPermaLink="false">http://blogs.gentoo.org/nightmorph/?p=594</guid>
		<description><![CDATA[i think i&#8217;ve sorted out some of my desktop font issues, and created a few more in the process. for a long time, i&#8217;ve had to deal with occasionally jagged, hard-to-read fonts when viewing webpages, because i ran my xfce &#8230; <a href="http://blogs.gentoo.org/nightmorph/2013/03/19/fonts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>i think i&#8217;ve sorted out some of my desktop font issues, and created a few more in the process.</p>
<p>for a long time, i&#8217;ve had to deal with occasionally jagged, hard-to-read fonts when viewing webpages, because i ran my <a href="http://www.xfce.org">xfce</a> desktop without any <a href="http://en.wikipedia.org/wiki/Font_rasterization">font antialiasing</a>.</p>
<p>i&#8217;ve always hated the way modern desktop environments try to &#8220;fool&#8221; my eyes with antialiasing and subpixel hinting to convince me that a group of square pixels can be smoothed into round shapes. turning off antialiasing tends to make the rounder fonts, especially serif fonts, look pretty bad at large sizes, as seen here:</p>
<p><a href="http://blogs.gentoo.org/nightmorph/files/2013/03/20130315-font.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img src="http://blogs.gentoo.org/nightmorph/files/2013/03/20130315-font-300x236.png" alt="display issues" width="300" height="236" class="alignnone size-medium wp-image-596" /></a></p>
<p>my preferred font for the desktop and the web is verdana, which looks pretty good without antialiasing. but most websites use other fonts, so rather than force one size of verdana everywhere (which causes flow/layout issues), i turned on antialiasing for my entire desktop, including my <a href="http://www.mozilla.com/firefox">preferred browser</a>, and started disabling antialiasing where needed.</p>
<p>before and after font settings:</p>
<p><a href="http://blogs.gentoo.org/nightmorph/files/2013/03/20130318-settings.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img src="http://blogs.gentoo.org/nightmorph/files/2013/03/20130318-settings-300x219.png" alt="before/after settings" width="300" height="219" class="alignnone size-medium wp-image-595" /></a></p>
<p>i tried the <a href="http://www.infinality.net">infinality</a> patchset for <a href="http://www.freetype.org">freetype</a>, but unfortunately none of the <a href="https://github.com/yngwin/eselect-infinality">eselect</a> configurations produced the crisply rounded antialiased text the patches are <a href="http://www.infinality.net/blog/infinality-freetype-patches/">known for</a>. i rebuilt freetype without the patchset, and went into <code>/etc/fonts</code> to do some XML hacking.</p>
<p>while <code>eselect-fontconfig</code> offers painless management of existing presets, the only way to customize one&#8217;s setup is to get into nitty-gritty text editing, and font configs are in XML format. this is what i ended up with:</p>
<pre>$ cat ~/.fonts.conf

&lt;?xml version="1.0"?&gt;
&lt;!DOCTYPE fontconfig SYSTEM "fonts.dtd"&gt;
&lt;fontconfig&gt;
&lt;match target="font"&gt;
    &lt;edit name="antialias" mode="assign"&gt;
        &lt;bool&gt;false&lt;/bool&gt;
    &lt;/edit&gt;
&lt;/match&gt;
&lt;match target="font" &gt;
    &lt;test name="size" qual="any" compare="more"&gt;
        &lt;double&gt;11&lt;/double&gt;
    &lt;/test&gt;
    &lt;edit name="antialias" mode="assign"&gt;
        &lt;bool&gt;true&lt;/bool&gt;
    &lt;/edit&gt;
&lt;/match&gt;
&lt;match target="font" &gt;
    &lt;test name="pixelsize" qual="any" compare="more"&gt;
        &lt;double&gt;16&lt;/double&gt;
    &lt;/test&gt;
    &lt;edit name="antialias" mode="assign"&gt;
        &lt;bool&gt;true&lt;/bool&gt;
    &lt;/edit&gt;
&lt;/match&gt;
&lt;match target="pattern"&gt;
    &lt;test qual="any" name="family"&gt;&lt;string&gt;Helvetica&lt;/string&gt;&lt;/test&gt;
    &lt;edit name="antialias" mode="assign"&gt;
      &lt;bool&gt;true&lt;/bool&gt;
    &lt;/edit&gt;
&lt;/match&gt;</pre>
<p>let&#8217;s step through the rules:</p>
<p>first, all antialiasing is disabled. then, any requested font size over 11, or anything that would display more than 16 pixels high, is antialiased. finally, since the common helvetica font really needs to be antialiased at all sizes, a rule turns that on. in theory, that is &#8212; firefox and xfce both seem to be ignoring this. unless antialiasing really is enabled at the smallest sizes with no visible effect, since there are only so many pixel spaces available at that scale to &#8220;fake&#8221; rounded corners.</p>
<p>a test webpage shows the antialiasing effect on different fonts and sizes:</p>
<p><a href="http://blogs.gentoo.org/nightmorph/files/2013/03/20130318-fonts1.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img src="http://blogs.gentoo.org/nightmorph/files/2013/03/20130318-fonts1-300x187.png" alt="desktop and browser fonts" width="300" height="187" class="alignnone size-medium wp-image-597" /></a></p>
<p>besides the helvetica issue, there are a few xfce font display problems. xfce is known for mostly ignoring the &#8220;modern&#8221; xorg font config files, and each app in the desktop environment follows its own aliasing and hinting rules. gvim&#8217;s monospace font is occasionally antialiased, resulting in hard-to-read code. the terminal, which uses the exact same font and size, is not antialiased, since it has its own control for text display.</p>
<p>the rest of the gtk+ apps in the above screenshot are size 10 verdana, so they have no antialiasing, being under the &#8220;size 11&#8243; rule. firefox doesn&#8217;t always obey the system&#8217;s font smoothing and hinting settings, even with the proper options in <code>about:config</code> set. unlike user stylesheets, there&#8217;s no way to enforce desktop settings with something like <code>!important</code> CSS code. i haven&#8217;t found any pattern in what firefox ignores or respects.</p>
<p>also, i haven&#8217;t found a workable fontconfig rule that enables antialiasing only for <em>specific</em> fonts at certain sizes. i&#8217;m not sure it&#8217;s even possible to set such a rule, despite putting together well-formed XML to do just that.</p>
<p>* * *</p>
<p>to sum up: font management on linux can be needlessly complicated, even if you don&#8217;t have special vision needs. my environment is overall a bit better, but i&#8217;m not ready to move entirely to antialiased text, not until it&#8217;s less blurry. i need crispy, sharp text.</p>
<p>fonts on my android phone&#8217;s screen look pretty good despite the antialiasing used everywhere, but the thing&#8217;s pixel density is so much higher than laptop and desktop LCDs that the display server doesn&#8217;t need to resort to complicated smoothing/hinting techniques to achieve that look.</p>
<p>as a general resource, the arch linux <a href="https://wiki.archlinux.org/index.php/Font_Configuration">wiki</a> page has very useful information on font configuration. there are some great ideas in there, even if they don&#8217;t all work on my system. the gentoo linux <a href="http://wiki.gentoo.org/wiki/Fontconfig">wiki</a> page on fontconfig is a more basic; i didn&#8217;t use anything from it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gentoo.org/nightmorph/2013/03/19/fonts/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>music made with gentoo: walking home alone through moonlit streets</title>
		<link>http://blogs.gentoo.org/nightmorph/2013/01/22/music-made-with-gentoo-walking-home-alone-through-moonlit-streets/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blogs.gentoo.org/nightmorph/2013/01/22/music-made-with-gentoo-walking-home-alone-through-moonlit-streets/#comments</comments>
		<pubDate>Tue, 22 Jan 2013 09:29:53 +0000</pubDate>
		<dc:creator>nightmorph</dc:creator>
				<category><![CDATA[Gentoo]]></category>

		<guid isPermaLink="false">http://blogs.gentoo.org/nightmorph/?p=561</guid>
		<description><![CDATA[a new song: walking home alone through moonlit streets by ioflow for the 55th disquiet junto, two screws. the task was to combine do and re by nils frahm into a new work. i chopped &#8220;re&#8221; into loops, and rearranged &#8230; <a href="http://blogs.gentoo.org/nightmorph/2013/01/22/music-made-with-gentoo-walking-home-alone-through-moonlit-streets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>a new song: <a href="http://soundcloud.com/ioflow/walking-home">walking home alone through moonlit streets</a> by <a href="http://soundcloud.com/ioflow">ioflow</a></p>
<p><iframe width="100%" height="166" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F75954720&amp;auto_play=false&amp;show_artwork=true&amp;color=ff7700"></iframe></p>
<p>for the 55th <a href="http://disquiet.com">disquiet</a> junto, <a href="http://disquiet.com/2013/01/17/disquiet0055-twoscrews/">two screws</a>.</p>
<p>the task was to combine <a href="http://soundcloud.com/erasedtapes/nils-frahm-do">do</a> and <a href="http://soundcloud.com/erasedtapes/nils-frahm-re">re</a> by <a href="http://www.nilsfrahm.com/">nils frahm</a> into a <a href="http://reworked.nilsfrahm.com">new work</a>. i chopped &#8220;re&#8221; into loops, and rearranged sections by sight and sound for a deliberately loose feel. the resulting piece is entirely unquantized, with percussion generated from the piano/pedal action sounds of &#8220;do&#8221; set under the &#8220;re&#8221; arrangement. the perc was performed with an mpd18 midi controller in real time, and then arranged by dragging individual hits with a mouse. since the original piano recordings were improvised, tempo fluctuates at around 70bpm, and i didn&#8217;t want to lock myself into anything tighter when creating the downtempo beats.</p>
<div id="attachment_577" class="wp-caption alignnone" style="width: 310px"><a href="http://blogs.gentoo.org/nightmorph/files/2013/01/20130121-junto55.jpg#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img src="http://blogs.gentoo.org/nightmorph/files/2013/01/20130121-junto55-300x300.jpg" alt="" title="hardware and software" width="300" height="300" class="size-medium wp-image-577" /></a><p class="wp-caption-text">beats performed live on the mpd18, arranged in ardour3.</p></div>
<p>normally i&#8217;d program everything to a strict grid with <a href="http://renoise.com">renoise</a>, but for this project, i used <a href="http://ardour.org">ardour3</a> (available in my <a href="http://github.com/nightmorph/overnight">overlay</a>) almost exclusively, except for a bit of sample preparation in renoise and <a href="http://audacity.sourceforge.net/">audacity</a>. the faint background pads/strings were created with <a href="http://hypermammut.sourceforge.net/paulstretch">paulstretch</a>. my ardour3 session was filled with hundreds of samples, each one placed by hand and nudged around to keep the jazzy feel, as seen in this screenshot:</p>
<p><a href="http://blogs.gentoo.org/nightmorph/files/2013/01/20130121.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img src="http://blogs.gentoo.org/nightmorph/files/2013/01/20130121-300x163.png" alt="ardour3 session" title="ardour3 session" width="300" height="163" class="alignnone size-medium wp-image-562" /></a></p>
<p>this is a very rough rework &#8212; no FX, detailed mixing/mastering, or complicated tricks. i ran outta time to do all the subtle things i usually do. instead, i spent all my time &#038; effort on the arrangement and vibe. the minimal treatment worked better than everything i&#8217;d planned.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gentoo.org/nightmorph/2013/01/22/music-made-with-gentoo-walking-home-alone-through-moonlit-streets/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>music made with gentoo: ice is given</title>
		<link>http://blogs.gentoo.org/nightmorph/2013/01/06/music-made-with-gentoo-ice-is-given/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blogs.gentoo.org/nightmorph/2013/01/06/music-made-with-gentoo-ice-is-given/#comments</comments>
		<pubDate>Sun, 06 Jan 2013 09:31:43 +0000</pubDate>
		<dc:creator>nightmorph</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ardour]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://blogs.gentoo.org/nightmorph/?p=527</guid>
		<description><![CDATA[a new song: ice is given by ioflow piano improvisation and ambient recordings for the 53rd disquiet junto, ice for 2013. the assignment was to record the sound of ice in a glass, and make something of it. the track &#8230; <a href="http://blogs.gentoo.org/nightmorph/2013/01/06/music-made-with-gentoo-ice-is-given/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>a new song: <a href="">ice is given</a> by <a href="http://soundcloud.com">ioflow</a></p>
<p><iframe width="100%" height="166" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F73831930&#038;show_artwork=true"></iframe></p>
<p>piano improvisation and ambient recordings for the 53rd <a href="http://disquiet.com/">disquiet</a> junto, <a href="http://disquiet.com/2013/01/03/disquiet0053-ice2013/">ice for 2013</a>.</p>
<p>the assignment was to record the sound of ice in a glass, and make something of it.</p>
<p>the track picture shows my lo-fi setup for the field recording segment. i balanced a logitech USB microphone (which came with the Rock Band game) on a box of herbal tea (to keep it off the increasingly wet kitchen table), and started dropping ice cubes into a glass tumbler. audible is the initial crack and flex of the tray, scrabbling for cubes, tossing them into the cup. i made a point of recording the different tone of cubes dropped into a glass of hot water. i also filled the cup with ice, then recorded the sound of water running into it from the kitchen tap. i liked this sound enough to begin the song with it.</p>
<p>i decided that my first song of 2013 should incorporate the piano, so with the ice cubes recorded, i sat down to improvise an appropriately wintry melody. the result is a simple two-minute minor motif. i turned to the <a href="http://ardour.org">ardour3</a> <a href="https://github.com/nightmorph/overnight">beta</a> to integrate the field recordings and the piano improvisation.</p>
<p>it&#8217;s been awhile since i last used my <a href="http://www.strymon.net/products/bluesky/">strymon bluesky</a> reverb pedal, so i figured i should use it for this project. i setup a feedback-free hardware effects loop using my NI Komplete Audio6 interface with the help of #ardour IRC channel, and listened to the piano recording as it ran through fairly spacious settings on the BSR. (normal mode, room type, decay @ 3:00, predelay @ 11:00, low damp @ 4:00, high damp @ 8:00). with just a bit of &#8220;send&#8221; to the reverb unit, the piano really came to life.</p>
<p>i added a few more tracks in ardour for the ice cube snippets, with even more subtle audio sends to the BSR, and laid out the field recordings. i pulled them apart in several places, copying and pasting segments throughout the song; minimal treatment was needed to get a good balance of piano and ice.</p>
<div id="attachment_528" class="wp-caption alignnone" style="width: 310px"><a href="http://blogs.gentoo.org/nightmorph/files/2013/01/20130106-disquiet0053.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img src="http://blogs.gentoo.org/nightmorph/files/2013/01/20130106-disquiet0053-300x179.png" alt="ardour3 session" title="ardour3 session" width="300" height="179" class="size-medium wp-image-528" /></a><p class="wp-caption-text">working environment in ardour3. laying out hardware FX and tracks.</p></div>
<p>title reference: <a href="http://www.biblegateway.com/passage/?search=Job+37:10&#038;version=NKJV">Job 37:10</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gentoo.org/nightmorph/2013/01/06/music-made-with-gentoo-ice-is-given/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>music made with gentoo: lost letters</title>
		<link>http://blogs.gentoo.org/nightmorph/2012/12/18/music-made-with-gentoo-lost-letters/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blogs.gentoo.org/nightmorph/2012/12/18/music-made-with-gentoo-lost-letters/#comments</comments>
		<pubDate>Tue, 18 Dec 2012 09:17:16 +0000</pubDate>
		<dc:creator>nightmorph</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ardour]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[renoise]]></category>

		<guid isPermaLink="false">http://blogs.gentoo.org/nightmorph/?p=517</guid>
		<description><![CDATA[a new song: lost letters by ioflow prepared improvisation for the 50th disquiet junto, morse beat. the assignment was to encode a word or phrase with the Morse method, and then translate that sequence into the song&#8217;s underlying rhythm. i &#8230; <a href="http://blogs.gentoo.org/nightmorph/2012/12/18/music-made-with-gentoo-lost-letters/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>a new song: <a href="http://soundcloud.com/ioflow/lost-letters-disquiet0050">lost letters</a> by <a href="http://soundcloud.com/ioflow">ioflow</a></p>
<p><iframe width="100%" height="166" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F71676794&#038;show_artwork=true"></iframe></p>
<p>prepared improvisation for the 50th <a href="http://disquiet.com">disquiet</a> junto, <a href="http://disquiet.com/2012/12/13/disquiet0050-morsebeat/">morse beat</a>.</p>
<p>the assignment was to encode a word or phrase with the Morse method, and then translate that sequence into the song&#8217;s underlying rhythm.</p>
<p>i chose the meaning of my name, &#8220;the Lord is salvation.&#8221; i looked at the resulting <a href="http://morsecode.scphillips.com/jtranslator.html">dashes and dots</a> and treated them as sheet music, improvising a minor-key motif for piano, using just my right hand.</p>
<p>with the basic sketch recorded, i duplicated an excerpt and ran it through a vintage tape delay <a href="http://calf.sf.net/">effect</a>, putting it in the background almost like a loop. i set to work adding a few notes here and there, some of them reversed, running into more tape delays; contrasting their sonic character with the main melody. the loop excerpt repeats a few times, occasionally transformed by offset placement with the main theme, or reinforced by single note chord changes.</p>
<p>from a very few audio fragments, a mournful story emerged. echoing piano lines and uncovered memories. i did my best to vary the structure while keeping the mood and emotions, but this is still pretty hasty work; i only had a few minutes to arrange this piece before the deadline, due to software issues with <a href="http://ardour.org">ardour</a> 3 <a href="https://github.com/nightmorph/overnight/tree/master/media-sound/ardour">beta</a>. ardour crashes every time i attempt to process an audio clip, such as reversing or stretching it. i had to separately render those segments with <a href="http://renoise.com">renoise</a>, then import them to ardour.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gentoo.org/nightmorph/2012/12/18/music-made-with-gentoo-lost-letters/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>music made with gentoo: debris</title>
		<link>http://blogs.gentoo.org/nightmorph/2012/12/03/music-made-with-gentoo-debris/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://blogs.gentoo.org/nightmorph/2012/12/03/music-made-with-gentoo-debris/#comments</comments>
		<pubDate>Tue, 04 Dec 2012 07:29:48 +0000</pubDate>
		<dc:creator>nightmorph</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[paulstretch]]></category>
		<category><![CDATA[renoise]]></category>

		<guid isPermaLink="false">http://blogs.gentoo.org/nightmorph/?p=514</guid>
		<description><![CDATA[a new song: debris by ioflow reworking music from three netlabel releases, for the 48th disquiet junto, fraternité, dérivé. a last-minute contribution to this junto. i was in a car wreck a couple days ago, so abruptly my planned participation &#8230; <a href="http://blogs.gentoo.org/nightmorph/2012/12/03/music-made-with-gentoo-debris/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>a new song: <a href="http://soundcloud.com/ioflow/debris-disquiet0048">debris</a> by <a href="http://soundcloud.com/ioflow">ioflow</a></p>
<p><iframe width="100%" height="166" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F69912458&amp;auto_play=false&amp;show_artwork=true&amp;color=ff7700"></iframe></p>
<p>reworking music from three netlabel releases, for the 48th <a href="http://disquiet.com">disquiet</a> junto, <a href="http://disquiet.com/2012/11/29/disquiet0048-libertederive/">fraternité, dérivé</a>.</p>
<p>a last-minute contribution to this junto. i was in a car wreck a couple days ago, so abruptly my planned participation time was reduced to just a day and a half. i could only spend a little while per session sitting at the DAW. the track&#8217;s title is a reference to that event.</p>
<p>everything was sequenced with <a href="http://renoise.com">renoise</a>, as seen in the screenshot.</p>
<p>the three <a href="http://threelegsduck.bandcamp.com">source</a> tracks were very hard to work with; this was easily the hardest junto i&#8217;ve attempted. i had to make several passes through the tracks, pulling out tiny sub-one-second sections here and there, building up percussion, or finding a droney passages that would work for background material.</p>
<p>for the percussion, i zoomed in and grabbed pieces of non-tonal audio, gated them to remove incidental noise, and checked playback at other speeds for useful sounds. some of the samples were doubly useful with different filter and speed settings. most of the percussion sounds were created after isolating one channel or mixing down to mono; this gave a sharper, clickier sound. occasionally, some of the hits/sticks were left in stereo for a slightly fuller sound.</p>
<p>the melody/drone passages were all pulled from the &#8220;unloop&#8221; track. i chopped out a short section of mostly percussion-free sound at the beginning of the song, isolated one channel, and ran this higher-pitched drone into <a href="http://hypermammut.sourceforge.net/paulstretch">paulstretch</a>, stretched to 50x. i played with the bandwidth and noise/tone sliders to get the distinctive crystalline sound, rendering it a few more times. by playing this tone at different speeds using renoise&#8217;s basic sample editor, i was able to layer octaves, fading different copies of the sample in and out for some evolving harmonics as desired.</p>
<p>a signal follower attached to the low-passed kick drum flexed the drone&#8217;s volume on the beat, adding some liveliness, resulting in a pleasant low-key &#8220;bloom pads&#8221; effect. i don&#8217;t go for huge sidechain compression; just a touch is all that&#8217;s needed to reinforce the rhythm. a slow LFO set to &#8220;random&#8221; mode, attached to a bitcrusher, downgraded the clap sounds with some pleasant crunch.</p>
<p><a href="http://calf.sf.net/">calf</a> reverb and vintage tape delay plugins rounded out the FX, with the percussion patterns treated liberally, resulting in some complex sounds despite simple arrangement. the only other effect was a tape warmth plugin on the master channel; everything was kept quite minimal, for aesthetic and time reasons. given that i only had a day or so to work on the track, i knew i couldn&#8217;t try for too many complicated tricks or melodies.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.gentoo.org/nightmorph/2012/12/03/music-made-with-gentoo-debris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
