<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><description>Hi, I’m Rick Vause. I am a web developer that loves programming, learning new technologies amongst other technology based pursuits.
I also like music and art.</description><title>RICKVAUSE.COM</title><generator>Tumblr (3.0; @arvors)</generator><link>http://rickvause.com/</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/rickvausecom" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="rickvausecom" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://tumblr.superfeedr.com/" /><item><title>Serialize Mixin for Django Models</title><description>&lt;p&gt;This is by no means finished and tested but I have been trying to find a simple way of serializing model instances data so I can just go ahead and &lt;code class="prettyprint"&gt;json.dumps&lt;/code&gt; that data. I find the built in serializers in Django don&amp;#8217;t quite fit what I want.&lt;/p&gt;

&lt;p&gt;Here is what I got so far:&lt;/p&gt;

&lt;script src="https://gist.github.com/rvause/5494989.js"&gt;&lt;/script&gt;</description><link>http://rickvause.com/post/49354988243</link><guid>http://rickvause.com/post/49354988243</guid><pubDate>Wed, 01 May 2013 14:31:11 +0200</pubDate><category>django</category><category>code</category><category>serialization</category><category>json</category></item><item><title>Django Tip: CSS classes on your form fields</title><description>&lt;p&gt;I wanted to apply some Javascript to certain date fields (but not all) in an application I am working on. I wanted to keep it as simple as possible on the frontend. It is difficult to do this in a generic way when you are working with Django forms since a &lt;code class="prettyprint"&gt;DateField&lt;/code&gt; is rendered as a plan old text input by default. At least that is what I thought&amp;#8230;&lt;/p&gt;

&lt;p&gt;After a very short time digging (surprised I missed it before) I found that you can pass an &lt;code class="prettyprint"&gt;attrs&lt;/code&gt; argument to a widget that basically sets attributes on the rendered HTML element. So now my field looks like this:&lt;/p&gt;

&lt;pre class="prettyprint"&gt;
date_from = forms.DateField(
    widget=forms.DateInput(attrs={'class': 'datepicker-pls'})
)
&lt;/pre&gt;

&lt;p&gt;&amp;#8230;and &lt;code class="prettyprint"&gt;class="datepicker-pls"&lt;/code&gt; is on the rendered widget.&lt;/p&gt;</description><link>http://rickvause.com/post/48273559973</link><guid>http://rickvause.com/post/48273559973</guid><pubDate>Thu, 18 Apr 2013 14:29:57 +0200</pubDate><category>django</category><category>tip</category><category>python</category><category>javascript</category><category>html</category><category>forms</category></item><item><title>Django snippet: as_json decorator for simple views to return JSON</title><description>&lt;p&gt;I find myself returning simple dict objects as JSON for the browser to use a lot so I find this little decorator handy in my views:&lt;/p&gt;

&lt;p&gt;&lt;script src="https://gist.github.com/rvause/5397411.js" type="text/javascript"&gt;&lt;/script&gt;&lt;/p&gt;</description><link>http://rickvause.com/post/48127798252</link><guid>http://rickvause.com/post/48127798252</guid><pubDate>Tue, 16 Apr 2013 18:41:00 +0200</pubDate><category>django</category><category>decorator</category><category>snippet</category></item><item><title>Geez! "error: no such option: --with-xunit" when running tests with django-nose</title><description>&lt;p&gt;So I came across a problem where I was running tests with &lt;a href="https://github.com/jbalogh/django-nose"&gt;django-nose&lt;/a&gt; using the &lt;code class="prettyprint"&gt;--with-xunit&lt;/code&gt; option and I was meeting the error:&lt;/p&gt;

&lt;pre class="prettyprint"&gt;
error: no such option: --with-xunit
&lt;/pre&gt;

&lt;p&gt;After much hair loss and confusion I found the following solution to work. The problem appears to be caused by south (although I do not know why) so moving &amp;#8216;django_nose&amp;#8217; after &amp;#8216;south&amp;#8217; in the &lt;code class="prettyprint"&gt;INSTALLED_APPS&lt;/code&gt; setting made the option available again.&lt;/p&gt;</description><link>http://rickvause.com/post/47618585722</link><guid>http://rickvause.com/post/47618585722</guid><pubDate>Wed, 10 Apr 2013 15:34:00 +0200</pubDate><category>fix</category><category>python</category><category>django</category><category>south</category><category>django-nose</category><category>tests</category><category>nose</category></item><item><title>"What you don’t know can hurt you, only you won’t know it."</title><description>“What you don’t know can hurt you, only you won’t know it.”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;found in fortunes-mod&lt;/em&gt;</description><link>http://rickvause.com/post/46496441291</link><guid>http://rickvause.com/post/46496441291</guid><pubDate>Thu, 28 Mar 2013 10:59:23 +0100</pubDate><category>fortune</category><category>quote</category></item><item><title>Fix: Browser links not working in MonoDevelop</title><description>&lt;p&gt;I came across this minor, but annoying problem after installing MonoDevelop where the clicking the browser links just caused an error.&lt;/p&gt;

&lt;p&gt;Since I use a very simple lightweight setup of Xmonad it was sufficient to add the following to my &lt;code class="prettyprint"&gt;~/.xinitrc&lt;/code&gt; file:&lt;/p&gt;

&lt;pre class="prettyprint"&gt;
export BROWSER=chromium
&lt;/pre&gt;

&lt;p&gt;Or firefox, or opera or whatever you want I guess.&lt;/p&gt;</description><link>http://rickvause.com/post/46451596851</link><guid>http://rickvause.com/post/46451596851</guid><pubDate>Wed, 27 Mar 2013 23:04:00 +0100</pubDate><category>fix</category><category>monodevelop</category><category>browser</category></item><item><title>Fix: Xmobar hidden by windows in Xmonad</title><description>&lt;p&gt;I had this problem when I started up X this morning that Xmobar in my configuration was being hidden by windows, like they were displayed over it. My configuration had not changed in this regard for about 2 years and I had never come across this problem before, so I went to have a look on the Arch Forums. I came across &lt;a href="https://bbs.archlinux.org/viewtopic.php?id=150653"&gt;this thread&lt;/a&gt; and whilst there is a number of solutions here what worked for me was the following:&lt;/p&gt;

&lt;pre class="prettyprint"&gt;
$ vim ~/.xmonad/xmonad.hs  # Check config
$ xmonad --recompile
&lt;/pre&gt;

&lt;p&gt;Then hit mod-q and it was back to normal.&lt;/p&gt;

&lt;h3&gt;Update&lt;/h3&gt;

&lt;p&gt;A day later, the same problem came up again when starting my work PC. I took another look at that same thread where the posters had suggested that it is a bug in Xmobar causing the problem. So I downgraded to &lt;strong&gt;0.15-1&lt;/strong&gt; using the downgrade utility from &lt;a href="https://aur.archlinux.org/packages.php?ID=31937"&gt;AUR&lt;/a&gt; and this time my problem is resolved.&lt;/p&gt;

&lt;h3&gt;Update 2&lt;/h3&gt;

&lt;p&gt;This is seemingly fixed in &lt;strong&gt;0.17-1&lt;/strong&gt;.&lt;/p&gt;</description><link>http://rickvause.com/post/46410958928</link><guid>http://rickvause.com/post/46410958928</guid><pubDate>Wed, 27 Mar 2013 10:30:00 +0100</pubDate><category>arch</category><category>linux</category><category>xmonad</category><category>xmonbar</category><category>fix</category></item><item><title>Arch Linux: Clementine does not play some audio source after installing...</title><description>&lt;p&gt;You need to install the following package:&lt;/p&gt;

&lt;pre class="prettyprint"&gt;
$ sudo pacman -S gstreamer0.10-plugins
&lt;/pre&gt;

&lt;p&gt;Now when you start Clementine, the audio source you are trying to play should play.&lt;/p&gt;</description><link>http://rickvause.com/post/46352456991</link><guid>http://rickvause.com/post/46352456991</guid><pubDate>Tue, 26 Mar 2013 19:53:00 +0100</pubDate><category>arch</category><category>linux</category><category>fix</category><category>gstreamer</category><category>audio</category><category>clementine</category></item><item><title>My son made a picture of me today, it’s interesting. The...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_mbzu8ef1av1rr12f2o1_r1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;My son made a picture of me today, it’s interesting. The leaves are my facial hair.&lt;/p&gt;</description><link>http://rickvause.com/post/33711768401</link><guid>http://rickvause.com/post/33711768401</guid><pubDate>Tue, 16 Oct 2012 18:09:00 +0200</pubDate></item><item><title>Pricing - Net and Gross? Which is Which? (I didn't have a clue)</title><description>&lt;p&gt;Just a quickie. It sounds ridiculous thinking about it now that I did not know this nor was I able to figure it out, but it&amp;#8217;s showing more and more over time that I don&amp;#8217;t have the aptitude for finance related concepts.&lt;/p&gt;

&lt;p&gt;After searching on Google for an answer to &amp;#8220;what number is net and what number is gross?&amp;#8221; I found myself more confused by the answers I came across. Eventually I got a moderately straight answer so here it is described as I would have understood it.&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;Net - The price before tax (ie the amount your client is probably putting in to their online store admin)&lt;/li&gt;
&lt;li&gt;Tax - A percentage of the net price (20% for example)&lt;/li&gt;
&lt;li&gt;Gross - Net + Tax (the price the customer pays)&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;So if the most expensive can of Heinz Baked Beans is €120. That means it&amp;#8217;s Net price will be €100 as there is €20 tax.&lt;/p&gt;

&lt;p&gt;That&amp;#8217;s all I needed to know. I hope there isn&amp;#8217;t anyone else as bad at this stuff as me, but if there is, I hope they find this and it helps them.&lt;/p&gt;</description><link>http://rickvause.com/post/33152717960</link><guid>http://rickvause.com/post/33152717960</guid><pubDate>Tue, 25 Sep 2012 00:00:00 +0200</pubDate></item><item><title>Encoder for ids in the url for Django apps</title><description>&lt;p&gt;&lt;script src="https://gist.github.com/1846656.js?file=urlencoder.py"&gt;&lt;/script&gt;&lt;/p&gt;</description><link>http://rickvause.com/post/23345947049</link><guid>http://rickvause.com/post/23345947049</guid><pubDate>Sat, 19 May 2012 14:50:00 +0200</pubDate></item><item><title>Simple, fuzzy, timesince function for use in Javascript</title><description>&lt;p&gt;&lt;script src="https://gist.github.com/1677490.js?file=fuzzy_timesince.js"&gt;&lt;/script&gt;&lt;/p&gt;</description><link>http://rickvause.com/post/23345876243</link><guid>http://rickvause.com/post/23345876243</guid><pubDate>Wed, 25 Jan 2012 11:23:00 +0100</pubDate><category>date</category><category>javascript</category><category>time</category></item><item><title>Using The Old .deb Installer (gdebi) Instead of Software Centre in Ubuntu </title><description>&lt;div class="posterous_autopost"&gt;&lt;p&gt;The new Ubuntu Software Centre is really great, and I often explore it to find the awesome packages that are available to install. One thing that bugs the hell out of me, however, is that in recent versions of Ubuntu .deb files (ie when you download a deb package and manually install it) open in the Ubuntu Software Centre and the process is incredibly SLOW.&lt;/p&gt;  &lt;p&gt;I have dealt with this and just accepted it, instead using the command line (dpkg) instead to avoid using the Ubuntu Software Centre, but I occasionaly forget and just double click the deb file to launch it. Today I decided to solve this problem for myself, so here is how I did it.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Tip: How to give the old deb installer it&amp;#8217;s place back in newer versions of Ubuntu (instructions are assuming use of pcmanfm, if you are using nautilus, you should start using pcmanfm, it&amp;#8217;s better - otherwise the process is much the same in nautilus) &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;First&lt;/p&gt;  &lt;blockquote class="posterous_short_quote"&gt;  &lt;p&gt;sudo apt-get install gedbi&lt;/p&gt;  &lt;/blockquote&gt;  &lt;p&gt;This will get gdebi installed. Next find a .deb file you wish to install with your file manager, right click it then select &amp;#8220;Open with&amp;#8230;&amp;#8221;&lt;/p&gt;  &lt;p&gt;In the &amp;#8220;Custom Command Line&amp;#8221; tab enter the following&lt;/p&gt;  &lt;blockquote class="posterous_short_quote"&gt;  &lt;p&gt;gdebi-gtk %f&lt;/p&gt;  &lt;/blockquote&gt;  &lt;p&gt;Click the checkbox next to &amp;#8220;Set selected application as default&amp;#8230;blah&amp;#8221; and finally click &amp;#8220;Ok&amp;#8221;.&lt;/p&gt;  &lt;p&gt;The deb should load up with gdebi and double-clicking .deb files in the future should fire up gdebi instead of Ubuntu Software Centre.&lt;/p&gt;  &lt;p&gt;Again, Ubuntu Software Centre is great for discovering and installing software that is available in the Ubuntu repos but I just think it should be keep out of the loop if I found the software else where.&lt;/p&gt; &lt;/div&gt;</description><link>http://rickvause.com/post/23345862416</link><guid>http://rickvause.com/post/23345862416</guid><pubDate>Fri, 16 Sep 2011 06:55:00 +0200</pubDate><category>dpkg</category><category>packages</category><category>software</category><category>tip</category><category>ubuntu</category></item><item><title>Stuff I learnt whilst not watching TV</title><description>&lt;div class="posterous_autopost"&gt;&lt;p&gt;So I noticed my partner&amp;#8217;s younger brother (13) gets asked questions like, &amp;#8220;Are you on the computer again?&amp;#8221; and other naggy-like comments as he will spend a lot of time at the computer playing video games. I don&amp;#8217;t think there is anything wrong with this, he is engaging his brain, socialising and having some fun at the same time. &lt;/p&gt;  &lt;p&gt;This got me thinking as I experienced the same sort of nagging when I was a child at home living with my parents. They would complain about the amount of time I spent at the computer and the amount of time I invested in video games - in fact they still do this. This is totally understandable, as hacking around on a PC and playing video games isn&amp;#8217;t for everybody so I wouldn&amp;#8217;t expect anything else. I feel the same way about TV; I do not understand the draw it has and wonder how people can sit and watch so much television.&lt;/p&gt;  &lt;p&gt;So from whatever age I was when my parents first brought home a games console, and brought home a PC I was hooked on hacking, learning and gaming. As I grew older, I spent a larger portion of time at my PC learning new skills and leveling up - and this has continued right up until now. I don&amp;#8217;t regret any of it, not one bit.&lt;/p&gt;  &lt;p&gt;So here is a list of some of the stuff I learnt and did whilst not watching TV (in no particular order)&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;Learnt GFA Basic&lt;/li&gt;  &lt;li&gt;Played Final Fantasy VII three times (possibly one of the best gaming experiences ever)&lt;/li&gt;  &lt;li&gt;Learnt how to make visualisations for Winamp&lt;/li&gt;  &lt;li&gt;Learnt Python (£££ this now pays my bills)&lt;/li&gt;  &lt;li&gt;Learnt PHP (this does not pay my bills)&lt;/li&gt;  &lt;li&gt;Learnt to write Javascript and later use awesome libraries like jQuery&lt;/li&gt;  &lt;li&gt;Learnt about servers, how to build websites and services (£££)&lt;/li&gt;  &lt;li&gt;Discovered loads of awesome music using &lt;a href="http://last.fm"&gt;last.fm&lt;/a&gt;&lt;/li&gt;  &lt;li&gt;Played with and discovered many distributions of Linux including Fedora, SuSe, Debian, Ubuntu, Gentoo&lt;/li&gt;  &lt;li&gt;Maintained and improved a private Bit-Torrent tracker website&lt;/li&gt;  &lt;li&gt;Learnt to use CVS&lt;/li&gt;  &lt;li&gt;Learnt to use Git :)&lt;/li&gt;  &lt;li&gt;Learnt how to configure, maintain and modify various game server software&lt;/li&gt;  &lt;li&gt;Played Chess with Chinese people&lt;/li&gt;  &lt;li&gt;Learnt how to build a computer from a set of components&lt;/li&gt;  &lt;li&gt;Learnt about disk partitioning - sounds boring but incredibly useful&lt;/li&gt;  &lt;li&gt;Learnt to administer Linux and Windows systems&lt;/li&gt;  &lt;li&gt;Leartn to compile from source (used to be very important a few years ago, almost never do it now)&lt;/li&gt;  &lt;li&gt;Played Phantasy Star Online (maybe the first MMO on a console?)&lt;/li&gt;  &lt;li&gt;Played Crazy Taxi (a lot)&lt;/li&gt;  &lt;li&gt;Learnt how to sample, create waveforms, tempo match, and use a tracker to create music&lt;/li&gt;  &lt;li&gt;Improved my questionable guitar skills by downloading tabs&lt;/li&gt;  &lt;li&gt;&amp;#8230;&lt;/li&gt;  &lt;/ul&gt;&lt;p&gt;There is loads more, but this is the stuff at the top of my head. Of course I have learnt a lot and done a lot of other stuff whilst away from the computer in this time but I am just writing to say I am sooo glad I didn&amp;#8217;t watch TV and beer is good.&lt;/p&gt; &lt;/div&gt;</description><link>http://rickvause.com/post/23345847148</link><guid>http://rickvause.com/post/23345847148</guid><pubDate>Sat, 03 Sep 2011 11:00:00 +0200</pubDate></item><item><title>Things to do after downgrading to Ubuntu 10.10 (Maverick)</title><description>&lt;div class="posterous_autopost"&gt;&lt;p&gt;So after using Natty for a short while, I discovered that it isn&amp;#8217;t quite ready for me to depend on full time. After a number of freezes and Wifi issues, I decided to return to Maverick Meerkat (10.10) by downgrading. Here is the script I ran after that. I commented out the lines that write to the home folder since this time I maintained the same home folder on a separate partition.&lt;/p&gt;  &lt;p&gt;  &lt;script src="https://gist.github.com/953206.js?file=setup.sh"&gt;&lt;/script&gt;&lt;/p&gt; &lt;/div&gt;</description><link>http://rickvause.com/post/23345825449</link><guid>http://rickvause.com/post/23345825449</guid><pubDate>Tue, 03 May 2011 06:01:00 +0200</pubDate></item><item><title>Things to do after installing Ubuntu 11.04 (Natty Narwhal)</title><description>&lt;p&gt;&lt;div class="posterous_autopost"&gt;&lt;script src="https://gist.github.com/949604.js?file=setup.sh"&gt;&lt;/script&gt;&lt;/div&gt;&lt;/p&gt;</description><link>http://rickvause.com/post/23345804746</link><guid>http://rickvause.com/post/23345804746</guid><pubDate>Sat, 30 Apr 2011 05:19:00 +0200</pubDate></item><item><title>Mouse vs Keyboard - What is happening with the modern desktop environment</title><description>&lt;div class="posterous_autopost"&gt;&lt;div class="p_embed p_image_embed"&gt; &lt;img alt="Gnome2-logo-black-1kx1" height="200" src="http://getfile4.posterous.com/getfile/files.posterous.com/temp-2011-02-13/GeGjFGDBBGxuGffHpodGyJxgjBvzajjvEwHaevnphtrzxfIpmCxCblcHhazb/gnome2-logo-black-1Kx1.3K.png.scaled500.png" width="146"/&gt;&lt;/div&gt; I love and use &lt;a href="http://www.gnome.org/"&gt;Gnome&lt;/a&gt; but have been thinking a lot about how we use computers recently; with &lt;a href="https://wiki.ubuntu.com/Unity"&gt;Unity&lt;/a&gt; coming to the desktop and other similar desktops already in use like &lt;a href="http://www.apple.com/ipad/ios4/"&gt;iOS&lt;/a&gt; on ipad and &lt;a href="http://www.microsoft.com/windows/windows-7/default.aspx"&gt;Windows 7&lt;/a&gt;, this has raised thoughts about what desktops environments are.  &lt;p&gt;Reducing it down to a very abstract idea, Gnome for me is a series of text boxes I write in. I&amp;#8217;ll be writing here in my web browser to Posterous, then I&amp;#8217;ll hit &amp;lt;Alt&amp;gt;&amp;lt;Tab&amp;gt; and write to my friend in &lt;a href="http://live.gnome.org/Empathy"&gt;Empathy&lt;/a&gt; then I&amp;#8217;ll hit F12 to open a terminal with Guake and manage code with Git then hit F12 to go back to my friend on Empathy then &amp;lt;Alt&amp;gt;&amp;lt;Tab&amp;gt; twice and I&amp;#8217;ll be editing code in &lt;a href="http://projects.gnome.org/gedit/"&gt;gedit&lt;/a&gt;, then I&amp;#8217;ll hit &amp;lt;Alt&amp;gt;&amp;lt;Tab&amp;gt; twice again and I&amp;#8217;ll return to writing to Posterous. I am more than aware that there is plenty to click about with in Gnome but ultimately, most the time I use it I am writing and Alt-Tabbing.&lt;/p&gt;  &lt;p&gt;These newer ideas about what a desktop should be require a lot of clicking. Whilst I am very anxious to see Unity at it&amp;#8217;s completion and running perfectly on the desktop, this new way of getting stuff done is making me feel old an scared. I know that Unity will still have such keyboard shortcuts but will people like me be able to make the most of these new desktops?&lt;/p&gt;  &lt;p&gt;I know that it is going to be great for my girlfriend, but what about us folk who hate reaching for the mouse?&lt;/p&gt; &lt;/div&gt;</description><link>http://rickvause.com/post/23345792337</link><guid>http://rickvause.com/post/23345792337</guid><pubDate>Sun, 13 Feb 2011 15:41:00 +0100</pubDate><category>gnome</category><category>ios</category><category>ubuntu</category><category>unity</category><category>windows 7</category></item><item><title>Fixing no sound on Debian Squeeze with Intel HD Audio</title><description>&lt;div class="posterous_autopost"&gt;&lt;p&gt;I had been running Ubuntu on my laptop for a while (with sound), but I really wanted to try out Debian. So I set about installing and configuring it. Eventually, I noticed that I had no sound at all.&lt;/p&gt;  &lt;p&gt;After a little diagnosis, obvious stuff like checking the mixer and maxing the volume, I discovered that I could heard a very quiet (almost inaudible) sound with my headphones plugged in whilst playing some very loud music.&lt;/p&gt;  &lt;p&gt;I have a Sony Vaio laptop with an Intel HD Audio device; after speaking to the guys in #debian on freenode, I understood that Intel HD audio devices we&amp;#8217;re a little iffy and that I would have to make sure the right modules are being loaded.&lt;/p&gt;  &lt;p&gt;I considered that Ubuntu 10.10 had been installed on my laptop before and the audio worked without any additional configuration. So I compares the versions of alsa in &lt;a href="http://packages.ubuntu.com/search?keywords=alsa-base&amp;amp;searchon=names&amp;amp;suite=maverick&amp;amp;section=all"&gt;Ubuntu&lt;/a&gt; and &lt;a href="http://packages.debian.org/squeeze/alsa-base"&gt;Debian&lt;/a&gt;. They both suggested that they we&amp;#8217;re version 1.0.23.&lt;/p&gt;  &lt;p&gt;However this was not the case. Upon checking the version on the system with &amp;#8220;cat /proc/asound/version&amp;#8221;. It showed the version on Debian Sqeeze as 1.0.21 and on Ubuntu 1.0.23; this was the only apparent difference.&lt;/p&gt;  &lt;p&gt;To solve the issue, I figured I would upgrade to the latest alsa version from source. I grabbed the source for alsa-driver, alsa-lib and alsa-utils 1.0.24 from &lt;a href="http://alsa-project.org/main/index.php/Download"&gt;alsa-project.org&lt;/a&gt;. I built and installed them; after a reboot, I had sound.&lt;/p&gt;  &lt;p&gt;I did come across a small issue while configuring alsa-utils. I received an error along the lines of &amp;#8220;panelw not found&amp;#8221;. The solution &lt;a href="http://trac.64studio.com/64studio/ticket/511"&gt;here&lt;/a&gt; solved this and alowed the configuration to continue.&lt;/p&gt;  &lt;p&gt;I wondered if any other Debian users were affected by this issue.&lt;/p&gt; &lt;/div&gt;</description><link>http://rickvause.com/post/23345775828</link><guid>http://rickvause.com/post/23345775828</guid><pubDate>Fri, 11 Feb 2011 02:58:00 +0100</pubDate></item><item><title>Why I use (and love) Ubuntu</title><description>&lt;div class="posterous_autopost"&gt;&lt;div class="p_embed p_image_embed"&gt; &lt;img alt="Media_httprickvauseco_phufv" height="300" src="http://getfile5.posterous.com/getfile/files.posterous.com/import-wnny-jkic/fbxDIHgAbIkokrlxtexvzxlysfHDDaBwcsnFgonlqCJdzwlGGotCvIllCyJA/media_httprickvauseco_phufv.png.scaled500.png" width="300"/&gt;&lt;/div&gt; Since my inspiration to write has been rather dry the past couple of months, mostly due to work and work, I thought it would be cool to re-ignite my writing by sharing some reasons why I use (and love) Ubuntu. So here goes.  There are many reasons why my partner, my son and I use Ubuntu but here is just a few.  &lt;p&gt;&lt;strong&gt;Ubuntu and Gnome get out of your way&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;This is a big deal for me as I have a demanding job that means I need my system to just work and not bother me with configuration and complaints. Ubuntu and the Gnome desktop together work really well, the defaults are great and I know everything will just work so that I also may just work.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Compatibility with hardware&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;I am yet to come across any compatibility issues with hardware whilst using Ubuntu. This is great when I see colleagues and friends using Windows constantly hunting for compatible drivers for the right architecture and version of Windows whilst I know I can install Ubuntu on (almost) any machine and it will just work.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Discovering free software and choice&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Free software is always good to have but the Ubuntu Software Centre just keeps getting better and better making it easier to discover new applications and utilities to make your Ubuntu experience better. This has become my primary platform for finding new software during the last two iterations of Ubuntu that have included many an update to the software centre. Although Ubuntu is shipped with a default set of software the choice is always there to use another media player, such as Banshee or another photo manager. The ability to remove components (even big ones like the desktop) is just as valuable as the ability to add them, choice is an advantage to any Linux desktop.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Media playback&lt;/strong&gt; I don&amp;#8217;t have to worry about file formats, codecs, containers. Ubuntu will manage all this for me, it doesn&amp;#8217;t matter what sort of video or audio I am trying to play, it just works.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Design&lt;/strong&gt; Ubuntu was very&amp;#8230;brown when I started using it and it was not the prettiest looking desktop (by default) for a long time, but in the last two releases the design has come a long way with a new default theme that is almost a crime to change and a new font that looks amazing. It is only going to get better with the new Unity desktop that will be the default shell in Ubuntu 11.04.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Security&lt;/strong&gt; Ubuntu and Linux is not targeted like Windows for malware and various other bad stuff. You will not have to constantly scan update and clean your system, you get security just by using it.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;It&amp;#8217;s fresh &lt;/strong&gt;With a new release every six months Ubuntu is always fresh and new and never goes stale. Updates are regular meaning your system is always secure and you are getting the new good stuff from the packages on your system.  &amp;#8212;  There are a ton of other reasons, such as the great dev tools, the ease with which you can set up a server, the super useful live USB and the massive community and plethora of ways you can get support.&lt;/p&gt;  &lt;p&gt;&lt;em&gt;The above are reasons why I love Ubuntu, based on my well established opinions.  They may well be the reason why you don&amp;#8217;t.&lt;/em&gt;&lt;/p&gt; &lt;/div&gt;</description><link>http://rickvause.com/post/23345759972</link><guid>http://rickvause.com/post/23345759972</guid><pubDate>Fri, 31 Dec 2010 13:48:00 +0100</pubDate><category>General</category><category>ubuntu</category></item><item><title>A Thought About Salesmen</title><description>&lt;p&gt;&lt;div class="posterous_autopost"&gt;&lt;div class="p_embed p_image_embed"&gt; &lt;img alt="Media_httpwwwrickvaus_vgnsh" height="300" src="http://getfile6.posterous.com/getfile/files.posterous.com/import-wnny-jkic/HbCoiiIrzkCrsJmankFDuFxDahEsgitkvkzrJgjAyEsmxJEzaoorsCEeyEGf/media_httpwwwrickvaus_vgnsH.jpg.scaled500.jpg" width="240"/&gt;&lt;/div&gt; I know this could potentially piss off my colleagues as well as other peers but do we need them? This is coming from my area of work only, I know only about web services, websites, software, technology, I have no intention of bullshitting my way to make you beleive I really know anything about business.  Putting myself in the shoes of a client (or potential client) I would much rather speak with a person with the functional ability and knowledge to get the job done rather than someone who&amp;#8217;s skills and abilities revolve around getting me to buy something that perhaps I don&amp;#8217;t even need.  Sure they are young, smart, well presented and possibly intelligent, but do they really know what they are talking about?  Sending out salesmen for your service, as far as I see it, is working in completely the wrong direction that this should work. If your product is good and has value then people are going to come to you.  The only scenario where I see you needing a salesman is when your product or service is of no use to anybody, in which case, what the fuck are you doing? &lt;/div&gt;&lt;/p&gt;</description><link>http://rickvause.com/post/23345718110</link><guid>http://rickvause.com/post/23345718110</guid><pubDate>Sun, 10 Oct 2010 13:58:00 +0200</pubDate><category>business</category><category>General</category><category>service</category><category>technology</category></item></channel></rss>
