<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Aulty's blog</title>
	<atom:link href="http://aulty.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aulty.wordpress.com</link>
	<description>From Tech to Tennessee.</description>
	<lastBuildDate>Mon, 22 Nov 2010 22:03:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='aulty.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Aulty's blog</title>
		<link>http://aulty.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://aulty.wordpress.com/osd.xml" title="Aulty&#039;s blog" />
	<atom:link rel='hub' href='http://aulty.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing programs from source without Sudo rights. A case Study: BlueFish</title>
		<link>http://aulty.wordpress.com/2010/07/22/installing-programs-from-source-without-sudo-rights-a-case-study-bluefish/</link>
		<comments>http://aulty.wordpress.com/2010/07/22/installing-programs-from-source-without-sudo-rights-a-case-study-bluefish/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 17:36:37 +0000</pubDate>
		<dc:creator>aulty</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[./configure]]></category>
		<category><![CDATA[Bluefish]]></category>
		<category><![CDATA[build from source]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[without sudo]]></category>

		<guid isPermaLink="false">http://aulty.wordpress.com/?p=127</guid>
		<description><![CDATA[Hi there. Im currently working on an internship with the Biosystems group, School of Computing University of Leeds. I have learnt many things during my internship and wish to use this blog to share some with you. I have a background in Python and high level languages and have had to adapt to and learn [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=127&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#ffffff;">Hi there.<br />
Im currently working on an internship with the Biosystems group, School of Computing University of Leeds. I have learnt many things during my internship and wish to use this blog to share some with you.</span></p>
<p><span style="color:#ffffff;">I have a background in Python and high level languages and have had to adapt to and learn C++ and C.<br />
I have found it a hard transition so would like to share my experiences with anyone coming from a similar direction to lessen their frustration and pain.<br />
One element of learning C or C++ is that you have to download and compile your own libraries from source, likewise you must do this if you don&#8217;t have admin rights. This tutorial aims to help you to be more familiar downloading and installing from source code.</span></p>
<p><a href="http://aulty.files.wordpress.com/2010/07/bluefish-icon_96.png"><img class="alignnone size-full wp-image-130" title="bluefish-icon_96" src="http://aulty.files.wordpress.com/2010/07/bluefish-icon_96.png?w=655" alt="Bluefish-logo"   /></a></p>
<p><span style="color:#ffffff;">Bluefish is a HTML editor and an example of a program that I wanted to install.</span></p>
<p><span style="color:#ffffff;">So first off. Installing on my home Ubuntu machine is easy as pie:</span></p>
<p><span style="color:#3366ff;">sudo apt-get install bluefish</span></p>
<p><span style="color:#ffffff;">or on Fedora:</span></p>
<p><span style="color:#3366ff;"> sudo yum install bluefish</span></p>
<p><span style="color:#3366ff;"> </span></p>
<pre><span style="color:#3366ff;">
</span></pre>
<p><span style="color:#ffffff;">However when I work on my account at University (a Fedora system) I don&#8217;t have sudo.</span></p>
<p><span style="color:#ffffff;"> </span></p>
<p><span style="color:#ffffff;">So to install:</span></p>
<p><span style="color:#3366ff;"><span style="color:#000000;"> </span></span><span style="color:#ffffff;">1. Download the source. This can be from svn if you want the very latest version or the latest source release from the program website.</span></p>
<p style="padding-left:30px;"><span style="color:#ffffff;">SVN is a very powerful and useful version control system that the developer uses to store the updates he makes allowing you access to cutting edge developments</span></p>
<p style="padding-left:30px;"><span style="color:#ffffff;">Example svn checkout command (checks out the latest version):</span></p>
<p style="padding-left:30px;"><span style="color:#3366ff;">svn co https://bluefish.svn.sourceforge.net/svnroot/bluefish/trunk/bluefish </span></p>
<p style="padding-left:30px;"><span style="color:#ffffff;">When downloading the release from the site be sure to check that the file hasnt corrupted with the command:</span></p>
<p style="padding-left:30px;"><span style="color:#3366ff;">md5sum bluefish-2.0.0.tar.bz2</span></p>
<p style="padding-left:30px;"><span style="color:#ffffff;">The output should correlate with the md5sum provided by the developer</span></p>
<p style="padding-left:30px;"><span style="color:#ffffff;">For the source release extract the tar.bz into your home directory (I usually use the Nautilus GUI&#8217;s right click&gt;extract to do this).</span></p>
<p style="padding-left:30px;"><span style="color:#ffffff;">cd into the extracted folder</span></p>
<p style="padding-left:30px;">
<p><span style="color:#ffffff;">2. I downloaded the latest release source. So now to configure and install.</span></p>
<p style="padding-left:30px;"><span style="color:#ffffff;">In linux ./configure is used to change settings for make, this is how you tell make where your libraries are or where you want it to install to and lots of other useful information.</span></p>
<p style="padding-left:30px;"><span style="color:#ffffff;">To see the options available type </span><span style="color:#3366ff;"> </span></p>
<p><span style="color:#3366ff;"> </span></p>
<p style="padding-left:30px;"><span style="color:#3366ff;">./configure &#8211;help</span></p>
<p><span style="color:#3366ff;"> </span></p>
<pre style="padding-left:30px;"><span style="color:#3366ff;">
</span></pre>
<p style="padding-left:30px;"><span style="color:#ffffff;">Now we can see that the &#8211;prefix= command is used to specify the prefix install directory this is what we need to change to install without sudo rights as we do not have rights to install to the default /usr/bin or /bin.</span></p>
<p style="padding-left:30px;"><span style="color:#ffffff;">So download the necessary libraries and add them to your PATH (see a later tutorial I may write or google) for how to modify BASH environmental variables.<br />
I next created a local directory in my home folder to store my programs installed from source in. Then run:</span></p>
<p style="padding-left:30px;"><span style="color:#3366ff;">./configure &#8211;prefix=~/local</span></p>
<p><span style="color:#3366ff;"> </span></p>
<pre style="padding-left:30px;"><span style="color:#3366ff;">
</span></pre>
<p style="padding-left:30px;"><span style="color:#ffffff;">The ./configure command generates a new makefile with the settings specified. Now run make, this will build the binaries from the sources.</span></p>
<p style="padding-left:30px;"><span style="color:#3366ff;"><span style="color:#000000;"><span style="color:#3366ff;">make</span></span></span></p>
<p><span style="color:#3366ff;"><span style="color:#000000;"><span style="color:#3366ff;"> </span></span></span></p>
<pre style="padding-left:30px;"><span style="color:#3366ff;"><span style="color:#000000;"><span style="color:#3366ff;">
</span></span></span><span style="color:#3366ff;"><span style="color:#000000;"><span style="color:#3366ff;"> </span></span></span></pre>
<p style="padding-left:30px;"><span style="color:#ffffff;">make install will need to be run next. make install moves the build files to the correct target directory,  somewhere under ~/local. Had we not specified the prefix make install would attempt to write to /bin which would of raised a permissions error.</span></p>
<p style="padding-left:30px;"><span style="color:#3366ff;">make install</span></p>
<p><span style="color:#3366ff;"> </span></p>
<pre style="padding-left:30px;"><span style="color:#3366ff;">
</span></pre>
<p style="padding-left:30px;"><span style="color:#ffffff;">Bluefish is now successfully installed in ~/local/bin. You now need to add this directory to your PATH to enable you to run the program by typing &#8216;bluefish&#8217; as opposed to &#8216;~/local/bin/bluefish&#8217;. See google or my later tutorial for details on the environmental variable PATH. The following command will however suffice (run it), it should be added to your ~/.bashrc for the effect to last beyond this session:</span></p>
<p style="padding-left:30px;"><span style="color:#3366ff;">export PATH=$PATH:~/local/bin</span></p>
<p style="padding-left:30px;"><span style="color:#3366ff;"><span style="color:#ffffff;">I</span><span style="color:#000000;"><span style="color:#ffffff;"> hope that you found this guide useful and that you learnt something about building from source in linux. I intend to write more tutorials on similar topics</span><br />
</span></span></p>
<pre style="padding-left:30px;"><span style="color:#3366ff;"> </span></pre>
<pre style="padding-left:30px;"><span style="color:#3366ff;"> </span></pre>
<pre style="padding-left:30px;"><span style="color:#3366ff;">
</span>
</pre>
<br />Filed under: <a href='http://aulty.wordpress.com/category/linux/'>Linux</a>, <a href='http://aulty.wordpress.com/category/programming/'>Programming</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aulty.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aulty.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aulty.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aulty.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aulty.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aulty.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aulty.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aulty.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aulty.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aulty.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aulty.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aulty.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aulty.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aulty.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=127&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aulty.wordpress.com/2010/07/22/installing-programs-from-source-without-sudo-rights-a-case-study-bluefish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71bef6a8706532e51bed9361a4ff3ce?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=R" medium="image">
			<media:title type="html">aulty</media:title>
		</media:content>

		<media:content url="http://aulty.files.wordpress.com/2010/07/bluefish-icon_96.png" medium="image">
			<media:title type="html">bluefish-icon_96</media:title>
		</media:content>
	</item>
		<item>
		<title>LMGTFY</title>
		<link>http://aulty.wordpress.com/2009/05/09/googletalk/</link>
		<comments>http://aulty.wordpress.com/2009/05/09/googletalk/#comments</comments>
		<pubDate>Sat, 09 May 2009 15:44:17 +0000</pubDate>
		<dc:creator>aulty</dc:creator>
				<category><![CDATA[University]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[leeds university]]></category>

		<guid isPermaLink="false">http://aulty.wordpress.com/?p=103</guid>
		<description><![CDATA[Let Me Google That For You. A reflection upon Google and Peter Dickman&#8217;s Leeds University talk of 30th April. It was with anticipation I walked to Roger Stevens on Thursday afternoon a familiar and yet consistently weird place. As first year computing students we were informed by a certain member of the department that we [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=103&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --></p>
<h1 class="western" style="margin-bottom:0;"><span style="font-size:medium;"><span style="text-decoration:underline;"><strong></strong></span></span></h1>
<h1 class="western" style="margin-bottom:0;"><span style="font-size:medium;"><span style="text-decoration:underline;"><strong></strong></span></span></h1>
<p><span style="text-decoration:underline;"><br />
</span></p>
<p><span style="font-size:medium;"><span style="text-decoration:underline;"><strong></strong></span></span></p>
<p class="western" style="margin-bottom:0;" align="left">
<p class="western" style="margin-bottom:0;" align="left">
<p class="western" style="margin-bottom:0;" align="left"><span style="font-size:small;"><span style="text-decoration:none;"><span>Let Me Google That For You.<br />
A reflection upon Google and Peter Dickman&#8217;s Leeds University talk of 30th April.</span></span></span></p>
<p class="western" style="margin-bottom:0;" align="left">
<div id="attachment_104" class="wp-caption alignnone" style="width: 222px"><a href="http://aulty.files.wordpress.com/2009/05/googleposter.png"><img class="size-medium wp-image-104" title="googleposter" src="http://aulty.files.wordpress.com/2009/05/googleposter.png?w=212&#038;h=300" alt="Poster for the event. Courtesy of Ben Blundell www.section9.co.uk" width="212" height="300" /></a><p class="wp-caption-text">Poster for the event. Courtesy of Ben Blundell www.section9.co.uk</p></div>
<p>It was with anticipation I walked to Roger Stevens on Thursday afternoon a familiar and yet consistently weird place. As first year computing students we were informed by a certain member of the department that we &#8216;<em>have to go to this one</em>&#8216;,  a Google talk, a chat from the big hitters, might be interesting. The room was a strange mix, the sheparded undergraduate alongside postgrad and senior staff, something for everyone here.</p>
<p class="western" style="margin-bottom:0;" align="right">
<h3 class="western" style="margin-bottom:0;"><strong>The size of the beast</strong></h3>
<p class="western" style="margin-bottom:0;">Peter himself looked pretty confident and damn right you would be if you&#8217;d landed that job. His delivery was constant, and amazing things came out of his mouth at every juncture. &#8220;<em>Every 4 hours google crawls more than the whole library of congress</em>&#8220;. WOW. The size of the beast began to strike me. A company so big that they have designed their own file system &#8216;BigTable&#8217;, and inhouse programming languages.</p>
<p class="western" style="margin-bottom:0;">Google doesn&#8217;t have datacentres, they instead have &#8216;warehouse computers&#8217;, the name change signifying as much about progress in parallelism, scale and networking innovation as lexical horseplay. Indeed Google&#8217;s CEO Eric Schmidt is attributed to have said &#8220;<em>When the network becomes as fast as the processor, the computer hollows out and spreads across the network.</em><em><span style="font-style:normal;">”.</span></em><em> </em>In layman&#8217;s and <span style="text-decoration:none;">geek</span> terms this was pretty impressive stuff.</p>
<p class="western" style="margin-bottom:0;">Google&#8217;s has an almost poetic goal of &#8216;<em>Organizing the world&#8217;s information and making it universally accessible and useful</em>&#8216;, sounds a pretty selfless and compelling endeavour doesn&#8217;t it? However, it wasn&#8217;t soon till were reminded of the company&#8217;s fortune, the size of which equates to a small African country, <span style="font-style:normal;">&#8216;</span><em>there&#8217;s gold in them there hills</em>&#8216;. Having conquered somewhat traditional search engine ground, Google has recently been turning its attentions to image, audio, map and interplanetary indexing and searching. <a href="http://similar-images.googlelabs.com/" target="_self">Similar images</a>, <a href="http://labs.google.com/gaudi" target="_self">Audio indexing</a>, <a href="http://maps.google.co.uk/help/maps/streetview/" target="_self">Streetview</a> and <a href="http://www.google.com/mars/">Google Mars</a> respectively are impressive examples.</p>
<p class="western" style="margin-bottom:0;">
<h3 class="western" style="margin-bottom:0;"><strong>Geekocracy</strong></h3>
<p class="western" style="margin-bottom:0;"><span>&#8220;</span><em><span>A third of our software engineers have PhD&#8217;s and MSc&#8217;s</span></em><span>&#8221; Peter informed us, and speaking with apparent sincerity told us how the software engineers (Programmers in plain language) had been programming since they were 5. </span>I soon began to envision some sort of utopian geek meritocracy (Geekocracy if you will). I wasn&#8217;t far wrong. Staff get 20% of their time to dedicate to working on new ideas. In this so called  &#8216;Innovation Time&#8217;, big software eggs are hatched, apps like Gmail. Adsense and Google Moderator, a tool for deciding which questions should get asked at meetings have their genesis here. Check out <a href="http://www.googlelavbs.com" target="_self">googlelabs.com</a> for yourself.</p>
<div id="attachment_109" class="wp-caption alignnone" style="width: 310px"><a href="http://aulty.files.wordpress.com/2009/05/peterdickkman.jpg"><img class="size-medium wp-image-109 &quot;left&quot;" title="peterdickkman" src="http://aulty.files.wordpress.com/2009/05/peterdickkman.jpg?w=300&#038;h=250" alt="peterdickkman" width="300" height="250" /></a><p class="wp-caption-text">Peter Dickman at the talk. Image provided courtesy of Ben Blundell www.section9.co.uk</p></div>
<p class="western" style="margin-bottom:0;">
<p class="western" style="margin-bottom:0;">Google continued to come across as a Valhalla for programmers and IT staff. Google&#8217;s network technicians in the field were spoken of heroically traversing inhospitable territory to fix cable breaks. These are the guys that usually get looked down upon as the unplug and plug in the computer guys.  Score one for the team. Software Engineers come above managers in the pecking order and their managers exist to get them the tools they need to get the job done. Programmers have the opportunity to work across the whole codebase on any project or application that they like, in fact they are positively encouraged to do so.</p>
<p class="western" style="margin-bottom:0;">
<p class="western" style="margin-bottom:0;">
<h3 class="western" style="margin-bottom:0;"><strong>The Google way</strong></h3>
<p class="western" style="margin-bottom:0;">It becomes clear that part of the explanation Google&#8217;s incredible success lies in their differences from traditional corporate business models. The culture of creative engagement of its staff, their sustained passion for continual daily improvement clearly show results. This is the Google ethos, the Google way, the reason my homepage is www.google.com and why sometimes when people ask me questions I say &#8220;<em>let me google that for you</em>&#8220;.</p>
<p class="western" style="margin-bottom:0;">
<br />Posted in University  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aulty.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aulty.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aulty.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aulty.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aulty.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aulty.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aulty.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aulty.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aulty.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aulty.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aulty.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aulty.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aulty.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aulty.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=103&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aulty.wordpress.com/2009/05/09/googletalk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71bef6a8706532e51bed9361a4ff3ce?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=R" medium="image">
			<media:title type="html">aulty</media:title>
		</media:content>

		<media:content url="http://aulty.files.wordpress.com/2009/05/googleposter.png?w=212" medium="image">
			<media:title type="html">googleposter</media:title>
		</media:content>

		<media:content url="http://aulty.files.wordpress.com/2009/05/peterdickkman.jpg?w=300" medium="image">
			<media:title type="html">peterdickkman</media:title>
		</media:content>
	</item>
		<item>
		<title>TheBestPageInTheUniverse</title>
		<link>http://aulty.wordpress.com/2008/09/04/thebestpageintheuniverse/</link>
		<comments>http://aulty.wordpress.com/2008/09/04/thebestpageintheuniverse/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 23:25:14 +0000</pubDate>
		<dc:creator>aulty</dc:creator>
				<category><![CDATA[Comedy]]></category>
		<category><![CDATA[Maddox]]></category>
		<category><![CDATA[TheBestPageInTheUniverse]]></category>

		<guid isPermaLink="false">http://aulty.wordpress.com/?p=89</guid>
		<description><![CDATA[Heya guys, I just wanted to point you in the direction of one of the greatest sites of all time and one of the more interesting blogs. Been abit busy the last few days deploying an Ubuntu server, setting up Samba, SSH and the like and rewiring phone sockets. I&#8217;ll put a nice Ubuntu Server [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=89&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Heya guys,</p>
<p>I just wanted to point you in the direction of one of the greatest sites of all time and one of the more interesting blogs. Been abit busy the last few days deploying an Ubuntu server, setting up Samba, SSH and the like and rewiring phone sockets. I&#8217;ll put a nice Ubuntu Server related post up when I&#8217;m done but in the mean time&#8230;</p>
<p><a href="http://maddox.xmission.com/"><br />
The Best Page In The Universe</a></p>
<p>Courtesy of Maddox. Maddox kicks your ass and those of your unborn children, he&#8217;s that good.</p>
<div class="wp-caption alignnone" style="width: 507px"><img alt="For all you vegetarians out there ;)" src="http://i7.photobucket.com/albums/y297/aultmysta/bigpot6.jpg" width="497" height="550" /><p class="wp-caption-text">For all you vegetarians out there ;)</p></div>
<p>
Made me laugh so many goddamn times reading those posts over the last few years, would be criminal not to share.</p>
<p>Sharing is caring</p>
<p>Aulty</p>
<p>x</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aulty.wordpress.com/89/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aulty.wordpress.com/89/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aulty.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aulty.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aulty.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aulty.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aulty.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aulty.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aulty.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aulty.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aulty.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aulty.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aulty.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aulty.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aulty.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aulty.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=89&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aulty.wordpress.com/2008/09/04/thebestpageintheuniverse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71bef6a8706532e51bed9361a4ff3ce?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=R" medium="image">
			<media:title type="html">aulty</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/bigpot6.jpg" medium="image">
			<media:title type="html">For all you vegetarians out there ;)</media:title>
		</media:content>
	</item>
		<item>
		<title>The Olympics</title>
		<link>http://aulty.wordpress.com/2008/09/02/the-olympics/</link>
		<comments>http://aulty.wordpress.com/2008/09/02/the-olympics/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 17:13:59 +0000</pubDate>
		<dc:creator>aulty</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Human Rights]]></category>
		<category><![CDATA[Olympics]]></category>

		<guid isPermaLink="false">http://aulty.wordpress.com/?p=80</guid>
		<description><![CDATA[Afternoon guys. Right the Olympics, in China. I didn&#8217;t watch any of it. I think its frankly disgusting the way that we go over there and heap praise on the Chinese government&#8230; sorry the government of the &#8220;People&#8217;s Republic of China&#8221; whilst they kill their own citizens. Democracy, Republic, Monarchy, none of it really makes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=80&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Afternoon guys.</p>
<p>Right the Olympics, in China. I didn&#8217;t watch any of it. I think its frankly disgusting the way that we go over there and heap praise on the Chinese government&#8230; sorry the government of the &#8220;People&#8217;s Republic of China&#8221; whilst they kill their own citizens. Democracy, Republic, Monarchy, none of it really makes any difference when your &#8216;representatives&#8217; or leaders are Autocrats. I don&#8217;t know what the IOC were thinking giving it to them. I mean the event is supposed to inspire kids.</p>
<div class="wp-caption alignnone" style="width: 609px"><img src="http://upload.wikimedia.org/wikipedia/en/d/d8/Tianasquare.jpg" alt="I'd give this man all the medals" width="599" height="387" /><p class="wp-caption-text">This should be the man getting the medals. He&#39;s the one who has all the balls. </p></div>
<p>Having visited <a href="http://blog.brokep.com/2008/08/05/olympics/">Brokep&#8217;s blog</a> (A prominent PirateBay member) this week, I have to agree with his sentiments. The Journo&#8217;s complained about being subjected to the great firewall of China, plus <a href="http://www.theregister.co.uk/2008/08/22/itunes_blocked_china_tibet/">they blocked Itunes</a> the other week, the people have to endure on a regular basis.</p>
<p>The Olympics though, were basically a showpiece, &#8216;The West&#8217; didn&#8217;t see anything that the Government didn&#8217;t want them to. I think people are just forgetting the main point when they engage in the spasmodic Olympic fervour they forsake their fellow humans who are being oppressed. It just shows how easy it is to make the public forget when you wave a shiny spectacle or two in their face. I&#8217;m not religious in any way but I consider myself moral and think Kant got it pretty much right when he wrote &#8220;Act only according to that maxim whereby you can at the same time will that it should become a universal law.&#8221; And I wouldn&#8217;t want to live under the conditions the Chinese are subjected to.</p>
<p>Would you?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aulty.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aulty.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aulty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aulty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aulty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aulty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aulty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aulty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aulty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aulty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aulty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aulty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aulty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aulty.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aulty.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aulty.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=80&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aulty.wordpress.com/2008/09/02/the-olympics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71bef6a8706532e51bed9361a4ff3ce?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=R" medium="image">
			<media:title type="html">aulty</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/en/d/d8/Tianasquare.jpg" medium="image">
			<media:title type="html">I'd give this man all the medals</media:title>
		</media:content>
	</item>
		<item>
		<title>This wallpaper&#8230;</title>
		<link>http://aulty.wordpress.com/2008/09/01/this-wallpaper/</link>
		<comments>http://aulty.wordpress.com/2008/09/01/this-wallpaper/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 12:10:06 +0000</pubDate>
		<dc:creator>aulty</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Wallpaper]]></category>

		<guid isPermaLink="false">http://aulty.wordpress.com/?p=66</guid>
		<description><![CDATA[Is actually the best wallpaper in the world. It&#8217;s on all of my computers. Everyone at work calls me an old man for using it, but I love Dark Victorian MMmmm. Available from 5thirtyone.com in various resolutions. 1900&#215;1200 1600&#215;1200 1280&#215;1024 1024&#215;768<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=66&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Is actually the best wallpaper in the world. It&#8217;s on all of my computers. Everyone at work calls me an old man for using it, but I love Dark Victorian MMmmm.</p>
<p><img alt="" src="http://i7.photobucket.com/albums/y297/aultmysta/dark_victorian_sample1.jpg" class="alignnone" width="428" height="270" /></p>
<p><a href="http://5thirtyone.com/archives/753"><br />
Available from 5thirtyone.com</a> in various resolutions.<br />
<a href="http://5thirtyone.com/wp-content/uploads/2007/01/dark_victorian_1900x1200.jpg"><br />
1900&#215;1200</a><br />
<a href="http://5thirtyone.com/wp-content/uploads/2007/01/dark_victorian_1600x1200.jpg"><br />
1600&#215;1200</a><br />
<a href="http://5thirtyone.com/wp-content/uploads/2007/01/dark_victorian_1280x1024.jpg"><br />
1280&#215;1024</a><br />
<a href="http://5thirtyone.com/wp-content/uploads/2007/01/dark_victorian_1024x768.jpg"><br />
1024&#215;768</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aulty.wordpress.com/66/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aulty.wordpress.com/66/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aulty.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aulty.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aulty.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aulty.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aulty.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aulty.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aulty.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aulty.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aulty.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aulty.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aulty.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aulty.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aulty.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aulty.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=66&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aulty.wordpress.com/2008/09/01/this-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71bef6a8706532e51bed9361a4ff3ce?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=R" medium="image">
			<media:title type="html">aulty</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/dark_victorian_sample1.jpg" medium="image" />
	</item>
		<item>
		<title>Firef&#8230; erm cat.</title>
		<link>http://aulty.wordpress.com/2008/08/31/fireferm-cat/</link>
		<comments>http://aulty.wordpress.com/2008/08/31/fireferm-cat/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 13:55:59 +0000</pubDate>
		<dc:creator>aulty</dc:creator>
				<category><![CDATA[Pet related]]></category>
		<category><![CDATA[Cat]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[MotoGP]]></category>
		<category><![CDATA[Rossi]]></category>

		<guid isPermaLink="false">http://aulty.wordpress.com/?p=48</guid>
		<description><![CDATA[So it&#8217;s Sunday. Its raining and Valentino Rossi won the San Marino MotoGP. Its all abit predictable isnt it? Hmm well. Dont you think my cat looks like Firefox? If only I had a big blue &#8216;e&#8217;&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=48&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So it&#8217;s Sunday.</p>
<p>Its raining and Valentino Rossi won the San Marino MotoGP.<br />
Its all abit predictable isnt it?</p>
<div class="wp-caption aligncenter" style="width: 236px"><img src="http://newsimg.bbc.co.uk/media/images/44933000/jpg/_44933586_rossiapcredit226.jpg" alt="Legend" width="226" height="170" /><p class="wp-caption-text">Legend</p></div>
<p>Hmm well.</p>
<p>Dont you think my cat looks like Firefox?</p>
<p><a href="http://aulty.files.wordpress.com/2008/08/firechiv2.jpg"><img class="size-medium wp-image-49 alignleft" src="http://aulty.files.wordpress.com/2008/08/firechiv2.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<p><a href="http://aulty.files.wordpress.com/2008/08/firefox2.jpg"><img class="alignnone size-medium wp-image-58" src="http://aulty.files.wordpress.com/2008/08/firefox2.jpg?w=233&#038;h=228" alt="" width="233" height="228" /></a></p>
<p>If only I had a big blue &#8216;e&#8217;&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aulty.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aulty.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aulty.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aulty.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aulty.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aulty.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aulty.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aulty.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aulty.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aulty.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aulty.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aulty.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aulty.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aulty.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aulty.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aulty.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=48&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aulty.wordpress.com/2008/08/31/fireferm-cat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71bef6a8706532e51bed9361a4ff3ce?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=R" medium="image">
			<media:title type="html">aulty</media:title>
		</media:content>

		<media:content url="http://newsimg.bbc.co.uk/media/images/44933000/jpg/_44933586_rossiapcredit226.jpg" medium="image">
			<media:title type="html">Legend</media:title>
		</media:content>

		<media:content url="http://aulty.files.wordpress.com/2008/08/firechiv2.jpg?w=300" medium="image" />

		<media:content url="http://aulty.files.wordpress.com/2008/08/firefox2.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>Concept Place, Leeds. Part2.</title>
		<link>http://aulty.wordpress.com/2008/08/30/concept-place-leeds-part2/</link>
		<comments>http://aulty.wordpress.com/2008/08/30/concept-place-leeds-part2/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 18:54:49 +0000</pubDate>
		<dc:creator>aulty</dc:creator>
				<category><![CDATA[Concept Place preview]]></category>
		<category><![CDATA[Part2]]></category>
		<category><![CDATA[Accomodation]]></category>
		<category><![CDATA[Concept Place]]></category>
		<category><![CDATA[Leeds]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://aulty.wordpress.com/?p=24</guid>
		<description><![CDATA[Heya again guys. Back after chilli for part 2. Sitting comfortably? :) Ok so I&#8217;m signed up in 615A so Unite dude took us up to have a gander. Sorry. I&#8217;m a pretty sarcastic person. It is very nice, lol. I know, lowest form of wit and all that jazz. BTW thats an Ethernet CAT [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=24&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Heya again guys. Back after chilli for part 2. Sitting comfortably? :)</p>
<p>Ok so I&#8217;m signed up in 615A so Unite dude took us up to have a gander.</p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Hall.jpg" alt="You see that door right at the end? Lol. Thats mine." width="600" height="450" /><p class="wp-caption-text">You see that door right at the end? Lol. Thats mine.</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Theflat.jpg" alt="S." width="600" height="450" /><p class="wp-caption-text">This is the flat. Surrounded by doors (one to the kitchen), It&#39;s kinda no man&#39;s land here :S </p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Bedroom.jpg" alt="This is my room 615A. Kinda hard to photo all of it, confined." width="600" height="450" /><p class="wp-caption-text">This is my room 615A. Kinda hard to photo all of it, confined. Really nice though</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Mygoodview.jpg" alt="P" width="600" height="450" /><p class="wp-caption-text">What with the awesome view and all :P</p></div>
<p>Sorry. I&#8217;m a pretty sarcastic person. It is very nice, lol. I know, lowest form of wit and all that jazz.</p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Plugs.jpg" alt="I love lamp" width="600" height="450" /><p class="wp-caption-text">I love electricity.</p></div>
<p>BTW thats an Ethernet CAT 5 network point on the left for connecting to U-Want&#8217;s excellent service. Remember what I said about sarcasm, yea. Anyway I work for an ISP and the connection sucks from what I can see <a href="http://www.u-want.com/"> here</a>.</p>
<p>Anyway the two sockets (second on the left) are for FM &amp; TV coax I think. Remember your TV licenses, hehe.</p>
<p>Think U-Want offer an IPTV service aswell, doesn&#8217;t say price on their site though.</p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Thermostat.jpg" alt="You get a thermostat." width="600" height="450" /><p class="wp-caption-text">You get a thermostat.</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Bigbed.jpg" alt="A big bed" width="600" height="450" /><p class="wp-caption-text">A big bed.</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Bathroom.jpg" alt="A sink, toilet shower combi job" width="600" height="800" /><p class="wp-caption-text">And a sink, toilet shower combi job</p></div>
<p>OK, kitchen time.</p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Kitchen2.jpg" alt="Nice and new. Well everything is..." width="600" height="450" /><p class="wp-caption-text">Nice and new. Well everything is...</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Kitchen3.jpg" alt=")" width="600" height="450" /><p class="wp-caption-text">Is it just me or can anyone else see a potential dedicated beer and food fridge going on here? :)</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Kitchenlounge.jpg" alt="Lounge" width="600" height="450" /><p class="wp-caption-text">Lounge</p></div>
<p>OK, back downstairs. Or should i say, the lift. XD.</p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Laundrylifts.jpg" alt="On the way to laundry room" width="600" height="450" /><p class="wp-caption-text">On the way to laundry room</p></div>
<p>Cant remember prices.</p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Laundry.jpg" alt="It smelt..." width="600" height="450" /><p class="wp-caption-text">It smelt...</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Laundry2.jpg" alt="... of laundry rooms but thats cool." width="600" height="450" /><p class="wp-caption-text">... of laundry rooms but that&#39;s cool.</p></div>
<p>I mean what else is it going to smell of.</p>
<p>Anyway that&#8217;s it.</p>
<p>Hope it helped you out if you&#8217;re staying here in the future. If you&#8217;re not, it&#8217;s abit odd you reading this, but thanks.</p>
<p><img class="alignnone" src="http://i7.photobucket.com/albums/y297/aultmysta/serious.jpg" alt="" width="338" height="253" /></p>
<p>Seriously though. Sarcasm aside.</p>
<p>It is a really nice place.</p>
<p>I&#8217;ll see all you guys there.</p>
<p>I&#8217;ll be the one with Bob Dylan blasting out of the flat, lol.</p>
<p>P.S. 615 is the party flat. :D</p>
<p>Aulty</p>
<p>x</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aulty.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aulty.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aulty.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aulty.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aulty.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aulty.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aulty.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aulty.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aulty.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aulty.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aulty.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aulty.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aulty.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aulty.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aulty.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aulty.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=24&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aulty.wordpress.com/2008/08/30/concept-place-leeds-part2/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71bef6a8706532e51bed9361a4ff3ce?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=R" medium="image">
			<media:title type="html">aulty</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Hall.jpg" medium="image">
			<media:title type="html">You see that door right at the end? Lol. Thats mine.</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Theflat.jpg" medium="image">
			<media:title type="html">S.</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Bedroom.jpg" medium="image">
			<media:title type="html">This is my room 615A. Kinda hard to photo all of it, confined.</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Mygoodview.jpg" medium="image">
			<media:title type="html">P</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Plugs.jpg" medium="image">
			<media:title type="html">I love lamp</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Thermostat.jpg" medium="image">
			<media:title type="html">You get a thermostat.</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Bigbed.jpg" medium="image">
			<media:title type="html">A big bed</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Bathroom.jpg" medium="image">
			<media:title type="html">A sink, toilet shower combi job</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Kitchen2.jpg" medium="image">
			<media:title type="html">Nice and new. Well everything is...</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Kitchen3.jpg" medium="image">
			<media:title type="html">)</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Kitchenlounge.jpg" medium="image">
			<media:title type="html">Lounge</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Laundrylifts.jpg" medium="image">
			<media:title type="html">On the way to laundry room</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Laundry.jpg" medium="image">
			<media:title type="html">It smelt...</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Laundry2.jpg" medium="image">
			<media:title type="html">... of laundry rooms but thats cool.</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/serious.jpg" medium="image" />
	</item>
		<item>
		<title>Concept Place, Leeds. Part1.</title>
		<link>http://aulty.wordpress.com/2008/08/30/concept-place-leeds-part1/</link>
		<comments>http://aulty.wordpress.com/2008/08/30/concept-place-leeds-part1/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 16:51:12 +0000</pubDate>
		<dc:creator>aulty</dc:creator>
				<category><![CDATA[Concept Place preview]]></category>
		<category><![CDATA[Part1]]></category>
		<category><![CDATA[Accomodation]]></category>
		<category><![CDATA[Concept Place]]></category>
		<category><![CDATA[Leeds]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://aulty.wordpress.com/?p=7</guid>
		<description><![CDATA[Hey guys if none of you know me. I&#8217;m Aulty, will be at Leeds Uni in about a month doing Computing. I like messing with computers, drinking, sleeping and having a laugh. Hey guys so I went to see Concept Place today. A nice little trip to Leeds, about an hours drive form Sheffield. Got [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=7&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hey guys if none of you know me. I&#8217;m Aulty, will be at Leeds Uni in about a month doing Computing. I like messing with computers, drinking, sleeping and having a laugh.</p>
<p>Hey guys so I went to see Concept Place today. A nice little trip to Leeds, about an hours drive form Sheffield. Got abit lost at first because it is NOT on Park Lane as suggested it is on Burley Road. Theres no way to currently access it from park Lane, oh well. Just to warn you guys, found it in the end anyway, even if I did have to buy an AtoZ. So am looking to do a nice little pic preview for all you guys that haven&#8217;t seen it, all you guys in the Facebook group (speaking of which search Matthew Ault on Facebook or I&#8217;m on messenger at aulty_a1@hotmail(dot)com ).</p>
<p>Please excuse my shocking camerawork.</p>
<p>Lets get underway. PS. Sorry if you have a  small monitor. <a href="http://www.mozilla.com/en-US/firefox/all.html"><br />
Get Firefox 3</a> and zoom!</p>
<p>So there&#8217;s this nice little bar and grill next door. Had a coke. And a look for any 802.11 networks with eeepc, no visible SSIDs :(.</p>
<p><img class="alignnone" src="http://i7.photobucket.com/albums/y297/aultmysta/BarGrill.jpg" alt="" width="599" height="449" /></p>
<div class="wp-caption alignnone" style="width: 240px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Mmmcoke.jpg" alt="Mmm coke" width="230" height="304" /><p class="wp-caption-text">Mmm coke</p></div>
<p>And here&#8217;s the place.</p>
<div class="wp-caption alignnone" style="width: 609px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Leftview2.jpg" alt="View from Left" width="599" height="448" /><p class="wp-caption-text">View from Left</p></div>
<p>Nearly got run over crossing the road here.</p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Frontleftview.jpg" alt="View from Front" width="600" height="800" /><p class="wp-caption-text">View from Front</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Viewleftfromaccrossroad.jpg" alt="This is the road its on. Burley Road." width="600" height="800" /><p class="wp-caption-text">This is the road it&#39;s on. Burley Road.</p></div>
<p>As you can see above there is some parking here, outside the bar and grill. Some sort of parking on far left of this picture too, but this is a proper busy road. Theres an ITV building there.</p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Streetlevel.jpg" alt="Street Level" width="600" height="800" /><p class="wp-caption-text">Street Level</p></div>
<p>Have to play wth a little intercom to get in. Dial 0000 for reception.</p>
<p>Met by the dude at reception, apparently hes been there for months Shining style. Eeeek.</p>
<div class="wp-caption aligncenter" style="width: 308px"><img src="http://msnbcmedia.msn.com/j/msnbc/Sections/Travel%20Section/Summer%20Travel/060608_shining_vmed_1p.widec.jpg" alt="Heres Johnny!!!" width="298" height="451" /><p class="wp-caption-text">Here&#39;s Johnny!!!</p></div>
<p>Wish I&#8217;d got his name, from now on in he&#8217;s &#8216;UNITE dude&#8217;.</p>
<p>Anyway here&#8217;s the entrance room thing.</p>
<div class="wp-caption alignnone" style="width: 609px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Entrance.jpg" alt="Swanky!" width="599" height="449" /><p class="wp-caption-text">Swanky!</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Mmmmpool.jpg" alt="Pool!" width="600" height="450" /><p class="wp-caption-text">Pool!</p></div>
<div class="wp-caption alignnone" style="width: 609px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Mail.jpg" alt="You have mail." width="599" height="449" /><p class="wp-caption-text">You have mail.</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/DSC02401.jpg" alt="Heres how reception will look in Freshers week ;)" width="600" height="450" /><p class="wp-caption-text">Heres how reception will look in Fresher&#39;s week ;)</p></div>
<p><a href=")."></a></p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Cheesepics.jpg" alt="Cheese!" width="600" height="450" /><p class="wp-caption-text">Cheese!</p></div>
<p><a href=")."></a></p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Help.jpg" alt="rape!" width="600" height="800" /><p class="wp-caption-text">rape!</p></div>
<p><a href=")."><br />
</a></p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Chairslounge.jpg" alt="Red chairs. Like you do." width="600" height="800" /><p class="wp-caption-text">Red chairs. Like you do.</p></div>
<p><a href=")."></a></p>
<div class="wp-caption alignnone" style="width: 610px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Roomchart.jpg" alt="Putting an end to the room number speculation." width="600" height="800" /><p class="wp-caption-text">10 floors!</p></div>
<p><a href=")."><br />
</a><a href=")."><br />
</a></p>
<div class="wp-caption alignnone" style="width: 609px"><img src="http://i7.photobucket.com/albums/y297/aultmysta/Lifts.jpg" alt="I love lift" width="599" height="449" /><p class="wp-caption-text">I love lift</p></div>
<p><a href=")."><br />
</a></p>
<p>TBC in Part 2. Upstairs and beyond!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aulty.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aulty.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aulty.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aulty.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aulty.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aulty.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aulty.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aulty.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aulty.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aulty.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aulty.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aulty.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aulty.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aulty.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aulty.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aulty.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=7&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aulty.wordpress.com/2008/08/30/concept-place-leeds-part1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71bef6a8706532e51bed9361a4ff3ce?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=R" medium="image">
			<media:title type="html">aulty</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/BarGrill.jpg" medium="image" />

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Mmmcoke.jpg" medium="image">
			<media:title type="html">Mmm coke</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Leftview2.jpg" medium="image">
			<media:title type="html">View from Left</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Frontleftview.jpg" medium="image">
			<media:title type="html">View from Front</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Viewleftfromaccrossroad.jpg" medium="image">
			<media:title type="html">This is the road its on. Burley Road.</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Streetlevel.jpg" medium="image">
			<media:title type="html">Street Level</media:title>
		</media:content>

		<media:content url="http://msnbcmedia.msn.com/j/msnbc/Sections/Travel%20Section/Summer%20Travel/060608_shining_vmed_1p.widec.jpg" medium="image">
			<media:title type="html">Heres Johnny!!!</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Entrance.jpg" medium="image">
			<media:title type="html">Swanky!</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Mmmmpool.jpg" medium="image">
			<media:title type="html">Pool!</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Mail.jpg" medium="image">
			<media:title type="html">You have mail.</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/DSC02401.jpg" medium="image">
			<media:title type="html">Heres how reception will look in Freshers week ;)</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Cheesepics.jpg" medium="image">
			<media:title type="html">Cheese!</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Help.jpg" medium="image">
			<media:title type="html">rape!</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Chairslounge.jpg" medium="image">
			<media:title type="html">Red chairs. Like you do.</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Roomchart.jpg" medium="image">
			<media:title type="html">Putting an end to the room number speculation.</media:title>
		</media:content>

		<media:content url="http://i7.photobucket.com/albums/y297/aultmysta/Lifts.jpg" medium="image">
			<media:title type="html">I love lift</media:title>
		</media:content>
	</item>
		<item>
		<title>Hey guys</title>
		<link>http://aulty.wordpress.com/2008/08/28/hello-world/</link>
		<comments>http://aulty.wordpress.com/2008/08/28/hello-world/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 23:41:11 +0000</pubDate>
		<dc:creator>aulty</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Watch this space.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=1&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Watch this space.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aulty.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aulty.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aulty.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aulty.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aulty.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aulty.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/aulty.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/aulty.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/aulty.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/aulty.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aulty.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aulty.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aulty.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aulty.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aulty.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aulty.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aulty.wordpress.com&amp;blog=4653724&amp;post=1&amp;subd=aulty&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://aulty.wordpress.com/2008/08/28/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d71bef6a8706532e51bed9361a4ff3ce?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=R" medium="image">
			<media:title type="html">aulty</media:title>
		</media:content>
	</item>
	</channel>
</rss>
