<?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>mystery tech</title>
	<atom:link href="http://www.iq9.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.iq9.com/blog</link>
	<description>guh?</description>
	<lastBuildDate>Sun, 27 Apr 2008 18:27:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Automatically Archiving RSS Items in Google Reader</title>
		<link>http://www.iq9.com/blog/2008/04/26/automatically-archiving-rss-items-in-google-reader/</link>
		<comments>http://www.iq9.com/blog/2008/04/26/automatically-archiving-rss-items-in-google-reader/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 05:14:47 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.iq9.com/blog/2008/04/26/automatically-archiving-rss-items-in-google-reader/</guid>
		<description><![CDATA[Google Reader is ten kinds of awesome, and has enabled my problematic RSS addiction. It allows me to easily churn through hundreds of interesting news/blog items a day on a whole range of subjects. Increasingly, I find myself going back to find items I read weeks or months ago, and searching with Google Reader is [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://google.com/reader">Google Reader</a> is ten kinds of awesome, and has enabled my problematic <a href="http://en.wikipedia.org/wiki/Rss">RSS</a> addiction. It allows me to easily churn through hundreds of interesting news/blog items a day on a whole range of subjects. Increasingly, I find myself going back to find items I read weeks or months ago, and searching with Google Reader is generally easy. Like all Google products, it seems to save nearly everything you ever put into it, but in the case of Google Reader, not absolutely everything. The content of a given RSS entry, an XML file with inline images, is saved, but the images themselves (along with any other external content) are not preserved, only the reference to their remote location. This presents an issue of longevity, as a given image may not still exist when I call up a certain RSS entry at some point in the future.</p>
<p>In an attempt the create a more permanent archive, I&#8217;ve cobbled together a piece of embarrassingly poorly written code, so dumb and inefficient that I very seriously considered not posting it, if only to save face, which captures all of the RSS items I&#8217;ve marked <a href="http://www.google.com/help/reader/sharing.html">&#8220;shared&#8221;</a> in Google Reader, and emails them, with images attached, to my Gmail account. This serves to build an archive of the posts I find most interesting, with copies of the images they reference. To sum it up on one sentence, and for the sake of anyone searching for something to do this, this script performs an automatic backup of Google Reader, complete with images and the text of the RSS entries.</p>
<p>&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
The first step is marking items in Google Reader as &#8220;shared.&#8221; This makes them public, and is a way of narrowing down a torrent of information to items which I want to save.<br />
&nbsp;<br />
<img src="http://iq9.com/content/blog/greader-archiver/greader_archive-01.gif" alt="google reader" /></p>
<p>&nbsp;<br />
&nbsp;<br />
&nbsp;<br />
The resulting feed is passed to <a href="http://www.xfruits.com/">xfruits</a>&#8216;s RSS->mail tool, which transforms the feed into a digest.<br />
&nbsp;<br />
<img src="http://iq9.com/content/blog/greader-archiver/greader_archive-02.png" alt="xfruit" /></p>
<p>&nbsp;<br />
&nbsp;<br />
&nbsp;</p>
<p>From there it gets slightly more convoluted. Using a PHP class I found called <a href="http://www.codewalkers.com/c/a/Email-Code/PHP-Text-HTML-Email-with-Unlimited-Attachments/">&#8220;PHP Text / HTML Email with Unlimited Attachments&#8221;</a> I&#8217;ve written a script which sends me a copy of the xfruits digest, with images attached and inline. I&#8217;ve included these files below, and some comments on the code.<br />
&nbsp;</p>
<p>Aforementioned PHP hackjob:   <a href="http://iq9.com/content/blog/greader-archiver/rss_backup.php.txt">rss_backup.php</a><br />
PHP HTML Email Class:   <a href="http://iq9.com/content/blog/greader-archiver/class.Email.php.txt">class.Email.php</a></p>
<p>&nbsp;<br />
&nbsp;</p>
<p>This snippet loads the class, and establishes the destination of the email</p>
<pre><code>
&lt;?php
//** load email class definition.

  include('class.Email.php');  

//** establish to,from, and any other recipiants.

  $Sender = &quot;&quot;;
  $Recipiant = &quot;username@email.com&quot;;
  $Cc = &quot;&quot;;
  $Bcc = &quot;&quot;;
&nbsp;<br />
</pre>
<p></code></p>
<p>&nbsp;<br />
&nbsp;</p>
<p>This uses <a href="http://www.gnu.org/software/wget/">wget</a> to grab the HTML and images from the xfruits digest and place these files in one directory. Wget also rewrites the image links in the HTML so that they reference images stored in the same directory as the HTML file, this becomes important in displaying attached images in HTML email.</p>
<pre><code>
//** wget content

  echo &quot;\n\n\n\n&quot;.&quot;**** BEGIN WGET HERE ****&quot;.&quot;\n\n&quot;;

  $foo = system('mkdir wget_dump');
  chdir('wget_dump');
  $foo = system('wget --span-hosts --convert-links --page-requisites 
			--no-directories http://www.xfruits.com/username/shared');

  echo &quot;\n\n&quot;.&quot;**** SO ENDS WGET ****&quot;.&quot;\n\n\n\n&quot;;


//** read in the content

  $filename = &quot;index.html&quot;;
  $handle = fopen($filename, &quot;r&quot;);
  $contents = fread($handle, filesize($filename));
  fclose($handle);
  $orig_file = $contents;
&nbsp;<br />
</pre>
<p></code></p>
<p>&nbsp;<br />
&nbsp;</p>
<p>This makes and checks the <a href="http://en.wikipedia.org/wiki/MD5">MD5</a> hash of the wgetted HTML and compares it to the HTML which was downloaded the last time the script was run. This is an attempt to prevent repeat emails, it's doesn't work perfectly at this time.</p>
<pre><code>
//** check if the content has changed since last run

  chdir('..');
  $filename = &quot;rss_backup.txt&quot;;
  $handle = fopen($filename, &quot;r&quot;);
  $old_hash = fread($handle, filesize($filename));
  fclose($handle);

  $hash = md5($orig_file);

  echo &quot;**** HASH CHECK of index.html ****&quot;.&quot;\n\n&quot;;

  echo &quot;old hash: &quot;.$old_hash.&quot;\n&quot;;
  echo &quot;new hash: &quot;.$hash.&quot;\n&quot;;


  if ( $old_hash == $hash ) {
  	$foo = system('rm -r wget_dump');
  	exit(&quot;\n&quot;.&quot;no rss update at this time&quot;.&quot;\n\n\n\n&quot;);
  }

  chdir('wget_dump');
&nbsp;<br />
</pre>
<p></code></p>
<p>&nbsp;<br />
&nbsp;</p>
<p>This uses a regular expression to locate all of the images referenced in the HTML, and also rewrites these image links to include "cid:" so that something that read <strong>foo.jpg</strong> will now read <strong>cid:foo.jpg</strong> which is the syntax used in <a href="http://altepeter.net/tech/articles/html-emails/">HTML emails when referencing attached images</a>. I used the very very awesome <a href="http://gskinner.com/RegExr/">RegExr </a>to write the search expressions.</p>
<pre><code>
//** regex to extract image filenames and to rewrite the scr tags

  $pattern = '/[^&quot;]+\.(jpg|jpeg|gif|png|tif|tiff|bmp)/i';
  $replace = 'cid:$0';
  preg_match_all($pattern, $contents, $matches);
  $contents = preg_replace($pattern, $replace, $contents);

  $maxcounter = count($matches[0]);
  $maxcounter = $maxcounter;
&nbsp;<br />
</pre>
<p></code><br />
&nbsp;<br />
&nbsp;</p>
<p>The rest of the code (and some from above) is largely pulled from the class example, it attaches and sends the email and does some cleanup.</p>
<pre><code>
//** create the HTML version of the body content here.

  $htmlVersion = $contents;
  unset($msg);

//** !!!! SEND AN HTML EMAIL w/ATTACHMENT !!!!
//** create the new message using the to, from, and email subject.

  $d = date('r');
  $msg = new Email($Recipiant, $Sender, &quot;Google Reader Shared Items Backup for &quot;.$d);
  $msg-&gt;Cc = $Cc;
  $msg-&gt;Bcc = $Bcc;

//** set the message to be text only and set the email content.

  $msg-&gt;TextOnly = false;
  $msg-&gt;Content = $htmlVersion;

//** attach any images to the email

  for ($i = 0; $i &lt;= $maxcounter-1; $i++) {
  	$mime = &quot;image/&quot;.$matches[1][$i];
  	$target_file = $matches[0][$i]; 
  	$msg-&gt;Attach($target_file, $mime);
  }

//** send the email message.

  $SendSuccess = $msg-&gt;Send();

//  echo &quot;HTML email w/attachment was &quot;,($SendSuccess ? &quot;sent&quot; : &quot;not sent&quot;), &quot;&lt;br&gt;&quot;/n;

  unset($msg);

//** do MD5 to prevent repeat emails

  chdir('..');	
  $myFile = &quot;rss_backup.txt&quot;;
  $fh = fopen($myFile, 'w') or die(&quot;can't open file&quot;);
  fwrite($fh, $hash);
  fclose($fh);

//** clean up

  $foo = system('rm -r wget_dump');

?&gt;
&nbsp;<br />
</pre>
<p></code></p>
<p>&nbsp;<br />
&nbsp;</p>
<p>I've set up a <a href="http://en.wikipedia.org/wiki/Cron">cron job</a> on my <a href="http://dreamhost.com/">dreamhost</a> account to run the script a couple of times a day. The result can be seen below, an HTML email containing attached images, displayed inline.</p>
<p>&nbsp;<br />
<img src="http://iq9.com/content/blog/greader-archiver/greader_archive-03.png" alt="gmail" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iq9.com/blog/2008/04/26/automatically-archiving-rss-items-in-google-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Of Mozy, Ext3 and Truecrypt</title>
		<link>http://www.iq9.com/blog/2007/03/01/of-mozy-ext3-and-truecrypt/</link>
		<comments>http://www.iq9.com/blog/2007/03/01/of-mozy-ext3-and-truecrypt/#comments</comments>
		<pubDate>Thu, 01 Mar 2007 15:37:58 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[DIY]]></category>

		<guid isPermaLink="false">http://www.iq9.com/blog/2007/03/01/of-mozy-ext3-and-truecrypt/</guid>
		<description><![CDATA[I lost my trusty western digital 250gb the other day, the drive that served as the manually mirrored backup of my desktop. This wasn’t too big a deal, as the drive was just mirroring data and not archiving anything and because I’ve recently started using mozy as a backup solution. After using syncback and extra [...]]]></description>
				<content:encoded><![CDATA[<p>I lost my trusty western digital 250gb the other day, the drive that served as the manually mirrored backup of my desktop. This wasn’t too big a deal, as the drive was just mirroring data and not archiving anything and because I’ve recently started using <a href="https://mozy.com/?ref=4FWZU1">mozy</a> as a backup solution. After using <a href="http://www.2brightsparks.com/syncback/sbse.html">syncback</a> and extra hard drives to prevent the data loss I so fear for the last couple of years, I&#8217;ve recently been investigating online backup solutions. This was prompted by the release of <a href="aws.amazon.com/s3">Amazon&#8217;s S3</a> service several months ago, which has depressed the price of such offerings. Of the half dozen services I&#8217;ve investigated, <a href="https://mozy.com/?ref=4FWZU1">mozy</a> stands out. It&#8217;s not perfect, you can&#8217;t manage multiple computers under a single paid account and there are still some rough edges and hilarious bugs in their software, but its unlimited storage is quite appealing (if you&#8217;re on a connection with a reasonable upload) and they offer good encryption options.</p>
<p><img src="http://iq9.com/content/blog/mozy-ex2fs-truecrypt/mozy-01.png" alt="mozy1" /></p>
<p><a href="https://mozy.com/?ref=4FWZU1">mozy</a> has a free version of their service with a capacity of 2gb and for 50usd a year you can upload as much as you can. The emphasis in the last sentence should be placed on &#8220;as much as you can&#8221; most residential high speed connections are skewed towards downstream, and many have very poor pstream, <a href="https://mozy.com/?ref=4FWZU1">mozy</a> seems to be banking on most people not having the patience to spend days uploading the gigs they presumably want to backup or that this restriction will keep people from abusing their &#8220;generosity.&#8221; I&#8217;ve pushed about 60gb to the service so far, which is about the amount of data I would be very upset about losing and everything has worked fine so far.</p>
<p>While my desktop, using the unlimited plan, hasn&#8217;t had any major problems, I ran into a stumbling block using <a href="https://mozy.com/?ref=4FWZU1">mozy</a> to backup my laptop. I&#8217;m using a Thinkpad t43 dual booting XP and <a href="http://www.ubuntu.com/">Ubuntu </a>thanks in large part to the excellent Thinkpad linux documentation available on <a href="http://thinkwiki.org/wiki/ThinkWiki">Thinkwiki</a>. As a result of the dual boot, the hard drive configuration is a little strange on the thinkpad.</p>
<p><img src="http://iq9.com/content/blog/mozy-ex2fs-truecrypt/gparted.png" alt="gparted" /></p>
<p>sda6 is the volume that both the windows and ubuntu installations share access to, it&#8217;s formated in ext3, which windows can&#8217;t read or write to natively. That&#8217;s where the <a href="http://www.fs-driver.org/">Ext2 Installable File System For Windows</a> comes in. With this extension installed in windows, sda6 shows up as drive D.</p>
<p><img src="http://iq9.com/content/blog/mozy-ex2fs-truecrypt/d_drive.png" alt="d drive" /></p>
<p>Everyone is happy! The files on the D drive can be accessed by both the Ubuntu and Windows installations. Unfortunately, <a href="https://mozy.com/?ref=4FWZU1">mozy</a> can&#8217;t read the D drive, and therefore can&#8217;t backup it&#8217;s contents. This presents a real problem, as this setup is fairly ideal for getting work done on the thinkpad, but <a href="https://mozy.com/?ref=4FWZU1">mozy</a> isn&#8217;t likely to support a storage schema this obscure.</p>
<p>After some pondering I&#8217;ve come up with a solution I&#8217;m happy with. It occurred to me that anything on the Thinkpad that is worth backing up is also relatively sensitive data, so in an attempt to solve both problems at once we turn to <a href="http://www.truecrypt.org/">truecrypt</a>. A highly robust encryption package, <a href="http://www.truecrypt.org/">truecrypt</a> works with encrypted volumes that are mounted within either windows or linux systems. In other words, using <a href="http://www.truecrypt.org/">truecrypt</a> a file is created, the encrypted volume, which can then be mounted and unencrypted, so it appears as another hard drive. <a href="http://www.truecrypt.org/">truecrypt</a> is evidently more interoperable than the <a href="http://www.fs-driver.org/">Ext2 File System</a> because mozy recognizes a <a href="http://www.truecrypt.org/">truecrypt</a> mounted volume and can backup it&#8217;s contents.</p>
<p>So, after creating a <a href="http://www.truecrypt.org/">truecrypt</a> volume, called &#8220;truecryptfile&#8221; and storing it on the D drive (where both the Ubuntu and Windows installations will have access to it) we can mount it to the I drive. So even though the <a href="http://www.truecrypt.org/">truecrypt</a> volume is stored on the D drive, which <a href="https://mozy.com/?ref=4FWZU1">mozy</a> can&#8217;t read, when the <a href="http://www.truecrypt.org/">truecrypt</a> volume is mounted as the I drive, <a href="https://mozy.com/?ref=4FWZU1">mozy</a> can read it.</p>
<p><img src="http://iq9.com/content/blog/mozy-ex2fs-truecrypt/truecrypt-01.png" alt="tcrypt1" /></p>
<p><img src="http://iq9.com/content/blog/mozy-ex2fs-truecrypt/i_drive.png" alt="i drive" /></p>
<p>Setting the volume to automount on boot will prompt for a password when starting the system.</p>
<p><img src="http://iq9.com/content/blog/mozy-ex2fs-truecrypt/truecrypt-02.png" alt="tcrypt2" /></p>
<p><a href="https://mozy.com/?ref=4FWZU1">mozy</a> can see the I drive! Success!</p>
<p><img src="http://iq9.com/content/blog/mozy-ex2fs-truecrypt/mozy-02.png" alt="mozy2" /></p>
<p>This workaround is slightly strung together, using an extension of the windows file system to mount an ext3 volume and then using <a href="http://www.truecrypt.org/">truecrypt</a> to mount another volume, which is contained on the ext3 volume and then having mozy read off that. Despite the counterintuitive approach, everything on my laptop is encrypted, backed up and organized.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iq9.com/blog/2007/03/01/of-mozy-ext3-and-truecrypt/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Canon SD400 LCD Repair</title>
		<link>http://www.iq9.com/blog/2006/09/08/canon-sd400-lcd-repair/</link>
		<comments>http://www.iq9.com/blog/2006/09/08/canon-sd400-lcd-repair/#comments</comments>
		<pubDate>Sat, 09 Sep 2006 01:05:51 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[DIY]]></category>

		<guid isPermaLink="false">http://www.iq9.com/blog/?p=3</guid>
		<description><![CDATA[So, I abused the hell out of my camera. It rode in my back pocket as I stumbled through the last few months and I ended up smashing the screen on my Canon SD400 (sometimes known as the IXUS 50.) It was not the camera it once was. Note the dents, scratches and the fact [...]]]></description>
				<content:encoded><![CDATA[<p>So, I abused the hell out of my camera. It rode in my back pocket as I stumbled through the last few months and I ended up smashing the screen on my <a href="http://www.dpreview.com/reviews/canonsd400/">Canon SD400</a> (sometimes known as the IXUS 50.) It was not the camera it once was. Note the dents, scratches and the fact that all the coloring around the optics is gone. Despite broken screen, I&#8217;m pretty happy with the amount of abuse it absorbed. The camera still worked and took pictures despite not having a working screen, but the optical viewfinder was all clogged with dirt and I was attempting to navigate the menus from memory and without feedback. It sucked.</p>
<p><img src="http://www.iq9.com/content/blog/sd400-repair/before-after.jpg" alt="Battle Damage" /></p>
<p>This was sad, so I started googling for the possibility of a user replaceable screen and while what I found certainly voids the warranty faster than throwing the camera under the wheels of a moving van, it worked. Nuts to you warranty.<br />
<a href="http://www.cl.cam.ac.uk/~jo262/miscellany/broken_lcd_cracked_screen_canon_sd-300_sd-200_ixus-40_ixus-30.html">Andy Ozment</a> has a nice (if google adword covered) multi-model write-up about repairing the screens, but no pictures. I *guess* this is an understandable side-effect of writing a guide on repairing a camera, many people might find it tough to photograph the repair while trying to repair the object that would be used to take photographs. I am not one of those people. Oh, now is as good a time as any I guess:</p>
<p><strong>Perform at your own risk. This shit <em>WILL</em> void your warranty, oh god don&#8217;t sue me</strong></p>
<p>Here we go.</p>
<ul>
<li>I got a new screen from <a href="http://thefotogeeks.com/">Foto Geeks</a> it came in a silly little box and seemed tiny for costing <a href="http://gallery.bcentral.com/GID2025592P4682443-Replacement-Parts/Canon/Digital-Camera-Parts-By-Model/Power-Shot-SD400-Digital-IXUS-50/Canon-Power-Shot-SD400-LCD-Screen.aspx">65bux</a>.</li>
<li>From reading on the internet I took a guess that my backlight was *NOT* broken, the chief indicator of its well being was the glow it gave off through the shattered screen, this is good. I don&#8217;t know where you can order a new backlight, but I&#8217;m pretty sure you could replace it in nearly the same method I use here</li>
<li>I used two Craftsman Professional screwdrivers, a flat head 3/32&#215;2-1/2, and a philips 00&#215;2-1/2. I love these screwdrivers &#8217;cause I&#8217;m pretty sure you could prison stab someone with them and my Dad gave them to me. (thanks Dad)	</li>
<li>You&#8217;ll also need Scotch Tape, a Post-it note and scissors.</li>
</ul>
<p>First, remove the battery and memory card, I guess you should also be worried about static discharge frying the camera, but I did this repair whilst wearing socks on the carpet, I think you&#8217;ll be fine. I&#8217;m fairly sure that static electricity doesn&#8217;t really exist.</p>
<p>Here&#8217;s the unboxed replacement SD400 LCD screen. I tried to keep the new screen as dust free as possible so as not to trap any crud under it during installation. Determining the orientation is going to be important later, so notice that the screen has two distinct sides.</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-00.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-00-small.jpg" alt="Replacement Screen" /></a></p>
<p>There are six screws on the exterior of the camera, REMOVE THEM!</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-01.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-01-small.jpg" alt="Screws" /></a><br />
<a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-02.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-02-small.jpg" alt="Screws" /></a><br />
<a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-03.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-03-small.jpg" alt="Screws" /></a></p>
<p>When all the screws are out, pull the two overlapping halves of the camera apart, being careful as it is possible to bend the metal.</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-04.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-04-small.jpg" alt="Crack Case" /></a><br />
<a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-05.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-05-small.jpg" alt="Crack Case" /></a></p>
<p>Parts that will fall out:</p>
<ul>
<li>Silvery plastic circle thing.</li>
<li>Rectangular silver mount for the wrist strap</li>
<li>Buttons</li>
</ul>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-06.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-06-small.jpg" alt="Open" /></a></p>
<p>I did a powerup here to check that I hadn&#8217;t messed anything up at this point, and &#8217;cause I didn&#8217;t have a picture of the screen in all it&#8217;s glory.<br />
This may have been a shock risk or just stupid, I don&#8217;t know.</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-07.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-07-small.jpg" alt="Open" /></a></p>
<p>At this point I installed an <a href="http://www.shieldzone.com/">InvisibleSHIELD</a> on the new screen while it was still outside the camera</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-08.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-08-small.jpg" alt="Shield" /></a></p>
<p>Removal of screw number 7, this screw is a different size than the others, so don&#8217;t get it mixed up.</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-09.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-09-small.jpg" alt="Screw7" /></a></p>
<p>This is one of the hardest parts of the whole procedure. The backlight and LCD are held together with a series of metal clips that have to be freed before you can replace the screen. I used a small flat head screwdriver to wedge in between the two and try to get the claps undone. This is also the part I have the worst pictures of. The goal is not to get the LCD off right now; it&#8217;s just to get it detached from the backlight.</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-10.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-10-small.jpg" alt="Pry" /></a><br />
<a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-11.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-11-small.jpg" alt="Pry" /></a><br />
<a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-12.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-12-small.jpg" alt="Pry" /></a></p>
<p>When it comes loose, you&#8217;re going to want to slide it to the left before you lift it up like the pictures shows. There&#8217;s a few little catches that you don&#8217;t want to break off, but sliding the screen out a little bit before lifting should avoid this.</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-13.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-13-small.jpg" alt="Screen" /></a><br />
<a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-14.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-14-small.jpg" alt="Screen" /></a></p>
<p>Flip the camera over and using the screwdriver, lift up the small black plastic gate holding the ribbon cable in, and pull it out.</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-15.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-15-small.jpg" alt="Ribbon" /></a><br />
<a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-16.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-16-small.jpg" alt="Ribbon" /></a></p>
<p>Now comes the really unpleasant part. The ribbon cable is threaded through the internals of the camera, if you pull it free, it&#8217;ll be very hard to get the new cable back through. That&#8217;s where the tape and Post-its come in; you can use them to make yourself a little retrieval cable and pull both the ribbon cable and the post-it through. You can then use that same bit of paper to guide the new ribbon back through.<br />
Make sure that the new screen is going on in the same orientation as the old one; there likely won’t be room to turn the ribbon over when you get it threaded.</p>
<p>Here’s the old screen with retrieval post-it attached and ready to go</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-17.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-17-small.jpg" alt="Post-it" /></a></p>
<p>Now the old screen, ribbon, and post-it have been pulled through.</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-18.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-18-small.jpg" alt="Post-it" /></a></p>
<p>Transfer of the post-it from the old screen to the new one, with the new screen in the correct orientation</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-19.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-19-small.jpg" alt="Post-it" /></a></p>
<p>Threading of the new ribbon through the cameras internals, this would be quite hard without the post-it already in place as the path inside the camera goes up and down. Also consider applying tape to both sides of the ribbon/post-it interface to make sure nothing gets snagged inside the camera.</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-20.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-20-small.jpg" alt="Post-it" /></a></p>
<p>When you have the ribbon cable back through, reseat it very deeply into the channel and lock the gate back down. Then give the camera a power on:</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-21.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-21-small.jpg" alt="Winnar" /></a></p>
<p><strong>Counter-Terrorists WIN!</strong></p>
<p>Put it back together and do a little dance, that wasn’t so bad.</p>
<p><a href="http://iq9.com/content/blog/sd400-repair/sd400-repair-22.jpg"><img src="http://www.iq9.com/content/blog/sd400-repair/sd400-repair-22-small.jpg" alt="Winnar" /></a></p>
<p>(that&#8217;s a picture of my closet.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iq9.com/blog/2006/09/08/canon-sd400-lcd-repair/feed/</wfw:commentRss>
		<slash:comments>93</slash:comments>
		</item>
	</channel>
</rss>
