<?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>subtle detour</title>
	<atom:link href="http://blog.subtledetour.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.subtledetour.com</link>
	<description>subtly taking you off course since 2009</description>
	<lastBuildDate>Tue, 15 May 2012 20:08:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>CSS Media Queries</title>
		<link>http://blog.subtledetour.com/2012/03/31/css-media-queries/</link>
		<comments>http://blog.subtledetour.com/2012/03/31/css-media-queries/#comments</comments>
		<pubDate>Sat, 31 Mar 2012 04:49:21 +0000</pubDate>
		<dc:creator>e</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Media Queries]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[media query]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://blog.subtledetour.com/?p=157</guid>
		<description><![CDATA[Media Queries are a powerful feature of CSS 3 because they allow a single page to be readable on a variety of devices (pc, tablet, phone), all through targeted css stylesheets. By using simple rules, media queries will swap css stylessheets dynamically based on attributes like screen size and orientation. A great series of articles [...]]]></description>
			<content:encoded><![CDATA[<p>Media Queries are a powerful feature of CSS 3 because they allow a single page to be readable on a variety of devices (pc, tablet, phone), all through targeted css stylesheets.  By using simple rules, media queries will swap css stylessheets dynamically based on attributes like screen size and orientation.  A great <a href="http://www.adobe.com/devnet/dreamweaver/articles/introducing-media-queries.html" title="Introduction to media queries" target="_blank">series of articles</a> written by David Powers over at Adobe discuss how to effectively use media queries.  If you want a deep dive, read over the <a href="http://www.w3.org/TR/css3-mediaqueries/" title="W3C - Media Queries" target="_blank">W3C specification for CSS 3 media queries</a>.</p>
<p>Take an example: you want to target a screen size of 640 pixels or smaller.  Pay particular attention to the media attribute and the simple rule it contains:</p>
<pre class="brush: css; light: true; title: ; notranslate">
&lt;link href=&quot;small.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;
	media=&quot;only screen (max-width: 640px)&quot;&gt;
</pre>
</p>
<p style="padding: 0;"><span id="more-157"></span></p>
<h3 style="margin-top: 0;">IE 8 and below support</h3>
<p>
IE 8 and below do not support media queries naively, but they do support conditional stylesheets (this method could be used to conditionally load other things, like javascript files) through the use of special, IE-specific comment tags in HTML code:
<pre class="brush: css; light: true; title: ; notranslate">
&lt;!--[if lt IE 9]&gt;
	&lt;link href=&quot;ie8.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;
&lt;![endif]--&gt;
</pre>
<p>If you want to read up more on this, like how to target specific versions of IE, head to <a href="http://css-tricks.com/how-to-create-an-ie-only-stylesheet/" title="How To Create an IE-Only Stylesheet" target="_blank">this CSS-tricks article</a>.
</p>
<h3 style="margin-top: 0;">A real world example</h3>
<p>
Here is something a bit more complicated: targeting multiple devices and their orientations.  Now, I&#8217;m not saying that all those min/max widths are exactly correct for those particular devices, but media queries used to target them might look like this (note the highlighted lines):
<pre class="brush: css; highlight: [9,11,15,17,21,25]; light: true; title: ; notranslate">
&lt;!-- Force mobile devices to report their true pixel dimensions --&gt;
&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;

&lt;!-- Base CSS --&gt;
&lt;link href=&quot;basic.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;

&lt;! -- Phone Support --&gt;
&lt;link href=&quot;phone.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;
	media=&quot;only screen and (max-width: 320px)&quot;&gt;
&lt;link href=&quot;phoneLandscape.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;
	media=&quot;only screen (max-width: 480px) and (orientation: landscape)&quot;&gt;

&lt;! -- iPhone 4 Support --&gt;
&lt;link href=&quot;iphone4.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;
	media=&quot;only screen (min-width: 481px) and (max-width: 640px)&quot;&gt;
&lt;link href=&quot;iphone4Landscape.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;
	media=&quot;only screen (min-width: 481px) and (max-width: 960px) and (orientation: landscape)&quot;&gt;

&lt;! -- Tablet Support --&gt;
&lt;link href=&quot;tablet.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;
	media=&quot;only screen and (min-width: 641px) and (max-width: 768px)&quot;&gt;

&lt;! -- Web Support --&gt;
&lt;link href=&quot;web.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;
	media=&quot;only screen and (min-width: 769px)&quot;&gt;

&lt;!-- IE 6/7/8 Support --&gt;
&lt;!--[if lt IE 9]&gt;
	&lt;link href=&quot;ie.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;
&lt;![endif]--&gt;
</pre>
</p>
<h3 style="margin-top: 0;">Issues with mobile browsers</h3>
<p>Mobile browsers pull some trickery because they don&#8217;t report their true screen dimensions.  Android (which hopefully will turn into <a href="http://www.google.com/chrome/android/" title="Chrome for Android" target="_blank">Chrome for Android</a>), Mobile Safari, and IE Mobile set their widths to ~1000 pixels regardless if the page is smaller (mobile safari is 980 pixels, ie mobile is 1024 pixels).  This means you&#8217;re not getting an accurate count of their pixel dimensions.</p>
<p>Thankfully there&#8217;s a simple solution. Apple created a meta tag to quash the disconnect media queries have between mobile and desktop browsers.  Even better, this solution has for the most part been adopted by other mobile device manufacturers and has even been added to the W3C editor&#8217;s draft specification.</p>
<p>Add the following meta tag to the &lt;head&gt; of your page:
<pre class="brush: css; light: true; title: ; notranslate">&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;</pre>
</p>
<h3 style="margin-top: 0;">Media Queries and Javascript</h3>
<p>Media queries aren&#8217;t exclusive to just stylesheets either.  Javascript is fully capable of using media queries like events to execute code once the query rules are met.  That opens up a lot of possibilities, but I&#8217;ll have to save that discussion for another post. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.subtledetour.com/2012/03/31/css-media-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Fonts (@font-face)</title>
		<link>http://blog.subtledetour.com/2012/03/30/web-fonts-font-face/</link>
		<comments>http://blog.subtledetour.com/2012/03/30/web-fonts-font-face/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 15:40:57 +0000</pubDate>
		<dc:creator>e</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Fonts]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[web fonts]]></category>

		<guid isPermaLink="false">http://blog.subtledetour.com/?p=134</guid>
		<description><![CDATA[I wanted to replace the left hand menu header images with CSS-based fonts (web fonts = eot, WOFF, ttf and svg) to implement media queries and to follow best practices.  In addition, now we can use fonts which aren&#8217;t natively on a user&#8217;s device, allowing for a more unique feel to the site. To learn [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to replace the left hand menu header images with CSS-based fonts (web fonts = <a href="http://en.wikipedia.org/wiki/Embedded_OpenType" title="Embedded OpenType" target="_blank"><br />
eot</a>, <a href="http://en.wikipedia.org/wiki/Web_Open_Font_Format" title="Web Open Font Format" target="_blank">WOFF<a/>, <a href="http://en.wikipedia.org/wiki/TrueType" title="TrueType" target="_blank">ttf</a> and <a href="http://en.wikipedia.org/wiki/Web_typography#Scalable_Vector_Graphics" title="Scalable Vector Graphics" target="_blank">svg</a>) to implement media queries and to follow best practices.  In addition, now we can use fonts which aren&#8217;t natively on a user&#8217;s device, allowing for a more unique feel to the site.  To learn about all the new web font standards, head over <a href="http://en.wikipedia.org/wiki/Web_typography" title="Web Typography" target="_blank">here</a> and read up on it.</p>
<p>A great resource to find free web fonts is <a title="font squirrel" href="http://www.fontsquirrel.com/" target="_blank">fontsquirrel</a>. They also have a nifty <a title="font squirrel generator" href="http://www.fontsquirrel.com/fontface/generator" target="_blank">generator</a> to help you get started.</p>
<p>Follow these steps to start taking advantage of the new web fonts standard&#8230;</p>
<p style="padding: 0;"><span id="more-134"></span></p>
<ul>
<li><b>Upload your web fonts to your site</b></li>
<li><b>Add @font-face declarations to your stylesheet</b>
<p>Using the @font-face CSS declaration correctly (multiple srcs) allows the various browsers to select the appropriate font without causing you a bunch of headaches or extra code. You can learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax" title="Bulletproof Method" target="_blank">Fontspring blog post</a> on it.</p>
<p>The code for it is as follows:
<pre class="brush: css; light: true; title: ; notranslate">
@font-face{
	font-family: 'CoolFont';
	src: url('CoolFont.eot');
	src: url('CoolFont.eot?#iefix') format('embedded-opentype'),
		url('CoolFont.woff') format('woff'),
		url('CoolFont.ttf') format('truetype'),
		url('CoolFont.svg#webfont') format('svg');
}
</pre>
</li>
<li><b>Reference web fonts in your CSS</b>
<p>Now comes the easy part, referencing the new font declaration from above.  Just as you would normally define which fonts to use through CSS, you can now reference your custom web font via its <i>font-family</i> attribute.</p>
<p>Example:
<pre class="brush: css; light: true; title: ; notranslate">
p { font-family: 'CoolFont', Arial, sans-serif; }
</pre>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.subtledetour.com/2012/03/30/web-fonts-font-face/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Semantics and Structure</title>
		<link>http://blog.subtledetour.com/2012/03/29/semantics-and-structure/</link>
		<comments>http://blog.subtledetour.com/2012/03/29/semantics-and-structure/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 17:04:31 +0000</pubDate>
		<dc:creator>e</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[Semantics]]></category>
		<category><![CDATA[html 5]]></category>
		<category><![CDATA[semantics]]></category>

		<guid isPermaLink="false">http://blog.subtledetour.com/?p=151</guid>
		<description><![CDATA[The first version of this blog design, done in 2009, was really just a way for me to get familiar with CSS and jQuery (to make cars go up and down the side of the page). As time has gone on, I&#8217;ve become more and more interested in HTML 5 / CSS 3 and the [...]]]></description>
			<content:encoded><![CDATA[<p>The first version of this blog design, done in 2009, was really just a way for me to get familiar with CSS and jQuery (to make cars go up and down the side of the page).  As time has gone on, I&#8217;ve become more and more interested in HTML 5 / CSS 3 and the huge usability benefits it has brought.  Now that I&#8217;ve decided to rework the site to take advantage of HTML 5 / CSS 3, peeking at my page structure and stylesheets made me cringe.  Organization was messy, not semantic at all and ridden with unused styles.  It&#8217;s okay&#8230;I was younger then and in a period of experimentation.</p>
<p>A very important part of using the new features of HTML 5 is to have a well organized, semantically correct page.  You see that menu on the left?&#8230;completely reorganized the structure, incorporating the <a href="http://html5doctor.com/nav-element/" title="Semantic navigation with the nav element" target="_blank">&lt;nav&gt;</a> tag, and then used <a href="/2012/03/31/media-queries/" title="media queries">media queries</a> to change the styles.</p>
<p style="padding: 0;"><span id="more-151"></span></p>
<p>You might be asking yourself if web semantics really matter.  Well, they do&#8230;in my opinion.  If you don&#8217;t think about the page structure and semantics, then you will end up like me, having to re-work your menu to take advantage of new features you hadn&#8217;t even considered back then.  Think of it as maintainability and future planning.  Once your page is structured semantically and in a meaningful way, you add more context to the content you&#8217;re serving (even if the majority of viewers are unaware).  The more context you provide, the more possibilities are opened for your content to be used, even in ways you haven&#8217;t thought of yet.</p>
<p>HTML 5 has added over 30 tags to play with, which brings the total number to over 100.  So go ahead and switch your blog posts to use the <a href="http://html5doctor.com/the-article-element/" title="The article element" target="_blank">&lt;article&gt;</a> tag or use the <a href="http://html5doctor.com/the-address-element/" title="The address element" target="_blank">&lt;address&gt;</a> tag for contact information.</p>
<h3>Web Semantics and Structure Resources</h3>
<ul>
<li><a href="http://html5doctor.com/" title="HTML 5 Doctor" target="_blank">HTML 5 Doctor</a> &#8211; View all the HTML 5 tags and get info on how use them.</li>
<li><a href="http://coding.smashingmagazine.com/2011/11/18/html5-semantics/" title="Smashing Magazine - HTML5 Semantics" target="_blank">Smashing Magazine &#8211; HTML5 Semantics article</a></li>
<li><a href="http://www.adobe.com/devnet/dreamweaver/articles/understanding-html5-semantics.html" title="Adobe - Understanding HTML5 Semantics" target="_blank">Adobe &#8211; Understanding HTML5 Semantics article</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.subtledetour.com/2012/03/29/semantics-and-structure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design conversion with HTML 5 and CSS 3</title>
		<link>http://blog.subtledetour.com/2012/03/28/design-conversion-with-html-5-and-css-3/</link>
		<comments>http://blog.subtledetour.com/2012/03/28/design-conversion-with-html-5-and-css-3/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 03:33:34 +0000</pubDate>
		<dc:creator>e</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[html 5]]></category>
		<category><![CDATA[redesign]]></category>

		<guid isPermaLink="false">http://blog.subtledetour.com/?p=130</guid>
		<description><![CDATA[Detailing the reconstruction of the blog design to take advantage of HTML 5 / CSS 3 techniques. convert menu headers from images to @font-face (WOFF &#38; eot) streamline html semantics and structure to be able to take advantage of CSS 3 techniques implement media queries for desktop / mobile experience change right hand vehicles from jQuery [...]]]></description>
			<content:encoded><![CDATA[<p>Detailing the reconstruction of the blog design to take advantage of HTML 5 / CSS 3 techniques.</p>
<ul>
<li>convert menu headers from images to @font-face (WOFF &amp; eot)</li>
<li>streamline html semantics and structure to be able to take advantage of CSS 3 techniques</li>
<li>implement media queries for desktop / mobile experience</li>
<li>change right hand vehicles from jQuery CSS div animations to canvas/svg animations</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.subtledetour.com/2012/03/28/design-conversion-with-html-5-and-css-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loop through SharePoint Profiles</title>
		<link>http://blog.subtledetour.com/2010/02/04/loop-through-sharepoint-profiles/</link>
		<comments>http://blog.subtledetour.com/2010/02/04/loop-through-sharepoint-profiles/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 16:54:19 +0000</pubDate>
		<dc:creator>e</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[profiles]]></category>

		<guid isPermaLink="false">http://blog.subtledetour.com/?p=52</guid>
		<description><![CDATA[Simple code sample showing how to retrieve profiles and their properties from a SharePoint site. Note: This code is relevant only if you&#8217;re running it on the SharePoint box, ie: web part, console app. If you need to access profiles outside of the box, use web services, as detailed by Michael Bowersox&#8217;s post. Microsoft.Office.Server.UserProfiles reference. [...]]]></description>
			<content:encoded><![CDATA[<p>Simple code sample showing how to retrieve profiles and their properties from a SharePoint site.</p>
<p>Note:</p>
<ul>
<li>This code is relevant only if you&#8217;re running it on the SharePoint box, ie: web part, console app.  If you need to access profiles outside of the box, use web services, as detailed by Michael Bowersox&#8217;s <a target="_blank" href="http://www.michaelbowersox.com/tag/sharepoint-user-profiles/">post</a>.</li>
<li>Microsoft.Office.Server.UserProfiles reference.</li>
<li>Instantiate the UserProfileManager with your site context.</li>
<li>PropertyConstants for retrieval of pre-defined properties.  Every profile has a handful of standard properties, but check to make sure the property contains data to avoid a possible null reference exception.</li>
<li>Replace PropertyConstants with custom property name to get your custom properties.</li>
</ul>
<p style="padding: 5px 0 0;"><span id="more-52"></span></p>
<pre class="brush: csharp; gutter: true; highlight: [1,20,21,24,27]; title: ; notranslate">
using Microsoft.Office.Server.UserProfiles;

// Code Block for Profile Loop
using (SPSite site = new SPSite(spURL))
{
    try
    {
        // Get our context and the profile manager object
        ServerContext context = ServerContext.GetContext(site);
        UserProfileManager profileManager = new UserProfileManager(context);

        // Define our holder strings
        string firstName = string.Empty, lastName = string.Empty;
        string department = string.Empty, customProperty = string.Empty;

        // Loop through each user in the profile manager
        foreach (UserProfile user in profileManager)
        {
            // grab the first and last name
            firstName = user[PropertyConstants.FirstName].Count &gt; 0 ? user[PropertyConstants.FirstName].ToString() : string.Empty;
            lastName = user[PropertyConstants.LastName].Count &gt; 0 ? user[PropertyConstants.LastName].ToString() : string.Empty;

            // grab the department
            department = user[PropertyConstants.Department].Count &gt; 0 ? user[PropertyConstants.Department].ToString() : string.Empty;

            // grab a custom property
            customProperty = user[&quot;Custom Property Name&quot;].Count &gt; 0 ? user[&quot;Custom Property Name&quot;].ToString() : string.Empty;
         }
    }
    catch (Exception ex)
    {
        HandleException(ex);
    }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.subtledetour.com/2010/02/04/loop-through-sharepoint-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eric C &#8211; TripHopHipHop</title>
		<link>http://blog.subtledetour.com/2009/08/11/eric-c-triphophiphop/</link>
		<comments>http://blog.subtledetour.com/2009/08/11/eric-c-triphophiphop/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 14:58:44 +0000</pubDate>
		<dc:creator>e</dc:creator>
				<category><![CDATA[Mixes]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[hip-hop]]></category>
		<category><![CDATA[mix]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[trip-hip]]></category>

		<guid isPermaLink="false">http://blog.subtledetour.com/?p=40</guid>
		<description><![CDATA[Here is a little mix that I did, which I plan to expand into a 60 minner&#8230;sometime.]]></description>
			<content:encoded><![CDATA[<p>Here is a little mix that I did, which I plan to expand into a 60 minner&#8230;sometime.</p>
<p class="audio">	<audio id="wp_mep_1" controls="controls" type="audio/mp3" preload="none" class="mejs-player " data-mejsoptions='{"features":["playpause","current","progress","duration","volume","tracks","fullscreen"],"audioWidth":400,"audioHeight":30}'>
		<source src="http://subtledetour.com/music/mixes/eric_c-triphophiphop.mp3" type="audio/mp3" />
		<object width="400" height="30" type="application/x-shockwave-flash" data="http://blog.subtledetour.com/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf">
			<param name="movie" value="http://blog.subtledetour.com/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf" />
			<param name="flashvars" value="controls=true&amp;file=http://subtledetour.com/music/mixes/eric_c-triphophiphop.mp3" />			
		</object>		
	</audio></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.subtledetour.com/2009/08/11/eric-c-triphophiphop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://subtledetour.com/music/mixes/eric_c-triphophiphop.mp3" length="43154998" type="audio/mpeg" />
		</item>
		<item>
		<title>Massive Attack &#8211; Teardrop Loop</title>
		<link>http://blog.subtledetour.com/2009/04/08/massive-attack-teardrop-loop/</link>
		<comments>http://blog.subtledetour.com/2009/04/08/massive-attack-teardrop-loop/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 04:39:41 +0000</pubDate>
		<dc:creator>e</dc:creator>
				<category><![CDATA[Loops]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[massive attack]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[teardrop]]></category>

		<guid isPermaLink="false">http://blog.subtledetour.com/?p=18</guid>
		<description><![CDATA[Another loop I made for a ringtone&#8230;]]></description>
			<content:encoded><![CDATA[<p>Another loop I made for a ringtone&#8230;</p>
<p class="audio">	<audio id="wp_mep_2" controls="controls" type="audio/mp3" preload="none" class="mejs-player " data-mejsoptions='{"features":["playpause","current","progress","duration","volume","tracks","fullscreen"],"audioWidth":400,"audioHeight":30}'>
		<source src="http://subtledetour.com/music/loops/massive_attack_-_teardrop_loop.mp3" type="audio/mp3" />
		<object width="400" height="30" type="application/x-shockwave-flash" data="http://blog.subtledetour.com/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf">
			<param name="movie" value="http://blog.subtledetour.com/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf" />
			<param name="flashvars" value="controls=true&amp;file=http://subtledetour.com/music/loops/massive_attack_-_teardrop_loop.mp3" />			
		</object>		
	</audio></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.subtledetour.com/2009/04/08/massive-attack-teardrop-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://subtledetour.com/music/loops/massive_attack_-_teardrop_loop.mp3" length="1799617" type="audio/mpeg" />
		</item>
		<item>
		<title>MC 900 Ft Jesus &#8211; If I Only Had a Brain Loop</title>
		<link>http://blog.subtledetour.com/2009/04/06/mc-900-ft-jesus_-_if-i-only-had-a-brain-loop/</link>
		<comments>http://blog.subtledetour.com/2009/04/06/mc-900-ft-jesus_-_if-i-only-had-a-brain-loop/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 04:10:44 +0000</pubDate>
		<dc:creator>e</dc:creator>
				<category><![CDATA[Loops]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://blog.subtledetour.com/?p=13</guid>
		<description><![CDATA[Here is a loop I did for my iPhone.  All members of triphopclan get this ringtone.]]></description>
			<content:encoded><![CDATA[<p>Here is a loop I did for my iPhone.  All members of <a title="TripHop Clan" href="http://www.triphopclan.com" target="_blank">triphopclan</a> get this ringtone.</p>
<p class="audio">	<audio id="wp_mep_3" controls="controls" type="audio/mp3" preload="none" class="mejs-player " data-mejsoptions='{"features":["playpause","current","progress","duration","volume","tracks","fullscreen"],"audioWidth":400,"audioHeight":30}'>
		<source src="http://subtledetour.com/music/loops/mc_900_ft_jesus-if_i_only_had_a_brain_loop.mp3" type="audio/mp3" />
		<object width="400" height="30" type="application/x-shockwave-flash" data="http://blog.subtledetour.com/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf">
			<param name="movie" value="http://blog.subtledetour.com/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf" />
			<param name="flashvars" value="controls=true&amp;file=http://subtledetour.com/music/loops/mc_900_ft_jesus-if_i_only_had_a_brain_loop.mp3" />			
		</object>		
	</audio></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.subtledetour.com/2009/04/06/mc-900-ft-jesus_-_if-i-only-had-a-brain-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://subtledetour.com/music/loops/mc_900_ft_jesus-if_i_only_had_a_brain_loop.mp3" length="1207602" type="audio/mpeg" />
		</item>
		<item>
		<title>First Loop</title>
		<link>http://blog.subtledetour.com/2009/04/05/my-loop/</link>
		<comments>http://blog.subtledetour.com/2009/04/05/my-loop/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 01:48:31 +0000</pubDate>
		<dc:creator>e</dc:creator>
				<category><![CDATA[Loops]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://blog.subtledetour.com/?p=5</guid>
		<description><![CDATA[Here is a little loop I did back in 1995 when I was messing around with Soundforge 4.5]]></description>
			<content:encoded><![CDATA[<p>Here is a little loop I did back in 1995 when I was messing around with Soundforge 4.5</p>
<p class="audio">	<audio id="wp_mep_4" controls="controls" type="audio/mp3" preload="none" class="mejs-player " data-mejsoptions='{"features":["playpause","current","progress","duration","volume","tracks","fullscreen"],"audioWidth":400,"audioHeight":30}'>
		<source src="http://subtledetour.com/music/loops/e_-_loop.mp3" type="audio/mp3" />
		<object width="400" height="30" type="application/x-shockwave-flash" data="http://blog.subtledetour.com/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf">
			<param name="movie" value="http://blog.subtledetour.com/wp-content/plugins/media-element-html5-video-and-audio-player/mediaelement/flashmediaelement.swf" />
			<param name="flashvars" value="controls=true&amp;file=http://subtledetour.com/music/loops/e_-_loop.mp3" />			
		</object>		
	</audio></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.subtledetour.com/2009/04/05/my-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://subtledetour.com/music/loops/e_-_loop.mp3" length="211155" type="audio/mpeg" />
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Object Caching 622/700 objects using disk: basic

Served from: blog.subtledetour.com @ 2012-05-20 23:22:20 -->
