<?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>Mindless Blathering</title>
	<atom:link href="http://mindlessblathering.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mindlessblathering.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sat, 29 Oct 2011 02:35:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mindlessblathering.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/399c35ec863d51bba2c6673ccdd3d2f9?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Mindless Blathering</title>
		<link>http://mindlessblathering.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mindlessblathering.wordpress.com/osd.xml" title="Mindless Blathering" />
	<atom:link rel='hub' href='http://mindlessblathering.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing a newer version of a package on Debian stable</title>
		<link>http://mindlessblathering.wordpress.com/2011/10/28/installing-a-newer-version-of-a-package-on-debian-stable/</link>
		<comments>http://mindlessblathering.wordpress.com/2011/10/28/installing-a-newer-version-of-a-package-on-debian-stable/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 09:31:18 +0000</pubDate>
		<dc:creator>NathanielOffer</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[commandline]]></category>
		<category><![CDATA[crunchbang]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[gedit]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://mindlessblathering.wordpress.com/?p=192</guid>
		<description><![CDATA[I wanted to install Wireshark a network packet sniffing program today but when I checked the version available in the Debian stable repository I noticed it was several versions behind the latest available on their website. This is a common occurance on Debian as they prefer stability over cutting edge software but sometimes you need [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=192&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wanted to install Wireshark a network packet sniffing program today but when I checked the version available in the Debian stable repository I noticed it was several versions behind the latest available on their website.</p>
<p>This is a common occurance on Debian as they prefer stability over cutting edge software but sometimes you need the latest version of a software package so how do you get it when it&#8217;s not in the repos? The answer is app pinning.</p>
<p>Debian has several repos, stable of course as well as testing and unstable. Many people use the testing repo as their main package repository on a daily basis without major dramas. Unstable is the very top of the tree where the latest packages are introduced to the package tree and they are often the least stable as a result.</p>
<p>So to begin with we need to alter several files. These are <code>/etc/apt/sources.list &amp; /etc/apt/preferences</code></p>
<p>It&#8217;s good to get into the habit of creating a backup of any file you edit in Linux so I started by doing <code> sudo mv /etc/apt/sources.list /etc/apt/sources.list.nfo &amp; sudo mv /etc/apt/preferences /etc/apt/preferences.nfo</code></p>
<p>This way if you totally screw something up it&#8217;s easy to boot your system with a live cd (I recommend the System Restore Cd) and delete the modified config file, rename the backup and you&#8217;ve got a working system again.</p>
<p>Also you might be wondering why I used .nfo as the extension well I forget where I read it now but someone suggested using your initials for the extension so that&#8217;s what I do. </p>
<p>To start with open your start menu and click &#8220;Run Program&#8221; then enter <code>"gksudo [editor]"</code> (I use gedit)</p>
<p>Now we need to know what repositories to add. I added<br />
<code><br />
## Testing<br />
deb http://ftp.debian.org/debian/ testing main contrib non-free</p>
<p>## Testing Security updates<br />
deb http://security.debian.org/ testing/updates main contrib<br />
</code><br />
I just added these to the bottom of the list already there. Also i realised I mentioned unstable earlier in this post but I don&#8217;t really want to mess with that on this machine so I stayed with testing only. I also changed the existing repos from &#8220;squeeze&#8221; to &#8220;stable&#8221; just to keep everything the same.</p>
<p>Now we open /etc/apt/preferences and add<br />
<code><br />
Package: *<br />
Pin: release a=stable<br />
Pin-Priority: 700</p>
<p>Package: *<br />
Pin: release a=testing<br />
Pin-Priority: 650</p>
<p>Package: *<br />
Pin: release a=unstable<br />
Pin-Priority: 600<br />
</code><br />
As you can see the Pin-Priority numbers decrease from stable to unstable this is because apt prioritises the highest number so you don&#8217;t end up upgrading every package on your system only the one you actual want.</p>
<p>Right so save that and return to your terminal.</p>
<p>Now I ran <code>sudo apt-get install wireshark/testing</code> but that returned errors due to incompatible version numbers of dependant libraries.</p>
<p>Just when I was about to pull my hair out I found this little gem <code>sudo apt-get -t testing wireshark</code> I ran that and it installed perfectly. So I had to check out the man page to find out what this magical -t flag actually did.</p>
<p>Trying to install wireshark with the first command wireshark/testing was only going to install the wireshark package from the testing repos and none of the dependancies but using -t testing means it gets everything it needs to install wireshark from the testing repo in other words the main package and all the dependancies. </p>
<p>Very nice and definately one to remember for future use.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mindlessblathering.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mindlessblathering.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mindlessblathering.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mindlessblathering.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mindlessblathering.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mindlessblathering.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mindlessblathering.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mindlessblathering.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mindlessblathering.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mindlessblathering.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mindlessblathering.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mindlessblathering.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mindlessblathering.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mindlessblathering.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=192&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mindlessblathering.wordpress.com/2011/10/28/installing-a-newer-version-of-a-package-on-debian-stable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9eca6cd6bb418d506f44892b9f09248?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Becker</media:title>
		</media:content>
	</item>
		<item>
		<title>How I automated setting the wallpaper on my custom Debian Eee pc install</title>
		<link>http://mindlessblathering.wordpress.com/2011/09/19/how-i-automated-setting-the-wallpaper-on-my-custom-debian-eee-pc-install/</link>
		<comments>http://mindlessblathering.wordpress.com/2011/09/19/how-i-automated-setting-the-wallpaper-on-my-custom-debian-eee-pc-install/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 17:45:50 +0000</pubDate>
		<dc:creator>NathanielOffer</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://mindlessblathering.wordpress.com/?p=186</guid>
		<description><![CDATA[Setting wallpaper in openbox subheading: doing it via the cli using minimal resources apps used: feh, nano autostart.sh in $HOME/.config/openbox sh ~/.fehbg &#38; .fehbg in $HOME feh &#8211;bg-scale &#8216;/home/becker/Downloads/debian_wallpaper1.png&#8217; Firstly I set the background using &#8220;feh &#8211;bg-scale /home/becker/Download/debian_wallpaper1.png when you do this feh automatically creates the file .fehbg in your $HOME folder containing the command [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=186&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Setting wallpaper in openbox</p>
<p>subheading: doing it via the cli using minimal resources</p>
<p>apps used: feh, nano</p>
<p>autostart.sh in $HOME/.config/openbox<br />
sh ~/.fehbg &amp;</p>
<p>.fehbg in $HOME<br />
feh &#8211;bg-scale &#8216;/home/becker/Downloads/debian_wallpaper1.png&#8217;</p>
<p>Firstly I set the background using &#8220;feh &#8211;bg-scale /home/becker/Download/debian_wallpaper1.png when you do this feh automatically creates the file .fehbg in your $HOME folder containing the command you&#8217;ve just run. At this stage if you reboot your wallpaper will be lost and you&#8217;ll have to set it again manually.</p>
<p>If you want it too be set automatically each time you reboot you need to add a line to your autostart.sh file in $HOME/.config/openbox/. If like me the file isn&#8217;t already there you can create it by opening a terminal and typing nano autostart.sh then enter the command &#8220;sh ~/.fehbg &amp;&#8221; save the file and exit. Now when you reboot the wallpaper will be set automatically everytime.</p>
<p>Before anyone asks here is the wallpaper I used <a href="http://mindlessblathering.files.wordpress.com/2011/09/debian_wallpaper1.png"><img class="aligncenter size-medium wp-image-187" title="debian_wallpaper1" src="http://mindlessblathering.files.wordpress.com/2011/09/debian_wallpaper1.png?w=300&#038;h=187" alt="" width="300" height="187" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mindlessblathering.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mindlessblathering.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mindlessblathering.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mindlessblathering.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mindlessblathering.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mindlessblathering.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mindlessblathering.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mindlessblathering.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mindlessblathering.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mindlessblathering.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mindlessblathering.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mindlessblathering.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mindlessblathering.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mindlessblathering.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=186&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mindlessblathering.wordpress.com/2011/09/19/how-i-automated-setting-the-wallpaper-on-my-custom-debian-eee-pc-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9eca6cd6bb418d506f44892b9f09248?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Becker</media:title>
		</media:content>

		<media:content url="http://mindlessblathering.files.wordpress.com/2011/09/debian_wallpaper1.png?w=300" medium="image">
			<media:title type="html">debian_wallpaper1</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Gnu Screen</title>
		<link>http://mindlessblathering.wordpress.com/2011/06/20/using-gnu-screen/</link>
		<comments>http://mindlessblathering.wordpress.com/2011/06/20/using-gnu-screen/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 17:07:50 +0000</pubDate>
		<dc:creator>NathanielOffer</dc:creator>
				<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://mindlessblathering.wordpress.com/?p=157</guid>
		<description><![CDATA[To start a session in Screen for the first time open a terminal and type &#8220;screen&#8221;. You should now get the standard start up message simply press the space bar and it will take you to the next screen which is your basic shell prompt. Now you can start an application by simply typing the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=157&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To start a session in Screen for the first time open a terminal and type &#8220;screen&#8221;. You should now get the standard start up message simply press the space bar and it will take you to the next screen which is your basic shell prompt. Now you can start an application by simply typing the name of it as you would normally do in a terminal.</p>
<p>I&#8217;ll use Mutt my cli based email client for this example.</p>
<p>becker@crunchbang:-$ mutt</p>
<p>Now I have mutt running but my status bar at the bottom of the window which shows me all the windows I have open doesn&#8217;t reflect that. The problem is by default they all say (x$bash) where x is a number starting at 0. Now that&#8217;s not very helpful if I forget what window I opened something in so the easiest way to remedy this is to set a window title. To do that we use the key combination</p>
<p>C-a A. this means you press the Ctrl key at the same time as the &#8220;a&#8221; then you release both keys and press shift (to get capitals) &amp; &#8220;a&#8221; again. This allows you to set the window title which in this case I&#8217;ll call Mutt although email would work as well.</p>
<p>Another command that you need to know to get the most out of Screen is</p>
<p>C-a c This is how we create new windows inside of Screen. You&#8217;ll remember from the previous example that the C-a means press Ctrl and &#8220;a&#8221; together then release and then press &#8220;c&#8221;</p>
<p>Now we have a few windows open obviously we need a way to move through them. The easiest way to do that is using the &#8220;Previous&#8221; &amp; &#8220;Next&#8221; commands C-a p &amp; C-a n respectively</p>
<p>Now the final tip for now. What do you do when your girlfriend wants to quickly check her email and you&#8217;ve got 3 or 4 different programs running inside your screen session? The easiest way to protect it from any unplanned interaction is to use the command C-a x. What this does is lock the screen session and require your user password before it can be accessed again making sure nothing changes whilst your away from the keyboard.</p>
<p>If you spend any time at the command line I&#8217;m sure you will see the value in learning and using the Screen program. It cleans up your desktop by getting rid of those multiple terminal windows you used to have open and putting them all into 1 window. Having everything controlled by keyboard shortcuts means you leave your hands on the keyboard instead of always moving away to grab the mouse making you more productive.</p>
<p>Edit: I made reference earlier in this post to the status line at the bottom of your Screen window. What I failed to mention is that Screen doesn&#8217;t have a status line by default but you can add one yourself. Now I must confess I didn&#8217;t write this myself and in pure code form I really have no idea what it all means but when it&#8217;s up and running it gives me my system load averages in the bottom left corner, the window titles of all open windows in the centre of the screen and the time and date in the bottom right corner. So as you can see it is actually very useful.</p>
<p>Here is the code:<br />
hardstatus alwayslastline<br />
hardstatus string &#8216;%{= kG}[ %{G}%l %{G}%H %{g}][%= %{=kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B}%Y-%m-%d %{W}%c %{g}]&#8216;</p>
<p>To use this code you simply add it too your .screenrc file. If you don&#8217;t already have one just create it then paste in the code and save it to your home directory.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mindlessblathering.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mindlessblathering.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mindlessblathering.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mindlessblathering.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mindlessblathering.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mindlessblathering.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mindlessblathering.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mindlessblathering.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mindlessblathering.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mindlessblathering.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mindlessblathering.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mindlessblathering.wordpress.com/157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mindlessblathering.wordpress.com/157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mindlessblathering.wordpress.com/157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=157&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mindlessblathering.wordpress.com/2011/06/20/using-gnu-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9eca6cd6bb418d506f44892b9f09248?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Becker</media:title>
		</media:content>
	</item>
		<item>
		<title>Crunchbang #!</title>
		<link>http://mindlessblathering.wordpress.com/2011/03/03/crunchbang/</link>
		<comments>http://mindlessblathering.wordpress.com/2011/03/03/crunchbang/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 10:40:47 +0000</pubDate>
		<dc:creator>NathanielOffer</dc:creator>
				<category><![CDATA[FOSS]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[commandline]]></category>
		<category><![CDATA[crunchbang]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[openbox]]></category>

		<guid isPermaLink="false">http://mindlessblathering.wordpress.com/?p=153</guid>
		<description><![CDATA[I&#8217;m a bit of a distro hopper. Ever since I discovered Linux thanks to my best mate Craig and installed Ubuntu on my desktop pc I&#8217;ve been hopping from 1 flavour of Linux to another. In that time I&#8217;ve tried Ubuntu 8.04, 8.10, 9.04, 9.10 &#38; 10.04 not always consecutively,  Linux Mint, Crunchbang, Fedora twice and now [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=153&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a bit of a distro hopper. Ever since I discovered Linux thanks to my best mate Craig and installed Ubuntu on my desktop pc I&#8217;ve been hopping from 1 flavour of Linux to another. In that time I&#8217;ve tried Ubuntu 8.04, 8.10, 9.04, 9.10 &amp; 10.04 not always consecutively,  Linux Mint, Crunchbang, Fedora twice and now back to Crunchbang.</p>
<p>Anyway I&#8217;ve settled on Crunchbang 10 otherwise known as Statler for the time being and I have to say on many levels it&#8217;s a really good fit for what I want in a distro. It&#8217;s lightweight. Meaning it doesn&#8217;t use a ton of ram just to run the wallpaper, taskbar, startmenu, icons etc. Being lightweight also means it&#8217;s fast or snappy. You don&#8217;t find yourself waiting after clicking an icon or menu entry for the program to start which is always nice.</p>
<p>I like the dark theme that is the default in all Crunchbang releases. It&#8217;s actually quite difficult I have found to create your own black theme and have all the little bits of it usable all the time. There will always be 1 program or menu that&#8217;s not coded according to some standard or another that is unusable requiring you to switch back to a lighter color at least till you&#8217;ve finished whatever it was you were doing at that time. With Crunchbang everything just works. I chuckle a bit as I write that because I&#8217;m sure it has taken Corenominal otherwise known as Philip Newborough the founder and sole maintainer of Crunchbang quite some time to get the theme and all the other parts of the system working together properly but isn&#8217;t that the mark of a good product? All the hours you pour into it culminate in a product that once shipped to the end user &#8220;Just Works!&#8221;</p>
<p>I should just mention especially if Philip should ever read this that Crunchbang comes with no warranty whatsoever and if you&#8217;re not comfortable with a system that could quite possibly go CRUNCH BANG! Then you shouldn&#8217;t use it at least not on a production / always on machine. You can read more on the <a title="Crunchbang About Page" href="http://crunchbanglinux.org/wiki/about" target="_blank">Crunchbang About page</a></p>
<p>When I installed it I didn&#8217;t have to connect to the internet. With other distros I have tried very early on in the install process they are searching for a network connection as they have to download something or other during the install. With Crunchbang the install was fast, simple and painless. It was only once the install finished and I&#8217;d rebooted that I was asked if I wanted to go online to install other not included programs but again this was optional and could be run again later if that was more convenient.</p>
<p>Another point on how light Crunchbang is, the menu&#8217;s aren&#8217;t cluttered with program after program that I&#8217;ve never seen before and am never likely to use. Take the Multimedia section of the menu for example. There is a media player, VLC in this case which can handle all your media playback needs such as video, audio and streaming content live from the internet. There is an obligatory volume control and XFburn for burning CD&#8217;s &amp; DVD&#8217;s. Awesome, 3 programs that basically cover any need that could arise. The only thing I added was a podcast client to keep track of all the podcasts I listen to each week and again they all play in VLC.</p>
<p>Finally I should point out that Crunchbang actually comes in two flavours or desktop variants. XFCE which is a great lightweight choice similar to Gnome &amp; KDE in that it offers an integrated user experience whilst being lighter on cpu and ram requirements &amp; OpenBox which is the option I&#8217;ve chosen. Openbox could be a whole other post in itself but suffice to say it&#8217;s a very lightweight desktop that allows you to control all aspects of how it looks, works and feels. If you want a panel or taskbar to the windows folk you have to choose which one you want and install it and configure it how you want it to run, same as wallpaper if you want to set a background then you need a program to do that for you.</p>
<p>This might seem like a lot of unnecessary work to some people but for those that are prepared to put the effort in they are rewarded with a system set up just for them and that works just the way they want it to.</p>
<p>I should point out that Crunchbang does come with a fully functioning desktop with a panel and wallpaper so don&#8217;t think if you install the Openbox version that you will be left with a blank screen.</p>
<p>The last thing I will mention is the level of detail that has been put into the menu. Sure it has the standard text editor, web browser and file manager but it also has links to all the documentation you&#8217;ll need to really get stuck in and learn what makes the different parts of your desktop tick. Plus it has links to the config files should you want to edit them. Sure we could find them ourselves but it&#8217;s a nice touch.</p>
<p>Before I waffle on anymore I think it&#8217;s time to finish this post</p>
<ul>
<li><a title="Crunchbang Home page" href="http://crunchbanglinux.org/" target="_blank">Crunchbang</a></li>
<li><a title="Crunchbang Forums" href="http://crunchbanglinux.org/forums/" target="_blank">Crunchbang forums</a></li>
<li><a title="Crunchbang Release notes and Download links" href="http://crunchbanglinux.org/blog/2011/02/08/crunchbang-10-statler-r20110207/" target="_blank">Crunchbang release announcement &amp; download links</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mindlessblathering.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mindlessblathering.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mindlessblathering.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mindlessblathering.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mindlessblathering.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mindlessblathering.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mindlessblathering.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mindlessblathering.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mindlessblathering.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mindlessblathering.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mindlessblathering.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mindlessblathering.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mindlessblathering.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mindlessblathering.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=153&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mindlessblathering.wordpress.com/2011/03/03/crunchbang/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9eca6cd6bb418d506f44892b9f09248?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Becker</media:title>
		</media:content>
	</item>
		<item>
		<title>U &#8211; bollards. Time to go</title>
		<link>http://mindlessblathering.wordpress.com/2010/06/06/u-bollards-time-to-go/</link>
		<comments>http://mindlessblathering.wordpress.com/2010/06/06/u-bollards-time-to-go/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 16:14:03 +0000</pubDate>
		<dc:creator>NathanielOffer</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://mindlessblathering.wordpress.com/?p=142</guid>
		<description><![CDATA[I had a problem yesterday on my way to work. It wasn&#8217;t a major problem more of an inconvenience but the more I thought about it and talked to others about it, the more it annoyed me to the point that I&#8217;ve decided to do something about it. Here&#8217;s the problem in a nutshell. I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=142&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had a problem yesterday on my way to work. It wasn&#8217;t a major problem more of an inconvenience but the more I thought about it and talked to others about it, the more it annoyed me to the point that I&#8217;ve decided to do something about it. Here&#8217;s the problem in a nutshell.</p>
<p>I ride a Greenspeed recumbent trike and as such when I encounter a cycle path with an inverted U shaped bollard used in offset pairs to create a chicane I&#8217;m unable to pass through them. Yesterday I had to get off my bike, remove the safety flag I have mounted behind my seat and wheel my trike under the bollard. Like I said it&#8217;s not the end of the world. However I&#8217;m not the only person who uses these paths and this path in particular isn&#8217;t the only one in Greater Metropolitan Perth that uses these bollards and that&#8217;s when I started thinking.</p>
<p>I have been on these paths before as a father with my child in a pram and I also can&#8217;t pass through these bollard chicanes. I either have to tip the pram right back to pass underneath or and only possible because I&#8217;m a big strong bloke, grab the pram and lift it over the stupid damn things. I&#8217;m not being sexist here. Mums would generally have a harder time lifting a pram high enough to clear a bollard. The point is anyway that they shouldn&#8217;t have to. Nor should I have to dismount my bike and mess around taking bits off it so i can pass through.</p>
<p>It&#8217;s time we took a stand and told the local government authorities it&#8217;s not good enough.</p>
<p>Mum should be able to get her pram through a laneway or shared path without mucking around. I should be able to ride whatever bike I choose and not have to dismount to get through obstacles put in my way in an attempt to slow cyclists down and prevent motorists from taking a short cut. Many paths have a single bollard positioned in the centre of the path for this purpose and while I&#8217;d rather it wasn&#8217;t there i understand the reasons why and as I can pass it easily I accept it and move on.</p>
<p>Bollard chicanes on the other hand. It&#8217;s high time they were removed from paths and given a decent burial.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mindlessblathering.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mindlessblathering.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mindlessblathering.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mindlessblathering.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mindlessblathering.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mindlessblathering.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mindlessblathering.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mindlessblathering.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mindlessblathering.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mindlessblathering.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mindlessblathering.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mindlessblathering.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mindlessblathering.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mindlessblathering.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=142&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mindlessblathering.wordpress.com/2010/06/06/u-bollards-time-to-go/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9eca6cd6bb418d506f44892b9f09248?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Becker</media:title>
		</media:content>
	</item>
		<item>
		<title>Free Browser Plugin check</title>
		<link>http://mindlessblathering.wordpress.com/2010/05/22/free-browser-plugin-check/</link>
		<comments>http://mindlessblathering.wordpress.com/2010/05/22/free-browser-plugin-check/#comments</comments>
		<pubDate>Sat, 22 May 2010 06:21:26 +0000</pubDate>
		<dc:creator>NathanielOffer</dc:creator>
				<category><![CDATA[links]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugincheck]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://mindlessblathering.wordpress.com/?p=136</guid>
		<description><![CDATA[I&#8217;ve just found out today that the Plugin checking service Mozilla was offering for it&#8217;s Firefox browser has now been made available to all the Non-Mozilla browsers. That&#8217;s Safari on both Mac &#38; Windows, Opera, Google&#8217;s Chrome and of course Microsofts Internet Explorer. This is great news.I guess I should explain why this is so [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=136&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just found out today that the Plugin checking service <a href="http://mozilla.com" target="_blank">Mozilla</a> was offering for it&#8217;s Firefox browser has now been made available to all the Non-Mozilla browsers. That&#8217;s Safari on both Mac &amp; Windows, Opera, Google&#8217;s Chrome and of course Microsofts Internet Explorer.</p>
<p>This is great news.I guess I should explain why this is so good.</p>
<p>The easiest way for your pc to become infected by a virus, trojan, script exploit etc is for you to run old or outdated software but previously you had to visit the Adobe website to check if you had the latest Flash player and the Sun page to check if your JRE (Java) was up to date and the same for every plugin you had installed on your browser. Who wants to do that? Nobody! I hazard a guess that if you asked around at work on Monday morning &#8220;What plugin&#8217;s are you running in your browser?&#8221; Most people would have no idea at all and the closest answer you might get although still miles off the mark would be someone referring to a Firefox add-on they recently installed!</p>
<p>Okay so now we understand that it&#8217;s important and that the new Mozilla service is going to make it a ton easier for us to do it where do we go?</p>
<p><a title="Mozilla Plugin checker" href="http://www.mozilla.com/plugincheck" target="_blank">Mozzila.com/plugincheck</a></p>
<p>Just click that link and it will take you to a page that checks what plugins you have installed and then reports back to you their status either If any are listed as not up to date then simply click the button on the right and the relevant files will be source &amp; installed for you.</p>
<p>Once all that is done, simply close and restart your browser and your right to go. If you want you can go back to the plugincheck page to verify that everything installed correctly.</p>
<p>n.b. Make sure if you run multiple browsers that you run the check in each browser seperately. Running it in 1 browser and updating everything in there doesn&#8217;t mean your other browser(s) are safe as well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mindlessblathering.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mindlessblathering.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mindlessblathering.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mindlessblathering.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mindlessblathering.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mindlessblathering.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mindlessblathering.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mindlessblathering.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mindlessblathering.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mindlessblathering.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mindlessblathering.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mindlessblathering.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mindlessblathering.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mindlessblathering.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=136&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mindlessblathering.wordpress.com/2010/05/22/free-browser-plugin-check/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9eca6cd6bb418d506f44892b9f09248?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Becker</media:title>
		</media:content>
	</item>
		<item>
		<title>Who&#8217;s number is this?</title>
		<link>http://mindlessblathering.wordpress.com/2010/05/22/whos-number-is-this/</link>
		<comments>http://mindlessblathering.wordpress.com/2010/05/22/whos-number-is-this/#comments</comments>
		<pubDate>Sat, 22 May 2010 04:17:06 +0000</pubDate>
		<dc:creator>NathanielOffer</dc:creator>
				<category><![CDATA[links]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://mindlessblathering.wordpress.com/?p=132</guid>
		<description><![CDATA[Many times we do business with a company on a once of basis. As a result we don&#8217;t add the number to the list of  contacts in our phone, but along comes the end of the month and your going through your phone bill (you do go through your phone bill right?) and we see [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=132&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Many times we do business with a company on a once of basis. As a result we don&#8217;t add the number to the list of  contacts in our phone, but along comes the end of the month and your going through your phone bill (you do go through your phone bill right?) and we see a number we don&#8217;t recognise. Did we actually call it? Unless we can put a name to the number how can we tell?</p>
<p>Well now we can. There is a cool new feature built in to Google Maps. It&#8217;s called <strong>&#8220;Reverse number lookup&#8221; </strong>just point your browser at <a title="Google Maps Australia" href="http://maps.google.com.au/" target="_blank">http://maps.google.com.au/</a> and enter the unknown number.</p>
<p><a href="http://mindlessblathering.files.wordpress.com/2010/05/screenshot-08-94930777-google-maps-mozilla-firefox.png"><img class="aligncenter size-medium wp-image-133" title="08 94930777 - Google Maps" src="http://mindlessblathering.files.wordpress.com/2010/05/screenshot-08-94930777-google-maps-mozilla-firefox.png?w=300&#038;h=212" alt="Google Maps Reverse number lookup" width="300" height="212" /></a></p>
<p>How cool is that?</p>
<p>You&#8217;ll be pleased to know this doesn&#8217;t work on private home phone numbers. I just tried a bunch of private numbers from my phone and all results came back with unknowm.</p>
<p>What are your thoughts on this?? Like it, hate it? Let me know in the comments.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mindlessblathering.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mindlessblathering.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mindlessblathering.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mindlessblathering.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mindlessblathering.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mindlessblathering.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mindlessblathering.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mindlessblathering.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mindlessblathering.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mindlessblathering.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mindlessblathering.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mindlessblathering.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mindlessblathering.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mindlessblathering.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=132&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mindlessblathering.wordpress.com/2010/05/22/whos-number-is-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9eca6cd6bb418d506f44892b9f09248?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Becker</media:title>
		</media:content>

		<media:content url="http://mindlessblathering.files.wordpress.com/2010/05/screenshot-08-94930777-google-maps-mozilla-firefox.png?w=300" medium="image">
			<media:title type="html">08 94930777 - Google Maps</media:title>
		</media:content>
	</item>
		<item>
		<title>Tsunami Alert &#8211; Pacific</title>
		<link>http://mindlessblathering.wordpress.com/2010/02/28/tsunami-alert-pacific/</link>
		<comments>http://mindlessblathering.wordpress.com/2010/02/28/tsunami-alert-pacific/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 21:39:27 +0000</pubDate>
		<dc:creator>NathanielOffer</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Australia]]></category>
		<category><![CDATA[chile]]></category>
		<category><![CDATA[earthquake]]></category>
		<category><![CDATA[hawaii]]></category>
		<category><![CDATA[new zealand]]></category>
		<category><![CDATA[tsunami]]></category>

		<guid isPermaLink="false">http://mindlessblathering.wordpress.com/?p=123</guid>
		<description><![CDATA[There is a Pacific wide Tsunami alert current following a devastating 8.8 magnitude earthquake off the Chile coast. Australia is on alert, find out more at the official Bureau Of Meteorology I&#8217;m currently following CBS via Ustream they have the live feed Also Twitter has it as a trending topic so head over to twitter.com [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=123&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There is a Pacific wide Tsunami alert current following a devastating 8.8 magnitude earthquake off the Chile coast.</p>
<p>Australia is on alert, find out more at the official <a href="http://bit.ly/9PHzc0" target="_blank">Bureau Of Meteorology</a></p>
<p>I&#8217;m currently following <a href="http://bit.ly/aHxkvO" target="_blank">CBS</a> via <a href="http://bit.ly/9TunEZ" target="_blank">Ustream</a> they have the live feed</p>
<p>Also Twitter has it as a trending topic so head over to <a href="http://bit.ly/bR2oB5" target="_blank">twitter.com</a></p>
<p>My thoughts are with everyone having to deal with this atm.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mindlessblathering.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mindlessblathering.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mindlessblathering.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mindlessblathering.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mindlessblathering.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mindlessblathering.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mindlessblathering.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mindlessblathering.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mindlessblathering.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mindlessblathering.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mindlessblathering.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mindlessblathering.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mindlessblathering.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mindlessblathering.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=123&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mindlessblathering.wordpress.com/2010/02/28/tsunami-alert-pacific/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9eca6cd6bb418d506f44892b9f09248?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Becker</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook &#8211; home page change</title>
		<link>http://mindlessblathering.wordpress.com/2010/02/06/facebook-home-page-change/</link>
		<comments>http://mindlessblathering.wordpress.com/2010/02/06/facebook-home-page-change/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 09:44:13 +0000</pubDate>
		<dc:creator>NathanielOffer</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://mindlessblathering.wordpress.com/?p=98</guid>
		<description><![CDATA[Well I logged into Facebook today and saw the new homepage design for the first time. Is it just me or did they not even tell anybody they were going to redesign it? Right off the bat the first thing I noticed was the three icons next to the Facebook logo in the upper left [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=98&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well I logged into Facebook today and saw the new homepage design for the first time. Is it just me or did they not even tell anybody they were going to redesign it?</p>
<p>Right off the bat the first thing I noticed was the three icons next to the Facebook logo in the upper left hand corner. I don&#8217;t particularly like them for 2 reasons. Firstly they are very dark and easily missed. Secondly and partly because they are so dark it&#8217;s not immediately understood what they are for. You have to mouse over them and wait for the tool tip to pop up to know what they do.</p>
<p>Next the sidebar. It&#8217;s very wide and the font size is rather small. I would prefer they increase the font size to make it more readable and/or have icons on the top section for the menu items that don&#8217;t change ie: news feeds, messages, events etc.</p>
<p>I don&#8217;t know what the deal is with the applications either. They included a game in the list that I haven&#8217;t played now in almost 8 months and it was above 1 I played just last week. They aren&#8217;t sorted by alphabetical order either from what I can see so I really don&#8217;t know how they are sorting it at this stage.</p>
<p>I clicked on the messages link expecting they had simply renamed the  status updates option and was instead taken to my email inbox. Now I  don&#8217;t know about anyone else but I have a gmail account and a yahoo  account and to be honest I don&#8217;t even think about using my facebook mail  so this really isn&#8217;t a big feature for me. I&#8217;d rather have the status  updates option, YMMV. I don&#8217;t want to see the whole news feed when I first log into facebook. I want to check everyone&#8217;s status and reply if I choose to and only after doing that am I interested in reading the news feed. So that&#8217;s a -1 for me.</p>
<p>Now I&#8217;ve just clicked on the Facebook chat box in the lower right of the screen and it has opened up a large pop-up window that takes up well over 75% of my screen and stops me from being able to do anything else whilst chatting. Am I the only person who likes to actually use the computer whilst chatting? Having to constantly Alt+Tab between the window I&#8217;m reading and the chat window is rather annoying.</p>
<p>The main section of the screen is at first glance the same as it has been for a while now so I wont go into it here You should be familiar with how it works by now.</p>
<p>Finally logging out. It isn&#8217;t immediately obvious how you should log out of Facebook and whilst I was able to work it out in a few seconds I can see other people being stumped by it and getting rather frustrated.</p>
<p>Well that&#8217;s all from me at this stage regarding the latest changes to Facebook. I will have more of a chance to explore the new interface tomorrow and may put up another post when I have done that.</p>
<p>Let me know your thoughts, opinions etc in the comments below</p>
<p>Cheers</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mindlessblathering.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mindlessblathering.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mindlessblathering.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mindlessblathering.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mindlessblathering.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mindlessblathering.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mindlessblathering.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mindlessblathering.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mindlessblathering.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mindlessblathering.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mindlessblathering.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mindlessblathering.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mindlessblathering.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mindlessblathering.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=98&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mindlessblathering.wordpress.com/2010/02/06/facebook-home-page-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9eca6cd6bb418d506f44892b9f09248?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Becker</media:title>
		</media:content>
	</item>
		<item>
		<title>IceCat browser</title>
		<link>http://mindlessblathering.wordpress.com/2010/01/30/icecat-browser/</link>
		<comments>http://mindlessblathering.wordpress.com/2010/01/30/icecat-browser/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 07:41:34 +0000</pubDate>
		<dc:creator>NathanielOffer</dc:creator>
				<category><![CDATA[browsers]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[icecat]]></category>

		<guid isPermaLink="false">http://mindlessblathering.wordpress.com/?p=86</guid>
		<description><![CDATA[I&#8217;ve just this week discovered the Gnu projects IceCat browser. Here is a snippet from their web site to better explain things GNU IceCat is the GNU version of the Firefox browser. Its main advantage is an ethical one: it is entirely free software. While the principal source code from the Mozilla project is free [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=86&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just this week discovered the <a href="http://bit.ly/cA5sB3" target="_blank">Gnu</a> projects <a href="http://bit.ly/b62peZ" target="_blank">IceCat</a> browser.</p>
<p>Here is a snippet from their web site to better explain things</p>
<blockquote><p>GNU IceCat is the GNU version of the Firefox browser. Its main advantage is an ethical one: it is entirely <a href="http://bit.ly/bHUpB4" target="_blank">free software</a>. While the principal source code from the Mozilla project is free software, they distribute and recommend non-free software as plug-ins and addons</p></blockquote>
<p>So basically I chose to use it because it is promoting the free software ideals that I believe in and because it is still at it&#8217;s core the browser that I love and have chosen to use above all others, free or otherwise.</p>
<p>n.b as a side note being free also means I am able to contribute to the development of the product and/or the promotion of the product or in any other way that I see fit. As can anyone else that chooses to.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mindlessblathering.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mindlessblathering.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mindlessblathering.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mindlessblathering.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mindlessblathering.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mindlessblathering.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mindlessblathering.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mindlessblathering.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mindlessblathering.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mindlessblathering.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mindlessblathering.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mindlessblathering.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mindlessblathering.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mindlessblathering.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mindlessblathering.wordpress.com&amp;blog=722552&amp;post=86&amp;subd=mindlessblathering&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mindlessblathering.wordpress.com/2010/01/30/icecat-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f9eca6cd6bb418d506f44892b9f09248?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Becker</media:title>
		</media:content>
	</item>
	</channel>
</rss>
