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

<channel>
	<title>SoddenGecko.Com &#187; All</title>
	<atom:link href="http://www.soddengecko.com/topics/all/feed" rel="self" type="application/rss+xml" />
	<link>http://www.soddengecko.com</link>
	<description>&#34;I do not fear computers. I fear the lack of them&#34; - Isaac Asimov</description>
	<lastBuildDate>Sat, 26 Jun 2010 23:45:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Broken Comments</title>
		<link>http://www.soddengecko.com/all/2010/broken-comments</link>
		<comments>http://www.soddengecko.com/all/2010/broken-comments#comments</comments>
		<pubDate>Sat, 26 Jun 2010 23:44:29 +0000</pubDate>
		<dc:creator>Soddengecko</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.soddengecko.com/?p=237</guid>
		<description><![CDATA[It appears that the commenting system was broken. It has only just come to my attention after an upgrade pointed it out. It was an old plugin that I was using and it has now been deactivated until I can fix it. Sorry to anyone who has tried posting a comment and it failed.]]></description>
			<content:encoded><![CDATA[<p>It appears that the commenting system was broken. It has only just come to my attention after an upgrade pointed it out. It was an old plugin that I was using and it has now been deactivated until I can fix it.</p>

<p>Sorry to anyone who has tried posting a comment and it failed.</p>]]></content:encoded>
			<wfw:commentRss>http://www.soddengecko.com/all/2010/broken-comments/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I hate Facebook morons</title>
		<link>http://www.soddengecko.com/all/2010/why-i-hate-facebook-morons</link>
		<comments>http://www.soddengecko.com/all/2010/why-i-hate-facebook-morons#comments</comments>
		<pubDate>Sat, 26 Jun 2010 23:29:55 +0000</pubDate>
		<dc:creator>Soddengecko</dc:creator>
				<category><![CDATA[All]]></category>

		<guid isPermaLink="false">http://www.soddengecko.com/?p=231</guid>
		<description><![CDATA[There are a lot of posts and messages going around stating that you need to repost it to prevent Facebook from closing your account down. Let&#8217;s get this straight. This is obviously bullshit. I first had this message 3 weeks ago, I did not post it and fuck me if I am not still active [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of posts and messages going around stating that you need to repost it to prevent Facebook from closing your account down. Let&#8217;s get this straight. This is obviously bullshit. I first had this message 3 weeks ago, I did not post it and fuck me if I am not still active on facebook.</p>

<p>Every single time you login to facebook, or post something about yourself or on someone elses wall, a timestamp will be created in the database that contains all the data facebook displays. This timestamp not only confirms when you last did something with your account, it also displays this on your news feed, ie. &#8220;so and so said this about an hour ago&#8221;. Any decent database design will have time stamping as a priority.</p> 

<p>If facebook wishes to delete accounts older than 2 weeks they DO NOT need you to post anything, they can see that your account is active or not by querying said database.  </p>

<p>Besides all this, it&#8217;s just bullshit marketing to keep people using facebook. Facebook is only interested in the money it can earn from adverts that facebook shows you. The more people log in and click these adverts, the more money it makes.</p> 

<p>Come on people, use your heads and stop posting useless bollocks. It&#8217;s as bad as spam and those stupid fucking chain letter emails everyone sends out.</p>  

<p>And we all hate spam right? </p>]]></content:encoded>
			<wfw:commentRss>http://www.soddengecko.com/all/2010/why-i-hate-facebook-morons/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>HOW TO: Random password generator on Ubuntu and other Linux systems</title>
		<link>http://www.soddengecko.com/all/2010/how-to-random-password-generator-on-ubuntu-and-other-linux-systems</link>
		<comments>http://www.soddengecko.com/all/2010/how-to-random-password-generator-on-ubuntu-and-other-linux-systems#comments</comments>
		<pubDate>Sun, 07 Feb 2010 19:25:00 +0000</pubDate>
		<dc:creator>Soddengecko</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Linux / Unix]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[system backup]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.soddengecko.com/02/2010/how-to-random-password-generator-on-ubuntu-and-other-linux-systems/</guid>
		<description><![CDATA[Recently I had need to generate random passwords. I did not want to make a script for it and I certainly did not want any applications to do the tasks. Here is the command line argument for such a task: &#60;/dev/urandom tr -dc A-Za-z0-9_ &#124; head -c8 Note that the &#8216;tr&#8217; strips out everything except [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had need to generate random passwords. I did not want to make a script for it and I certainly did not want any applications to do the tasks. Here is the command line argument for such a task:</p> <p><br/>&lt;/dev/urandom tr -dc A-Za-z0-9_ | head -c8</p> <p><br/>Note that the &#8216;tr&#8217; strips out everything except characters in the ranges (alphanumeric, mixed case and underscores). This is a nice approach as piping to head means the minimum number of bytes required to generate a password of appropriate length are taken from /dev/urandom vs other methods which take more than you should need but still have a chance of not having obtained enough random data to generate a password of the required length. You can change the parameter to head to get passwords of any length. <br/></p> <p>NOTE: I have only run this command on Ubuntu, its possible it works on other Linux systems but I have not checked.</p>]]></content:encoded>
			<wfw:commentRss>http://www.soddengecko.com/all/2010/how-to-random-password-generator-on-ubuntu-and-other-linux-systems/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO: Perform system backup in Ubuntu &#8211; Part 2 &#8211; Restore</title>
		<link>http://www.soddengecko.com/all/2010/how-to-perform-system-backup-on-ubuntu-part-2-restore</link>
		<comments>http://www.soddengecko.com/all/2010/how-to-perform-system-backup-on-ubuntu-part-2-restore#comments</comments>
		<pubDate>Sun, 07 Feb 2010 19:20:43 +0000</pubDate>
		<dc:creator>Soddengecko</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Linux / Unix]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[system backup]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.soddengecko.com/02/2010/how-to-perform-system-backup-on-ubuntu-part-2-restore/</guid>
		<description><![CDATA[The restore will need to be perfomred as root tar xvpzf filename.tgz -C / the mkdir options are mandatory, and you will notice that they are the directories that are excluded from the backup. this is fine, but the folders do need to be replaced BEFORE YOU DO ANYTHING AFTER THE RESTORE mkdir proc mkdir [...]]]></description>
			<content:encoded><![CDATA[<p>The restore will need to be perfomred as root</p> <p>tar xvpzf filename.tgz -C /</p> <p>the mkdir options are mandatory, and you will notice that they are the directories that are excluded from the backup. this is fine, but the folders do need to be replaced BEFORE YOU DO ANYTHING AFTER THE RESTORE</p> <p>mkdir proc <br/>mkdir lost+found <br/>mkdir mnt <br/>mkdir sys <br/>mkdir media <br/>mkdir cdrom <br/>mkdir home</p> <p>now reboot</p> <p>everything should now be cushdy</p>]]></content:encoded>
			<wfw:commentRss>http://www.soddengecko.com/all/2010/how-to-perform-system-backup-on-ubuntu-part-2-restore/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW TO: Perform system backup in Ubuntu &#8211; Part 1 &#8211; Backup</title>
		<link>http://www.soddengecko.com/all/2010/how-to-perform-system-backup-in-ubuntu</link>
		<comments>http://www.soddengecko.com/all/2010/how-to-perform-system-backup-in-ubuntu#comments</comments>
		<pubDate>Sun, 07 Feb 2010 19:18:23 +0000</pubDate>
		<dc:creator>Soddengecko</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Linux / Unix]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[system backup]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.soddengecko.com/02/2010/how-to-perform-system-backup-in-ubuntu/</guid>
		<description><![CDATA[I had a few issues with my Ubuntu system after installing KDE4. I don&#8217;t think KDE4 caused the issue, but a combination of the software I use and the things I do was causing me login issues and X session headaches. I would have programs close immediately after opening, which I could only solve with [...]]]></description>
			<content:encoded><![CDATA[<p>I had a few issues with my Ubuntu system after installing KDE4. I don&#8217;t think KDE4 caused the issue, but a combination of the software I use and the things I do was causing me login issues and X session headaches. I would have programs close immediately after opening, which I could only solve with a reboot. Files were locked, preventing me from running applications like the Terminal and a few other apps. System updates would fail for an unknown reason.</p> <p>I had to rebuild the system. I saved off all my personal data and reinstalled everything.</p> <p>Once I was back at my desktop, after configuring my dual screen setup on an Nvidia card and getting my email and browser back the way I like them I decided it was time to make some changes.</p> <p>The /home folder needed to be moved from the OS drive, (that&#8217;s the next post) and I needed a way to back everything up, and I mean everything. Because of the way Linux structures its OS it is geniusly easy to backup the system. You cannot do this on windows without expensive software to ghost the drive.</p> <p>What we are going to do here is use TAR to compress and zip up the entire root structure, with a few exclusions.</p> <p>NOTE <br/>I run the command as sudo from my own account. I am pretty sure it would be benneficial to quit all X sessions and drop to the command prompt rather than run from a live session. I have no evidence to suggest that doing this from the desktop will cause any problems. If you have a suggestion on this please comment below.</p> <p>I will show you how I backed up my root directory and then I will supply a generic command that will suffice for most people. My command is slightly different as I moved my /home folder onto a seperate hard drive. I will cover my reasoning for this in my next post.</p> <p>This is the command I use to backup my OS</p> <p>sudo tar cvpzf /media/500/000_Backups/System/system_backup-$(date +%d-%m-%Y).tgz &#8211;exclude=/proc &#8211;exclude=lost+found &#8211;exclude=/mnt &#8211;exclude=/media &#8211;exclude=/cdrom &#8211;exclude=/home &#8211;exclude=/old_home /</p> <p>As you can see I have excluded the /home directory in my backups as it is on a seperate partition. Now, lets break this down into its component parts so you can better understand how this works.</p> <p>&#8220;tar&#8221; is obvious. this is the application we will be using to create the archived backup. Make sure you have tar installed. It should be by default but just incase you will need to run this command in the Terminal</p> <p>sudo apt-get install tar</p> <p>or, click &lt;a href=&#8221;apt:tar&#8221;&gt;here&lt;/a&gt;</p> <p>the tar parameters &#8220;cvpzf&#8221; are as follows. <br/>c &#8211; this tells tar that we are creating an archive <br/>v &#8211; verbose mode, this command outputs each file being archived into the terminal window <br/>p &#8211; retain all file permissions as is <br/>z &#8211; compress as gzip &#8211; use j for bzip2 but make sure you change the file extension to tar.bz2 <br/>f &#8211; filename follows this parameter.</p> <p>system_backup-$(date +%d-%m-%Y).tgz &#8211; this is the filename followed by the date of the day the backup is made, in the format dd/mm/yyyy</p> <p>I chose to date it as I will have incremental backups running via cron. This is a little out of the scope of this post, but happy to help those if you post a comment and ask.</p> <p>&#8211;exclude=/ &#8211; we are going to exclude some folders that are not required in the backup. proc, lost+found and cdrom are not required in the backup, and if you do not want to backup any drives, dvds or cdroms that are mounted inside mnt or media, make sure you exclude those as well or the backup could become extremely large.</p> <p>/ &#8211; this is the folder we are backing up. and as we are backing up the whole system we need to backup from the root directory which is /</p> <p>Now we have our backup command explained you are ready to get down to running your own. Obvioulsy please dont use the one above as it is for my machine, below is the generic code that should suffice 99% of people.</p> <p>NOTE <br/>please change the &#8220;pathtofolder&#8221; to a location you would like to save the file once it is completed. <br/>this will take a while once you execute the command, so don&#8217;t be tempted to cancel the operation.</p> <p>sudo tar cvpzf /pathtofolder/system_backup-$(date +%d-%m-%Y).tgz &#8211;exclude=/proc &#8211;exclude=lost+found &#8211;exclude=/mnt &#8211;exclude=/media &#8211;exclude=/cdrom /</p> <p>Now that you have your backup, you are going to need to restore it someday. Below are simple instructions on how to extract and restore your data</p> <p>sudo tar xvpzf system_backup-dd-mm-yyy.tgz -C /</p> <p>the mkdir options below are mandatory, and you will notice that they are the directories that are excluded from the backup. this is fine, but the folders do need to be replaced BEFORE YOU DO ANYTHING AFTER THE RESTORE</p> <p>mkdir proc <br/>mkdir lost+found <br/>mkdir mnt <br/>mkdir media <br/>mkdir cdrom</p> <p>Now reboot your PC and your data will be restored. This includes all applications, mail and broswer settings, everything, except the folders you did not backup. <br/></p>]]></content:encoded>
			<wfw:commentRss>http://www.soddengecko.com/all/2010/how-to-perform-system-backup-in-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharepoint Services not configured for use with ASP.NET 2.xxxxx</title>
		<link>http://www.soddengecko.com/all/2009/sharepoint-services-not-configured-for-use-with-asp-net-2-xxxxx</link>
		<comments>http://www.soddengecko.com/all/2009/sharepoint-services-not-configured-for-use-with-asp-net-2-xxxxx#comments</comments>
		<pubDate>Thu, 26 Nov 2009 11:49:18 +0000</pubDate>
		<dc:creator>Soddengecko</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.soddengecko.com/?p=168</guid>
		<description><![CDATA[As I use my sharepoint system very rarely I had not noticed that there was an error when trying to access http://companyweb. I have an SBS 2003 server that deals with all my mail etc and recent updates seem to have killed off the sharepoint service. This is the full error that I get This [...]]]></description>
			<content:encoded><![CDATA[<p>As I use my sharepoint system very rarely I had not noticed that there was an error when trying to access http://companyweb. I have an SBS 2003 server that deals with all my mail etc and recent updates seem to have killed off the sharepoint service.</p> 

<p>This is the full error that I get</p>

<blockquote>This Windows SharePoint Services virtual server has not been configured for use with ASP.NET 2.0.50727.3603. For more information, please refer to Knowledge Base article 894903 at http://go.microsoft.com/fwlink/?LinkId=42660.</blockquote>

<p>The article the link refers to is a good starting point, but it fails to actually tell you where the stsadm file is, and running the command as microsoft have put it will just result in a file not found error. I had to go hunting for the file myself, and as the search function failed it was a manual hunt.</p>  

<p>I finally found the file, so here is the command that actually works</p>

<blockquote>&#8220;c:\Program Files\Common Files\Microsoft Shared\web server extensions\60\BIN\stsadm&#8221; -o upgrade -forceupgrade -url http://companyweb</blockquote>

<p>That command obviously depends on the virtual sharepoint site actually being called companyweb. If you have changed it you will need to amend the end of the command.</p>

<p>Once it finished running I was asked to login to the sharepoint service on the server itself. After trying multiple combinations of usernames/domains and passwords it failed. I jumped onto my desktop and logged into sharepoint without issue and all is now working again. My guess (as I have not fully investigated it and won&#8217;t be on my home system as it&#8217;s not really needed) is that the DNS is either out or logging into sharepoint on the server itself is just not cricket.</p>]]></content:encoded>
			<wfw:commentRss>http://www.soddengecko.com/all/2009/sharepoint-services-not-configured-for-use-with-asp-net-2-xxxxx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iphone posting</title>
		<link>http://www.soddengecko.com/all/2009/iphone-posting</link>
		<comments>http://www.soddengecko.com/all/2009/iphone-posting#comments</comments>
		<pubDate>Sun, 16 Aug 2009 07:02:30 +0000</pubDate>
		<dc:creator>Soddengecko</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[iphone mobile]]></category>

		<guid isPermaLink="false">http://www.soddengecko.com/08/2009/iphone-posting/</guid>
		<description><![CDATA[Test post from my iPhone. Pic is my mates dog jasper. He&#8217;s a good lad but not the sharpest tool in the box bless him]]></description>
			<content:encoded><![CDATA[<p>Test post from my iPhone. Pic is my mates dog jasper. He&#8217;s a good lad but not the sharpest tool in the box bless him <img src='http://www.soddengecko.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://www.soddengecko.com/wp-content/uploads/2009/08/p-2048-1536-2a1d3494-d798-425a-8372-dd994b4c4a5d.jpeg"><img src="http://www.soddengecko.com/wp-content/uploads/2009/08/p-2048-1536-2a1d3494-d798-425a-8372-dd994b4c4a5d.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.soddengecko.com/all/2009/iphone-posting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customising Firefox 3</title>
		<link>http://www.soddengecko.com/all/2008/customising-firefox-3</link>
		<comments>http://www.soddengecko.com/all/2008/customising-firefox-3#comments</comments>
		<pubDate>Tue, 13 May 2008 19:14:53 +0000</pubDate>
		<dc:creator>Soddengecko</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.soddengecko.com/?p=162</guid>
		<description><![CDATA[If, like me you have recently upgraded to Firefox 3 and you have spent years using Tabbed Browser Preferences to manage your tabs position in the window, colour, order etc etc, then you, like me, are quite disappointed with the lack of configuration the tab bar has within Firefox 3. Developer Comments: This extension is [...]]]></description>
			<content:encoded><![CDATA[<p>If, like me you have recently upgraded to Firefox 3 and you have spent years using Tabbed Browser Preferences to manage your tabs position in the window, colour, order etc etc, then you, like me, are quite disappointed with the lack of configuration the tab bar has within Firefox 3.</p>

<blockquote>
<small>Developer Comments:</small>
This extension is an enhancement for the basic tab controls provided in Firefox 1.0. It replaces the existing user interface with a new, more visible user interface, and also includes UI for other hidden features that are part of the browser, as well as features provided explicitly by the extension.</blockquote>

<p>Tabbrowser Prefs is not currently available for Firefox 3 on Windows or Linux, which left me feeling frustrated. I would love to have felt annoyed, but can you really be annoyed when the info to build your very own plugin is out there?</p>

<p>I decided I had to do something. I had to have my tab bar on the bottom of the window at least. So, I went off and researched it.</p>

<p>After about 5 minutes I found out that the main interface to Firefox is controlled entirely by CSS. This is perfect. I located the CSS style sheet, googl&#8217;d some more and found the CSS variables needed to modify the interface settings. So now I am going to share it with everyone of you.</p>

<div class="postalert">
<p>Ubuntu Hardy Heron Version</p>
</div>

<p>Open up nautilus and show hidden files. then navigate to:</p>

<ol class="code">
<li class="t0">/home/.mozilla/firefox/your.profile/chrome</li>
</ol>

<p>By default userChrome.css fie does not exist, so you need to create it before you can start adding your preferences. There&#8217;s actually an example file that exists by default, called userChrome-example.css. You can just rename that file by removing the -example part. Then open this file in leaf/mouse pad or any other text editor and add the following code and save it.</ol>

<ol class="code">
<li class="t0">/* Display the tabbar at the bottom */
#content > tabbox { -moz-box-direction: reverse; }</li>
</ol>

<div class="postalert">
<p>Windows XP/Vista Versions</p>
</div>

<p>Open up My Computer or File Explorer and show hidden files. then navigate to:</p>

<ol class="code">
<li class="t0">C:\Documents andSettings\[UserName]\ApplicationData\Mozilla\Firefox\Profiles\your.proifile\chrome</li>
</ol>

<p>By default userChrome.css fie does not exist, so you need to create it before you can start adding your preferences. There&#8217;s actually an example file that exists by default, called userChrome-example.css. You can just rename that file by removing the -example part. Then open this file in notepad or any other text editor and add the following code and save it.</p>

<ol class="code">
<li class="t0">/* Display the tabbar at the bottom */
#content > tabbox { -moz-box-direction: reverse; }</li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.soddengecko.com/all/2008/customising-firefox-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer</title>
		<link>http://www.soddengecko.com/all/2006/internet-explorer</link>
		<comments>http://www.soddengecko.com/all/2006/internet-explorer#comments</comments>
		<pubDate>Thu, 14 Sep 2006 14:26:56 +0000</pubDate>
		<dc:creator>Soddengecko</dc:creator>
				<category><![CDATA[All]]></category>

		<guid isPermaLink="false">http://www.soddengecko.com/?p=120</guid>
		<description><![CDATA[As most of you will know, I do not use, and do not like Internet Explorer. When I checked this theme in Internet Explorer before I started adding content to the site, it worked fine. Now, as you IE uses can see, there are some glaring mistakes. I am fixing them. Expect the ammendment to [...]]]></description>
			<content:encoded><![CDATA[<p>As most of you will know, I do not use, and do not like Internet Explorer. When I checked this theme in Internet Explorer before I started adding content to the site, it worked fine.</p>

<p>Now, as you IE uses can see, there are some glaring mistakes. I am fixing them. Expect the ammendment to be made sometime over the weekend. </p>

<p>Apologies for any inconvenience caused.</p>

<p>EDIT: I did not get chance over the weekend to sort out the IE problems, I was busy getting rid of windows and putting Ubuntu Dapper on my system. (Thats Linux for those who don&#8217;t know.)</p>

<p>Also added some <a href="http://www.lifehacker.com/software/top/hack-attack-top-10-ubuntu-apps-and-tweaks-195437.php" target="_blank">Eye Candy</a> too. Scroll down to number ten and watch the video. </p>

<p>I am all set-up and running, so I am working on the IE problem right now.</p>]]></content:encoded>
			<wfw:commentRss>http://www.soddengecko.com/all/2006/internet-explorer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
