<?xml version="1.0" encoding="UTF-8"?>
<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>https://rickvause.com/</link><item><title>Note on upgrading Postgres.app for Python developers (psycopg2)</title><description>&lt;p&gt;The Postgres.app website has pretty detailed information on &lt;a href="http://postgresapp.com/documentation/install.html"&gt;upgrading your installation&lt;/a&gt;, however it does not cover a situation I came across.&lt;/p&gt;

&lt;p&gt;After upgrading a minor release (&lt;code&gt;9.3.x&lt;/code&gt; -&amp;gt; &lt;code&gt;9.4.x&lt;/code&gt;) psycopg2 failed to run with the following error:

&lt;/p&gt;&lt;pre class="prettyprint"&gt;
Library not loaded: /Applications/Postgres.app/Contents/Versions/9.3/lib/libssl.1.0.0.dylib
&lt;/pre&gt;


&lt;p&gt;Fixing this issue required that I reinstall and rebuild psycopg2 without pip&amp;rsquo;s cache in all my environments.

&lt;/p&gt;&lt;pre class="prettyprint lang-bash"&gt;
$ pip uninstall psycopg2
$ pip install --no-cache-dir psycopg2
&lt;/pre&gt;


&lt;p&gt;Though I experienced this issue as a user of Postgres.app, it is very likely that you might run into this issue using other installation methods on OSX and other environments.&lt;/p&gt;</description><link>https://rickvause.com/post/132147177308</link><guid>https://rickvause.com/post/132147177308</guid><pubDate>Thu, 29 Oct 2015 14:46:43 +0100</pubDate><category>osx</category><category>python</category><category>postgres</category><category>psycopg2</category><category>pip</category></item><item><title>Problem With Migrations Whilst Running Tests on a Django Project with PostGIS</title><description>So if you are using PostGIS 2.0 and get an error like this:

&lt;pre class="prettyprint"&gt;
django.db.utils.ProgrammingError: type modifier is not allowed for type "geometry"
&lt;/pre&gt;

You probably still have your &lt;code&gt;template_postgis&lt;/code&gt; template that Django &lt;a href="https://github.com/django/django/blob/1.6/django/contrib/gis/db/backends/postgis/creation.py#L12"&gt;checks for&lt;/a&gt; and you need to remove it.</description><link>https://rickvause.com/post/68980750825</link><guid>https://rickvause.com/post/68980750825</guid><pubDate>Wed, 04 Dec 2013 16:27:23 +0100</pubDate><category>django</category><category>geodjango</category><category>postgis</category><category>postgres</category><category>databases</category><category>migrations</category></item><item><title>Fix: Supervisord not reading configuration when setup from Debian Squeeze package</title><description>&lt;p&gt;So I was setting up supervisord on a Debian server and figured the cleanest way to install and set it up would be to &lt;code class="prettyprint"&gt;apt-get install supervisor&lt;/code&gt; however after a little bit of confusion I found this package is not properly set up to read the default config provided in &lt;code class="prettyprint"&gt;/etc/supervisor/supervisord.conf&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;So you need to open up &lt;code class="prettyprint"&gt;/etc/defaults/supervisor&lt;/code&gt; and change the following line:&lt;/p&gt;

&lt;pre class="prettyprint"&gt;
DAEMON_OPTS=""
&lt;/pre&gt;

&lt;p&gt;to:&lt;/p&gt;

&lt;pre class="prettyprint"&gt;
DAEMON_OPTS="-c /etc/supervisor/supervisord.conf"
&lt;/pre&gt;

&lt;p&gt;Then:&lt;/p&gt;

&lt;pre class="prettyprint"&gt;
/etc/init.d/supervisor stop
/etc/init.d/supervisor start
&lt;/pre&gt;

&lt;p&gt;Then you should have a working setup of supervisord.&lt;/p&gt;</description><link>https://rickvause.com/post/54016519171</link><guid>https://rickvause.com/post/54016519171</guid><pubDate>Thu, 27 Jun 2013 16:44:51 +0200</pubDate><category>debian</category><category>supervisor</category><category>daemon</category></item><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;rsquo;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>https://rickvause.com/post/49354988243</link><guid>https://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;hellip;&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;hellip;and &lt;code class="prettyprint"&gt;class="datepicker-pls"&lt;/code&gt; is on the rendered widget.&lt;/p&gt;</description><link>https://rickvause.com/post/48273559973</link><guid>https://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>https://rickvause.com/post/48127798252</link><guid>https://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;lsquo;django_nose&amp;rsquo; after 'south&amp;rsquo; in the &lt;code class="prettyprint"&gt;INSTALLED_APPS&lt;/code&gt; setting made the option available again.&lt;/p&gt;</description><link>https://rickvause.com/post/47618585722</link><guid>https://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>https://rickvause.com/post/46496441291</link><guid>https://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>https://rickvause.com/post/46451596851</link><guid>https://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>https://rickvause.com/post/46410958928</link><guid>https://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>https://rickvause.com/post/46352456991</link><guid>https://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="https://64.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>https://rickvause.com/post/33711768401</link><guid>https://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;rsquo;s showing more and more over time that I don&amp;rsquo;t have the aptitude for finance related concepts.&lt;/p&gt;

&lt;p&gt;After searching on Google for an answer to &amp;ldquo;what number is net and what number is gross?&amp;rdquo; 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;rsquo;s Net price will be €100 as there is €20 tax.&lt;/p&gt;

&lt;p&gt;That&amp;rsquo;s all I needed to know. I hope there isn&amp;rsquo;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>https://rickvause.com/post/33152717960</link><guid>https://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>https://rickvause.com/post/23345947049</link><guid>https://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>https://rickvause.com/post/23345876243</link><guid>https://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;rsquo;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;rsquo;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;ldquo;Open with&amp;hellip;&amp;rdquo;&lt;/p&gt;  &lt;p&gt;In the &amp;ldquo;Custom Command Line&amp;rdquo; 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;ldquo;Set selected application as default&amp;hellip;blah&amp;rdquo; and finally click &amp;ldquo;Ok&amp;rdquo;.&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>https://rickvause.com/post/23345862416</link><guid>https://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;rsquo;s younger brother (13) gets asked questions like, &amp;ldquo;Are you on the computer again?&amp;rdquo; and other naggy-like comments as he will spend a lot of time at the computer playing video games. I don&amp;rsquo;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;rsquo;t for everybody so I wouldn&amp;rsquo;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;rsquo;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;hellip;&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;rsquo;t watch TV and beer is good.&lt;/p&gt; &lt;/div&gt;</description><link>https://rickvause.com/post/23345847148</link><guid>https://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;rsquo;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>https://rickvause.com/post/23345825449</link><guid>https://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;div class="posterous_autopost"&gt;&lt;script src="https://gist.github.com/949604.js?file=setup.sh"&gt;&lt;/script&gt; &lt;/div&gt;</description><link>https://rickvause.com/post/23345804746</link><guid>https://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;rsquo;ll be writing here in my web browser to Posterous, then I&amp;rsquo;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;rsquo;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;rsquo;ll be editing code in &lt;a href="http://projects.gnome.org/gedit/"&gt;gedit&lt;/a&gt;, then I&amp;rsquo;ll hit &amp;lt;Alt&amp;gt;&amp;lt;Tab&amp;gt; twice again and I&amp;rsquo;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;rsquo;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>https://rickvause.com/post/23345792337</link><guid>https://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></channel></rss>
