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

<channel>
	<title>Darius Aliabadi &#187; Crunchbang</title>
	<atom:link href="http://blog.wednesdaymorning.co.uk/category/linux/crunchbang/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.wednesdaymorning.co.uk</link>
	<description>a blog dictating the digital life off me</description>
	<lastBuildDate>Thu, 23 Dec 2010 23:52:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Taming the Python</title>
		<link>http://blog.wednesdaymorning.co.uk/2009/11/taming-the-python/</link>
		<comments>http://blog.wednesdaymorning.co.uk/2009/11/taming-the-python/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 18:32:58 +0000</pubDate>
		<dc:creator>Darius</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Crunchbang]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Openbox]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://blog.wednesdaymorning.co.uk/?p=195</guid>
		<description><![CDATA[Hey Guys,
I&#8217;ve been learning some python over the last few weeks, thought I would give it coding a Openbox Pipe Menu a go. It&#8217;s not very useful and some of the guys in the Crunchbang Forums helped me to fix my bugs. Here is the code:
#!/usr/bin/env python -W ignore::DeprecationWarning
import sys
import cgi
import twitter

if __name__ == "__main__":
 [...]]]></description>
			<content:encoded><![CDATA[<p>Hey Guys,</p>
<p>I&#8217;ve been learning some python over the last few weeks, thought I would give it coding a Openbox Pipe Menu a go. It&#8217;s not very useful and some of the guys in the Crunchbang Forums helped me to fix my bugs. Here is the code:</p>
<pre class="brush:python">#!/usr/bin/env python -W ignore::DeprecationWarning
import sys
import cgi
import twitter

if __name__ == "__main__":
 twit = twitter.Api(username="", password="")
 status = twit.GetFriendsTimeline()
 print "&lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;"
 print "&lt;openbox_pipe_menu&gt;"
 print"    &lt;separator label=\"Twitter\" /&gt;"

 for u in status:
    tweet = u.text
    tweet = tweet.replace("\"", "'")
    tweet = tweet.encode("utf-8")
    tweet = cgi.escape(tweet)

    print "    &lt;menu id=\"%s\" label=\"%s\"&gt;" % (u.id, tweet)
    print "        &lt;item label=\"View Tweet\"&gt;&lt;action name=\"Execute\"&gt; &lt;execute&gt;firefox http://twitter.com/%s/status/%s\ &lt;/execute&gt; &lt;/action&gt; &lt;/item&gt;" % ( cgi.escape(u.user.screen_name), u.id)
    print "        &lt;item label=\"Tweet by %s\" /&gt;" % (cgi.escape(u.user.name))
    print "        &lt;item label=\"%s\" /&gt;" % (cgi.escape(u.relative_created_at))
    print "    &lt;/menu&gt;"

 print "&lt;/openbox_pipe_menu&gt;"
 sys.exit(0)</pre>
<p>I don&#8217;t suggest you make use of it, this is the alpha version but I intend to add some conversation thread and caching into it at some point. I&#8217;m also learning some perl but I haven&#8217;t really made anything other than programs to test things.</p>
<p>I&#8217;ll try and post something tomorrow, after all the site is called Wednesday Morning.</p>
<p>Darius</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wednesdaymorning.co.uk/2009/11/taming-the-python/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Happy Linux Birthday to me!</title>
		<link>http://blog.wednesdaymorning.co.uk/2009/11/happy-linux-birthday-to-me/</link>
		<comments>http://blog.wednesdaymorning.co.uk/2009/11/happy-linux-birthday-to-me/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 23:19:03 +0000</pubDate>
		<dc:creator>Darius</dc:creator>
				<category><![CDATA[Crunchbang]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.wednesdaymorning.co.uk/?p=101</guid>
		<description><![CDATA[Hi,
Well, i&#8217;ve re-skinned this thing again. I&#8217;m going to endeavor to post something &#8220;useful&#8221; each Wednesday from now onwards. Now this is probably not going to happen but who knows. I really want to make more use out of this space. Well today is my &#8220;Linux Birthday&#8221;, 1 year ago today I installed Mandriva on [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Well, i&#8217;ve re-skinned this thing again. I&#8217;m going to endeavor to post something &#8220;useful&#8221; each Wednesday from now onwards. Now this is probably not going to happen but who knows. I really want to make more use out of this space. Well today is my &#8220;Linux Birthday&#8221;, 1 year ago today I installed Mandriva on my eee-pc to give it a go for the first time. This started my love affair which ended up with my deciding to swap to<a href="http://blog.wednesdaymorning.co.uk/2009/02/02/post-swap-report/" target="_self"> Linux as my sole operating system</a>. I have been learning all this year and I still learn things all the time. I&#8217;m proud to say I&#8217;m still using Crunchbang Linux. It&#8217;s based on Ubuntu and runs the Window Manager Openbox.</p>
<p>Check out my latest desktop picture, I&#8217;ve spent a little while putting it together and it&#8217;s just comfortable for me.</p>
<div class="wp-caption alignnone" style="width: 932px"><a href="http://dja1v07.users.cslib.org.uk/blogimages/blog_ss.png" rel="lightbox[101]"><img title="My Desktop" src="http://dja1v07.users.cslib.org.uk/blogimages/blog_ss.png" alt="My Current Desktop" width="922" height="368" /></a><p class="wp-caption-text">My Current Desktop</p></div>
<p>I&#8217;m sorry for the hugeness of the image, If your interested I currently have 2x 19&#8243; screens (1 wide and 1 normal square, don&#8217;t ask me why. just the screens i&#8217;ve got). I will be posting my conky setup on the site. I based it on a setup by someone else, I&#8217;ve heavily modified it since then but I will try and find a link to theirs.</p>
<p>I&#8217;m going to be updating categories and tags across the blog to utilise this fantastic theme. I hope you enjoy the new useful stuff I will post, any suggestions would be great.</p>
<p>Bye!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wednesdaymorning.co.uk/2009/11/happy-linux-birthday-to-me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Post-Swap Report</title>
		<link>http://blog.wednesdaymorning.co.uk/2009/02/post-swap-report/</link>
		<comments>http://blog.wednesdaymorning.co.uk/2009/02/post-swap-report/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 21:30:35 +0000</pubDate>
		<dc:creator>Darius</dc:creator>
				<category><![CDATA[Crunchbang]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[University / Studies]]></category>

		<guid isPermaLink="false">http://blog.wednesdaymorning.co.uk/?p=45</guid>
		<description><![CDATA[Oops..
Just a follow on report from the crunchbang install. So the plan was to install crunchbang on my second HD and leave the windows HD intact, the fact that i&#8217;ve reiterated this is probably telling you. &#8220;oh my what went wrong?&#8221;, I swear that i checked and double checked which HD was the windows HD [...]]]></description>
			<content:encoded><![CDATA[<h4><strong>Oops..</strong></h4>
<p>Just a follow on report from the crunchbang install. So the plan was to install crunchbang on my second HD and leave the windows HD intact, the fact that i&#8217;ve reiterated this is probably telling you. &#8220;oh my what went wrong?&#8221;, I swear that i checked and double checked which HD was the windows HD but yes I managed to install linux over my windows parition however I did back everything up! Go me, proactive backuping is the way to go!</p>
<h4><strong>Crunchbang Review (Full)</strong></h4>
<p>So i&#8217;ve been spending the day or so setting up my crunchbang distro on the desktop (trying to come up with a funny name for it) and generally playing around with the full version. I&#8217;m  used to the limited set of applications that comes with Cruncheee, the crunchbang iso was a good 200MB larger than the cruncheee one but however only took me a few minutes to download from the labs (using the crunchbang official list not the mirror), got to love that internet connection! I&#8217;ve got to hand it to phillip (<span class="post-byline"><a title="Go to corenominal's profile" href="http://crunchbanglinux.org/forums/user/2/">corenominal</a>) he has put together a fantastic list of starting applications, pretty much anything you want to do you can straight out off the box! Speaking of box, it also runs openbox as well as cruncheee (kind of crunchbangs selling point) and I have to say that my system is more responsive and quicker to boot than it ever was on windows. </span></p>
<p><span class="post-byline">Crunchbang is also very &#8220;fuss free&#8221; meaning that nothing required any real knowledge of linux to get working, my USB wireless adaptor worked straight out of the box with no problems. I was always having problems with it in windows and I swear I get a better more constant signal off it that I did before. I&#8217;m a relatively unexperienced linux user and the only real problem i&#8217;ve come across is nitrogen crashing when i try to set the image for my two screens to be different however its working fine for the few dual screens desktop wallpapers I have. If anyone knows of anygood 2560&#215;1024 wallpapers let me know <img src='http://blog.wednesdaymorning.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</span></p>
<p><span class="post-byline"><strong>Semester 2</strong></span></p>
<p><span class="post-byline">Well this post has taken me a few days (what i wrote above was from nearly 2 days ago). Since hten the gf has installed crunchbang as her primary OS too (shes also a computer scientist) and we are both finding it quite nice to use linux as our only operating system. Semester 2 is here (as you may guess from the sub-title) and anyone who&#8217;s been following the weather in england can tell it was a perfect begining, it was a total nightmare getting in today and I&#8217;m really worried about tomorrow and the ice :s. </span></p>
<p><span class="post-byline">I&#8217;m going to leave it there, i&#8217;ll post up some off my idea&#8217;s for the arcade script in a few days. See what you guys think <img src='http://blog.wednesdaymorning.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>
<p><span class="post-byline">Darius<br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wednesdaymorning.co.uk/2009/02/post-swap-report/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The big swap over.</title>
		<link>http://blog.wednesdaymorning.co.uk/2009/01/the-big-swap-over/</link>
		<comments>http://blog.wednesdaymorning.co.uk/2009/01/the-big-swap-over/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 16:59:47 +0000</pubDate>
		<dc:creator>Darius</dc:creator>
				<category><![CDATA[Crunchbang]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.wednesdaymorning.co.uk/?p=38</guid>
		<description><![CDATA[Firstly, i&#8217;d just like to say thanks to the guys who&#8217;ve posted comments so far. It&#8217;s nice to know someones read them haha =D.
Onwards, Upwards and so forth&#8230; As anyone knows read any post here i&#8217;m a linux user, I use crunchbang linux as my primary operating system on my day to day. I rarely [...]]]></description>
			<content:encoded><![CDATA[<p>Firstly, i&#8217;d just like to say thanks to the guys who&#8217;ve posted comments so far. It&#8217;s nice to know someones read them haha =D.</p>
<p>Onwards, Upwards and so forth&#8230; As anyone knows read any post here i&#8217;m a linux user, I use crunchbang linux as my primary operating system on my day to day. I rarely use my lovely desktop PC although I really should however I commute from home to University and like to be able to move on the go. Well recently I&#8217;ve been thinking that I should do the big swap and finally get make linux my primary operating system on my desktop too (i&#8217;m keeping a windows partition because i want to be able to play games without hassle). I have 2 drives (250GB&#8217;s each) and I&#8217;m going to have one for linux and one for windows with a 500GB external drive for the two of them, for music etc.</p>
<p>So i bought one from amazon for ~£50 <a href="http://www.amazon.co.uk/exec/obidos/ASIN/B001EKW0O4">(http://www.amazon.co.uk/exec/obidos/ASIN/B001EKW0O4</a>) which i thought was a pretty amazing price, I got free super saver delivery and it arrived today, well i got a red slip from Royal Mail for it today.. so i had to go and collect it. I&#8217;ve run into my first problem however, what format should I use on it? I&#8217;m currently going with FAT32 however im concerned by the 4GB maximum file size, i know that NTFS isn&#8217;t all that great on linux so if anyone has any suggestions let me know.</p>
<h4>HD Review</h4>
<p>I thought I might give &#8220;reviewing&#8221; it a go, I&#8217;m not usually one for saying &#8220;this is crap&#8221; because I just do my research and buy which ever product is best so i don&#8217;t deal with alot of &#8220;crap&#8221; (i really wish blogs could have a crap alarm like LO). Firstly, it&#8217;s very very geared towards windows users however that is just a fact of life. I get a total of 465GB out of the &#8220;500&#8243; claimed which agian is fine and totally expected. I really love some of the hardware features, I&#8217;m one of those computer geeks who turns his computer off when he goes to bed, i know its extreme (i do take my netbook to bed with me though :s). This drive turns on and off with your computer, it is completely independantly powered, I think thats just a pain useful feature. I&#8217;ve had other drives which require you to switch them on and off manually and I&#8217;m just too lazy for that. It also has an &#8220;power-saving mode&#8221; , i&#8217;ve not been able to find any material telling me how it saves power exactly but the description says</p>
<p>[quote]Buffalo DriveStation USB 2.0 Hard Disk is a simple solution to back up your important data.<br />
The Power Saving Utility constantly monitors data access to the hard drive and automatically redcues power consumption when the unit is idle.<br />
TurboUSB software increases data transfer speeds via USB.<br />
Secure Lock Ware software encrypts and protects your important personal data from theft and unauthorised access.<br />
With Auto Power On/Off Function, the DriveStation automatically turns on/off with your Windows PC.[/quote]</p>
<p>Now i worry slightly that &#8220;reducing power&#8221; between idles will reduce performance or cause it to consume more power spinning up if the time between idles is short. The last feature still remains my favourite.</p>
<h4>WednesdayMorning</h4>
<p>Well in my last post i mentioned some changes, i&#8217;ve edited the splash to point here. The layout of the splash will give you an idea off what the website will look like. I&#8217;m going to use the template that i designed the WoW Site as it didn&#8217;t have a WoW Theme to it. Eventually the blog will be skinned to match or i&#8217;ll intergrate the blog into it somehow but for now the website will be used for the following :-</p>
<ul>
<li>Publishing tutorials, articles and HOWTO&#8217;s on pretty much anything I&#8217;m working on</li>
<li>Some Scripts, a few friends of mine are flash developers (flash game developers) and they bitch about there being no truely good and easy to set up arcade scripts so i thought i&#8217;d start with that</li>
</ul>
<p>It&#8217;s a pretty limited scope at the moment but I&#8217;m sure some idea&#8217;s will come to me as I get started.</p>
<h4>Exams are nearly over!</h4>
<p>I&#8217;ve got my last examination off Semester 1 tomorrow and I can&#8217;t wait, this has been the most packed semester I&#8217;ve had yet and from what i&#8217;ve been told this is as bad as it gets. I plan on taking the whole weekend (including friday) off to do absolutely nothing. It&#8217;s been a fair while since I&#8217;ve had chance to do nothing.</p>
<p>Well i&#8217;ll try an update a little quicker next time, probably will be about my new setup for my desktop and my experience with that.</p>
<p>Darius</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wednesdaymorning.co.uk/2009/01/the-big-swap-over/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Enter Title Here</title>
		<link>http://blog.wednesdaymorning.co.uk/2009/01/32/</link>
		<comments>http://blog.wednesdaymorning.co.uk/2009/01/32/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 21:21:35 +0000</pubDate>
		<dc:creator>Darius</dc:creator>
				<category><![CDATA[Crunchbang]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.wednesdaymorning.co.uk/?p=32</guid>
		<description><![CDATA[Edit: Wordpress doesn&#8217;t seem to let me put &#60; in my titles!
Greetings,
Got a couple of things to talk about today,

The future of wednesdaymorning.co.uk
Stupidly small USB keys
Crunchbang update
Twitter? What do you use it for??
Ubuntu Phone Buddy and other gadgets
anything else that comes to me as i write


Future of  WednesdayMorning.co.uk
Well anyone who&#8217;s read the blog that has [...]]]></description>
			<content:encoded><![CDATA[<p>Edit: Wordpress doesn&#8217;t seem to let me put &lt; in my titles!</p>
<p>Greetings,</p>
<p>Got a couple of things to talk about today,</p>
<ul>
<li>The future of wednesdaymorning.co.uk</li>
<li>Stupidly small USB keys</li>
<li>Crunchbang update</li>
<li>Twitter? What do you use it for??</li>
<li>Ubuntu Phone Buddy and other gadgets</li>
<li>anything else that comes to me as i write</li>
</ul>
<p><span id="more-32"></span></p>
<p><strong>Future of  WednesdayMorning.co.uk</strong></p>
<p>Well anyone who&#8217;s read the blog that has read the main domain site will know what wednesdaymorning.co.uk was suppost to be about.  Check out the <a href="http://wednesdaymorning.co.uk" target="_blank">splash description</a> if you haven&#8217;t already, it&#8217;s basically a WoW UI repository. It stores your lua data and addons and restores it on other machines, it was an idea I had while i was on the train to see my girlfriend when she was studying in Reading. The big selling point of it was that it would be a in Java and wouldn&#8217;t require a client to actually be installed on the users computer. Anyway but the big upset is that</p>
<p>&#8230;</p>
<p>&#8230;</p>
<p><strong>i&#8217;ve stopped playing WoW, </strong>mainly because of issues associated with the latest expansion pack but it was about time for me to stop. Now, this doesn&#8217;t stop be developing this website which is something im still interested in however it&#8217;s not something I&#8217;m interested in constantly updating and maintainingt So i&#8217;m trying to think of something to do with this domain, now  I already have the blog but maybe I could add some kind of personal portal including things like :-</p>
<ul>
<li>tutorials i&#8217;ve written and future tutorials</li>
<li>interesting news articles i find</li>
</ul>
<p>As you can tell i&#8217;m kinda stumped, so anyone with any idea&#8217;s please <strong>post a comment</strong> and let me know about them. I&#8217;m always looking for a reason to code something in PHP!</p>
<p><strong>Stupidly Small USB Keys</strong></p>
<p>Okay, they really annoy me. I&#8217;m a firm believer that making things smaller for the sake of making things smaller is entirely pointless, now I&#8217;m not refering to transistors or anything that is a true benifit. I&#8217;m talking about USB Flash drives mainly, i find having an 8gb flash drive the size of my pinky a little pointless and just an effort to sell more pointless gadgets. Here&#8217;s a picture illustrating my point.</p>
<p><img class="aligncenter size-medium wp-image-33" title="stupidlysmallusbkeys" src="http://blog.wednesdaymorning.co.uk/wp-content/uploads/2009/01/stupidlysmallusbkeys-300x225.jpg" alt="stupidlysmallusbkeys" width="300" height="225" /></p>
<p>Going from left to right, 8gb USB Flash Drive, 1gb USB Flash Drive, Pen (for scaling), 100gb USB Hard Disk. As you can see the first USB drive is the one i&#8217;m talking about. The second one is in my opinion the best size for a USB storage device, it&#8217;s big enough to remember however its also small enough to fit inside a pocket or wallet. The 100gb USB HD is infact what i used to carry around with me before I got my eee pc and I still carry it along with me these days however sometimes i felt the cable annoying. So that was my little rant about them, they tend to come in 2-8gb sizes and are quite cheap however if you buy one please tie it to yourself because you are bound to loose or forget it.</p>
<p><strong>Crunchbang Update!</strong></p>
<p>Now this isn&#8217;t techniqually true as i write this because the update instructions arn&#8217;t out yet so if you want the latest version you have to install it clean.</p>
<p>Download it : <a href="http://crunchbanglinux.org/wiki/downloads">http://crunchbanglinux.org/wiki/downloads</a></p>
<p>Release Notes:<a href="http://crunchbanglinux.org/wiki/release-notes/8.10.02"> http://crunchbanglinux.org/wiki/release-notes/8.10.02</a></p>
<p>Now i can&#8217;t really give it a review because i haven&#8217;t used it so as soon as the update instructions code up i&#8217;ll stick up some kind of review however there was something in the release notes that struck my eye.</p>
<p>[quote]A modified default theme for use on smaller screens.[/quote]</p>
<p>I don&#8217;t remember from previous release notes if this was something already in their because if it was it was poorly done but i do remember posting about it on the forums so I&#8217;m crossing my fingers <img src='http://blog.wednesdaymorning.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><strong>Twitter</strong></p>
<p>I recently signed up to twitter, <a href="http://twitter.com/aughban">http://twitter.com/aughban</a>. Every time i go to change my picture I find that there are to many tweets? Okay i&#8217;m all for blogging and podcasting but I don&#8217;t really see what i should do with this twitter thing, now that might be because i don&#8217;t have any friends on it (mainly because the search function has been disabled).</p>
<p>So? if you want to see my tweets add me, I would really like to see what all the fuss is about.</p>
<p><strong>Ubuntu Phone Buddy!</strong></p>
<p>This thing is really cool!</p>
<div class="wp-caption aligncenter" style="width: 220px"><a href="http://shop.canonical.com/product_info.php?products_id=249"><img title="Ubuntu Phone Buddy" src="http://shop.canonical.com/images/m/UBN80003.jpg" alt="3x USB ports, SD Card Readers and a phone charger with multiple types for most phones on the market" width="210" height="210" /></a><p class="wp-caption-text">3x USB ports, SD Card Readers and a phone charger with multiple types for most phones on the market</p></div>
<p>Now i&#8217;m not just shamelessly plugging this thing, I actually bought one! Mainly because i needed somewhere to put my phone when im at my desk but it also provides a few helpful features such as the phone charger. The phone charger runs entirely off the power supplied via USB and its damn useful because it means i can leave my phone charger by my bed. The one and only complaint I have about the thing is that you must keep the silicon pad very clean or it doesn&#8217;t allow your phone to stick to it! This does mean every few days i need to give it a wipe because of the dust on my phone from where its been in my pockets.</p>
<p>I did find it kind of ironic that in the instructions it mentioned how to install it on Windows and Mac and not linux however  it worked fine in crunchbang.</p>
<p><strong>etc</strong></p>
<p>I&#8217;ve been listening to the <a href="http://linuxoutlaws.com/">linux outlaws</a> podcast while i&#8217;ve been writing this, i think i&#8217;ve mentioned before that its one of the podcasts i enjoy listening too and they had a few good articles that have come up over the week such as the Oz&#8217;s banning MySQL people and the follow-up to the teacher incedent. If you haven&#8217;t read them I suggest you go and listen to the podcast, they have to genuinely interesting stuff on their and they are very easy on the ears.Oh and they are firefly fans which is always a plus in my books, they take the line &#8220;we aim to misbehave&#8221; for their website and i think it suits the theme very well. Oh and fab is a crunchbang user so thats another plus! (you can probably see from the very informal structure to these posts, i don&#8217;t actually plan anything in advance and my english isn&#8217;t very good either)</p>
<p>I suppose this being a blog about me and my Uni life I should mention something about it, i&#8217;ve had my head in my operating systems book the last few days learning and revising everything for my exam this week. It&#8217;s going well, its by far the most content rich module i&#8217;ve done this semester (i would even go as far to say to content rich) however the teacher is extremely helpful and attentative to our questions. I really can&#8217;t wait untill the next semester starts and I don&#8217;t have any work for a week or so, I could really do with a few days off to do absolutely nothing!</p>
<p>Thats all for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wednesdaymorning.co.uk/2009/01/32/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

