<?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>James Emmrich</title>
	<atom:link href="http://www.lwp.ca/james/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lwp.ca/james</link>
	<description>Just another motorcycle linux geek</description>
	<lastBuildDate>Mon, 22 Feb 2010 20:55:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automatic database backup via script</title>
		<link>http://www.lwp.ca/james/2010/02/automatic-database-backup-via-script/</link>
		<comments>http://www.lwp.ca/james/2010/02/automatic-database-backup-via-script/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 19:13:16 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ProTip]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Tips 'n Hacks]]></category>

		<guid isPermaLink="false">http://www.lwp.ca/james/?p=475</guid>
		<description><![CDATA[As mentioned before somewhere in my blog, here is the script I have written to back up my databases. This is actually my local backup script, I have a much different one on the server which uses a passwordless ssh connection to backup the databases offsite.
#!/bin/sh
# Database backup 2008 &#60;jemmrich@gmail.com&#62;
# Nightly Usage:
# 0 0 * [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned before somewhere in my blog, here is the script I have written to back up my databases. This is actually my local backup script, I have a much different one on the server which uses a passwordless ssh connection to backup the databases offsite.</p>
<pre>#!/bin/sh
# Database backup 2008 &lt;jemmrich@gmail.com&gt;
# Nightly Usage:
# 0 0 * * * /home/james/Dropbox/Home/mobilewolf/scripts/backup.sh &amp;&gt; /dev/null

LOGFILE="/home/james/Dropbox/Home/mobilewolf/databases/databases.log"
BACKUPDIR="/home/james/Dropbox/Home/mobilewolf/databases"
STARTTIME="$(date +%Y-%m-%d-%r)"

# MySQL Login
SQLUSER="sqluser"
SQLPASS="sqlpass"

# Dump databases
echo "*** Database Backup Started: $STARTTIME" &gt;&gt; $LOGFILE

# Keep yesterdays databases
rm -f $BACKUPDIR/yesterday/*
mv $BACKUPDIR/*.gz $BACKUPDIR/yesterday/

for i in `echo "show databases" | mysql -u $SQLUSER -p$SQLPASS | grep -v Database`;
do
 mysqldump -u $SQLUSER -p$SQLPASS $i &gt; /tmp/$i.sql
 echo $i &gt;&gt; $LOGFILE
 gzip /tmp/$i.sql

 # Send Databases
 cp /tmp/*.sql.gz $BACKUPDIR/

 # Remove our dumps to keep us clean
 rm -f /tmp/*.sql.gz
done

echo "*** Database Backup Ended: $(date +%Y-%m-%d-%r)" &gt;&gt; $LOGFILE
echo "\n" &gt;&gt; $LOGFILE</pre>
<p><strong>Setup</strong></p>
<ol>
<li>Change the user and password to a user that has ability to access all databases for dump</li>
<li>Download and set executable permissions chmod +x backup_databases.sh</li>
<li>edit cron to execute every night: crontab -e</li>
<li>add: 0 0 * * * /home/james/Dropbox/Home/mobilewolf/scripts/backup_databases.sh &amp;&gt; /dev/null</li>
</ol>
<p><strong>Ideas for your setup</strong></p>
<ul>
<li>The line following &#8220;Send databases&#8221; replace cp, with scp to send the databases to remote server. You will need to have passwordless ssh connections setup.</li>
<li>Have the log file emailed to you once completed</li>
</ul>
<p><strong>My Future Improvements</strong></p>
<ul>
<li>Enable backup archiving for the past week rotated daily so I can go back to a database from 2 or 3 days or even a week ago</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.lwp.ca/james/2010/02/automatic-database-backup-via-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How I use Dropbox on Ubuntu</title>
		<link>http://www.lwp.ca/james/2010/02/how-i-use-dropbox-on-ubuntu/</link>
		<comments>http://www.lwp.ca/james/2010/02/how-i-use-dropbox-on-ubuntu/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 22:45:00 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ProTip]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Tips 'n Hacks]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lwp.ca/james/?p=468</guid>
		<description><![CDATA[Dropbox.com has become a huge time saver for me, and most likely a life saver as well.
I have a folder in my Dropbox called Home. Here I have sub folders for each machine that I have. My two laptops, a desktop which hold computer specific files that are different for each computer I have.
Files such [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.dropbox.com/referrals/NTE3MTE2Njk"><img class="alignleft size-full wp-image-472" title="dropbox_logo" src="http://www.lwp.ca/james/wp-content/uploads/2010/02/dropbox_logo_home.png" alt="" width="290" height="75" /></a><a href="https://www.dropbox.com/referrals/NTE3MTE2Njk">Dropbox.com</a> has become a huge time saver for me, and most likely a life saver as well.</p>
<p>I have a folder in my Dropbox called Home. Here I have sub folders for each machine that I have. My two laptops, a desktop which hold computer specific files that are different for each computer I have.</p>
<p>Files such as:</p>
<ul>
<li>/etc/hosts</li>
<li>/etc/fstab</li>
<li>/databases/</li>
</ul>
<p>Rather than copying these manually, I have simply moved the files to the dropbox and then symbolically linked them. That way when the system updates these files, Dropbox does it&#8217;s sync.</p>
<p>The databases folder is a folder which contains database dumps. My crontab is setup to nightly dump databases in tar form and place them here, for Dropbox to store.</p>
<p>I also have a folder called Resources. This contains files that are shared between computers. I have symbolically linked my .fonts folder here. Now whenever I install a new font for a design project, all my other computers are updated too.</p>
<p>For chat software like Pidgin and XChat, I have symbolically linked their folders .purple and xchat2 respectively, to my Dropbox home folder. Because these will be shared between computers I don&#8217;t have them in their respect computer sub folder. Now no matter what computer I chat on, my chat logs and software settings are up to date.</p>
<p>Projects that I work on are placed in my Dropbox under a folder called Projects, with each project as its own sub folder.</p>
<p>During my work, or daily routine I tend to shuffle, download, delete, and create new files. While I don&#8217;t always place these files to my Dropbox, I am very careful to not hold them on my laptops for long periods of time.</p>
<p>For files that I want to hold, I either move them to my Dropbox or to my NAS server depending solely on their importance and need of accessibility.</p>
<p><strong>The results</strong></p>
<p>I can now format my hard drive at any time, provided that Dropbox has had time to sync any changes. I also have the feeling of security knowing that my hard drive crashes will not take me out of commission.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lwp.ca/james/2010/02/how-i-use-dropbox-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview with Motopicks.com front man James Emmrich</title>
		<link>http://www.lwp.ca/james/2010/02/mxp-motopicks-interview/</link>
		<comments>http://www.lwp.ca/james/2010/02/mxp-motopicks-interview/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 01:47:38 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Motocross]]></category>
		<category><![CDATA[MotoPicks]]></category>
		<category><![CDATA[Press]]></category>

		<guid isPermaLink="false">http://www.lwp.ca/james/?p=457</guid>
		<description><![CDATA[James Emmrich is one of those people that works behind the scene of events and goes unnoticed. The web guru of the
Walton Trans Can, James is fan of the sport, a rider, and now has launched Motopicks. Motopicks started last
weekend with the first round of the AMA Monster Energy Supercross. We caught up to James [...]]]></description>
			<content:encoded><![CDATA[<p>James Emmrich is one of those people that works behind the scene of events and goes unnoticed. The web guru of the<br />
Walton Trans Can, James is fan of the sport, a rider, and now has launched Motopicks. Motopicks started last<br />
weekend with the first round of the AMA Monster Energy Supercross. We caught up to James to talk about his new<br />
project.</p>
<div id="attachment_458" class="wp-caption aligncenter" style="width: 405px"><a href="http://www.lwp.ca/james/wp-content/uploads/2010/02/n777400710_343499_9339.jpg"><img class="size-full wp-image-458" title="James Emmrich is the man behind the new www.motopicks.com fantasy league." src="http://www.lwp.ca/james/wp-content/uploads/2010/02/n777400710_343499_9339.jpg" alt="" width="395" height="457" /></a><p class="wp-caption-text">James Emmrich is the man behind the new www.motopicks.com fantasy league.</p></div>
<p><strong>MXP:</strong> Hey James, how is it going?<br />
<strong>James:</strong> Things are going great.<br />
<strong>MXP:</strong> So who are you for those that don’t know!<br />
<strong>James:</strong> Well, I grew up in Walton and have been around Motocross for as long as I can remember. I managed to talk<br />
my parents into getting me a Yamaha YZ 80 and started racing a week after that. I am not going to lie, I was quite<br />
nervous, but after my first moto I was hooked. For the longest while all I did was race, but the geek in me had me<br />
lugging around a 500 page programming book each weekend to read between motos. These days I still race, but now I<br />
am involved with entrant management for the Walton TransCan handling entries, their websites and answering<br />
questions. If you have raced the TransCan, you have probably talked to me in some form or another.<br />
<strong>MXP:</strong> We see you out there rocking the old two-stroke KTM250? You are one of the two-stroke hold outs!<br />
<strong>James:</strong> Yeah, I don’t know how long I will hold out, but that has been a great bike! It is a 1999 and I race it almost<br />
every weekend with no issues!<br />
<strong>MXP:</strong> Most don’t know, the whole entry and gate selection thing is maybe the most stressful part of the Walton event.<br />
Lots of emotions, huh?<br />
<strong>James:</strong> Yeah, it&#8217;s quite the process, and there have been far too many stressful moments to count. However, each<br />
year things are becoming easier and easier. The first two years were pretty rough. TransCan greenhorns always have it<br />
rough the first 2 years; if you make it that long. I think the system [MotoRegistry.ca] that I have developed has not only<br />
made the process easier for everyone, but less stressful for the event staff allowing us to focus on other areas.<br />
<strong>MXP:</strong> Tell us about Motopicks?<br />
<strong>James:</strong> MotoPicks is a Fantasy Motocross League that Mark Perrin and I are running. Since Brett Daily&#8217;s Motoleague<br />
shut down, I had a few people approach me and convince me to give it a shot. I guess the withdrawl got to them. This<br />
is MotoPicks’ inaugural year.<br />
<strong>MXP:</strong> Last weekend, you guys kicked off with the AMA Monster Energy Supercross Series. How did it go?<br />
<strong>James:</strong> It went very well. I was a little nervous being our first major event, and kept by the computer and phone to<br />
answer any questions as they arrived. Besides a few delays on our part getting the word out, I learned a lot and will be<br />
putting it to good use come outdoor national time. Every day there are people signing up and a few thank yous along the<br />
way, which is always nice!<br />
<strong>MXP:</strong> Are there plans to do the US Nationals, and the CMRC Monster Energy MX Nationals?<br />
<strong>James:</strong> Oh yes, for sure. The MotoPicks idea originated from the need for filling the CMRC Monster Energy National<br />
Fantasy League void. It&#8217;s going to be a big year for us taking on both US Nationals and the CMRC Nationals. There are<br />
big plans to come. We may even do a couple other events on top of those two.<br />
<strong>MXP:</strong> Okay, so how can readers find you and Motopicks?<br />
<strong>James:</strong> You can find me at any CMRC race in Southwestern Ontario, and maybe some out of province Nationals in<br />
2010. For Fantasy League fans, visit <a href="http://www.motopicks.com/">http://www.MotoPicks.com/</a> to register and sign up. We also have Twitter and<br />
Facebook, which can also be found linked on our website so feel free to participate in discussions and spread the word.<br />
<strong>MXP:</strong> Thanks for taking the time to do this!<br />
<strong>James:</strong> Thanks, and before we go, I would like to thank everyone for their feedback on MotoPicks.</p>
<div id="attachment_459" class="wp-caption aligncenter" style="width: 614px"><a href="http://www.lwp.ca/james/wp-content/uploads/2010/02/n777400710_1144456_6884.jpg"><img class="size-full wp-image-459" title="Sign up for motopicks. Its the place to go.!!!" src="http://www.lwp.ca/james/wp-content/uploads/2010/02/n777400710_1144456_6884.jpg" alt="" width="604" height="453" /></a><p class="wp-caption-text">Sign up for motopicks. Its the place to go.!!!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.lwp.ca/james/2010/02/mxp-motopicks-interview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MotoPicks.com Launches the 2010 AMA Supercross Fantasy Motocross League</title>
		<link>http://www.lwp.ca/james/2009/12/motopicks-com-launches-the-2010-ama-supercross-fantasy-motocross-league/</link>
		<comments>http://www.lwp.ca/james/2009/12/motopicks-com-launches-the-2010-ama-supercross-fantasy-motocross-league/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 05:19:44 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Motocross]]></category>
		<category><![CDATA[MotoPicks]]></category>
		<category><![CDATA[Motorcycling]]></category>

		<guid isPermaLink="false">http://www.lwp.ca/james/2009/12/motopicks-com-launches-the-2010-ama-supercross-fantasy-motocross-league/</guid>
		<description><![CDATA[Well it&#8217;s finally here, the Monster Energy AMA Supercross season!
MotoPicks.com has launched their first ever Supercross fantasy league. Sign up and win sweet prizes weekly!
]]></description>
			<content:encoded><![CDATA[<p>Well it&#8217;s finally here, the Monster Energy AMA Supercross season!</p>
<p>MotoPicks.com has launched their first ever Supercross fantasy league. Sign up and win sweet prizes weekly!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lwp.ca/james/2009/12/motopicks-com-launches-the-2010-ama-supercross-fantasy-motocross-league/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Urban Exploration</title>
		<link>http://www.lwp.ca/james/2009/10/urban-exploration/</link>
		<comments>http://www.lwp.ca/james/2009/10/urban-exploration/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 22:56:03 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Adventure]]></category>
		<category><![CDATA[exploration]]></category>
		<category><![CDATA[hiking]]></category>
		<category><![CDATA[missile silo]]></category>
		<category><![CDATA[urban]]></category>

		<guid isPermaLink="false">http://www.lwp.ca/james/?p=450</guid>
		<description><![CDATA[Something that I have always been fascinated about was how things work, why things were built the way they were and what places look like behind closed doors. I love old architecture and broken down buildings. Something so beautiful and interesting about an abandoned building falling to pieces left forgotten.
I have always loved hiking and [...]]]></description>
			<content:encoded><![CDATA[<p>Something that I have always been fascinated about was how things work, why things were built the way they were and what places look like behind closed doors. I love old architecture and broken down buildings. Something so beautiful and interesting about an abandoned building falling to pieces left forgotten.</p>
<p>I have always loved hiking and exploring, and I often partake in geocaching, and those activities satisfy that desire somewhat. However, there is nothing like adding a little danger to the equation for a bit of that rush, the fear of getting caught or what you might find.</p>
<p>But there is one thing that I have never gotten a chance to really do, urban exploration, also known as Urbex or UE. Often highly illegal and involving the need to break through doors, locks, and fences.</p>
<p>Every now and then, I come across an article that rejuvenates my interest in the area. This posting is a list of really cool places that I will probably only ever dream of seeing in person.</p>
<h2>Chernobyl</h2>
<p><a href="http://en.wikipedia.org/wiki/Chernobyl_disaster">http://en.wikipedia.org/wiki/Chernobyl_disaster</a></p>
<p>Some day I would like to travel to the Ukraine and explore the area with a local guide of the tourists beaten path.</p>
<h2>Abandoned Military Bunkers &amp; Missile Silos</h2>
<p><a href="http://www.advrider.com/forums/showthread.php?t=277744">http://www.advrider.com/forums/showthread.php?t=277744</a></p>
<p>After reading an article about climbers exploring abandoned missile silos and mapping out military complexes, I knew it was something I would like to explore one day.</p>
<h2>Paris Catacombs</h2>
<p><a href="http://www.environmentalgraffiti.com/featured/paris-catacombs/16561">http://www.environmentalgraffiti.com/featured/paris-catacombs/16561</a></p>
<p>This is a fascinating place. Add on the fact that it is an extremely old tunnel system and the creepiness of thousands of human remains piled on the floor to the height of your head. Would be an incredible sight to see.</p>
<h2>Sewers, Drains, and Subway Systems</h2>
<p><a href="http://www.thesun.co.uk/sol/homepage/features/2651937/The-people-living-in-drains-below-Las-Vegas.html">http://www.thesun.co.uk/sol/homepage/features/2651937/The-people-living-in-drains-below-Las-Vegas.html</a></p>
<p>Interesting article with pictures of people living the drains of Las Vegas</p>
<h2>Caves, Cracks</h2>
<p>Really don&#8217;t have some links for this, but any cave or crack in the earth/rock/ice would be interesting to explore, especially deep mutli-day treks into the void.</p>
<h2>Various links on the topic</h2>
<p><a href="http://www.infiltration.org/index.html">http://www.infiltration.org/index.html</a></p>
<p>A website dedicated to exploring places you should not be.</p>
<p><a href="http://www.uer.ca/">http://www.uer.ca/</a></p>
<p>A Canadian Forum for interested UE</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lwp.ca/james/2009/10/urban-exploration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MotoPicks.com Launch Press Release!</title>
		<link>http://www.lwp.ca/james/2009/09/motopicks-launch-press-release/</link>
		<comments>http://www.lwp.ca/james/2009/09/motopicks-launch-press-release/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 18:32:54 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Motocross]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.lwp.ca/james/?p=442</guid>
		<description><![CDATA[Well finally we have launched MotoPicks.com which is a fantasy motocross league for all that love motocross/supercross! The first event is the US Supercross Open and it is FREE to play. We have lined up some great prizes from AXO, Smith Optics, Thor, Answer Racing, and Monster Energy.
Below is the official press release:

FOR IMMEDIATE RELEASE [...]]]></description>
			<content:encoded><![CDATA[<p>Well finally we have launched <a href="http://www.motopicks.com/">MotoPicks.com</a> which is a fantasy motocross league for all that love motocross/supercross! The first event is the US Supercross Open and it is <strong>FREE to play</strong>. We have lined up some great prizes from AXO, Smith Optics, Thor, Answer Racing, and Monster Energy.</p>
<p>Below is the official press release:</p>
<p><img class="alignright size-full wp-image-443" title="motopicks_logo" src="http://www.lwp.ca/james/wp-content/uploads/2009/09/motopicks_logo.png" alt="motopicks_logo" width="399" height="77" /></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><strong><span style="font-size: 10pt; color: windowtext; font-family: Arial;">FOR IMMEDIATE RELEASE<span> </span><span> </span><span> </span></span></strong></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span style="font-size: 10pt; color: windowtext; font-family: Arial;">Contact: </span><span style="font-size: 10pt; color: windowtext; font-family: Arial;">Mark Perrin</span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span style="font-size: 10pt; color: windowtext; font-family: Arial;">(519)-384-1067<span> </span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span style="font-size: 10pt; font-family: Arial;"><a href="mailto:mark@mpisportmanagement.com" target="_blank">mark@mpisportmanagement.com</a></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span style="font-size: 10pt; font-family: Arial;"><br />
</span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span style="color: windowtext; font-family: Arial;"><span style="font-size: small;"><span> </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; text-align: center;" align="center"><span><strong><span style="font-size: 18pt; font-family: Arial;" lang="EN"><span style="color: #333333;"> </span></span></strong></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; text-align: center;" align="center"><span><strong><span style="font-size: 18pt; font-family: Arial;" lang="EN"><span style="color: #333333;">MotoPicks.com Launches FREE Supercross Fantasy League</span></span></strong></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; text-align: center;" align="center"><span><strong><span style="font-size: 18pt; font-family: Arial;" lang="EN"><span style="color: #333333;"> </span></span></strong></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt; text-align: center;" align="center"><span><em><span style="font-size: 13pt; font-family: Arial;" lang="EN"><span style="color: #333333;">Pick Your Team For the US Open of Supercross and Win Great Prizes </span></span></em></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt; text-align: center;" align="center"><span><em><span style="font-size: 13pt; font-family: Arial;" lang="EN"><span style="color: #333333;"><br />
</span></span></em></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><strong><span style="font-family: Arial;" lang="EN"><span style="color: #333333; font-size: small;"> </span></span></strong></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span style="color: #333333;"><span><strong><span style="font-size: 10pt; font-family: Arial;" lang="EN">(September 29, 2009)</span></strong></span><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"> MotoPicks.com has been launch with its first event, the US Open of Supercross! Fans can sign up and PLAY FOR FREE to win motocross prizes from AXO, Smith Optics, Thor, Answer Racing, and Monster Energy! Sign up and select your riders today! Oct 8th is the deadline for the US Open of Supercross.</span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;"> </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;">MotoPicks has made it easy to pick your team and become your very own race team manager. All you will need to do is register an account so we know where to send your prize. Once that’s completed, simply select then series and event you would like (the US Open) and all that’s left is creating your teams name and hiring and firing your riders as you receive a 1,000,000 budget! </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;"> </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span style="color: #333333;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN">The top ten teams who scores the most points at each event will be sent prizes courtesy of our sponsors <span> </span>AXO, Smith Optics, Thor, Answer, </span></span><span><span style="font-size: 10pt; font-family: Arial;" lang="EN">MPI</span></span><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"> Sport Management, MotoHeaven.net and Monster Energy.</span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;"> </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;">Join in the racing action and see how your fantasy team will place!</span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;"> </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;">Good Luck to All Participates! </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;"> </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><a href="http://www.motopicks.com/" target="_blank">www.MotoPicks.com</a></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><br />
</span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;"> </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;"> </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><strong><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;">About MotoPicks</span></span></strong></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;">MotoPicks is an online fantasy motorsports website. Fans can register and create profiles becoming their own Team Managers giving you have the power to hire and fire riders for each event. In 2009 MotoPicks will have the following series available for fans to participate in – 2009 US Open of Supercross, 2010 Monster Energy Supercross Series, 2010 Lucas Oil AMA Motocross Series and the 2010 Monster Energy Canadian Motocross Nationals. </span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;"><br />
</span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;">Join MotoPicks Facebook group: </span><a href="http://www.facebook.com/pages/MotoPicks/85714871747?ref=mf" target="_blank">http://www.facebook.com/pages/MotoPicks/85714871747?ref=mf</a></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><br />
</span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;"><span> </span></span></span></span></p>
<p style="margin: 0in 0in 0pt; background: white none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: 15pt;"><span><span style="font-size: 10pt; font-family: Arial;" lang="EN"><span style="color: #333333;">Follow MotoPicks on Twitter:<span> </span></span><a href="http://twitter.com/MotoPicks" target="_blank">http://twitter.com/MotoPicks</a></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lwp.ca/james/2009/09/motopicks-launch-press-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fighting with Postgrey</title>
		<link>http://www.lwp.ca/james/2009/06/fighting-with-postgrey/</link>
		<comments>http://www.lwp.ca/james/2009/06/fighting-with-postgrey/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 18:39:38 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.lwp.ca/james/?p=424</guid>
		<description><![CDATA[http://benjamin.sonntag.fr/a12-Postgrey_crashed_Database_lost_.html]]></description>
			<content:encoded><![CDATA[<p>Today I discovered why our server was bouncing back all emails. We were able to send email successfully but hadn&#8217;t received any email for 2-3 days. It was when we found a bounce message from one of our other email accounts that alerted us of the problem.</p>
<p>An example of the bounce message:</p>
<p><span style="color: #666699;">This is an automatically generated Delivery Status Notification</span></p>
<p><span style="color: #666699;">THIS IS A WARNING MESSAGE ONLY.</span></p>
<p><span style="color: #666699;">YOU DO NOT NEED TO RESEND YOUR MESSAGE.</span></p>
<p><span style="color: #666699;">Delivery to the following recipient has been delayed:</span></p>
<p><span style="color: #666699;"><a class="linkification-ext" title="Linkification: mailto:user@ourserver.com" href="mailto:user@ourserver.com">user@ourserver.com</a></span></p>
<p><span style="color: #666699;">Message will be retried for 2 more day(s)</span></p>
<p><span style="color: #666699;">Technical details of temporary failure:<br />
Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 451 451 4.3.5 Server configuration problem (state 14).</span></p>
<p>At first I thought we had a blacklist issue, which happens from time to time as we send large amounts of email in the form of newsletters etc.</p>
<p>Going through <em>/var/log/syslog</em> I found some interesting entries related to Postfix and Postgrey:</p>
<p><span style="color: #666699;">Jun 23 06:25:43 server postfix/smtpd[14721]: NOQUEUE: reject: RCPT from connet1.connect.uwaterloo.ca[129.97.128.124]: 451 4.3.5 Server configuration problem; from=&lt;<a class="linkification-ext" title="Linkification: mailto:xxx@uwaterloo.ca" href="mailto:xxx@uwaterloo.ca">xxx@uwaterloo.ca</a>&gt; to=&lt;xxxr@ourserver.com&gt; proto=ESMTP helo=&lt;connect.uwaterloo.ca&gt;<br />
Jun 23 06:26:48 server postfix/smtpd[16600]: warning: connect to 127.0.0.1:60000: Connection refused</span></p>
<p>My next thought was maybe Postfix was confused some how and decided to restart the whole server.</p>
<p>Server came up and found that now MySQL wasn&#8217;t running and all database driven websites were down. Yikes. Looking through the syslog I discovered the second issue, not enough hard drive space. A simple df -h confirmed it. 100% use on the /var partition.</p>
<p>I quickly removed some old log files, and crap and manually started MySQL. Everything runs, but still have the email issue.</p>
<p>I looked through the <em>/etc/postfix/main.cf</em> to look for clues and found:</p>
<p><span style="color: #666699;">smtpd_recipient_restrictions = reject_non_fqdn_recipient,<br />
reject_unknown_recipient_domain,<br />
permit_mynetworks,<br />
permit_sasl_authenticated,<br />
reject_unauth_destination,<br />
reject_unlisted_recipient,<br />
check_policy_service inet:127.0.0.1:12525,<br />
check_policy_service inet:127.0.0.1:60000,<br />
permit</span></p>
<p>Looking up info on postgrey, lead me to its config file <em>/etc/default/postgrey</em> which contained<em>:<br />
</em></p>
<p><span style="color: #666699;">POSTGREY_OPTS=&#8221;&#8211;inet=127.0.0.1:60000&#8243;</span></p>
<p>So now we know from syslog that the connection issue is because of postgrey. I tried to restart postgrey, and discovered it wasn&#8217;t running, and failed to start. So I ran it manually in verbose:</p>
<p><span style="color: #666699;">/usr/sbin/postgrey -v &#8211;pidfile=/var/run/postgrey.pid &#8211;inet=127.0.0.1:60000</span></p>
<p>Turns out Postgrey failed to find its database. I checked <em>/var/lib/postgrey</em> and found it did infact have files there. Seems Postfix tells you it can&#8217;t find its database when the database is there, but unable to be opened due to being corrupt!</p>
<p>To test this, I moved all files within <em>/var/lib/postgrey</em> to a temporary location and started postgrey manually again. Started up like a charm and postgrey recreated a new database.</p>
<p>To make sure everything is running like new, I restarted the server. Loaded up a few websites, and sent some test emails from an external source (gmail).</p>
<p>Voila! I called up my clients and updated them on the issue and let them know they did not lose any email and that they would still receive email that was sent during the down time. A few minutes later, emails from the weekend started to arrive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lwp.ca/james/2009/06/fighting-with-postgrey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Remove The Annoying Update manager Pop-up in Ubuntu Jaunty</title>
		<link>http://www.lwp.ca/james/2009/06/how-to-remove-the-annoying-update-manager-pop-up-in-ubuntu-jaunty/</link>
		<comments>http://www.lwp.ca/james/2009/06/how-to-remove-the-annoying-update-manager-pop-up-in-ubuntu-jaunty/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 06:33:05 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ProTip]]></category>
		<category><![CDATA[Tips 'n Hacks]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lwp.ca/james/?p=419</guid>
		<description><![CDATA[I have found this handy article. One of my pet peeves is intrusive software. And with Ubuntu&#8217;s new release, Jaunty, which pops up the upgrade program in the mix of all your open documents and workspace, can be quite annoying. I will bloody upgrade when I&#8217;m good and ready thank you very much!
Useful excerpts:
Alternative method [...]]]></description>
			<content:encoded><![CDATA[<p>I have found this handy article. One of my pet peeves is intrusive software. And with Ubuntu&#8217;s new release, Jaunty, which pops up the upgrade program in the mix of all your open documents and workspace, can be quite annoying. I will bloody upgrade when I&#8217;m good and ready thank you very much!</p>
<p>Useful excerpts:</p>
<p><strong>Alternative method (via the terminal)</strong></p>
<p>If you are just plain lazy, here’s a much easier step.</p>
<p>In your terminal, type the following command:</p>
<pre>gconftool -s --type bool /apps/update-notifier/auto_launch false</pre>
<p>To recover:</p>
<pre>gconftool -s --type bool /apps/update-notifier/auto_launch true</pre>
<p>Original article here:</p>
<p><a href="http://maketecheasier.com/remove-the-annoying-update-manager-pop-up-in-ubuntu-jaunty/2009/06/18">http://maketecheasier.com/remove-the-annoying-update-manager-pop-up-in-ubuntu-jaunty/2009/06/18</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lwp.ca/james/2009/06/how-to-remove-the-annoying-update-manager-pop-up-in-ubuntu-jaunty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tethering the HTC Titan (Telus P4000) in Ubuntu</title>
		<link>http://www.lwp.ca/james/2009/05/tethering-the-htc-titan-telus-p4000-in-ubuntu/</link>
		<comments>http://www.lwp.ca/james/2009/05/tethering-the-htc-titan-telus-p4000-in-ubuntu/#comments</comments>
		<pubDate>Tue, 05 May 2009 22:33:51 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Cellphone]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Titan]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.lwp.ca/james/?p=390</guid>
		<description><![CDATA[With my recent move leaving me without Internet for a few days, I have been picking up free Wifi signals from the surrounding area with little or no success requiring me to travel to the parents house. This means that until my Internet is installed, my new place will never be unpacked or lived in. [...]]]></description>
			<content:encoded><![CDATA[<p>With my recent move leaving me without Internet for a few days, I have been picking up free Wifi signals from the surrounding area with little or no success requiring me to travel to the parents house. This means that until my Internet is installed, my new place will never be unpacked or lived in. So I set out to find a solution.</p>
<p>Tethering with the HTC Titan is surprisingly easy&#8211;who knew?</p>
<h2>Windows Mobile</h2>
<p>In Windows Mobile, go to Start &gt; Programs &gt; Internet Sharing</p>
<p>Select USB from the PC Connection drop down</p>
<p>Select your Cellular Provider from the Network Connection drop down.</p>
<p>Then press the Connect button. The phone should start connecting to your data plan. Obviously you need to have your phone plugged into a USB port on the computer.</p>
<h2>Ubuntu</h2>
<p>Once your cellphone has connected to your data plan, Network Manager should popup a message saying you are connected to a &#8220;wired network&#8221;. Make sure your wired network preferences specify DHCP as the method for getting an IP address.</p>
<p>I have not tested this on Ubuntu 9.04 Jaunty Jackalope, but it works fantastic on Ubuntu 8.10 Intrepid Ibex.</p>
<p>Now I can use my Cellphones data plan for Internet access on my laptop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lwp.ca/james/2009/05/tethering-the-htc-titan-telus-p4000-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashing the HTC Titan (the Telus P4000)</title>
		<link>http://www.lwp.ca/james/2009/05/flashing-the-htc-titan-the-telus-p4000/</link>
		<comments>http://www.lwp.ca/james/2009/05/flashing-the-htc-titan-the-telus-p4000/#comments</comments>
		<pubDate>Tue, 05 May 2009 21:24:43 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Cellphone]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ProTip]]></category>
		<category><![CDATA[Tips 'n Hacks]]></category>
		<category><![CDATA[Titan]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://www.lwp.ca/james/?p=217</guid>
		<description><![CDATA[It has been a long time since I flashed my phone, so I figured I should archive the files I used and the process I took in case I need to do it again sometime in the future. Maybe this will help someone else with the same phone as well.
There are a couple important things [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_208" class="wp-caption alignright" style="width: 390px"><img class="size-full wp-image-208" title="htc_titian" src="http://www.lwp.ca/james/wp-content/uploads/2008/09/htc_titian.jpg" alt="HTC Titan" width="380" height="450" /><p class="wp-caption-text">HTC Titan</p></div>
<p>It has been a long time since I flashed my phone, so I figured I should archive the files I used and the process I took in case I need to do it again sometime in the future. Maybe this will help someone else with the same phone as well.</p>
<p>There are a couple important things before you flash your phone, they seem obvious but&#8230;.</p>
<ol>
<li>Your first time flashing will be a bitch, if it is your only phone and think you will need 9-1-1 between now and mid tomorrow, do not do it! Remember? Your life depends on it.</li>
<li>Backup your data. Use ActiveSync, or whatever software you like, and get your contacts, notes, emails, text messages, docs, etc off the phone. I would suggest getting an SD card 2 GB or better as the space on the phone is a bit limited. It is important to note that simply having an SD card does not mean you don&#8217;t have to back up!</li>
<li>Flashing will remove the devices usage stats such as lifetime use etc.</li>
<li>Flashing will void your warranty.</li>
<li>There is a remote possibility if you are not careful, that you could brink your phone, turning it into an expensive albeit flashy paper weight.</li>
<li>This is <strong>only</strong> for the HTC Titan model phone, in Canada it is called HTC P4000</li>
<li>Obviously this is for my own personal record and works for me, however, as always make sure you understand the process first so you don&#8217;t shoot yourself in the foot.</li>
</ol>
<h2><strong>Benefits to Flashing</strong></h2>
<ol>
<li>GPS module is activated (device ships with GPS module crippled)</li>
<li>Get the latest OS version and be able to cook your own version</li>
<li>Can be more stable and less RAM than previous, or, could lock up all the time and run out of RAM. This benefit is chosen by you.</li>
</ol>
<h2><strong>The Method</strong></h2>
<p>I may have deviated slightly from the &#8220;standard&#8221; way of doing it. Although these instructions are almost identical to other places on the nets, this will work for HTC Titan owners in Canada, if you live in the States, it may differ slightly. Thanks goes to all those crackers out there who risked their phones so we can enjoy our GPS!</p>
<p>There are 5 stages to getting your phone flashed. Follow them very carefully, and read through the instructions a couple times before hand.</p>
<p>At the bottom of the page you can download all the files that I used.</p>
<p>You will need a Windows computer, (preferably Windows XP) with latest version of ActiveSync, and probably Outlook, atleast 250 MBs of free hard drive space, a USB cable for phone to computer, and plenty of paitence.</p>
<h3>Stage 1: Retrieving Provisioning Data</h3>
<p>Now that all your data is backed up&#8230;.</p>
<ol>
<li><strong>Get your ESN, MSID and A-Key info</strong> by dialing ##778#, that will launch the EPST configuration menu Note: Some carriers (Canadians) do not need the last #, so just ##778
<ol>
<li>Select view</li>
<li>make note of your ESN (Hex) value</li>
<li>make note of your ESN (Dec) value</li>
<li>make note of your MSID value (looks like a 10 digit tel number)</li>
<li>make note of the rest of the info on a different sheet of paper. And I mean all of it no matter how mundane. This is for backup purposes in case something does not work correctly later. I skipped this, and it took me a month to fix my data connection!</li>
<li>select &lt;view info&gt; and select A-Key. Some carriers leave this blank, some need this info. If there is info here, make note of it now.</li>
<li>click &lt;cancel&gt; to exit the configuration menu</li>
</ol>
</li>
<li><strong>Get your EPST</strong>
<ol>
<li>download this file here .. this is the getspl file (in zip form)</li>
<li>run the GetSPC.exe on your phone and in the Input field, type in your ESN(Hex) in the input field (you wrote this down earlier)</li>
<li>press &lt;go&gt;</li>
<li>the number produced in the output field is your MSLNumber (EPST unlock code)</li>
<li>exit the application</li>
</ol>
</li>
</ol>
<p>You should now have noted these 4 items:</p>
<ol>
<li> MDN: your 10 digit tel number</li>
<li> MSID: another 10 digit tel number (for some carriers it&#8217;s the same as your MDN)</li>
<li> A-Key: only required by certain carriers</li>
<li> MSL: a 6 digit number that you got when you ran the GetSPC.exe</li>
</ol>
<p>Special Note: The great thing about using the following procedure is that typically you won&#8217;t even have to use the information you just obtained. But better safe than sorry.</p>
<h3>Stage 2: Upgrading the Boot Loader &amp; Radio</h3>
<ol>
<li>If you have flash this phone before, you will need to &#8220;relock&#8221; the phone so it can be flashed. If you have not flashed your phone or do not know what this is, skip and continue as you most likely have a virgin phone.<br />
You can get the relocker here: XXXXXXXXXXXXXXXXXXXXXXXXXx</li>
<li>Run the Unofficial carrier released rom 3.16 which contains the boot loader and radio. This is a Sprint ROM, don&#8217;t worry about it, you&#8217;ll still be able to use your provider, in my case, Telus.<br />
You can get the ROM here: XXXXXXXXXXXXXXXXXXXXXXXXXXXXX</li>
</ol>
<h3>Stage 3: Install a Custom ROM</h3>
<p>I am running No2Chems ROMs which I find are very good and still feels like the stock ROM (how my phone was meant to be) but with some added features.</p>
<ol>
<li>run the unLocker for 3.16 and above, don&#8217;t worry about getting out of the boot loader &#8211; tri-color screen</li>
<li>Download: No2Chems ROM version 5050 (old version as of writing but I still use it) XXXXXXXXXXXXXXX (warning 50mb download)</li>
<li>Download the RUU, the software used to flash the phone. XXXXXXXXXXXXXXXX</li>
<li>Copy the .nbh file into the RUU folder</li>
<li>Make sure there is only one .nbh file in the folder</li>
<li>Double click RomUpdateUtility.exe to begin the update</li>
</ol>
<h3>Stage 4: Verify Provisioning Data</h3>
<ol>
<li>Dial ##MSL# &#8211; this is the 6 digit code you retrieved in step 2 above
<ol>
<li>first select view (because if your info is correct, we don&#8217;t want to accidentally mess it up</li>
<li>verify that the MDN and MSID fields match your info from above</li>
<li>if the info matches, select cancel and skip following step.</li>
<li>if the info does not match, then cancel and re dial ##MSL#, but select edit.</li>
<li>input the correct MDN and MSID and then select &lt;menu&gt; and &lt;ok&gt; and your phone will now reboot. Check again to verify its correctness when the phone boots up.</li>
</ol>
</li>
<li>If your phone had an A-Key then do this step, otherwise proceed to step 3
<ol>
<li>dial ##778#</li>
<li>select &lt;edit&gt;</li>
<li>input your MSL (6 digit code retrieved in step 2 above) **Please note, you can mess up your phone if you change the wrong fields &#8211; use with caution**</li>
<li>select &lt;view info&gt; and select A-Key</li>
<li>input the A-Key from info above (if required)</li>
<li>select menu and select &lt;OK&gt;, your phone will reboot</li>
</ol>
</li>
</ol>
<p><strong>Verify your services</strong></p>
<ol>
<li>make an outbound call</li>
<li>receive a call</li>
<li>connect to the Internet</li>
</ol>
<p>Congratulations, you have successfully updated your phone &#8211; Have fun!</p>
<h3>Stage 5: Trouble Shooting</h3>
<p>More to come here, just want to push this article out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lwp.ca/james/2009/05/flashing-the-htc-titan-the-telus-p4000/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
