<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Tech and life</title>
	
	<link>http://www.techandlife.com</link>
	<description>...some personal observations on tech...and life</description>
	<lastBuildDate>Wed, 16 May 2012 18:58:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/techandlife/feed" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="techandlife/feed" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">techandlife/feed</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Schedule Automatic Daily Backups of Changed Files to Cloud Storage</title>
		<link>http://www.techandlife.com/2012/05/schedule-automatic-daily-backups-of-changed-files-to-cloud-storage/</link>
		<comments>http://www.techandlife.com/2012/05/schedule-automatic-daily-backups-of-changed-files-to-cloud-storage/#comments</comments>
		<pubDate>Wed, 16 May 2012 15:46:43 +0000</pubDate>
		<dc:creator>techandlife</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[backup changed files]]></category>
		<category><![CDATA[backup daily files]]></category>
		<category><![CDATA[backup to cloud]]></category>
		<category><![CDATA[backup work files]]></category>
		<category><![CDATA[batch files]]></category>
		<category><![CDATA[Robocopy]]></category>
		<category><![CDATA[schedule backup]]></category>
		<category><![CDATA[Task Scheduler]]></category>

		<guid isPermaLink="false">http://www.techandlife.com/?p=3204</guid>
		<description><![CDATA[I’ve already talked about my backup routine in an earlier post. Part of that involves daily backups to CX (Cloud Exchange) -&#160; it’s my first choice cloud storage site as it gives 10GB free storage. Like Dropbox and SkyDrive etc, just drag your files to the CX desktop folder and they are automatically synced to [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve already talked about <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vMjAxMi8wNC9teS1jdXJyZW50LXBjLWJhY2t1cC1yb3V0aW5lLw==" target=\"_blank\">my backup routine in an earlier post</a>. Part of that involves daily backups to <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cHM6Ly93d3cuY3guY29tLw==" target=\"_blank\">CX (Cloud Exchange)</a> -&#160; it’s my first choice cloud storage site as it gives 10GB free storage. Like Dropbox and SkyDrive etc, just drag your files to the CX desktop folder and they are automatically synced to the cloud.</p>
<p>That’s great, but what about scheduling automatic daily backups of your changed documents to the cloud? For me, it’s important to have a second copy of my recently changed work files in the cloud, just in case my PC doesn’t boot next morning, for example. We need a way to automatically select documents you’ve worked on that day, and at a preset time, copy those files to your CX folder for syncing to the cloud. I’m going to show you how I do this.</p>
<h2>Get some free cloud storage</h2>
<p>If you haven’t already done so, sign up for free cloud storage and make a note where your desktop folder is for syncing to the cloud. For me, it’s C:\Users\&lt;user name&gt; \Desktop\CX Sync.</p>
<h2>Create a batch file to copy daily changed files to the CX folder</h2>
<p>Yes, I know <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5tYWtldXNlb2YuY29tL3RhZy93cml0ZS1zaW1wbGUtYmF0Y2gtYmF0LWZpbGUv" target=\"_blank\">batch files</a> are a little old school but, once set up correctly, they get the job done. We’ll make one to execute a simple command to copy today’s changed files to our syncing folder, but first why select just changed files? Well, if you have a good backup routine in place, all your documents older than today should be on your external drive anyway. During the current day, you’ve been editing documents, photos or videos and these current files should be backed up to your external drive and the cloud at the end of the day. You could use a backup program but why download another utility when you already have the tools to do it for free in Windows. </p>
<p>We can create a batch file with a text editor like <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL25vdGVwYWQtcGx1cy1wbHVzLm9yZy8=" target=\"_blank\">Notepad++</a>. In the batch file, the command <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3NzNjQuY29tL250L3JvYm9jb3B5Lmh0bWw=" target=\"_blank\">Robocopy</a> is used to copy your daily files from the source folders to a destination folder, your syncing folder. Robocopy is available in Windows Vista and Windows 7.&#160; The format for the Robocopy command here is <em>Robocopy &lt;source folder&gt; &lt;destination folder&gt; switches</em>. The switch /MAXAGE:1 makes the command select just today’s files (i.e. it excludes files older than 1 day). The switch /S tells Robocopy to copy subfolders. Open your text editor and copy and paste the following lines to make your batch file:</p>
<p><em>echo off</em></p>
<p><em>echo Daily files to CX</em></p>
<p><em>Robocopy &quot;c:\Users\&lt;user name&gt;\Documents&quot; &quot;C:\Users\&lt;user name&gt;\Desktop\CX Sync&quot; /MAXAGE:1 /S      <br /></em></p>
<p><em>echo Backup complete      <br />pause</em></p>
<p>You’ll have to edit &lt;<em>user name</em>&gt; to your own user name and you’ll have to change some details to point to your correct source and destination folders. The destination folder should be your syncing folder, in my case CX Sync. If the source or destination paths contain spaces in them, enclose these in double quotes as shown above. Now save it as a batch file (.bat) on your desktop, NOT as a text file (.txt). Give it a sensible name, something like <em>Daily docs to CX.bat</em>. Here’s how the <em>Save as</em> screen looks in Notepad++:</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvU2F2ZS1hcy1iYXRjaC1maWxlLmpwZw=="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Save as batch file" border="0" alt="Save as batch file" src="http://www.techandlife.com/wp-content/uploads/2012/05/Save-as-batch-file_thumb.jpg" width="429" height="317" /></a></p>
<p>Try it out by double clicking this batch file on your Desktop&#160; to see if it’s copying today’s changed files to your syncing folder.</p>
<h2>Schedule your daily backup with Windows Task Scheduler</h2>
<p>So far so good I hope. But so far we’re relying on remembering to click this batch file each day. Much better if we could automate this process to run the batch file at a specific time each day, say 9pm when all work for the day is finished and we are doing other things on our PC. Well, we can set up Windows Task Scheduler to do this.</p>
<p>Click the Windows Start button and key in <em>Task</em> in the search window. This should bring up Task Scheduler on the list. Click it, then right click <em>Task Scheduler Library</em> and choose <em>Create Task</em>. Under the <em>General </em>tab, fill out the task Name:</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvVGFzay1TY2hlZHVsZXIxLmpwZw=="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Task Scheduler1" border="0" alt="Task Scheduler1" src="http://www.techandlife.com/wp-content/uploads/2012/05/Task-Scheduler1_thumb.jpg" width="463" height="348" /></a></p>
<p>Then click on the <em>Triggers</em> tab and click<em> New</em>. Fill out the time for your scheduled backup to run and make sure <em>Daily</em> is selected. Click <em>OK</em>.</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvVGFzay1TY2hlZHVsZXIyLmpwZw=="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Task Scheduler2" border="0" alt="Task Scheduler2" src="http://www.techandlife.com/wp-content/uploads/2012/05/Task-Scheduler2_thumb.jpg" width="464" height="400" /></a></p>
<p>Then click on the <em>Actions</em> tab and click <em>New</em>. Fill out the location of your batch file by browsing to your desktop and selecting the file. Click <em>OK</em>.</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvVGFzay1TY2hlZHVsZXIzLmpwZw=="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Task Scheduler3" border="0" alt="Task Scheduler3" src="http://www.techandlife.com/wp-content/uploads/2012/05/Task-Scheduler3_thumb.jpg" width="441" height="479" /></a></p>
<p>Select the <em>Conditions</em> tab and set it up as shown.</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvVGFzay1TY2hlZHVsZXI0LmpwZw=="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Task Scheduler4" border="0" alt="Task Scheduler4" src="http://www.techandlife.com/wp-content/uploads/2012/05/Task-Scheduler4_thumb.jpg" width="454" height="342" /></a></p>
<p>I found it best to uncheck the default ‘<em>Start the task only if the computer is idle for</em>:’ I want it to run right away at 9pm with no delay. Click <em>OK</em> to complete setting up your scheduled backup task and close the Task Scheduler.</p>
<p>When this scheduled task runs at your chosen time, it runs in the background anyway. The <em>pause</em> command at the end of the batch file means the window will remain open so you can check it has run correctly.&#160; When you’re satisfied everything is okay, press any key to close the batch file window.</p>
<p>So there we have a free route to set up a scheduled backup of your daily edited files to the cloud without downloading any utilities. Eventually, when your free online storage starts to fill up, you can delete some of the older files to free up space. They should all be on your external drive anyway. How do you schedule backups? Have you any suggestions to improve this routine. I&#8217;d love to hear your thoughts.</p>
 <img src="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=3204" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.techandlife.com/2012/05/schedule-automatic-daily-backups-of-changed-files-to-cloud-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting m4a and m4v files to mp3 with VLC Media Player</title>
		<link>http://www.techandlife.com/2012/05/converting-m4a-and-m4v-files-to-mp3-with-vlc-media-player/</link>
		<comments>http://www.techandlife.com/2012/05/converting-m4a-and-m4v-files-to-mp3-with-vlc-media-player/#comments</comments>
		<pubDate>Fri, 11 May 2012 15:05:03 +0000</pubDate>
		<dc:creator>techandlife</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[convert to mp3]]></category>
		<category><![CDATA[m4a to mp3]]></category>
		<category><![CDATA[media file conversion]]></category>
		<category><![CDATA[VLC]]></category>

		<guid isPermaLink="false">http://www.techandlife.com/?p=3185</guid>
		<description><![CDATA[I still use my trusty old Samsung YP-Z5 mp3 player to listen to podcasts, trouble is it won’t display or play MPEG-4 or MP4 format files, for example audio files with the extension m4a. Occasionally, I download podcasts in this format so I have to convert them to mp3 format. A quick search on line [...]]]></description>
			<content:encoded><![CDATA[<p>I still use my trusty old Samsung YP-Z5 mp3 player to listen to podcasts, trouble is it won’t display or play <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvTVBFRy00X1BhcnRfMTQ=" target=\"_blank\">MPEG-4 or MP4</a> format files, for example audio files with the extension m4a. Occasionally, I download podcasts in this format so I have to convert them to mp3 format. A quick search on line for <em>m4a to mp3</em> brings up a whole bunch of free converters but I already have enough utilities on my PC without downloading another.</p>
<p>I remembered reading that VLC media player does audio and video conversions so I gave it a try. Launch VLC and click Media, Convert/Save (Ctrl-R). Click Add and browse to your m4a file,&#160; click Open, then click Convert/Save.</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvVkxDMS5qcGc="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="VLC1" border="0" alt="VLC1" src="http://www.techandlife.com/wp-content/uploads/2012/05/VLC1_thumb.jpg" width="384" height="309" /></a></p>
<p>Then under Destination, select a folder and name for your converted file remembering to add the .mp3 suffix. Under Settings, select Audio – MP3, then select Start.</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvVkxDMi5qcGc="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="VLC2" border="0" alt="VLC2" src="http://www.techandlife.com/wp-content/uploads/2012/05/VLC2_thumb.jpg" width="388" height="266" /></a></p>
<p>Along the bottom of the next screen, the Play progress bar actually indicates the progress of the audio conversion. Conversion of an 80MB m4a file took 5 to 10 minutes on my PC. I also checked out the conversion of m4v video format to mp3 audio and that works well too.</p>
<p>So there’s a great way to convert audio and video file formats using VLC without adding any extra free conversion utilities to your PC.</p>
 <img src="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=3185" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.techandlife.com/2012/05/converting-m4a-and-m4v-files-to-mp3-with-vlc-media-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Storing PIN Numbers and Security Passcodes So They Can’t be Easily Identified</title>
		<link>http://www.techandlife.com/2012/05/storing-pin-numbers-so-they-cant-be-easily-identified/</link>
		<comments>http://www.techandlife.com/2012/05/storing-pin-numbers-so-they-cant-be-easily-identified/#comments</comments>
		<pubDate>Tue, 08 May 2012 13:53:18 +0000</pubDate>
		<dc:creator>techandlife</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[disguising PIN code]]></category>
		<category><![CDATA[hiding PIN code]]></category>
		<category><![CDATA[PIN code]]></category>
		<category><![CDATA[storing PIN code]]></category>

		<guid isPermaLink="false">http://www.techandlife.com/?p=3175</guid>
		<description><![CDATA[I read an interesting post recently on 10 Snapshots You Should Keep in Your Phone&#8217;s Photo Album but it was one of the comments and follow-up answers that really caught my eye. How do you securely store PIN numbers if you have to so they can’t be easily identified? Personally for the cards I use [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvQVRNLWtleXBhZC5qcGc="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="ATM keypad" border="0" alt="ATM keypad" src="http://www.techandlife.com/wp-content/uploads/2012/05/ATM-keypad_thumb.jpg" width="336" height="253" /></a></p>
<p>I read an interesting post recently on <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5hcGFydG1lbnR0aGVyYXB5LmNvbS8xMC1zbmFwc2hvdHMteW91LXNob3VsZC1rZWVwLWluLXlvdXItcGhvbmVzLXBob3RvLWFsYnVtLTE3MDQ5Mg==" target=\"_blank\">10 Snapshots You Should Keep in Your Phone&#8217;s Photo Album</a> but it was one of the comments and follow-up answers that really caught my eye. How do you securely store PIN numbers if you have to so they can’t be easily identified? Personally for the cards I use regularly I’ve memorized the PIN code, but some cards I only use occasionally and need to store the PIN in a secure form so only I can identify it. What I hit on was disguising the PIN as a date or birthday and storing that in my address book or as note on my phone. For example, a 4 digit PIN of 6238 would convert to 6th February 1938 in my notes, but I always felt this was a little too easily guessable.</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5hcGFydG1lbnR0aGVyYXB5LmNvbS8xMC1zbmFwc2hvdHMteW91LXNob3VsZC1rZWVwLWluLXlvdXItcGhvbmVzLXBob3RvLWFsYnVtLTE3MDQ5MiNjaWQtMTUxNzc1Ng==" target=\"_blank\">Lynn</a> posted this response on the above blog post:</p>
<blockquote><p>I give all my cards-with-pincodes ‘names’ and include the pincode in the phone numbers attributed to those names in my contact list. Only I know what I call them, but, just in case, only I know which four digits of the 10 in the # are the pincode ones.</p>
</blockquote>
<p>That sounded perfect for me. In the UK, we typically have 5-digit STD codes and 6-digit phone numbers, so my example PIN could be saved as a fake name/phone number like: Sid 01234-623810. You can see where I’ve put the PIN. Obviously, as Lynn says you have to remember which ‘name’ goes with which card. This method seems to me to be pretty secure, particularly as the PIN reminder is stored on your phone, completely separately from your wallet or purse with your cards.</p>
<p align="left">How do you store PIN numbers when you have to? Drop a comment below.</p>
<p>Image credit: <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5mbGlja3IuY29tL3Bob3Rvcy80NDEyNDM5Mzg0MEBOMDEvMjcyMTA0" target=\"_blank\">ATM keypad 1/4</a></p>
 <img src="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=3175" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.techandlife.com/2012/05/storing-pin-numbers-so-they-cant-be-easily-identified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Restoring Thunderbird Emails and Settings on Your PC, Another PC or a Linux Netbook</title>
		<link>http://www.techandlife.com/2012/05/restoring-thunderbird-emails-and-settings-on-your-pc-another-pc-or-a-linux-netbook/</link>
		<comments>http://www.techandlife.com/2012/05/restoring-thunderbird-emails-and-settings-on-your-pc-another-pc-or-a-linux-netbook/#comments</comments>
		<pubDate>Mon, 07 May 2012 16:13:37 +0000</pubDate>
		<dc:creator>techandlife</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[backup Thunderbird]]></category>
		<category><![CDATA[restore emails]]></category>
		<category><![CDATA[restore Thunderbird]]></category>
		<category><![CDATA[Thunderbird]]></category>

		<guid isPermaLink="false">http://www.techandlife.com/?p=3161</guid>
		<description><![CDATA[I’ve already blogged about backing up all your Thunderbird emails using MozBackup. Well that’s fine but what about restoring all the mails and settings to make sure MozBackup has done the job correctly. I use Windows 7 on my main PC but I have a backup PC running Windows XP. Could I restore Thunderbird to [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve already blogged about <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vMjAxMi8wNC9teS1jdXJyZW50LXBjLWJhY2t1cC1yb3V0aW5lLw==" target=\"_blank\">backing up all your Thunderbird emails using MozBackup</a>. Well that’s fine but what about restoring all the mails and settings to make sure <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL21vemJhY2t1cC5qYXNuYXBha2EuY29tLw==" target=\"_blank\">MozBackup</a> has done the job correctly. I use Windows 7 on my main PC but I have a backup PC running Windows XP. Could I restore Thunderbird to the backup PC? There are a couple of ways to do it, one uses MozBackup and the other just involves copying the Thunderbird profile from PC to PC, even across operating systems. So I tried it.</p>
<h2>Restoring Thunderbird on the same or another Windows PC using MozBackup</h2>
<p>On my main Windows 7 PC, I ran a Thunderbird backup to my external hard drive using MozBackup as described in my earlier post in the first link. I then installed the current version of Thunderbird on my backup Windows XP PC and also installed MozBackup on it. On both the Windows 7 PC and the Windows XP PC, Thunderbird installs to C:\Program Files\Mozilla Thunderbird. Then I restored Thunderbird from my external hard drive to my backup Windows XP PC by running MozBackup, choosing ‘Restore a profile’ and selecting Thunderbird to restore:</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvTW96QmFja3VwMi5qcGc="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="MozBackup2" border="0" alt="MozBackup2" src="http://www.techandlife.com/wp-content/uploads/2012/05/MozBackup2_thumb.jpg" width="384" height="287" /></a></p>
<p>I then chose the default profile to restore and browsed to the directory on the external hard drive with the Thunderbird backup. Everything restored perfectly, even after backing up Thunderbird on a Windows 7 PC and restoring on a Windows XP PC. This despite the fact that the emails and settings are stored in different places in each Windows OS. In Windows 7, Thunderbird emails and settings are stored at C:\Users\&lt;user name&gt;\AppData\Roaming\Thunderbird\ while in Windows XP, the emails and settings are at C:\Documents and Settings\&lt;user name&gt;\Application Data\Thunderbird\. MozBackup must be checking the directory structure, doesn’t find the Windows 7 structure, determines which directory structure is present (Windows XP) and automatically restores to that directory. That’s very nice. Of course, restoring Thunderbird on your main PC with MozBackup is just as simple.</p>
<h2>Restoring Thunderbird on a Linux Netbook</h2>
<p>So far so good, I’ve managed to restore all my emails either on the same or another Windows PC using MozBackup. But I’ve also got an Acer Aspire netbook running Ubuntu. Could I restore Thunderbird there too? MozBackup doesn’t run on Linux so I had to copy the Thunderbird profile this time. First I installed Thunderbird on my netbook running Ubuntu. Then all you have to do is copy the Thunderbird profile in the C:\Users\&lt;user name&gt;\AppData\Roaming\Thunderbird\ on my Windows 7 PC into the folder /home/&lt;user name&gt;/.thunderbird/ on the Ubuntu netbook. For those not familiar with file management in Ubuntu, here’s the procedure I used. I copied the C:\Users\&lt;user name&gt;\AppData\Roaming\Thunderbird directory on the Windows 7 PC onto a USB stick then plugged the stick into my Ubuntu netbook. When Nautilus opened, I navigated to the folder &lt;user name&gt; at the top. I clicked F3 to get an extra viewing pane then in the left pane, I clicked Ctrl-H to see hidden folders and files (the Thunderbird profile is in the hidden .thunderbird folder). Then I navigated down to the .thunderbird folder and double clicked it. In the right pane, I navigated to the USB stick shown in the listing on the left, and double clicked the Thunderbird folder in the right pane. This is what you should now see:</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvVGh1bmRlcmJpcmQtZGlyZWN0b3JpZXMucG5n"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Thunderbird directories" border="0" alt="Thunderbird directories" src="http://www.techandlife.com/wp-content/uploads/2012/05/Thunderbird-directories_thumb.png" width="654" height="280" /></a></p>
<p>Then I dragged the files and folders present in the right pane to the left pane. I merged folders replacing everything. I launched Thunderbird and all the emails were present just as they were on my Windows 7 PC.</p>
<p>I should say I don’t need to sync my emails between different PCs, I just need a way to ensure that if my main PC packs up for whatever reason, I can be up and running with all my emails on my backup PC or my Linux netbook. Of course, when I do go travelling, I can now happily get all my emails in Thunderbird on my netbook, then when I return just reverse the above process to restore my current emails back to my main Windows 7 PC.</p>
<p>I&#8217;d love to hear if you have any thoughts on working with Thunderbird on different PCs and operating systems. Drop a comment below.</p>
 <img src="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=3161" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.techandlife.com/2012/05/restoring-thunderbird-emails-and-settings-on-your-pc-another-pc-or-a-linux-netbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shareaholic and Chrome Browser Extension Management</title>
		<link>http://www.techandlife.com/2012/05/shareaholic-and-chrome-browser-extension-management/</link>
		<comments>http://www.techandlife.com/2012/05/shareaholic-and-chrome-browser-extension-management/#comments</comments>
		<pubDate>Tue, 01 May 2012 14:47:16 +0000</pubDate>
		<dc:creator>techandlife</dc:creator>
				<category><![CDATA[Web services]]></category>
		<category><![CDATA[browser extension management]]></category>
		<category><![CDATA[browser extensions]]></category>
		<category><![CDATA[Buffer]]></category>
		<category><![CDATA[Shareaholic]]></category>
		<category><![CDATA[sharing links]]></category>
		<category><![CDATA[social sharing]]></category>

		<guid isPermaLink="false">http://www.techandlife.com/?p=3151</guid>
		<description><![CDATA[I’ve been using Shareaholic for a couple of years now. It’s a browser extension with a tremendous variety of options for sharing and saving links and is available for all the popular browsers including Chrome. I find it particularly useful for tweeting from webpages that don’t have Twitter share buttons. Surprisingly, there are quite a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDUvU2hhcmVhaG9saWMuanBn"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="Shareaholic" border="0" alt="Shareaholic" src="http://www.techandlife.com/wp-content/uploads/2012/05/Shareaholic_thumb.jpg" width="136" height="389" /></a></p>
<p>I’ve been using <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5zaGFyZWFob2xpYy5jb20=" target=\"_blank\">Shareaholic</a> for a couple of years now. It’s a browser extension with a tremendous variety of options for sharing and saving links and is available for all the popular browsers including <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5zaGFyZWFob2xpYy5jb20vdG9vbHMvY2hyb21lLw==" target=\"_blank\">Chrome</a>. I find it particularly useful for tweeting from webpages that don’t have Twitter share buttons. Surprisingly, there are quite a few around. But I don’t always like to tweet the link straightaway and prefer to space out tweets for my audience using <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vMjAxMS8wOC9hLWNvdXBsZS1vZi11c2VmdWwtdHdpdHRlci10b29scy1tYW5hZ2UtdHdlZXRzLWFuZC1jYXRjaC1saW5rcy8=" target=\"_blank\">Buffer</a>, the tweet scheduling app. Just as an aside, another advantage of using Buffer is you can change your mind later and delete tweets from the Buffer queue if you like, before they go live.</p>
<p>Trouble is, my <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cHM6Ly9jaHJvbWUuZ29vZ2xlLmNvbS93ZWJzdG9yZS9kZXRhaWwvbm9vamdsa2lkbnBmamJpbmNnaWpiYWllZGxkamZiaGg/aGw9ZW4tR0I=" target=\"_blank\">Buffer browser extension for Chrome</a> hasn’t worked for a few months now, probably a conflict with another extension. So I looked again at Shareaholic, and sure enough, sharing with Buffer is there too and it works perfectly for me.</p>
<p>And there’s another bonus with using Buffer through the Shareaholic extension. I’m now able to delete my Buffer browser extension &#8211; and Evernote Web Clipper &#8211; so that’s two less buttons clogging up my Chrome bar and grabbing RAM. By the way, if you want to see how much memory your extensions are hogging in Chrome, press Shift-Esc when in Chrome to bring up Chrome Task Manager. Then disable or remove the extensions you don’t need or don’t use any more.</p>
 <img src="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=3151" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.techandlife.com/2012/05/shareaholic-and-chrome-browser-extension-management/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lessons Learned from a Short Diet</title>
		<link>http://www.techandlife.com/2012/04/lessons-learned-from-a-short-diet/</link>
		<comments>http://www.techandlife.com/2012/04/lessons-learned-from-a-short-diet/#comments</comments>
		<pubDate>Sat, 28 Apr 2012 19:24:05 +0000</pubDate>
		<dc:creator>techandlife</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[diet]]></category>
		<category><![CDATA[healthy eating]]></category>
		<category><![CDATA[healthy food]]></category>
		<category><![CDATA[junk food]]></category>

		<guid isPermaLink="false">http://www.techandlife.com/?p=3141</guid>
		<description><![CDATA[A &#8216;Life&#8217; post today for a change. A couple of weeks ago, I had to go on a 3-day strict diet prior to undergoing a medical procedure. The procedure isn’t important I just had to have an empty bowel. Some of you may have gone through this yourselves but I thought I set out my [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDQvaGVhbHRoeS1jaGlja2VuLW1lYWwuanBn"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="healthy chicken meal" border="0" alt="healthy chicken meal" src="http://www.techandlife.com/wp-content/uploads/2012/04/healthy-chicken-meal_thumb.jpg" width="414" height="257" /></a></p>
<p>A &#8216;Life&#8217; post today for a change. A couple of weeks ago, I had to go on a 3-day strict diet prior to undergoing a medical procedure. The procedure isn’t important I just had to have an empty bowel. Some of you may have gone through this yourselves but I thought I set out my experiences during the diet and what I learned from that.</p>
<p>On days 1 and 2&#160; of the diet, I was only allowed to eat from the following: clear soup, eggs (poached or boiled), chicken, white fish, cheese, margarine, jelly marmalade or jelly jam, jelly, tea, coffee, Bovril, skimmed milk, boiled white rice, white bread (or toast).&#160; Day 3 was fluids only – fruit juice, clear soup, Bovril, tea, coffee or water.</p>
<p>That’s not too bad I hear you say – and really it wasn’t. As you can see, the main meal on days 1 and 2 was basically plain chicken and white rice or white fish and white rice with a snack of a cheese sandwich or poached egg. Basic plain food, no sauces, no desserts, no junk. I managed to get through it all right, but it was quite difficult sitting down with the rest of the family and watching them eat regular meals as I ate my plain dish. To make things harder and give me a real challenge, we all went out to a restaurant on the evening of day 2. Watching the food being served up on our table and adjacent tables was a real temptation as I sat with just a glass of juice. My daughter gave me two strips of chargrilled chicken from her dish and it tasted just heavenly. Which takes me to my first point. I think if I hadn’t been on a diet and had chosen that chicken dish in the restaurant, I really wouldn’t have appreciated it as much as I should. I would have chomped through it without really stopping to savour the flavour, and I would probably have eaten too quickly and too much.</p>
<p>The third day of the diet actually wasn’t too bad. Even though it was only fluids, I went to bed that night not actually feeling hungry but feeling surprisingly good.</p>
<h2>Lessons learned</h2>
<p>During the diet, I actually bought a cookbook in a charity shop &#8211; <em>Happy Days with the Naked Chef</em> by Jamie Oliver. I couldn’t resist it. Yes, it helped me get through it all! On the night after my medical procedure, I decided I would try and cook more flavoursome meals in future, and eat smaller portions. The book actually makes the good point to slow down when you’re eating. ‘If you eat your food too quickly, your brain won’t pick up on the fact that you’re actually full up as quickly as it should, so you will carry on stuffing yourself until you’ve eaten too much. Eating slowly will ensure that your brain tells you when you’re full.’ I’m also going to try and cut down on biscuits and the junk which I didn’t really miss during the short diet.</p>
<p>Have you had to go on a diet? How did you manage? Did you feel better after it or learn anything in the process? Drop a comment below.</p>
<p>Image credit: <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5mbGlja3IuY29tL3Bob3Rvcy8xNDUyOTI1N0BOMDMvNDcwNDY2NzcyOQ==" target=\"_blank\">Chicken pineapple salad and bread</a> by Steve A Johnson</p>
 <img src="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=3141" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.techandlife.com/2012/04/lessons-learned-from-a-short-diet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch Out For Deletion of Inactive Windows Live ID Accounts</title>
		<link>http://www.techandlife.com/2012/04/watch-out-for-deletion-of-inactive-windows-live-id-accounts/</link>
		<comments>http://www.techandlife.com/2012/04/watch-out-for-deletion-of-inactive-windows-live-id-accounts/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 13:21:10 +0000</pubDate>
		<dc:creator>techandlife</dc:creator>
				<category><![CDATA[Web services]]></category>
		<category><![CDATA[Hotmail]]></category>
		<category><![CDATA[inactive online accounts]]></category>
		<category><![CDATA[Messenger]]></category>
		<category><![CDATA[onllne account deletion]]></category>
		<category><![CDATA[SkyDrive]]></category>
		<category><![CDATA[Windows Live]]></category>

		<guid isPermaLink="false">http://www.techandlife.com/?p=3132</guid>
		<description><![CDATA[I signed up for Microsoft Live ID some time ago but hadn’t accessed it for probably a couple of years. When I tried to sign in again this morning I got the message: ‘That Windows Live ID doesn&#8217;t exist’. I double checked I had entered the email and password correctly and sure enough, my account [...]]]></description>
			<content:encoded><![CDATA[<p>I signed up for Microsoft Live ID some time ago but hadn’t accessed it for probably a couple of years. When I tried to sign in again this morning I got the message: ‘That Windows Live ID doesn&#8217;t exist’. I double checked I had entered the email and password correctly and sure enough, my account didn’t exist anymore. So I googled <em>windows live ID dormant account </em>and came across this on the webpage <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cHM6Ly9hY2NvdW50c2VydmljZXMucGFzc3BvcnQubmV0L1BQUHJpdmFjeVN0YXRlbWVudC5zcmY=" target=\"_blank\">Microsoft Passport Network Privacy Statement</a>:</p>
<blockquote><p><strong>Inactivation and Deletion of Account</strong>      <br />Microsoft will delete your account on the Passport Network if it remains inactive for an extended period of time. Inactivity is defined as a failure to sign in to any site or service on the Passport Network using your credentials.      <br /> If your credentials on the Passport Network are associated with a free MSN or Hotmail e-mail inbox, your account will be made inaccessible if it remains inactive for 120 days, and any account information you have provided will be deleted. If you have credentials on the Passport Network that are not associated with a free MSN or Hotmail e-mail inbox, your account will be made inaccessible if it remains inactive for 365 days, and any information you have provided will be deleted. Accounts associated with paid subscriptions for MSN or Hotmail are not made inaccessible due to inactivity.</p>
</blockquote>
<p>These are the current terms as of April 2012, but will probably change in the coming months so if you are reading this post some time after April 2012, check the current terms.</p>
<p>Deletion of my account is probably a good thing and my own fault – I wasn’t using it. So I’ve signed up again&#160; &#8211; and was able to use the same email address &#8211; and will make sure to access it regularly. This is just a warning to you that if you have a Windows Live ID, and a free MSN or Hotmail email, Messenger and SkyDrive accounts, make sure you access it regularly or it will all disappear! </p>
 <img src="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=3132" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.techandlife.com/2012/04/watch-out-for-deletion-of-inactive-windows-live-id-accounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MakeUseOf: A Tech Blog Worth Following</title>
		<link>http://www.techandlife.com/2012/04/makeuseof-a-tech-blog-worth-following/</link>
		<comments>http://www.techandlife.com/2012/04/makeuseof-a-tech-blog-worth-following/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 16:00:20 +0000</pubDate>
		<dc:creator>techandlife</dc:creator>
				<category><![CDATA[Tech blogs]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[MakeUseOf]]></category>
		<category><![CDATA[top tech blogs]]></category>

		<guid isPermaLink="false">http://www.techandlife.com/?p=3126</guid>
		<description><![CDATA[I took a keen interest in all things tech back around 2007 when I wanted more than just music on my mp3 player. Initially, I tried news podcasts then searched around for something different. As a PC user, I looked for a PC related podcast and hit on the Mike Tech Show first off. A [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDQvTWFrZVVzZU9mLmpwZw=="><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px" title="MakeUseOf" border="0" alt="MakeUseOf" src="http://www.techandlife.com/wp-content/uploads/2012/04/MakeUseOf_thumb.jpg" width="538" height="35" /></a></p>
<p>I took a keen interest in all things tech back around 2007 when I wanted more than just music on my mp3 player. Initially, I tried news podcasts then searched around for something different. As a PC user, I looked for a PC related podcast and <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vMjAwOC8wOC90ZWNoLXBvZGNhc3RzLXRlY2gtaW5zcGlyYXRpb24v" target=\"_blank\">hit on the Mike Tech Show first off</a>. A great show with great tips, links and recommendations and it was from a listener email there that I found out about <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5tYWtldXNlb2YuY29tLw==" target=\"_blank\">MakeUseOf</a>. Yes, it’s not obviously apparent what this blog is about from the name, but in effect, it’s really about making use of tech software and web services. From their website</p>
<blockquote><p>The aim of MakeUseOf is to guide you through the web and tell you about hot websites that you have never heard of, best software programs, and all kinds of “how to” tips for Windows, Mac and Linux computer users.</p>
</blockquote>
<p>From very early on, this has been one of my <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vMjAwOC8wOS90b3AtdGVjaC1ibG9ncy8=" target=\"_blank\">top tech blogs</a> for tips and recommendations on great software, apps and web services. And not just me; they have around 450,000 active subscribers.</p>
<p>As I browse through the latest tech posts in my couple of hundred feeds in Google Reader, I’m constantly finding that, for me, MakeUseOf is number one for posts which catch my attention and which I have to read through, bookmark and ‘make use of’ as they say. I’ve learned so much from these posts over the years. Not only do they have great tech posts, but they’ve also published a number of <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5tYWtldXNlb2YuY29tL3BhZ2VzL2Rvd25sb2Fk" target=\"_blank\">tremendous free pdf format guides</a> available for download. These cover everything from Linux to Reddit to WordPress. Or ask a tech question and get it answered at <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5tYWtldXNlb2YuY29tL2Fuc3dlcnMv" target=\"_blank\">MakeUseOf Answers</a> and find the best websites, software and apps at <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5tYWtldXNlb2YuY29tL3BhZ2VzL3RoZS1iZXN0LW9m" target=\"_blank\">MakeUseOf The Best Of</a>.</p>
<p>Let me say I’m not sponsored by MakeUseOf or affiliated to them in any way, just as always trying to pass on great recommendations. So subscribe to MakeUseOf in your RSS reader or follow them on Twitter, Facebook or Google+. You’ll find all the links at the bottom of their home page. And coming back to the subject of tech podcasts, three members of the MakeUseOf team put out a regular informative tech podcast called <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5tYWtldXNlb2YuY29tL3RhZ3MvdGVjaG5vcGhpbGlhLw==" target=\"_blank\">Technophilia</a> which I now subscribe to. Check it out as well.</p>
 <img src="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=3126" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.techandlife.com/2012/04/makeuseof-a-tech-blog-worth-following/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Saving your Personal Searchable Web Archive with Archify</title>
		<link>http://www.techandlife.com/2012/04/saving-your-personal-searchable-web-archive-with-archify/</link>
		<comments>http://www.techandlife.com/2012/04/saving-your-personal-searchable-web-archive-with-archify/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 20:07:18 +0000</pubDate>
		<dc:creator>techandlife</dc:creator>
				<category><![CDATA[Web services]]></category>
		<category><![CDATA[Archify]]></category>
		<category><![CDATA[archive online data]]></category>
		<category><![CDATA[archive webpages]]></category>
		<category><![CDATA[backup webpages]]></category>
		<category><![CDATA[personal web archive]]></category>
		<category><![CDATA[searchable web archive]]></category>

		<guid isPermaLink="false">http://www.techandlife.com/?p=3116</guid>
		<description><![CDATA[I came across Archify a couple of months ago after a post on the Next Web and decided to try it. So far I’m pretty impressed with this beta web service. Archify stores pages you visit online. It indexes the contents of the pages and takes a snapshot. You can archive social media updates, or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDQvYXJjaGlmeS5qcGc="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="archify" border="0" alt="archify" src="http://www.techandlife.com/wp-content/uploads/2012/04/archify_thumb.jpg" width="404" height="338" /></a></p>
<p>I came across <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cHM6Ly93d3cuYXJjaGlmeS5jb20=" rel=\"nofollow\" target=\"_blank\">Archify</a> a couple of months ago after a <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3RoZW5leHR3ZWIuY29tL2FwcHMvMjAxMi8wMi8wNC9hcmNoZml5LXlvdXItb3duLXBlcnNvbmFsLXdlYi1icm93c2luZy1hcmNoaXZlLWludml0ZXMv" rel=\"nofollow\" target=\"_blank\">post on the Next Web</a> and decided to try it. So far I’m pretty impressed with this beta web service. Archify stores pages you visit online. It indexes the contents of the pages and takes a snapshot. You can archive social media updates, or just the pages you browse to. A bit like bookmarking but without assigning tags – at least at the moment. They may add this feature later. In the process, you build up an archive of the pages you visit which you can search through later.</p>
<h2>Controlling which pages are archived</h2>
<p>Secure HTTPS pages aren’t archived and you can also control which pages are archived from the amount of time you spend on them. Right click the Archify browser icon and select Options. Here you can set Archify to ignore pages viewed shorter than a user defined time. I’ve chosen 8 seconds. Any longer than this and I’m interested in the page and it’s probably worth archiving. In addition, you can set up a list of sites you don’t want archived. Archify call this a blacklist. I found that it’s pretty important to build up a good comprehensive blacklist early on otherwise you will swamp your archive with stuff you just don’t need there. Remember that Archify is working away all the time archiving all those pages you visit. To quickly blacklist a site just click the Archify button and you will get the following options:</p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDQvYXJjaGlmeTIuanBn"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="archify2" border="0" alt="archify2" src="http://www.techandlife.com/wp-content/uploads/2012/04/archify2_thumb.jpg" width="319" height="213" /></a></p>
<h2>Searching your archive</h2>
<p>To perform a search of your archive at any time, right click the Archify browser button, and select Archify. Text in the search box is very large, I don’t know why. No doubt that’ll be fixed later. One other thing I’d like to see implemented is phrase search as with other search engines. At the moment, enclosing two search words in quotes doesn’t affect the search results. If you’re performing a search on say Twitter or Google, you can choose to have your archived pages searched as well. Just&#160; right click the Archify browser icon and select Options. Then check the boxes against the services where you also want to have your archive search displayed.</p>
<p>Strange that it doesn’t seem to have attracted much attention so far. A search for Archify on Twitter doesn’t turn up much. Some concerns were expressed in the comments to the post I linked to earlier about privacy, but as they say themselves, you control what you archive, and it’s all free while in beta. Eventually basic Archify accounts will be free and additional features available only to premium accounts. So sign up and give Archify a try. </p>
 <img src="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=3116" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.techandlife.com/2012/04/saving-your-personal-searchable-web-archive-with-archify/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Current PC Backup Routine</title>
		<link>http://www.techandlife.com/2012/04/my-current-pc-backup-routine/</link>
		<comments>http://www.techandlife.com/2012/04/my-current-pc-backup-routine/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 14:17:17 +0000</pubDate>
		<dc:creator>techandlife</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[backup routine]]></category>
		<category><![CDATA[backup settings]]></category>
		<category><![CDATA[Chrome backup]]></category>
		<category><![CDATA[cloud backup]]></category>
		<category><![CDATA[data backup]]></category>
		<category><![CDATA[external hard drive]]></category>
		<category><![CDATA[Fabs AutoBackup]]></category>
		<category><![CDATA[Firefox backup routine]]></category>
		<category><![CDATA[PC backup]]></category>
		<category><![CDATA[registry backup]]></category>
		<category><![CDATA[Thunderbird backup]]></category>

		<guid isPermaLink="false">http://www.techandlife.com/?p=3102</guid>
		<description><![CDATA[Backing up your PCs digital data is obviously important, but I suspect some people are not sure how best to go about this to make sure they have everything covered. Well I’ll go through my current backup routine here. It’s a little long but if you want to follow it, just skip to the parts [...]]]></description>
			<content:encoded><![CDATA[<p>Backing up your PCs digital data is obviously important, but I suspect some people are not sure how best to go about this to make sure they have everything covered. Well I’ll go through my current backup routine here. It’s a little long but if you want to follow it, just skip to the parts that concern your own backup requirements.&#160; You’ll also find there is a bit of duplication in this routine. I don’t think there’s any harm in having more that one backup route for your data so that you have a choice of restore options if one is unsuccessful.</p>
<p>As you’ll see, I backup my registry, browser profiles etc. to a folder called <em>My Backups</em> which I created under <em>My Documents</em>. The beauty of this is that whenever <em>My Documents</em> is backed up, the <em>My Backups</em> folder is automatically included. Then I backup all the data and settings to an external 1TB hard drive. I also backup the documents I am working on to the cloud daily. Hopefully I’ve covered all the bases here so that if disaster strikes and my hard drive fails suddenly and the data can’t be recovered, I’ll be able to get all my data and settings back reasonably quickly.</p>
<h2>Preparation</h2>
<p>First off, I delete temporary files, history, cookies, etc. using <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5waXJpZm9ybS5jb20vY2NsZWFuZXI=" target=\"_blank\">CCleaner</a> to prevent backing up unnecessary files. If you’re going to follow my routine, create a folder called My Backups under My Documents. You may also need an online backup service although this isn’t essential. I use <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cHM6Ly93d3cuY3guY29tLw==" target=\"_blank\">CX</a> (Cloud Experience) which gives 10GB of free online space, perfect for daily backups of documents I’ve been working on.</p>
<h2>Backup the Windows Registry</h2>
<p>I’ve given two choices here.</p>
<p>1. Export the registry backup using regedit:    <br />Click Start, Run, and type regedit     <br />File, Export     <br />Save as: Registry backup date.reg     <br />Save in: C:\Users\XXX\My Documents\My Backups</p>
<p>2. Or use the free program <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5mcmVld2FyZWZpbGVzLmNvbS9FUlVOVGd1aV9wcm9ncmFtXzUxNDgwLmh0bWw=" target=\"_blank\">ERUNTgui</a>     <br />Once installed, go to e.g. C:\Program Files\ERUNTGui     <br />Run ERUNTgui     <br />Save registry backup in: C:\Users\XXX\My Documents\My Backups</p>
<h2>Backup drivers</h2>
<p>You don’t need to do this backup regularly, just when you add new hardware. I use a free program called DriverMax (version 5.5). I’ve tried a newer version and for some reason it doesn’t backup as many drivers. I prefer the GUI on version 5.5 too. You can get DriverMax 5.5 on cnet <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2Rvd25sb2FkLmNuZXQuY29tL0RyaXZlck1heC8zMDAwLTE4NTEzXzQtMTEzMjU0MTguaHRtbA==" target=\"_blank\">here</a> at the moment, or Google ‘DriverMax 5.5’ if that link is no longer valid when you read this article.     <br />Once installed, go to Start, All Programs, DriverMax and Run DriverMax (version 5.5)     <br />Go To Driver Backup and Restore, Backup drivers, Next, Select all drivers     <br />Exports drivers to C:\Users\XXX\Documents\My Drivers\ (doesn&#8217;t seem to matter that this is not empty)</p>
<h2>Backup Thunderbird</h2>
<p>If you use the Thunderbird email client, you need to backup your emails and settings. Download the free program <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL21vemJhY2t1cC5qYXNuYXBha2EuY29tLw==" target=\"_blank\">MozBackup</a></p>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDQvTW96QmFja3VwLmpwZw=="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="MozBackup" border="0" alt="MozBackup" src="http://www.techandlife.com/wp-content/uploads/2012/04/MozBackup_thumb.jpg" width="457" height="343" /></a></p>
<p>Run MozBackup    <br />Select Backup a profile     <br />Select Thunderbird (as shown above)    <br />Select profile: for me it’s default     <br />Save in: C:\Users\XXX\My Documents\My Backups     <br />Password protect: No     <br />Select all details to backup     <br />Took 3 minutes to backup my 640MB of email data     <br />Because of the backup size I just retain the last 2 Thunderbird backups</p>
<h2>Backup Firefox</h2>
<p>Run MozBackup again (FavBackup will also backup Firefox as mentioned later)   <br />Select Backup a profile     <br />Select Firefox     <br />Select profile: for me it’s default     <br />Save in: C:\Users\XXX\My Documents\My Backups     <br />Password protect: No     <br />Select all details to backup     <br />Took 20 s     <br />I just retain the last 2 backups</p>
<h2>Backup Google Chrome</h2>
<p>Download the free program <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5wYXJoZWxpYS10b29scy5jb20vcHJvZHVjdHMvZ2NiL2dvb2dsZWNocm9tZS5hc3B4" target=\"_blank\">Google Chrome Backup</a> (FavBackup will also backup Firefox as mentioned later)    <br />Close Google Chrome Chrome     <br />Go to C:\Program Files\Google Chrome Backup     <br />Run gcb     <br />Select Run Wizard     <br />Select Backup     <br />Backup default profile     <br />Select Backup path C:\Users\XXX\My Documents\My Backups     <br />Empty cache before backup</p>
<h2>Backup Internet Explorer</h2>
<p><a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTIvMDQvRmF2QmFja3VwLmpwZw=="><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="FavBackup" border="0" alt="FavBackup" src="http://www.techandlife.com/wp-content/uploads/2012/04/FavBackup_thumb.jpg" width="402" height="441" /></a></p>
<p>Download the free program <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5mYXZicm93c2VyLmNvbS9iYWNrdXAv" target=\"_blank\">FavBackup</a>. Works with IE6, 7 and 8. I should mention that FavBackup will backup other browser profiles as well – Firefox, Safari, Opera, Chrome and Flock, so you could use FavBackup instead of the backup solutions just mentioned for Firefox and Chrome. See which you prefer or use both for good measure.</p>
<p>It saves the profiles as just default.dat so I found it best to save these to subfolders in the My Backups folder</p>
<p>Select the Browser profiles you want to backup.</p>
<p>Select everything you want to backup and choose the backup location:</p>
<p>Save profiles in:    <br />C:\Users\XXX\My Documents\My Backups\FavBackup\Chrome     <br />C:\Users\XXX\My Documents\My Backups\FavBackup\Firefox</p>
<h2>Backup data and settings to external hard drive</h2>
<p>Now down to the main part of the backup – backing up all the data and settings to an external hard drive. There’s a myriad of free applications which will do this – <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy4yYnJpZ2h0c3BhcmtzLmNvbS9kb3dubG9hZC1zeW5jYmFjay5odG1s" target=\"_blank\">SyncBack</a> and <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50b2RvLWJhY2t1cC5jb20vcHJvZHVjdHMvaG9tZS9mcmVlLWJhY2t1cC1zb2Z0d2FyZS5odG0=" target=\"_blank\">EaseUS Todo Backup</a> are two examples. There’s a nice example of using SyncBack <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5qZ2VuLndzL2psb2cvYmFja3VwL2Etc2ltcGxlLWJhY2t1cC1wbGFuLw==" target=\"_blank\">here</a>, but I’ve chosen to use <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5mcG5ldC5mci8/cGFnZT1hYjNwcmVzZW50YXRpb24mYW1wO2xhbmc9ZW4=" target=\"_blank\">Fabs AutoBackup 3</a> and if you follow that link, it shows all the files, folders and settings it will backup. I’ve listened to enough podcasts by PC repair techs to know this is a great solution for backing up data and settings. The greatest recommendation they come up with is that after recovering a PC for a client using FABs AutoBackup, all the settings have been restored and the client gets his PC back just as he used to have it set up. That’s good enough for me. It’s not free though, but for home use, FABs AutoBackup 3 is just 4.90 euro so that’s great value and covers 1 year of updates. It’s very simple to use:</p>
<p>Run FABs Autobackup 3    <br />Tick: Backup in subfolder date-user and check through everything you want to backup.     <br />Backup to E:\FABS Backup\ (my external hard drive is the E: drive, yours may be different).</p>
<h2>Backup daily to the cloud</h2>
<p>I don’t do a full backup to the cloud. Any important documents I’ve been working on during that day I backup to <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cHM6Ly93d3cuY3guY29tLw==" target=\"_blank\">CX</a>. Once installed, you just drag your files to the CX Cloud folder on your PC and they get synced to your free 10GB online account.</p>
<h2>Backup a list of installed applications</h2>
<p>Okay, so your hard drive has failed and you managed to restore your data and settings from your backup drive to your new hard drive, what about all your apps? Do you remember what you had installed? Well, I’ve included some ways to back up a list of your installed software and the Start menu which will help you remember what you had installed. Thanks to <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5wY21lY2guY29tL2FydGljbGUvaG93LXRvLWdlbmVyYXRlLWEtbGlzdC1vZi1ldmVyeS1wcm9ncmFtLWluc3RhbGxlZC1vbi15b3VyLXBjLw==" target=\"_blank\">PC Mech</a> for this:</p>
<p>Click Start, Run and type cmd    <br />At the command prompt, type wmic     <br />Then copy the following line (except the text in brackets) and paste it at the command prompt (right click in command prompt box and click Paste):     <br />/output:C:\InstallListdate.txt product get name,version (insert the current date in the file name but don’t use hyphens in the date, e.g. InstallList040412.txt)     <br />The routine has finished when the prompt wmic:root\cli&gt; reappears     <br />Type Exit twice to leave the command prompt and then move the file to the My Backups folder.     </p>
<h2>Backup Start-menu</h2>
<p>Again thanks to <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5wY21lY2guY29tL2FydGljbGUvaG93LXRvLWdldC1hLXByaW50YWJsZS1saXN0LW9mLWV2ZXJ5dGhpbmctaW4teW91ci1zdGFydC1tZW51Lw==" target=\"_blank\">PC Mech</a> for this:</p>
<p>Click Start, Run and type cmd    <br />Then copy the following line (except the text in brackets) and paste it at the command prompt (right click in command prompt box and click Paste):     <br />DIR /S &quot;%PROGRAMDATA%\MICROSOFT\WINDOWS\START MENU&quot; &gt; C:\Startmenudate.txt (insert the current date in the file name but don’t use hyphens in the date, e.g. Startmenu040412.txt)     <br />Type Exit to leave the command prompt and then move the file to the My Backups folder.     </p>
<h2>Create a screenshot of installed programs</h2>
<p>I use the free program <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50ZWNoYW5kbGlmZS5jb20vMjAxMS8wMy9wb2ludHMtdG8tY29uc2lkZXItd2hlbi1jaG9vc2luZy1zY3JlZW4tY2FwdHVyZS1zb2Z0d2FyZS8=" target=\"_blank\">PicPick</a> to create screenshots – it’s useful because you will need to be able to capture a scrolling window of the list of programs. Download PicPick <a href="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5waWNwaWNrLm9yZy8=" target=\"_blank\">here</a>.</p>
<p>Click Start, Control Panel, Programs and Features    <br />This will list all your installed programs     <br />Use the Screen Capture utility of PicPick and select Scrolling Window     <br />Move the mouse over the window you want to capture. It will have a red outline border; click the left mouse button then let go and wait patiently as it scrolls down to the bottom of the list of applications. Then it opens the list in PicPick editor.     <br />Save the screenshot as <em>Installed programs.jpg</em> in the usual backup folder.</p>
<h2>Where to store your backups</h2>
<p>My daily document backups are in the cloud and my full data and settings backups are on my external hard drive beside my PC. If you can afford it, it’s a really good idea to purchase a second external hard drive and swap them out on a weekly basis. Always keep one off-site, say at your parents, in case of fire or theft at your own home. </p>
<h2>How often to backup</h2>
<p>This is really up to you but obviously the more often the better. Here’s my schedule:</p>
<p>New files (documents, photos, etc)    <br />To CX (cloud): daily     <br />To external drive: daily if possible</p>
<p>Registry    <br />Weekly</p>
<p>Drivers    <br />Not so important: backup when you install new hardware</p>
<p>Thunderbird    <br />Weekly</p>
<p>Firefox and Chrome settings    <br />Weekly</p>
<p>Full FABs backup    <br />Weekly</p>
<p>Well I hope that gives you some ideas for a backup routine.&#160; Thankfully, I haven’t had to restore anything yet but that will be the ultimate test of any backup routine. Can you suggest any improvements from your experience? Drop a comment below.</p>
 <img src="http://www.techandlife.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=3102" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.techandlife.com/2012/04/my-current-pc-backup-routine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

