<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.2" -->
<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/"
	>

<channel>
	<title>OldBlogger</title>
	<link>http://www.oldblogger.com</link>
	<description>Gone Fishing</description>
	<pubDate>Mon, 18 Apr 2011 11:11:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>
	<language>en</language>
			<item>
		<title>Reset AUTO_INCREMENT counter in MySQL</title>
		<link>http://www.oldblogger.com/mysql/reset-auto_increment-counter-in-mysql</link>
		<comments>http://www.oldblogger.com/mysql/reset-auto_increment-counter-in-mysql#comments</comments>
		<pubDate>Mon, 18 Apr 2011 11:10:47 +0000</pubDate>
		<dc:creator>colinh</dc:creator>
		
	<category>MySQL</category>
		<guid isPermaLink="false">http://www.oldblogger.com/mysql/reset-auto_increment-counter-in-mysql</guid>
		<description><![CDATA[Here are three ways to reset auto_increment in MySQL:
1) Drop the table and recreate it.
&#8216;DROP TABLE myTable;&#8217;
&#8216;CREATE TABLE myTable( &#8230; etc &#8230;&#8217;
2) Alter the auto_increment to a specified index
&#8216;ALTER TABLE myTable AUTO_INCREMENT = 1;&#8217;
3) Truncate the table to delete all rows and reset auto_increment
&#8216;TRUNCATE TABLE myTable&#8217;
The method you use would depend on exactly what you [...]]]></description>
		<wfw:commentRss>http://www.oldblogger.com/mysql/reset-auto_increment-counter-in-mysql/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Running MySQL Commands From Scripts And Scripts Within MySQL</title>
		<link>http://www.oldblogger.com/mysql/running-scripts-from-and-with-mysql</link>
		<comments>http://www.oldblogger.com/mysql/running-scripts-from-and-with-mysql#comments</comments>
		<pubDate>Mon, 11 Apr 2011 23:08:04 +0000</pubDate>
		<dc:creator>colinh</dc:creator>
		
	<category>MySQL</category>
		<guid isPermaLink="false">http://www.oldblogger.com/mysql/running-scripts-from-and-with-mysql</guid>
		<description><![CDATA[Some MySQL tips:
Running a shell script from within MySQL:
mysql> \! /user/myscript
Running a script of MySQL commands from within MySQL:
mysql> source /user/myscript;
Running MySQL from within a shell script and running commands to create a database and user:
mysql -u$ROOTUSER -p$ROOTPASSWD ]]></description>
		<wfw:commentRss>http://www.oldblogger.com/mysql/running-scripts-from-and-with-mysql/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Debian Stunnel4 inetd mode must define a remote host or an executable</title>
		<link>http://www.oldblogger.com/linux-admin-tips/debian-stunnel4-inetd-mode-must-define-a-remote-host-or-an-executable</link>
		<comments>http://www.oldblogger.com/linux-admin-tips/debian-stunnel4-inetd-mode-must-define-a-remote-host-or-an-executable#comments</comments>
		<pubDate>Sat, 11 Dec 2010 22:11:57 +0000</pubDate>
		<dc:creator>colinh</dc:creator>
		
	<category>Linux Admin Tips</category>
		<guid isPermaLink="false">http://www.oldblogger.com/linux-admin-tips/debian-stunnel4-inetd-mode-must-define-a-remote-host-or-an-executable</guid>
		<description><![CDATA[Setting up some secure services on a Linux VPS today, using Debian Lenny, had a bit of a battle with stunnel4. The stunnel.conf file I was using had been brought across from this servers predecessor (another story for another day maybe). It had worked there but I could not get it to work on this [...]]]></description>
		<wfw:commentRss>http://www.oldblogger.com/linux-admin-tips/debian-stunnel4-inetd-mode-must-define-a-remote-host-or-an-executable/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Mobile 6.1 Setting Wallpaper Transparency</title>
		<link>http://www.oldblogger.com/windows-mobile/windows-mobile-61-setting-wallpaper-transparency</link>
		<comments>http://www.oldblogger.com/windows-mobile/windows-mobile-61-setting-wallpaper-transparency#comments</comments>
		<pubDate>Mon, 01 Mar 2010 13:16:18 +0000</pubDate>
		<dc:creator>colinh</dc:creator>
		
	<category>Windows Mobile</category>
		<guid isPermaLink="false">http://www.oldblogger.com/windows-mobile/windows-mobile-61-setting-wallpaper-transparency</guid>
		<description><![CDATA[Recently I purchased an I-Mate Ultimate 8502 smartphone. Seems the company has gone under or at least dormant, so Expansys were selling the handsets off cheaply. Was just what I wanted, a smartphone with no contract, not locked to any network.
Setting the phone up I wanted to set the today screen wallpaper, seemed simple enough [...]]]></description>
		<wfw:commentRss>http://www.oldblogger.com/windows-mobile/windows-mobile-61-setting-wallpaper-transparency/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Growing the /var volume on my Centos 5.3 LVM</title>
		<link>http://www.oldblogger.com/linux-admin-tips/growing-the-var-volume-on-my-centos-53-lvm</link>
		<comments>http://www.oldblogger.com/linux-admin-tips/growing-the-var-volume-on-my-centos-53-lvm#comments</comments>
		<pubDate>Sat, 26 Dec 2009 23:46:10 +0000</pubDate>
		<dc:creator>colinh</dc:creator>
		
	<category>Linux Admin Tips</category>
		<guid isPermaLink="false">http://www.oldblogger.com/linux-admin-tips/growing-the-var-volume-on-my-centos-53-lvm</guid>
		<description><![CDATA[A little while ago I rebuilt the home Linux server, it used to have two 160GB Sata drives arranged as a software RAID 1, 2 2GHz Xeon Processors, 2Gb of RAM and was running Fedora Core 3 so you can see when it was last rebuilt.
I went for Centos 5, as I wanted longer term [...]]]></description>
		<wfw:commentRss>http://www.oldblogger.com/linux-admin-tips/growing-the-var-volume-on-my-centos-53-lvm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My Life Virtual Life Simulator For Girls From Flair Another Christmas Present Found</title>
		<link>http://www.oldblogger.com/general/my-life-virtual-life-simulator-for-girls-from-flair-another-christmas-present-found</link>
		<comments>http://www.oldblogger.com/general/my-life-virtual-life-simulator-for-girls-from-flair-another-christmas-present-found#comments</comments>
		<pubDate>Sun, 23 Nov 2008 21:28:44 +0000</pubDate>
		<dc:creator>colinh</dc:creator>
		
	<category>General</category>
		<guid isPermaLink="false">http://www.oldblogger.com/general/my-life-virtual-life-simulator-for-girls-from-flair-another-christmas-present-found</guid>
		<description><![CDATA[Another idea for a Christmas present for girls I found today was My Life a portable console game from Flair a UK based toy manufacturer.
To quote the manufacturers blurb My Life is a virtual life simulator designed especially for girls! It&#8217;s the ultimate digital pocket games console combining the charm of virtual fashion dolls with [...]]]></description>
		<wfw:commentRss>http://www.oldblogger.com/general/my-life-virtual-life-simulator-for-girls-from-flair-another-christmas-present-found/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Elmo Live Sesame Street Character by Fisher Price a Great Present this Christmas</title>
		<link>http://www.oldblogger.com/general/elmo-live-sesame-street-character-by-fisher-price-a-great-present-this-christmas</link>
		<comments>http://www.oldblogger.com/general/elmo-live-sesame-street-character-by-fisher-price-a-great-present-this-christmas#comments</comments>
		<pubDate>Sat, 22 Nov 2008 00:50:54 +0000</pubDate>
		<dc:creator>colinh</dc:creator>
		
	<category>General</category>
		<guid isPermaLink="false">http://www.oldblogger.com/general/elmo-live-sesame-street-character-by-fisher-price-a-great-present-this-christmas</guid>
		<description><![CDATA[Starting to look around for ideas for Christmas Present this year, I was looking at what are tipped to be the top 10 sellers this year.
One I came across that is tipped to be a hit this year is the Elmo Live animatronic doll from Fisher Price.
Elmo is a popular character from the long running [...]]]></description>
		<wfw:commentRss>http://www.oldblogger.com/general/elmo-live-sesame-street-character-by-fisher-price-a-great-present-this-christmas/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Which Overseas Call Center Is Bombarding Our Telephone?</title>
		<link>http://www.oldblogger.com/general/which-overseas-call-center-is-bombarding-our-telephone</link>
		<comments>http://www.oldblogger.com/general/which-overseas-call-center-is-bombarding-our-telephone#comments</comments>
		<pubDate>Sun, 31 Aug 2008 21:09:14 +0000</pubDate>
		<dc:creator>colinh</dc:creator>
		
	<category>General</category>
		<guid isPermaLink="false">http://www.oldblogger.com/general/which-overseas-call-center-is-bombarding-our-telephone</guid>
		<description><![CDATA[Today I was looking at the call log in my FritzBox which is a ADSL Modem Router with VOIP and PBX capabilities, and I saw hundreds of anonymous incoming telephone calls of 0 seconds duration.
Our FritzBox is configured to reject anonymous calls so the 0 duration was because of that, we had some problems with [...]]]></description>
		<wfw:commentRss>http://www.oldblogger.com/general/which-overseas-call-center-is-bombarding-our-telephone/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Photos from my trip to Thailand in February to March 2007</title>
		<link>http://www.oldblogger.com/photo-galleries/thailand200702</link>
		<comments>http://www.oldblogger.com/photo-galleries/thailand200702#comments</comments>
		<pubDate>Sat, 23 Feb 2008 18:14:32 +0000</pubDate>
		<dc:creator>colinh</dc:creator>
		
	<category>Photo Galleries</category>
		<guid isPermaLink="false">http://www.oldblogger.com/photo-galleries/thailand200702</guid>
		<description><![CDATA[Photos from my trip to Thailand in February to March 2007, we visited Hua Hin for a few days these were taken there.


]]></description>
		<wfw:commentRss>http://www.oldblogger.com/photo-galleries/thailand200702/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Photos from my trip to Thailand in November to December 2007</title>
		<link>http://www.oldblogger.com/photo-galleries/thailand200711</link>
		<comments>http://www.oldblogger.com/photo-galleries/thailand200711#comments</comments>
		<pubDate>Mon, 11 Feb 2008 00:13:43 +0000</pubDate>
		<dc:creator>colinh</dc:creator>
		
	<category>Photo Galleries</category>
		<guid isPermaLink="false">http://www.oldblogger.com/photo-galleries/thailand200711</guid>
		<description><![CDATA[Photos from my trip to Thailand in November to December 2007. Mostly snaps of the house and surrounding area, with some of Loi Krathong festival in Sukhothai.


]]></description>
		<wfw:commentRss>http://www.oldblogger.com/photo-galleries/thailand200711/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

