<?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>biotext.org.uk &#187; music</title>
	<atom:link href="http://biotext.org.uk/tag/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://biotext.org.uk</link>
	<description>Not a typewriter</description>
	<lastBuildDate>Sat, 05 Feb 2011 14:18:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Maschinenfest 2010 highlights</title>
		<link>http://biotext.org.uk/maschinenfest-2010-highlights/</link>
		<comments>http://biotext.org.uk/maschinenfest-2010-highlights/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 09:49:32 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[maschinenfest]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://biotext.org.uk/?p=543</guid>
		<description><![CDATA[My Maschinenfest roundup, featuring my top five acts of the festival &#8212; Frl. Linientreu, Matta, Niveau Zero, Subheim and Architect &#8212; is online now at Connexion Bizarre.]]></description>
			<content:encoded><![CDATA[<p><a href="http://biotext.org.uk/wp-content/uploads/2010/11/mf2010.jpg"><img class="alignright size-full wp-image-544" title="mf2010" src="http://biotext.org.uk/wp-content/uploads/2010/11/mf2010.jpg" alt="" width="250" height="64" /></a>My <a href="http://maschinenfest.cenobytes.net/">Maschinenfest</a> roundup, featuring my top five acts of the festival &#8212; Frl. Linientreu, Matta, Niveau Zero, Subheim and Architect &#8212; is <a href="http://www.connexionbizarre.net/architect-frl-linientreu-matta-niveau-zero-subheim-andrews-mf-roundup">online now at Connexion Bizarre</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://biotext.org.uk/maschinenfest-2010-highlights/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Spotify on Fedora 13</title>
		<link>http://biotext.org.uk/installing-spotify-on-fedora-13/</link>
		<comments>http://biotext.org.uk/installing-spotify-on-fedora-13/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 11:52:55 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[spotify]]></category>

		<guid isPermaLink="false">http://biotext.org.uk/?p=496</guid>
		<description><![CDATA[I&#8217;ve recently taken possession of a flashy new workstation running Fedora, and with joy in my heart went to install Spotify on it, only to discover&#8230; Noooo&#8230; They only offer .deb packages for Debian and Ubuntu. Thankfully, the solution was easier than I thought. Do all the following as root&#8230; 1. Install dpkg, the Debian [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently taken possession of a flashy new workstation running Fedora, and with joy in my heart went to install <a href="http://www.spotify.com/uk/download/previews/">Spotify</a> on it, only to discover&#8230; Noooo&#8230; They only offer .deb packages for Debian and Ubuntu.</p>
<p>Thankfully, the solution was easier than I thought. Do all the following as root&#8230;</p>
<p>1. Install dpkg, the Debian package management tool:</p>
<p><code>yum install dpkg</code></p>
<p>2. Download the base package for your architecture, and the gnome support package, from here:</p>
<p><a href="http://repository.spotify.com/pool/non-free/s/spotify/">http://repository.spotify.com/pool/non-free/s/spotify/</a></p>
<p>3. Create a temp directory, and unpack them there (we want to check for clashes):</p>
<p><code>mkdir spotify<br />
cd spotify<br />
dpkg -x ../spotify-client-qt_0.4.7.132.g9df34c0-1_amd64.deb .<br />
dpkg -x ../spotify-client-gnome-support_0.4.7.132.g9df34c0-1_all.deb .</code></p>
<p>4. This gives you a directory tree starting at <code>/usr</code>. You can check for clashes like this:</p>
<p><code>find -not -type d -exec ls -l /'{}' \;</code></p>
<p>&#8230; and make sure there&#8217;s no files found.</p>
<p>5. Then re-extract them into your root partition (hence checking for clashes first):</p>
<p><code>dpkg -x ../spotify-client-qt_0.4.7.132.g9df34c0-1_amd64.deb /<br />
dpkg -x ../spotify-client-gnome-support_0.4.7.132.g9df34c0-1_all.deb /</code></p>
<p>6. Finally, we need to manually install qt-x11 as this dependency is needed:</p>
<p><code>yum install qt-x11</code></p>
<p>7. Then just type <code>spotify</code> and log in!</p>
<p>Seems pretty stable so far, apart from a couple of minor glitches.</p>
<p><strong>EDIT:</strong> As suggested by Tyson Key in <a href="http://getsatisfaction.com/spotify/topics/spotify_on_fedora_13_audio_skips">this thread</a>, I got rid of the audio glitches by starting the PulseAudio volume control (<code>/usr/bin/pavucontrol</code>) before Spotify. Maybe this adds some buffering or something.</p>
<p><em>N.B. I take no responsibility if this process damages your computer, your music collection, your hearing or your sanity. Try at your own risk :-)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://biotext.org.uk/installing-spotify-on-fedora-13/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Drones Club, 24th April 2009</title>
		<link>http://biotext.org.uk/drones-club-24th-april-2009/</link>
		<comments>http://biotext.org.uk/drones-club-24th-april-2009/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 10:25:22 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://biotext.org.uk/?p=346</guid>
		<description><![CDATA[Think electronica, think punk attitude&#8230;]]></description>
			<content:encoded><![CDATA[<div id="attachment_350" class="wp-caption aligncenter" style="width: 215px"><a href="http://biotext.org.uk/wp-content/uploads/2009/04/drones.jpg"><img class="size-medium wp-image-350" title="Drones Club April 2009" src="http://biotext.org.uk/wp-content/uploads/2009/04/drones-205x300.jpg" alt="[click for bigger]" width="205" height="300" /></a><p class="wp-caption-text">(click for bigger)</p></div>
<p><em>Think electronica, think punk attitude&#8230;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://biotext.org.uk/drones-club-24th-april-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music reviews &#8212; Heft, Scaffolding, CacheFlow</title>
		<link>http://biotext.org.uk/music-reviews-heft-scaffolding-cacheflow/</link>
		<comments>http://biotext.org.uk/music-reviews-heft-scaffolding-cacheflow/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 13:26:06 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://biotext.org.uk/?p=223</guid>
		<description><![CDATA[A couple of EP reviews I&#8217;ve written recently for Connexion Bizarre&#8230; Andrew. Heft vs. Scaffolding &#8211; We Will Diminish The first release on the Plastic Sound Supply label &#8212; currently available for free from the label&#8217;s website! &#8212; this four-tracker contains one dancefloor number and one more experimental track from each act. &#8216;Dose&#8217; and &#8216;Mound&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of EP reviews I&#8217;ve written recently for <a href="http://www.connexionbizarre.net/">Connexion Bizarre</a>&#8230;</p>
<p>Andrew.</p>
<p><a href="http://www.connexionbizarre.net/reviews/r_va_wwd.htm">Heft vs. Scaffolding &#8211; <em>We Will Diminish</em></a></p>
<p>The first release on the Plastic Sound Supply label &#8212; currently available for free from the label&#8217;s website! &#8212; this four-tracker contains one dancefloor number and one more experimental track from each act. &#8216;Dose&#8217; and &#8216;Mound&#8217; are both 4-to-the-floor brain techno in the 130 BPM area, which (perhaps not coincidentally) mix into each other rather nicely. The former (Heft&#8217;s track) pushes the envelope a little further, mashing the beats up occasionally to resemble whatever the techno equivalent of breakcore would be.</p>
<p>The other two tracks are complete departures compared to the relative orthodoxy of the two club tunes. Scaffolding&#8217;s &#8216;Attempt&#8217; sounds a little like Broken Note&#8217;s ambient builds, with occasional spare machine beats punctuating a thoroughly apocalyptic electronic soundscape. You can imagine music like this to be the cornerstone of Skynet&#8217;s internal playlist while it crushes the puny human rebellion.  Heft&#8217;s &#8216;Waves Upon Waves&#8217;, on the other hand, sets a sensuous female vocalist to a sinister, slightly glitchy but huge and melodramatic trip-hop beat. Think Recoil, lightly remixed by Funkstörung.</p>
<p>Both artists are faultlessly professional, and the label deserves cred for putting two very leftfield tracks on the same release as two much more conventional slices of DJ fodder. And then giving it away for free&#8230;</p>
<p><a href="http://www.connexionbizarre.net/reviews/r_cacheflowe_csq.htm">CacheFlowe &#8211; <em>Cache, Stacks &amp; Queues EP</em></a></p>
<p>Hailing from Colorado, via the Plastic Sound Supply label, CacheFlow makes hip-hop-tinged dubstep, avoiding the dirtier fringes of that genre in favour of more rounded analogue-style sounds and futuristic IDM glitch-beats. This digital EP, available on CD soon, is a showcase for &#8216;FloweBot&#8217;, a collaboration with rapper Brer Rabbit of the Flobots. Four mixes are provided. Alongside the original and an instrumental dub, Starkey replaces the wobbly minimalism of the original mix with a more trebly hip-hop production style, and Machinedrum strips out all but the vocals and backs them with a downbeat loop-based arrangement.</p>
<p>Also included are three additional tracks. Oh! Dub explores a more traditional dub sound, with a double-speed rhythm that starts all garagey and ends up almost in ska territory. Crunch Dub is a little darker, retaining the glossy synth sounds, and Imperial Bombin&#8217; features pitched up vocal samples croaking about warfare over a lazy, almost horizontal backbeat. Given a 6 mainly for the forward-looking production, but it&#8217;s a all little too happy and major-key to really chime with me, despite plenty of opportunities to go much, much ruder.</p>
]]></content:encoded>
			<wfw:commentRss>http://biotext.org.uk/music-reviews-heft-scaffolding-cacheflow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slaughterhaus Five &#8212; Restoration</title>
		<link>http://biotext.org.uk/slaughterhaus-five-restoration/</link>
		<comments>http://biotext.org.uk/slaughterhaus-five-restoration/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 16:11:40 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://biotext.org.uk/?p=207</guid>
		<description><![CDATA[I will be DJing here in a few weeks (click for bigger): Slaughterhaus Five &#8212; Restoration 7th March 2009 Music from: Lydia Dischordia, Mark 13, Operon, Miss Glitch In the mix: Vex&#8217;d, Broken Note, Wasteland, Download, Scorn, Enduser, SPL, Antigen Shift, Mimetic, Black Lung, Shackleton, Architect etc. (that&#8217;s just from me) Visuals and performance: Lucha [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">I will be DJing here in a few weeks (click for bigger):</p>
<p style="text-align: center;"><a href="http://biotext.org.uk/wp-content/uploads/2009/02/07-03-2009-back.jpg"><img class="aligncenter size-medium wp-image-208" title="07-03-2009-back" src="http://biotext.org.uk/wp-content/uploads/2009/02/07-03-2009-back-212x300.jpg" alt="07-03-2009-back" width="212" height="300" /></a></p>
<p style="text-align: center;">Slaughterhaus Five &#8212; Restoration</p>
<p style="text-align: center;">7th March 2009</p>
<p style="text-align: center;">Music from:</p>
<p style="text-align: center;">Lydia Dischordia, Mark 13, Operon, Miss Glitch</p>
<p style="text-align: center;">In the mix: Vex&#8217;d, Broken Note, Wasteland, Download, Scorn, Enduser, SPL, Antigen Shift, Mimetic, Black Lung, Shackleton, Architect etc. (that&#8217;s just from me)</p>
<p style="text-align: center;"><span id="more-207"></span>Visuals and performance:</p>
<p style="text-align: center;">Lucha Britannia, Sophia Landi, Finite State</p>
<p style="text-align: center;">Venue:</p>
<p style="text-align: center;"><a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;friendID=258635751">Resistance Gallery</a>, 265 Poyser Street, London <a href="http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=e2+9rf&amp;sll=53.800651,-4.064941&amp;sspn=18.461747,56.601563&amp;ie=UTF8&amp;t=h&amp;z=16&amp;iwloc=addr">E2 9RF</a></p>
<p style="text-align: center;">£8 entrance, 9pm til late</p>
<p style="text-align: center;"><a href="http://biotext.org.uk/wp-content/uploads/2009/02/07-03-2009-front.jpg"><img class="aligncenter size-medium wp-image-209" title="07-03-2009-front" src="http://biotext.org.uk/wp-content/uploads/2009/02/07-03-2009-front-212x300.jpg" alt="07-03-2009-front" width="212" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://biotext.org.uk/slaughterhaus-five-restoration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

