<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Jordanairwave | Jordan Haines</title>
	
	<link>http://www.jordanairwave.co.uk</link>
	<description>Web Designer and DJ</description>
	<lastBuildDate>Sat, 18 Feb 2012 16:33:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Jordanairwave" /><feedburner:info uri="jordanairwave" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>SVG Graphics or Responsive Images</title>
		<link>http://feedproxy.google.com/~r/Jordanairwave/~3/DBcbF-mdcKU/</link>
		<comments>http://www.jordanairwave.co.uk/2012/02/18/svg-graphics-or-responsive-images/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 16:30:21 +0000</pubDate>
		<dc:creator>Jordanairwave</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.jordanairwave.co.uk/?p=1241</guid>
		<description><![CDATA[I wrote this post a few weeks ago and have now only got round to writing it so apologies for this. The hot topic at the moment in web design and development is mobile first and responsive design, Which is &#8230; <a href="http://www.jordanairwave.co.uk/2012/02/18/svg-graphics-or-responsive-images/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I wrote this post a few weeks ago and have now only got round to writing it so apologies for this.</p>
<p>The hot topic at the moment in web design and development is mobile first and responsive design, Which is great, I think responsive sites are the way forward and hopefully in the next few years can become a standard practise.  At the moment a lot of clients just want one size and are either not aware or cannot afford all the design work that goes in to designing all the different screen sizes which you need to support,  But that is another blog post all together, So is mobile first as well.</p>
<p>Ok back to responsive design, all great that the layout changes when your screen size is smaller or bigger, but the one big problem that I have not seen a clear answer for is what to do with about images and resizing them when your layout changes.</p>
<p>Looking around the Internet and reading blogs I have heard a lot about the graphics format SVG and and that this would be the answer to the problem but support as never been that good.  I thought I would give it a go and have a look deeper into SVG.</p>
<p><strong id="internal-source-marker_0.9384211909491569"></strong>I found a website <a href="http://www.svgbasics.com/">http://www.svgbasics.com/</a> which gave a lot of information about creating and coding SVG graphic, which if you do not know SVG graphics are made up of XML which allows SVG graphics to be re-sized easily and without distortion. But this is not really what I want, I want just to convert my image to SVG and be able to drop it in my site like I currently do.</p>
<p>Further research led me to a website where I could convert images, I tried converting a picture of daffy duck, while converting it to SVG the images when from colour to black and white???, No idea why but this led me to ditch the idea of using SVG, which is a shame because I really thought SVG would have been the way forward.</p>
<p>Back to the interwebs!!! Another way of handling images in responsive design is to use a container set to the image size that you want, you then place an img inside the container and set the width and height to 100%.  This means you just have to resize the container and then the image will follow as well.</p>
<p><strong id="internal-source-marker_0.9384211909491569">Responsive  Images</p>
<p></strong>A new technique that I have been reading about is called Responsive Images, This is where you just use the img tag, you set the src attribute to point to the mobile sized version of the image and then you set the data attribute to the normal sized image.  You code could look like this</p>
<p>img src=”images/mobile-size.jpg” data-fullscr=”images/desktop-size.jpg”</p>
<p>To get the img tag to show the correct image you would use Javascript to capture the screen size and then swap the source attribute depending on screen size.</p>
<p>This sounds great in till I found out that new browsers do something called image prefetching which means they start to load the images straight away, which causes the Javascript not to run.</p>
<p>This led me to scratch my head for a bit and all I found on the web is that some of the best minds on the web are working on this but there is no one correct way of doing it at the moment.</p>
<p><strong>The Future</strong><br />
The future is looking like the img tag is not going to be powerful enough, I have read in a few places over the web that we need a new tag. a picture tag, kind of like the video tag in HTML 5.  An example of what the picture tag could look like is:</p>
<p>picture<br />
	source src=”high-res.jpg” media=”min-width: 800px”<br />
	source src=”low-res.jpg”<br />
	img src=”mobile.jpg”<br />
picture</p>
<p>I should make clear that this tag does not exist at the moment but could be developed in the next few years.  I hope they do because a picture tag could be the answer to a big problem in the responsive design way of making sites.</p>
<p><strong>My answer for the time being</strong></p>
<p>At the moment there is no clear way of tackling this issue, so I would like to share they way I would do it at the moment.</p>
<p>First of all we do not use the IMG tag, we use a DIV tag instead and set the height and width then set the background image using CSS.</p>
<p>Using Media queries we can change the height and width and background image of the div, Now the only problem with this is that it is ok for static sites but for CMS based sites it is just not going to work, My answer to this is just to resize the image based on the screen size using media queries, Kind of like the way where we use a container div and img tag within that but I have just removed the container div.</p>
<p><strong>Conclusion</strong></p>
<p>So to finish up this long post, A new picture tag is needed and the img tag is just not powerful enough at the moment.  There is no real long term solution at the moment only short term hacks which I do not really like.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/8eNOcEGmmM3dUgQdNchemlVFTHI/0/da"><img src="http://feedads.g.doubleclick.net/~a/8eNOcEGmmM3dUgQdNchemlVFTHI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/8eNOcEGmmM3dUgQdNchemlVFTHI/1/da"><img src="http://feedads.g.doubleclick.net/~a/8eNOcEGmmM3dUgQdNchemlVFTHI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Jordanairwave/~4/DBcbF-mdcKU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jordanairwave.co.uk/2012/02/18/svg-graphics-or-responsive-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jordanairwave.co.uk/2012/02/18/svg-graphics-or-responsive-images/</feedburner:origLink></item>
		<item>
		<title>CSS3 Animations</title>
		<link>http://feedproxy.google.com/~r/Jordanairwave/~3/0_6JJavRgUw/</link>
		<comments>http://www.jordanairwave.co.uk/2012/01/07/css3-animations/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 23:09:09 +0000</pubDate>
		<dc:creator>Jordanairwave</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[CSS3 Animation]]></category>

		<guid isPermaLink="false">http://www.jordanairwave.co.uk/?p=1230</guid>
		<description><![CDATA[The first week back after the Christmas and New Year break and my first little project was to look at CSS3 animations. Two reasons for this, one, I have always wanted to find out more about CSS3 animation and have &#8230; <a href="http://www.jordanairwave.co.uk/2012/01/07/css3-animations/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The first week back after the Christmas and New Year break and my first little project was to look at CSS3 animations.  Two reasons for this, one, I have always wanted to find out more about CSS3 animation and have a play around with them, and two Langarth the company I work for are looking at ways to implement new technologies into our builds.</p>
<p>So lets begin!!!</p>
<p>CSS3 Animations means moving an object from one place to another, CSS3 Animations are slightly different from CSS3 Transitions as CSS3 Animations allows finer control over the animation.  Researching about the inter webs has led me to believe that people combine the two, but I feel that they are different.</p>
<p>In the post I will give an example of building a circle that changes colours like a rainbow over a period of time and then repeats.</p>
<p>So lets set up the HTML</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
</pre>
<pre><span class="html"><span class="html-other-element">&lt;section class=<span class="html-attribute">&quot;stage&quot;</span>&gt;</span>
    <span class="html-other-element">&lt;div class=<span class="html-attribute">&quot;circle1&quot;</span>&gt;</span><span class="html-other-element">&lt;/div&gt;</span>
<span class="html-other-element">&lt;/section&gt;</span></span></pre>
</div>
<p>All we have in the code above is a normal section tag with a div inside with a class of circle. That is all the HTML that we need. This code of course goes in between the body tag elements on your web page.</p>
<p>Now on to the CSS.  Before we can our div to change colour we first have to set up the animation at the top of our CSS file.   We do this by using the @keyframe tag followed by the name of the animation that we will use to call it later on.</p>
<p>The basic code for the @keyframe looks like this:</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre>
<pre><span class="css">@keyframes rainbow {
    0% {
        <span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FF0000</span></span>;
    }
    100% {
        <span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #8000FF</span></span>;
    }
<span class="css-media">}</span></span></pre>
</div>
<p>Now I should stress straight away that the code above is the way it should be written but at the moment vendor prefix will need to be used, which means writing the code out three times.</p>
<p>Now in our example we want our background colour of our div to change to different colours over a period of time so we have to set our different time periods.  The code is shown below:</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
</pre>
<pre><span class="css">@keyframes rainbow {
   0% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FF0000</span></span>;}
   10% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FF8000</span></span>;}
   20% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FFFF00</span></span>;}
   30% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #80FF00</span></span>;}
   40% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #00FF00</span></span>;}
   50% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #00FF80</span></span>;}
   60% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #00FFFF</span></span>;}
   70% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #0080FF</span></span>;}
   80% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #0000FF</span></span>;}
   90% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #8000FF</span></span>;}
   100% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FF0080</span></span>;}
 <span class="css-media">}</span></span></pre>
</div>
<p>Remember that we have to use vendor prefix at this time so we need to write them out again twice as shown below:</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
</pre>
<pre><span class="css">@<span class="css-property">-webkit-keyframes rainbow {
   0% {background-color<span class="css-selector">:</span><span class="css-value"> #FF0000</span></span>;}
   10% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FF8000</span></span>;}
   20% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FFFF00</span></span>;}
   30% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #80FF00</span></span>;}
   40% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #00FF00</span></span>;}
   50% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #00FF80</span></span>;}
   60% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #00FFFF</span></span>;}
   70% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #0080FF</span></span>;}
   80% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #0000FF</span></span>;}
   90% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #8000FF</span></span>;}
   100% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FF0080</span></span>;}
 <span class="css-media">}</span>

@<span class="css-property">-moz-keyframes rainbow {
   0% {background-color<span class="css-selector">:</span><span class="css-value"> #FF0000</span></span>;}
   10% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FF8000</span></span>;}
   20% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FFFF00</span></span>;}
   30% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #80FF00</span></span>;}
   40% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #00FF00</span></span>;}
   50% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #00FF80</span></span>;}
   60% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #00FFFF</span></span>;}
   70% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #0080FF</span></span>;}
   80% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #0000FF</span></span>;}
   90% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #8000FF</span></span>;}
   100% {<span class="css-property">background-color<span class="css-selector">:</span><span class="css-value"> #FF0080</span></span>;}
 <span class="css-media">}</span></span></pre>
</div>
<p>Now that we have the animations set up we need to apply them to our div, but first we need to set the div up and make it a circle.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre>
<pre><span class="css">.circle1 {
<span class="css-property">position<span class="css-selector">:</span><span class="css-value"> relative</span></span>;
<span class="css-property">border-radius<span class="css-selector">:</span><span class="css-value"> 50%</span></span>;
 <span class="css-property">-webkit-border-radius<span class="css-selector">:</span><span class="css-value"> 50%</span></span>;
 <span class="css-property">-moz-border-radius<span class="css-selector">:</span><span class="css-value"> 50%</span></span>;
<span class="css-property">border<span class="css-selector">:</span><span class="css-value"> 1px solid #000</span></span>;
<span class="css-property">height<span class="css-selector">:</span><span class="css-value"> 100px</span></span>;
<span class="css-property">width<span class="css-selector">:</span><span class="css-value"> 100px</span></span>;
}</span></pre>
</div>
<p>All the code above does is make a 100px by 100px div and turn it into a circle using border radius.  To attach the key frame animation to the div by using the animation-name css tag.  We also need to say how long we want the animation to run for during one cycle, We do this by using the animation-duration followed by a number in milli seconds, so for example 5000 would be 5 seconds.  They is also one other tag we need to use and that is the animation-iteration-count tag, this tag simply says how many times you want the animation to loop around, for out little example we are going to be setting this to infinite, which means the animation will keep looping.  The final tag we are going to be using is the animation-direction tag, which we set to alternate,  this tag tells the animation to reverse when it gets to the end point, which stops it from jumping from 100% to 0%, to the animation will run 0% to 100% for the first loop and then 100% to 0% for the second loop and carry on like that.  the CSS Code for our HTML Div is how below.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
</pre>
<pre><span class="css">.circle1 {
<span class="css-property">position<span class="css-selector">:</span><span class="css-value"> relative</span></span>;
<span class="css-property">border-radius<span class="css-selector">:</span><span class="css-value"> 50%</span></span>;
 <span class="css-property">-webkit-border-radius<span class="css-selector">:</span><span class="css-value"> 50%</span></span>;
 <span class="css-property">-moz-border-radius<span class="css-selector">:</span><span class="css-value"> 50%</span></span>;
<span class="css-property">border<span class="css-selector">:</span><span class="css-value"> 1px solid #000</span></span>;
<span class="css-property">height<span class="css-selector">:</span><span class="css-value"> 100px</span></span>;
<span class="css-property">width<span class="css-selector">:</span><span class="css-value"> 100px</span></span>;
<span class="css-property">-webkit-animation-name<span class="css-selector">:</span><span class="css-value"> rainbow</span></span>;
<span class="css-property">-webkit-animation-duration<span class="css-selector">:</span><span class="css-value"> 5000ms</span></span>;
<span class="css-property">-webkit-animation-iteration-count<span class="css-selector">:</span><span class="css-value"> infinite</span></span>;
<span class="css-property">-webkit-animation-direction<span class="css-selector">:</span><span class="css-value"> alternate</span></span>;
<span class="css-property">-moz-animation-name<span class="css-selector">:</span><span class="css-value"> rainbow</span></span>;
<span class="css-property">-moz-animation-duration<span class="css-selector">:</span><span class="css-value"> 5000ms</span></span>;
<span class="css-property">-moz-animation-iteration-count<span class="css-selector">:</span><span class="css-value"> infinite</span></span>;
<span class="css-property">-moz-animation-direction<span class="css-selector">:</span><span class="css-value"> alternate</span></span>;
animation-name: rainbow;
animation-duration: 5000ms;
animation-iteration-count: infinite;
animation-<span class="css-property">direction<span class="css-selector">:</span><span class="css-value"> alternate</span></span>;
}</span></pre>
</div>
<p>You can properly tell that once again you need to use vendor prefix which means typing it out three times.  This leads me on to browser support at the current time of this post, Well as you properly can guess the main players support CSS3 Animations.  Chrome, Firefox and Safari all support it at the moment, Opera does not support CSS3 Animation which I found shocking if I am honest.  Of course non of the Internet Explorer browsers support it, but it has been said that support is coming in IE10.</p>
<p>For the browsers that do not support CSS3 Animations you will have to either have static content or use Jquery and modernizr. </p>
<p>This was only a quick look at CSS3 Animations as I have been looking into it for the first week back.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/IGS52VQ6K33_29GhJPbqQeWe6Yk/0/da"><img src="http://feedads.g.doubleclick.net/~a/IGS52VQ6K33_29GhJPbqQeWe6Yk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/IGS52VQ6K33_29GhJPbqQeWe6Yk/1/da"><img src="http://feedads.g.doubleclick.net/~a/IGS52VQ6K33_29GhJPbqQeWe6Yk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Jordanairwave/~4/0_6JJavRgUw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jordanairwave.co.uk/2012/01/07/css3-animations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jordanairwave.co.uk/2012/01/07/css3-animations/</feedburner:origLink></item>
		<item>
		<title>No.67 Mad ON:Trance</title>
		<link>http://feedproxy.google.com/~r/Jordanairwave/~3/ulCiXuyDzLU/</link>
		<comments>http://www.jordanairwave.co.uk/2011/12/29/no-67-mad-ontrance/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 18:04:09 +0000</pubDate>
		<dc:creator>Jordanairwave</dc:creator>
				<category><![CDATA[Podcast]]></category>
		<category><![CDATA[trance]]></category>

		<guid isPermaLink="false">http://www.jordanairwave.co.uk/?p=1227</guid>
		<description><![CDATA[1. Alice Deejay &#8211; Better off alone 2. Milk Inc &#8211; Walk On Water 3. Cosmic Gate &#8211; Exploration of space 4. Future Breeze &#8211; Ocean of Eternity 5. Storm &#8211; Storm Animal 6. System F &#8211; Out of The &#8230; <a href="http://www.jordanairwave.co.uk/2011/12/29/no-67-mad-ontrance/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>1. Alice Deejay &#8211; Better off alone<br />
2. Milk Inc &#8211; Walk On Water<br />
3. Cosmic Gate &#8211; Exploration of space<br />
4. Future Breeze &#8211; Ocean of Eternity<br />
5. Storm &#8211; Storm Animal<br />
6. System F &#8211; Out of The Blue<br />
7. Tiesto &#8211; Lethal Industry<br />
8. Ian Van Dahl &#8211; Try<br />
9. Progress presents The Boy Wunda &#8211; Everybody<br />
10. Spoiled &#038; Zigo &#8211; More &#038; More<br />
11. Yomanda &#8211; You&#8217;re Free</p>
<p>Download and subscribe via i-tunes:<br />
<a href="http://bit.ly/d34kPD" title="Subcribe to podcast" target="_blank">http://bit.ly/d34kPD</a></p>
<p>Download direct and subcribe to the podcast feed direct via:<br />
<a href="http://bit.ly/bKbfeq" title="Podcast direct feed" target="_blank">http://bit.ly/bKbfeq</a></p>
<p>My website:<br />
<a href="http://www.jordanairwave.co.uk" title="Home of jordanairwave" target="_blank">http://www.jordanairwave.co.uk</a></p>
<p>Subscribe to my blog:<br />
<a href="http://bit.ly/92ablp" title="Subcribe to blog" target="_blank">http://bit.ly/92ablp</a></p>
<p>Follow me on Twitter: <a href="http://www.twitter.com/jordanairwave" title="jordanairwave twitter page" target="_blank">@jordanairwave</a></p>
<p>Facebook Fan Page:<br />
<a href="http://facebook.com/jordanairwave.co.uk" title="Jordanairwave fan page" target="_blank">http://facebook.com/jordanairwave.co.uk</a></p>
<p>Google+<br />
<a href="https://plus.google.com/b/101660703490729608861/" title="Jordanairwave Google Plus page" target="_blank">https://plus.google.com/b/101660703490729608861/</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/deZheF-UEW4BSMBYo3s4CF8rh9Y/0/da"><img src="http://feedads.g.doubleclick.net/~a/deZheF-UEW4BSMBYo3s4CF8rh9Y/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/deZheF-UEW4BSMBYo3s4CF8rh9Y/1/da"><img src="http://feedads.g.doubleclick.net/~a/deZheF-UEW4BSMBYo3s4CF8rh9Y/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Jordanairwave/~4/ulCiXuyDzLU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jordanairwave.co.uk/2011/12/29/no-67-mad-ontrance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jordanairwave.co.uk/2011/12/29/no-67-mad-ontrance/</feedburner:origLink></item>
		<item>
		<title>No.66 Mad ON:Trance</title>
		<link>http://feedproxy.google.com/~r/Jordanairwave/~3/1msVvycIno8/</link>
		<comments>http://www.jordanairwave.co.uk/2011/12/28/no-66-mad-ontrance/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 13:56:16 +0000</pubDate>
		<dc:creator>Jordanairwave</dc:creator>
				<category><![CDATA[Podcast]]></category>
		<category><![CDATA[mad on]]></category>
		<category><![CDATA[trance]]></category>

		<guid isPermaLink="false">http://www.jordanairwave.co.uk/?p=1223</guid>
		<description><![CDATA[Tracklist: 1. Lost Witness &#8211; Song to the Siren 2. Santos &#8211; Camels 3. Mathias Ware ft Rob Taylor &#8211; Hey Little Girl 4. Trisco &#8211; Musak 5. Paul Van Dyk &#8211; Tell Me Why 6. Aquanuts &#8211; Deep Sea &#8230; <a href="http://www.jordanairwave.co.uk/2011/12/28/no-66-mad-ontrance/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Tracklist:</p>
<p>1. Lost Witness &#8211; Song to the Siren<br />
2. Santos &#8211; Camels<br />
3. Mathias Ware ft Rob Taylor &#8211; Hey Little Girl<br />
4. Trisco &#8211; Musak<br />
5. Paul Van Dyk &#8211; Tell Me Why<br />
6. Aquanuts &#8211; Deep Sea<br />
7. Matt Darey &#038; Marcella Woods &#8211; U Shine On<br />
8. Cooper &#8211; I Belive In Love<br />
9. Aalto &#8211; Rush<br />
10. Agnelli &#038; Nelson &#8211; Holding On To Nothing<br />
11. Paul Van Dyk &#8211; We Are Alive<br />
12. Hi-Gate &#8211; Hurricane</p>
<p>Download and subscribe via i-tunes:<br />
<a href="http://bit.ly/d34kPD" title="Mad on podcast download" target="_blank">http://bit.ly/d34kPD</a></p>
<p>Download direct and subcribe to the podcast feed direct via:<br />
http://bit.ly/bKbfeq<a href="http://bit.ly/bKbfeq" title="Mad on podcast RSS Feed" target="_blank"></a></p>
<p>My website:<br />
<a href="http://www.jordanairwave.co.uk" title="Jordanairwave main site" target="_blank">http://www.jordanairwave.co.uk</a></p>
<p>Subscribe to my blog:<br />
<a href="http://bit.ly/92ablp" title="Jordanairwave blog RSS Feed" target="_blank">http://bit.ly/92ablp</a></p>
<p>Follow me on Twitter: <a href="http://www.twitter.com/jordanairwave" title="Jordanairwave Twitter Page" target="_blank">@jordanairwave</a></p>
<p>Facebook Fan Page:<br />
<a href="http://facebook.com/jordanairwave.co.uk" title="Jordanairwave Facebook Fan Page" target="_blank">http://facebook.com/jordanairwave.co.uk</a></p>
<p>Google+<br />
<a href="https://plus.google.com/b/101660703490729608861/" title="Jordanairwave Google Plus Page" target="_blank">https://plus.google.com/b/101660703490729608861/</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/cVc12dIP016r1JuIoLWgzfL53FI/0/da"><img src="http://feedads.g.doubleclick.net/~a/cVc12dIP016r1JuIoLWgzfL53FI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/cVc12dIP016r1JuIoLWgzfL53FI/1/da"><img src="http://feedads.g.doubleclick.net/~a/cVc12dIP016r1JuIoLWgzfL53FI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Jordanairwave/~4/1msVvycIno8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jordanairwave.co.uk/2011/12/28/no-66-mad-ontrance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jordanairwave.co.uk/2011/12/28/no-66-mad-ontrance/</feedburner:origLink></item>
		<item>
		<title>Virgin all in one</title>
		<link>http://feedproxy.google.com/~r/Jordanairwave/~3/a58Ao0BI_Pw/</link>
		<comments>http://www.jordanairwave.co.uk/2011/12/21/virgin-all-in-one/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 09:13:17 +0000</pubDate>
		<dc:creator>Jordanairwave</dc:creator>
				<category><![CDATA[Ramdom]]></category>
		<category><![CDATA[Virgin Media]]></category>

		<guid isPermaLink="false">http://www.jordanairwave.co.uk/?p=1221</guid>
		<description><![CDATA[I have just had a thought so I thought I would share my little thought. My thought is why does Virgin media just supply one box? By this I mean by my TV I have a cable box and a &#8230; <a href="http://www.jordanairwave.co.uk/2011/12/21/virgin-all-in-one/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have just had a thought so I thought I would share my little thought. My thought is why does Virgin media just supply one box? By this I mean by my TV I have a cable box and a cable modem, now it got me thinking why can&#8217;t they offer an all in one solution because it would make thinks simpler and certainly tidier round the back of my TV.</p>
<p>Now before you dismiss this out right here me out, We need a cable box to watch digital tv and we need a cable box to get broadband. But with the Xbox, playstation 3 and new Internet tv and if your like me have a mac mini connected to the tv then you need the cable modem near the TV, this is because I would prefer wired connection still just to get max speeds all the time.</p>
<p>With the cable modem being by the TV and the cable box there as well it would be so much nicer to have an all in one box. Surely this is possible? I mean it would mean one less box, which means more space and less cables which surely is a good think. I hope Virgin media come out with a one box solution soon as to me it makes sense.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/gQbUIQuq9CuvPNK7u9zIT1DicF4/0/da"><img src="http://feedads.g.doubleclick.net/~a/gQbUIQuq9CuvPNK7u9zIT1DicF4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/gQbUIQuq9CuvPNK7u9zIT1DicF4/1/da"><img src="http://feedads.g.doubleclick.net/~a/gQbUIQuq9CuvPNK7u9zIT1DicF4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Jordanairwave/~4/a58Ao0BI_Pw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jordanairwave.co.uk/2011/12/21/virgin-all-in-one/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.jordanairwave.co.uk/2011/12/21/virgin-all-in-one/</feedburner:origLink></item>
		<item>
		<title>DVDs are out of date</title>
		<link>http://feedproxy.google.com/~r/Jordanairwave/~3/aHGI8t4r4sU/</link>
		<comments>http://www.jordanairwave.co.uk/2011/12/18/dvds-are-out-of-date/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 14:57:21 +0000</pubDate>
		<dc:creator>Jordanairwave</dc:creator>
				<category><![CDATA[Ramdom]]></category>
		<category><![CDATA[DVD]]></category>

		<guid isPermaLink="false">http://www.jordanairwave.co.uk/?p=1218</guid>
		<description><![CDATA[I got in to a discussion a few weeks back and only now have had time to blog about it, but the discussion was that DVDs are now out dated and streaming is the way forward. I personally have not &#8230; <a href="http://www.jordanairwave.co.uk/2011/12/18/dvds-are-out-of-date/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I got in to a discussion a few weeks back and only now have had time to blog about it, but the discussion was that DVDs are now out dated and streaming is the way forward.  I personally have not brought a DVD in years and currently stream via LoveFilm.  This is possible because I have a mac mini connect to my HD TV.  But a friend of mine was like he likes DVD because he likes to see them on the self.  My argument with this is that DVDs take up to much space,  I used to have hundreds of DVDs before I started selling them off, and the huge amount of space they took up was ridiculous.</p>
<p>After getting rid of most of my DVDs and ripping them to my media hard drive I have so much space, plus if you use software like Plex, when you browser through you DVD collection you get to see the DVD cover anyway and plot summary.  </p>
<p>I will admit that it does take a bit of time to set up and ripp all your DVDs, but when you have done it, you will not regret it at all.  Its time to move up to the modern way of watching films. Streaming and media centers baby!!!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/YeTCMDI9xUBlRy37E8AfiaQne_Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/YeTCMDI9xUBlRy37E8AfiaQne_Q/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YeTCMDI9xUBlRy37E8AfiaQne_Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/YeTCMDI9xUBlRy37E8AfiaQne_Q/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Jordanairwave/~4/aHGI8t4r4sU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jordanairwave.co.uk/2011/12/18/dvds-are-out-of-date/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.jordanairwave.co.uk/2011/12/18/dvds-are-out-of-date/</feedburner:origLink></item>
		<item>
		<title>No.65 Mad ON:House</title>
		<link>http://feedproxy.google.com/~r/Jordanairwave/~3/-Ac0PpYi-wY/</link>
		<comments>http://www.jordanairwave.co.uk/2011/12/01/no-65-mad-onhouse/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 21:36:04 +0000</pubDate>
		<dc:creator>Jordanairwave</dc:creator>
				<category><![CDATA[Podcast]]></category>
		<category><![CDATA[House]]></category>
		<category><![CDATA[House music]]></category>
		<category><![CDATA[mad on]]></category>

		<guid isPermaLink="false">http://www.jordanairwave.co.uk/?p=1214</guid>
		<description><![CDATA[No.65 Mad ON:House OUT NOW FOR DOWNLOAD!!!! Tracklist: 1. Redroche Vs Armstrong &#8211; Make Your Move 2. Roger Sanchezs &#8211; 2Gether (Dabruck Klein Remix) 3. Sharam &#8211; Fun 4. Shaun Baker &#8211; Frontline 5. Skepta &#8211; Amnesia 6. Stars on &#8230; <a href="http://www.jordanairwave.co.uk/2011/12/01/no-65-mad-onhouse/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>No.65 Mad ON:House OUT NOW FOR DOWNLOAD!!!!</p>
<p>Tracklist:</p>
<p>1. Redroche Vs Armstrong &#8211; Make Your Move<br />
2. Roger Sanchezs &#8211; 2Gether (Dabruck Klein Remix)<br />
3. Sharam &#8211; Fun<br />
4. Shaun Baker &#8211; Frontline<br />
5. Skepta &#8211; Amnesia<br />
6. Stars on 45 &#8211; 45<br />
7. Stephanie Benson &#8211; Hangin On<br />
8. Stereo Palma &#8211; Lick iT<br />
9. Steve Aoki &#038; Sidney Samson &#8211; Wake Up Call<br />
10. Swanky Tunes and Hard Rock Sofa &#8211; Labyrinth<br />
11. The Nycer &#8211; Lose Control<br />
12. The Banger Bros &#8211; Beep Beep Boom</p>
<p>Download and subscribe via i-tunes:<br />
<a href="http://bit.ly/d34kPD" title="subscribe to podcast via itunes" target="_blank">http://bit.ly/d34kPD</a></p>
<p>Download direct and subcribe to the podcast feed direct via:<br />
<a href="http://bit.ly/bKbfeq" title="download direct" target="_blank">http://bit.ly/bKbfeq</a></p>
<p>My website:<br />
<a href="http://www.jordanairwave.co.uk" title="My website" target="_blank">http://www.jordanairwave.co.uk</a></p>
<p>Subscribe to my blog:<br />
<a href="http://bit.ly/92ablp" title="subscribe to my RSS Feed" target="_blank">http://bit.ly/92ablp</a></p>
<p>Follow me on Twitter: <a href="http://www.twitter.com/jordanairwave" title="Jordanairwave Twitter Page" target="_blank">@jordanairwave</a></p>
<p>Facebook Fan Page:<br />
<a href="http://facebook.com/jordanairwave.co.uk" title="Jordanairwave Facebook page" target="_blank">http://facebook.com/jordanairwave.co.uk</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/i2e6iC1Lgvh12Cnw3s_W1GwyrrI/0/da"><img src="http://feedads.g.doubleclick.net/~a/i2e6iC1Lgvh12Cnw3s_W1GwyrrI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/i2e6iC1Lgvh12Cnw3s_W1GwyrrI/1/da"><img src="http://feedads.g.doubleclick.net/~a/i2e6iC1Lgvh12Cnw3s_W1GwyrrI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Jordanairwave/~4/-Ac0PpYi-wY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jordanairwave.co.uk/2011/12/01/no-65-mad-onhouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jordanairwave.co.uk/2011/12/01/no-65-mad-onhouse/</feedburner:origLink></item>
		<item>
		<title>.Net Awards are pointless</title>
		<link>http://feedproxy.google.com/~r/Jordanairwave/~3/U9EQ4KGWFwg/</link>
		<comments>http://www.jordanairwave.co.uk/2011/11/29/net-awards-are-pointless/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 20:58:30 +0000</pubDate>
		<dc:creator>Jordanairwave</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[.net awards]]></category>
		<category><![CDATA[.net magazine]]></category>

		<guid isPermaLink="false">http://www.jordanairwave.co.uk/?p=1212</guid>
		<description><![CDATA[Yesterday I was having a look through my RSS Feeds and swore the results for the .Net awards where they so decided to have a look. As I was looking a discussion broke out in the office that the .Net &#8230; <a href="http://www.jordanairwave.co.uk/2011/11/29/net-awards-are-pointless/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was having a look through my RSS Feeds and swore the results for the .Net awards where they so decided to have a look.  As I was looking a discussion broke out in the office that the .Net awards are pointless because the same people which are in the so called web design cliq win it.</p>
<p>This got me thinking about last years awards when there was a lot of talk about the same people winning the awards, which caused Jeffrey Zeldman to write a post on why he should except the awards.  But I still felt that if I won a .Net award and would feel a little proud of myself, I doubt though that my wife would feel the same as she would not really understand who big a .net award is to the web design community.</p>
<p>But as I was looking down the winners of this years awards, I starting thinking Really? and What have they done recently?.  To quote Family Guy a few things that really grind my gears.</p>
<p>1. To start off with, Why do they have to show Remy Sharps Git hub page when annoying that GitHub is web app of the year? Same old people in the cliq again.</p>
<p>2. Podcast of the Year is The Big Web Show, Now i have listen to this and I have to say that I stopped listening to it because it got a bit boring.  Boagworld is still much more interesting to listen to and CSS-Tricks podcast is so good at actually showing you with video, but there is no mention of the sitepoint podcast either.  Did the Big Web Show win because Jeffrey Zeldman is on it? Well I am not saying but again look at the names and the cliq seems to have struck again.</p>
<p>3. Mobile App of the Year is Reader. Really??? I mean yes its a good app but no where near the best.  BBC News is far better but surely Instagram was more popular as well, but what about Flipboard?</p>
<p>4. Mobile Site of the Year: Facebook. Really because I do not think so.  The mobile version of the site was crap and did not work properly.  Im sure there are better sites out there, BBC Radio 1’s new mobile design is not bad and is better then Facebook, Plus the screen shot they showed is of Andy Budd and Elliot Jay Stocks, I do not class Elliot Jay Stocks in the cliq but I do class Andy Budd in the cliq and plus he is on the panel for .Net Mag.</p>
<p>5. Redesign of the Year: Mailchimp? I mean come on, just because the cliq recommend mail chimp they win.  I know for affact there are loads of great re designs done everyday, so why does it have to be a company the cliq uses?</p>
<p>6. Then on to the final one, Agency of the year. We actually had a vote of who would win this before looking at the result, two of the three of us was right.  Clearleft won it. What have they done recently bar put on a massively expensive conferences which I can not afford to go to and Andy Budd is found of and it also advisor to .Net. Even the runners up Happy Cog, What have they done recently? just because Jeffrey Zeldman works there? its a joke.  There are plenty of hard working small agencies out there output websites each week to high standards.<br />
These are the points which really annoyed me and as got me thinking that the .Net awards are now pointless and unless your in the so called web design cliq your not going to win it.</p>
<p>Anyway that&#8217;s my rant over with.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/vFj_RSegQeOLWAt-2VEbKfABilM/0/da"><img src="http://feedads.g.doubleclick.net/~a/vFj_RSegQeOLWAt-2VEbKfABilM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vFj_RSegQeOLWAt-2VEbKfABilM/1/da"><img src="http://feedads.g.doubleclick.net/~a/vFj_RSegQeOLWAt-2VEbKfABilM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Jordanairwave/~4/U9EQ4KGWFwg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jordanairwave.co.uk/2011/11/29/net-awards-are-pointless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jordanairwave.co.uk/2011/11/29/net-awards-are-pointless/</feedburner:origLink></item>
		<item>
		<title>Bye Bye Firefox hello Chrome</title>
		<link>http://feedproxy.google.com/~r/Jordanairwave/~3/CZ2-yjH1Llo/</link>
		<comments>http://www.jordanairwave.co.uk/2011/11/27/bye-bye-firefox-hello-chrome/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 12:01:15 +0000</pubDate>
		<dc:creator>Jordanairwave</dc:creator>
				<category><![CDATA[Ramdom]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.jordanairwave.co.uk/?p=1209</guid>
		<description><![CDATA[Today saw the day that I have moved from FireFox to Chrome for my main browser I use everyday, I will continue to use FireFox as my development browser. I have decided to move because for the last few weeks &#8230; <a href="http://www.jordanairwave.co.uk/2011/11/27/bye-bye-firefox-hello-chrome/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today saw the day that I have moved from FireFox to Chrome for my main browser I use everyday,  I will continue to use FireFox as my development browser.</p>
<p>I have decided to move because for the last few weeks I have been cleaning up my main desktop machine in a mission to speed up the system as for the last few months I have noticed that for some reason the system would just freeze and the memory is not maxed out, the processors are on tick over and the GPU is doing nothing.  </p>
<p>I have read on Google that even though the memory management on FireFox as gotten better it is still not great.  I have resisted the move for a while now but this week saw me move, I hope soon that FireFox will sort out there memory problems because FireFox really is a great browser for everyday use and developing sites.</p>
<p>UPDATE: 5 hours after changing<br />
I have to say I think FireFox was the problem because since moving the system as been snappy and has not frozen once yet.  Now just to move all my computers over to chrome now.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/SQAi7Gwy5yus5QuoamsgPLNZ9Kg/0/da"><img src="http://feedads.g.doubleclick.net/~a/SQAi7Gwy5yus5QuoamsgPLNZ9Kg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SQAi7Gwy5yus5QuoamsgPLNZ9Kg/1/da"><img src="http://feedads.g.doubleclick.net/~a/SQAi7Gwy5yus5QuoamsgPLNZ9Kg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Jordanairwave/~4/CZ2-yjH1Llo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jordanairwave.co.uk/2011/11/27/bye-bye-firefox-hello-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jordanairwave.co.uk/2011/11/27/bye-bye-firefox-hello-chrome/</feedburner:origLink></item>
		<item>
		<title>No.64 Mad ON:House</title>
		<link>http://feedproxy.google.com/~r/Jordanairwave/~3/BuMvF6eonqg/</link>
		<comments>http://www.jordanairwave.co.uk/2011/11/17/no-64-mad-onhouse/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 21:58:08 +0000</pubDate>
		<dc:creator>Jordanairwave</dc:creator>
				<category><![CDATA[Podcast]]></category>
		<category><![CDATA[House music]]></category>

		<guid isPermaLink="false">http://www.jordanairwave.co.uk/?p=1204</guid>
		<description><![CDATA[Tracklist: 1. Erick Morillo &#038; Eddie Thoneich – Live Your Life 2. Nadia Ali vs Avicii – Rapture 2011 3. Inna – Sun is Up (cahill mix) 4. OffBeat and Di Scala – Bey 5. Karin Nagi – Shake It &#8230; <a href="http://www.jordanairwave.co.uk/2011/11/17/no-64-mad-onhouse/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Tracklist:</p>
<p>1. Erick Morillo &#038; Eddie Thoneich – Live Your Life<br />
2. Nadia Ali vs Avicii – Rapture 2011<br />
3. Inna – Sun is Up (cahill mix)<br />
4. OffBeat and Di Scala – Bey<br />
5. Karin Nagi – Shake It Up (SuperStylers Club Mix)<br />
6. Redroche vs Armstrong – Make Your Move<br />
7. Kirsty Hawkshaw vs Kinky Roland – Fine Day Reloaded<br />
8. Regi &#038; Tyler – Runaway (LoverushUK Remix)<br />
9. Michael Canitrot – You and I<br />
10. Rhythm Masters &#038; DJ Triple A – Overdose<br />
11. Milk and Suger vs Vaya Con Dios – Hey Nah Neh Nah<br />
12. Alexandra Stan – Get Back ASAP</p>
<p>Download and subscribe via i-tunes:<br />
<a href="http://bit.ly/d34kPD" title="Subcribe via iTunes" target="_blank">http://bit.ly/d34kPD</a></p>
<p>Download direct and subcribe to the podcast feed direct via:<br />
<a href="http://bit.ly/bKbfeq" title="Subscribe to Jordanairwave blog" target="_blank">http://bit.ly/bKbfeq</a></p>
<p>My website:<br />
<a href="http://www.jordanairwave.co.uk" title="Jordanairwave website" target="_blank">http://www.jordanairwave.co.uk</a></p>
<p>Subscribe to my blog:<br />
<a href="http://bit.ly/92ablp" title="Subscribe to Jordanairwave blog" target="_blank">http://bit.ly/92ablp</a></p>
<p>Follow me on Twitter:<a href="http://www.twitter.com/jordanairwave" title="Jordanairwave twitter page" target="_blank"> @jordanairwave</a></p>
<p>Facebook Fan Page:<br />
<a href="http://facebook.com/jordanairwave.co.uk" title="Jordanairwave Facebook Fan Page" target="_blank">http://facebook.com/jordanairwave.co.uk</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/c5EoHEcCT4eI2QRQq-HObe6uvsg/0/da"><img src="http://feedads.g.doubleclick.net/~a/c5EoHEcCT4eI2QRQq-HObe6uvsg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/c5EoHEcCT4eI2QRQq-HObe6uvsg/1/da"><img src="http://feedads.g.doubleclick.net/~a/c5EoHEcCT4eI2QRQq-HObe6uvsg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Jordanairwave/~4/BuMvF6eonqg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jordanairwave.co.uk/2011/11/17/no-64-mad-onhouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jordanairwave.co.uk/2011/11/17/no-64-mad-onhouse/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 0.358 seconds -->

