<?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>thydzik&#039;s technology blog</title>
	<atom:link href="http://thydzik.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thydzik.com</link>
	<description>thydzik&#039;s projects and general random helpful information</description>
	<lastBuildDate>Sun, 07 Mar 2010 09:09:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>RSS feed aggregator/combiner in PHP with Magpie RSS (v2)</title>
		<link>http://thydzik.com/rss-feed-aggregatorcombiner-in-php-v2/</link>
		<comments>http://thydzik.com/rss-feed-aggregatorcombiner-in-php-v2/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 18:50:30 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[aggregator]]></category>
		<category><![CDATA[combiner]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[Feedcreator]]></category>
		<category><![CDATA[Magpie RSS]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[RSS feed]]></category>
		<category><![CDATA[title]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=373</guid>
		<description><![CDATA[I have recently upgraded the code to combine multiple RSS feeds, for the original version see this post.
To install, extract the following zip file to a directory where you want your combined feeds to be displayed, I use thydzik.com/combinedfeed as thydizk.com/feed is already used by Wordpress.
Edit index.php for your site, and make sure the temp [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently upgraded the code to combine multiple RSS feeds, for the original version see <a title="RSS feed aggregator/combiner in PHP" href="http://thydzik.com/rss-feed-aggregatorcombiner-in-php/" target="_blank">this post</a>.</p>
<p>To install, extract the following zip file to a directory where you want your combined feeds to be displayed, I use <a title="New combined Wordpress feeds" href="http://thydzik.com/combinedfeed/" target="_blank">thydzik.com/combinedfeed</a> as <a title="Original Wordpress feed" href="http://thydzik.com/feed/" target="_blank">thydizk.com/feed</a> is already used by Wordpress.</p>
<p>Edit index.php for your site, and make sure the <strong>temp directory has write permissions (mod 755)</strong>. That should be it. Enjoy.</p>
<p><a title="Download thydzik RSS feed aggregator v2.zip" href="http://thydzik.com/combinedfeed/thydzik RSS feed aggregator v2.zip" target="_blank">thydzik RSS feed aggregator v2.zip</a></p>
<p>Thanks to <a title="Magpie RSS" href="http://magpierss.sourceforge.net/" target="_blank">Magpie RSS</a> and <a title="Feedcreator" href="http://sourceforge.net/projects/feedcreator/" target="_blank">Feedcreator</a>.</p>
<pre class="brush: php;">
&lt;?php
	$TMP_ROOT = &quot;temp/&quot;; //a atempory folder for storing the cached feeds, need to have write access (mod755)
	$DOMAIN_NAME = &quot;http://thydzik.com/&quot;;
	$SITE_TITLE = &quot;Travis Hydzik's blog feeds&quot;;
	$SITE_DESRIPTION = &quot;A collection of Travis Hydzik's blog feeds&quot;;
	$SITE_AUTHOR = &quot;Travis Hydzik&quot;;

	$FEEDS_ARRAY  = array( //the collection of urls linking to individual feeds
		&quot;http://hydzik.com/feed/&quot;,
		&quot;http://sonyaandtravis.com/feed&quot;,
		&quot;http://thydzik.com/feed/&quot;
	);

	$MAX_ITEMS = 10;
	$SHOW_FULL_FEED = FALSE;

	//stop editing from here onwards

	define('MAGPIE_DIR', '');
	define('MAGPIE_CACHE_DIR', $TMP_ROOT);

	//include magpie rss http://magpierss.sourceforge.net/
	@require_once(MAGPIE_DIR.'rss_fetch.inc');

	//include universal feed creator http://sourceforge.net/projects/feedcreator/
	@include(MAGPIE_DIR.'feedcreator.class.php');

	//create the basic rss feed
	$rss = new UniversalFeedCreator();
	$rss-&gt;useCached();
	$rss-&gt;title = $SITE_TITLE;
	$rss-&gt;description = $SITE_DESRIPTION;
	$rss-&gt;link = $DOMAIN_NAME;
	$rss-&gt;syndicationURL = curPageURL();

	//get all items is all feeds
	$total_temp = 0; //temp total number of posts in all rss feeds
	foreach ($FEEDS_ARRAY as $single_url) {
		$array_temp[$single_url]['page_title'] = url_grab_title($single_url); //grab the page title

		$rss_temp = fetch_rss($single_url);
		$items = array_slice($rss_temp-&gt;items, 0, $MAX_ITEMS);
		$array_temp[$single_url]['rss_data'] = $items;
		$total_temp += count($items);

		$array_temp[$single_url]['rss_pointer'] = 0;

		preg_match('@^(?:http://)?([^/]+)@i', $single_url, $matches);
		$array_temp[$single_url]['site_url'] = $matches[0];
	}

	while ($total_temp &lt;&gt; 0 &amp;&amp; $MAX_ITEMS &gt; 0){// loop while there are remaining posts to process
		$date_timestamp_temp = 0; //initialise to 0
		foreach ($FEEDS_ARRAY as $single_url) {
			$this_date_timestamp = $array_temp[$single_url]['rss_data'][$array_temp[$single_url]['rss_pointer']]['date_timestamp']; //get the date stamp of this post
			if ($this_date_timestamp &gt; $date_timestamp_temp) { //if this date stamp is the newest, save where it came from
				$date_timestamp_temp = $this_date_timestamp; //update with this date stamp
				$temp_url = $single_url; //save the url feed
				$pointer_temp = $array_temp[$single_url]['rss_pointer']; //save the item number
			}
		}

		$total_temp --; //decrement total remaining posts to process
		$MAX_ITEMS --; //decrement number of posts to display
		$array_temp[$temp_url]['rss_pointer'] ++; //increment post index of used post rss

		//get the saved item
		$item = $array_temp[$temp_url]['rss_data'][$pointer_temp];

		//create the new item
		$item_new = new FeedItem();

		//add all the copied basics
		$item_new-&gt;title = $item['title'];
		$item_new-&gt;link = $item['link'];
		$item_new-&gt;date = $item['pubdate'];
		$item_new-&gt;author = $item['author'];
		$item_new-&gt;source = $temp_url;

		//to show full feed or blurb
		if ($SHOW_FULL_FEED) {
			$item_new-&gt;description = $item['content']['encoded'].'&lt;p&gt;Copyright &amp;copy; &lt;a href=&quot;'.$array_temp[$temp_url]['site_url'].'&quot;&gt;'.$array_temp[$temp_url]['page_title'].'&lt;/a&gt;. All Rights Reserved.&lt;/p&gt;';
		} else {
			$item_new-&gt;description = $item['description']       .'&lt;p&gt;Copyright &amp;copy; &lt;a href=&quot;'.$array_temp[$temp_url]['site_url'].'&quot;&gt;'.$array_temp[$temp_url]['page_title'].'&lt;/a&gt;. All Rights Reserved.&lt;/p&gt;';
		}

		$rss-&gt;addItem($item_new);
	}

	// a quick function the grab a pages title
	function url_grab_title($rss_url) {
  		$contents = file_get_contents($rss_url, TRUE, NULL, 0, 3072);
  		$contents = preg_replace(&quot;/(\n|\r)/&quot;, '', $contents);
		preg_match('/&lt;title&gt;(.*?)&lt;\/title&gt;/i', $contents, $matches);
		return $matches[1];
	}

	//get page url (for syndication), source http://www.webcheatsheet.com/PHP/get_current_page_url.php
	function curPageURL() {
		$pageURL = 'http';
		if ($_SERVER[&quot;HTTPS&quot;] == &quot;on&quot;) {$pageURL .= &quot;s&quot;;}
		$pageURL .= &quot;://&quot;;
		if ($_SERVER[&quot;SERVER_PORT&quot;] != &quot;80&quot;) {
			$pageURL .= $_SERVER[&quot;SERVER_NAME&quot;].&quot;:&quot;.$_SERVER[&quot;SERVER_PORT&quot;].$_SERVER[&quot;REQUEST_URI&quot;];
		} else {
			$pageURL .= $_SERVER[&quot;SERVER_NAME&quot;].$_SERVER[&quot;REQUEST_URI&quot;];
		}
		return $pageURL;
	}

	// get your news items from other feed and display back
	$rss-&gt;saveFeed(&quot;RSS2.0&quot;, $TMP_ROOT.&quot;feed.xml&quot;);
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/rss-feed-aggregatorcombiner-in-php-v2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Replace unorded list double arrows with bullets on default Kubrick theme</title>
		<link>http://thydzik.com/replace-unorded-list-double-arrows-with-bullets/</link>
		<comments>http://thydzik.com/replace-unorded-list-double-arrows-with-bullets/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 05:21:33 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[bullet]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Kubrick]]></category>
		<category><![CDATA[right-pointing double angle quotation marks]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=360</guid>
		<description><![CDATA[A quick guide to how to replace right-pointing double angle quotation marks (») (U+00BB) with bullets (•) (U+2022).
Edit the following style.css in the wp-content\themes\default folder;

.entry ul li:before, #sidebar ul ul li:before {
	content: &#34;&#92;&#48;0BB &#92;&#48;020&#34;;
	}

to;

.entry ul li:before, #sidebar ul ul li:before {
	content: &#34;\2022 &#92;&#48;020&#34;;
	}

]]></description>
			<content:encoded><![CDATA[<p>A quick guide to how to replace right-pointing double angle quotation marks (») (U+00BB) with bullets (•) (U+2022).</p>
<p>Edit the following <em>style.css</em> in the <em>wp-content\themes\default</em> folder;</p>
<pre class="brush: css;">
.entry ul li:before, #sidebar ul ul li:before {
	content: &quot;&#92;&#48;0BB &#92;&#48;020&quot;;
	}
</pre>
<p>to;</p>
<pre class="brush: css;">
.entry ul li:before, #sidebar ul ul li:before {
	content: &quot;\2022 &#92;&#48;020&quot;;
	}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/replace-unorded-list-double-arrows-with-bullets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress hacked &#8211; broken or blank refreshing admin/dashboard</title>
		<link>http://thydzik.com/wordpress-hacked-broken-or-blank-refreshing-admindashboard/</link>
		<comments>http://thydzik.com/wordpress-hacked-broken-or-blank-refreshing-admindashboard/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 04:08:23 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[broken]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Go Daddy]]></category>
		<category><![CDATA[gzuncompress]]></category>
		<category><![CDATA[iss9w8s89xx]]></category>
		<category><![CDATA[malicious]]></category>
		<category><![CDATA[refreshing]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=354</guid>
		<description><![CDATA[Recently, my Linux Go Daddy hosting servicing all three of my WordPress blogs were somehow accessed and malicious code inserted into every one of my php files.
The symptoms include;

A similar error in your RSS feed Warning: gzuncompress() [function.gzuncompress]: data error in /home/content/t/h/y/thydzik/html/blog/wp-includes/http.php on line 1818.
A broken Admin/Dashboard. This is due to the addition of the [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, my Linux Go Daddy hosting servicing all three of my WordPress blogs were somehow accessed and malicious code inserted into <strong>every one</strong> of my php files.</p>
<p>The symptoms include;</p>
<ul>
<li>A similar error in your RSS feed <em>Warning: gzuncompress() [function.gzuncompress]: data error in /home/content/t/h/y/thydzik/html/blog/wp-includes/http.php on line 1818</em>.</li>
<li><a title="Example broken Admin/Dashboard." href="http://thydzik.com/images/broken%20Wordpress%20admin%20100210.PNG" target="_blank">A broken Admin/Dashboard</a>. This is due to the addition of the malicious script on the dynamic CSS files.</li>
<li>The Admin/Dashboard refreshes to a blank screen. This is due to the malicious script redirecting to other page.</li>
</ul>
<p>What to look for;</p>
<ul>
<li>The following code (truncated) inserted into all your php files;</li>
</ul>
<pre class="brush: php;">
&lt;?php /**/ eval(base64_decode(&quot;aWYoZnVuY3Rpb25fZXhpc3RzKCdvYl...==&quot;));?&gt;
</pre>
<ul>
<li>The following code when you view the source code in a browser;</li>
</ul>
<pre class="brush: jscript;">
&lt;iframe src=&quot;http://iss9w8s89xx.org/in.php&quot; width=1 height=1 frameborder=0&gt;&lt;/iframe&gt;
</pre>
<p>What to do;</p>
<ul>
<li>Change all your passwords.</li>
<li>Backup the ENTIRE site to local computer.</li>
<li>Cleanup all affected php files (it doesn&#8217;t seem to do anything to other file types). See below.</li>
<li>Re-upload your site.</li>
</ul>
<p>Now to make things easier, I have created a VBS script that will automate the cleanup task. Place it in your local root director and run. A log file will be generated at <em>C:\cleanUpWordPressPHP.txt</em> listing the files it has cleaned.</p>
<p>Download the VBS script <a title="cleanUpWordPressPHP.vbs" href="http://thydzik.com/downloads/cleanUpWordPressPHP.vbs" target="_self">cleanUpWordPressPHP.vbs</a> (right-click save-as)</p>
<p>Further information can be found on this <a title="My site was hacked, each page trying to load iss9w8s89xx.org and ssdfsdfwefwefwe.com" href="http://www.google.com/support/forum/p/Webmasters/thread?tid=6f4cf473c414de1f&amp;hl=en" target="_blank">Google support thread</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/wordpress-hacked-broken-or-blank-refreshing-admindashboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instructables &#8211; Turkish Delight and Button Purse</title>
		<link>http://thydzik.com/instructables-turkish-delight-and-button-purse/</link>
		<comments>http://thydzik.com/instructables-turkish-delight-and-button-purse/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 19:06:29 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[instructables]]></category>
		<category><![CDATA[Button Purse]]></category>
		<category><![CDATA[Dyeables]]></category>
		<category><![CDATA[Lokum]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[Turkish Delight]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=350</guid>
		<description><![CDATA[Been a while since I have created an Instructable, the Turkish Delight was unpublished since 2008. Check them out.
Decorate a purse with colourful buttons

Turkish Delight (Lokum) recipe

]]></description>
			<content:encoded><![CDATA[<p>Been a while since I have created an Instructable, the Turkish Delight was unpublished since 2008. Check them out.</p>
<p><strong><a href="http://www.instructables.com/id/Decorate-a-purse-with-colourful-buttons/">Decorate a purse with colourful buttons</a></strong><br />
<a href="http://www.instructables.com/id/Decorate-a-purse-with-colourful-buttons/"><img src="http://thydzik.com/images/Instructable%20-%20Decorate-a-purse-with-colourful-buttons.jpg" alt="Decorate a purse with colourful buttons" /></a></p>
<p><strong><a href="http://www.instructables.com/id/Turkish-Delight-Lokum-recipe/">Turkish Delight (Lokum) recipe</a></strong><br />
<a href="http://www.instructables.com/id/Turkish-Delight-Lokum-recipe/"><img src="http://thydzik.com/images/Instructable - Turkish-Delight-Lokum-recipe.jpg" alt="Turkish Delight (Lokum) recipe" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/instructables-turkish-delight-and-button-purse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heat problems with iStar BPN-350SAS 3&#215;5.25&#8243; to 5&#215;3.5&#8243; SATA Trayless Backplane</title>
		<link>http://thydzik.com/heat-problems-with-istar-bpn-350sas-3x5-25-to-5x3-5-sata-trayless-backplane/</link>
		<comments>http://thydzik.com/heat-problems-with-istar-bpn-350sas-3x5-25-to-5x3-5-sata-trayless-backplane/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 07:01:45 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[fans]]></category>
		<category><![CDATA[heat]]></category>
		<category><![CDATA[iStar BPN-350SAS]]></category>
		<category><![CDATA[modding]]></category>
		<category><![CDATA[poor design]]></category>
		<category><![CDATA[RAID]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=343</guid>
		<description><![CDATA[Recently I posted about the use of an iStar BPN-350SAS in my RAID 6 array, well due to Australia&#8217;s extreme summer temperatures I have had a number of drives in the enclosure fail due to overheating.
Whilst I like the design and build of the BPN-350SAS there are some extreme flaws in the cooling design must [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I <a title="Dell PowerEdge SC430 with 8x WesternDigital 1TB drives in RAID-6" href="http://thydzik.com/dell-poweredge-sc430-with-8x-westerndigital-1tb-drives-in-raid-6">posted</a> about the use of an <a title="3x5.25&quot; to 5x3.5&quot; SATA/SAS Trayless Hot-Swap Backplane RAID Cage: BPN-350SAS - iStarUSA" href="http://www.istarusa.com/rackmount_chassis/storage_enclosure/sas/bpn-350sas.aspx?AspxAutoDetectCookieSupport=1" target="_blank">iStar BPN-350SAS</a> in my RAID 6 array, well due to Australia&#8217;s extreme summer temperatures I have had a number of drives in the enclosure fail due to overheating.</p>
<p>Whilst I like the design and build of the BPN-350SAS there are some extreme flaws in the cooling design must likely due to implementation costs or interference with the units cosmetics.</p>
<p>Firstly, the 2x 60mm fans do not provide enough airflow; secondly, there are simply not enough paths for the air to flow. If you look inside the unit you will see 5 slits behind the PCB, and that is all there is for hot air exhaust. If you look at the front bezels, beneath the locking key hole plastic are 3 air vents, and this is all there is for the cool air intake.</p>
<p>Now, my solution has improved all off the above by first, removing the 60mm fans and installing 2x 80mm fans, these are connected via a molex connector. You can observe that 2x 80cm fans protrude 20mm on one side so it was necessary to install the protruding fan once the unit was installed into the case. Secondly, additional air holes on the back of the unit and on the top and under side of the unit to allow more air to circulate. I also removed the 5 springs that popped the drives out, but this was more to improve the backplane’s connection with the drives.</p>
<p><a title="iStar BPN-350SAS modified - top air intake holes" rel="thumbnail" href="http://thydzik.com/images/iStar BPN-350SAS - improved air flow 1.jpg"><img src="http://thydzik.com/images/iStar BPN-350SAS - improved air flow 1 th.jpg" alt="iStar BPN-350SAS modified - top air intake holes" /></a></p>
<p><a title="iStar BPN-350SAS modified - top air intake holes and 80mm fan" rel="thumbnail" href="http://thydzik.com/images/iStar BPN-350SAS - improved air flow 2.jpg"><img src="http://thydzik.com/images/iStar BPN-350SAS - improved air flow 2 th.jpg" alt="iStar BPN-350SAS modified - top air intake holes and 80mm fan" /></a></p>
<p><a title="iStar BPN-350SAS modified - botton air intake holes and 80mm fan" rel="thumbnail" href="http://thydzik.com/images/iStar BPN-350SAS - improved air flow 3.jpg"><img src="http://thydzik.com/images/iStar BPN-350SAS - improved air flow 3 th.jpg" alt="iStar BPN-350SAS modified - botton air intake holes and 80mm fan" /></a></p>
<p><a title="iStar BPN-350SAS modified - installation in case with 2 80mm fans" rel="thumbnail" href="http://thydzik.com/images/iStar BPN-350SAS - improved air flow 4.jpg"><img src="http://thydzik.com/images/iStar BPN-350SAS - improved air flow 4 th.jpg" alt="iStar BPN-350SAS modified - installation in case with 2 80mm fans" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/heat-problems-with-istar-bpn-350sas-3x5-25-to-5x3-5-sata-trayless-backplane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canon EFS 17-85mm IS stuck/locked zoom repair/disassembly</title>
		<link>http://thydzik.com/canon-efs-17-85mm-is-stucklocked-zoom-repairdisassembly/</link>
		<comments>http://thydzik.com/canon-efs-17-85mm-is-stucklocked-zoom-repairdisassembly/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 00:12:20 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[repair]]></category>
		<category><![CDATA[Canon]]></category>
		<category><![CDATA[disassembly]]></category>
		<category><![CDATA[EFS 17-85mm]]></category>
		<category><![CDATA[lockded]]></category>
		<category><![CDATA[stuck]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=328</guid>
		<description><![CDATA[It seems like this is a common problem with these lenses, the zoom gets stuck at 17mm with about 2mm of play (zoom movement). This problem is all due to a loose single screw on the inner lens assembly, sounds simple to fix, doesn&#8217;t it?
The challenge is trying to get to this single screw, which [...]]]></description>
			<content:encoded><![CDATA[<p>It seems like this is a common problem with these lenses, the zoom gets stuck at 17mm with about 2mm of play (zoom movement). This problem is all due to a loose single screw on the inner lens assembly, sounds simple to fix, doesn&#8217;t it?</p>
<p>The challenge is trying to get to this single screw, which involves the separation of the lens into over 10 components, and the removal of about 20 small screws. Hopefully this guide will make the disassembly job a whole lot easier.</p>
<p>First, a reminder of what the lens looks like.</p>
<p><a title="The stuck zoom lens" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - The stuck zoom lens.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - The stuck zoom lens th.jpg" alt="The stuck zoom lens" /></a></p>
<p>Turn the lens on its side with the connection contacts closest to you. There are 2 tiny Philips screws to remove.</p>
<p><a title="Remove 2 screws holding the connection contacts" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Remove 2 screws holding the connection contacts.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Remove 2 screws holding the connection contacts th.jpg" alt="Remove 2 screws holding the connection contacts" /></a></p>
<p>Balance the lens on its front with the metal lens screw lock ring visible. There are 4 small Philips screws to remove.</p>
<p><a title="Metal lens screw lock" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Metal lens screw lock.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Metal lens screw lock th.jpg" alt="Metal lens screw lock" /></a></p>
<p>The metal ring can now be hinged apart. This next step is the most difficult. The inner black plastic ring is connected to the metal outer ring with 4 plastic clips in the inside. By pushing the clips towards the center, the black plastic ring can be removed from the top of the metal outer ring. Much care is needed due to the ribbon cable still being attached to the connection contacts allowing for a gap of roughly no more than 1cm.</p>
<p><a title="Inner black ring and outer metal ring, clips visible" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Inner black ring and outer metal ring, clips visible.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Inner black ring and outer metal ring, clips visible th.jpg" alt="Inner black ring and outer metal ring, clips visible" /></a></p>
<p>Once the inner black plastic ring is removed, the outer metal screw lock ring can be removed, exposing the PCB protected by a black plastic housing.</p>
<p><a title="Both black and metal ring removed and PCB visible" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Both black and metal ring removed and PCB visible.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Both black and metal ring removed and PCB visible th.jpg" alt="Both black and metal ring removed and PCB visible" /></a></p>
<p>Disconnect a single pressure ribbon cable attached to the inside of the black plastic housing which will then allow for its removal exposing the PCB.</p>
<p><a title="Black plastic housing removed" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Black plastic housing removed.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Black plastic housing removed th.jpg" alt="Black plastic housing removed" /></a></p>
<p>Disconnect the 5 ribbon cables from the PCB. 2 are pressure connected, 2 with a hinged clip and 1 with a pressure clip. Unscrew a single Philips screw allowing the removal of the PCB.</p>
<p>Remove the 5 screws (circled in red) holding the outer black plastic ring allowing the remove of the black plastic ring. Then remove the 3 inner screws (circled in blue).</p>
<p><a title="PCB removed" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - PCB removed.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - PCB removed th.jpg" alt="PCB removed" /></a></p>
<p>Turn the lens over and remove the rubber zoom grip. It can be removed by inserting a very thin screw driver under the rubber and working your way around.</p>
<p><a title="Font of 17-85mm lens" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Font of 17-85mm lens.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Font of 17-85mm lens th.jpg" alt="Font of 17-85mm lens" /></a></p>
<p><a title="Rubber zoom grip removed" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Rubber zoom grip removed.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Rubber zoom grip removed th.jpg" alt="Rubber zoom grip removed" /></a></p>
<p>With the rubber zoom grip removed, rotate the lens until you find a black rectangle sticker, peal this off to expose some contactors.</p>
<p><a title="Black rectangle sticker removed exposing the contactors" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Black rectangle sticker removed exposing the contactors.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Black rectangle sticker removed exposing the contactors th.jpg" alt="Black rectangle sticker removed exposing the contactors" /></a></p>
<p>With a Philip driver, unscrew the contactors. I actually performed this when reassembling the lens and slightly damaged them. It is better to remove them at the start to prevent this.</p>
<p><a title="Contactors removed" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Contactors removed.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Contactors removed th.jpg" alt="Contactors removed" /></a></p>
<p>There are 3 screws sitting on small metal tubes between a groove, finally remove these.</p>
<p><a title="Screw in metal tubes within the groves" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Screw in metal tubes within the groves.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Screw in metal tubes within the groves th.jpg" alt="Screw in metal tubes within the groves" /></a></p>
<p>With these removed the inner lens portion can now be removed from the outer casing.</p>
<p><a title="Outer casing removed from inner lens" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - Outer casing removed from  inner lens.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - Outer casing removed from  inner lens th.jpg" alt="Outer casing removed from inner lens" /></a></p>
<p>You now have access to the problem screw(s) that need tightening. Once tightened, add some Loctite or nail-polish to stop the screws becoming loose again.</p>
<p><a title="The final screws that need tightening" rel="thumbnail" href="http://thydzik.com/images/Canon 17-85mm repair - The final screws that need tightening.jpg"><img src="http://thydzik.com/images/Canon 17-85mm repair - The final screws that need tightening th.jpg" alt="The final screws that need tightening" /></a></p>
<p><strong>Some do&#8217;s and don&#8217;ts</strong></p>
<ul>
<li>don&#8217;t remove      the front lens sticker or 3 screws behind it.</li>
<li>don&#8217;t remove      the zoom sticker with m/ft increments.</li>
<li>don&#8217;t touch      or disassemble any of the focusing ring!</li>
<li>do keep your      UV filter on the lens, you can still remove the rubber grip with it on.</li>
<li>do make sure the focusing pin between the inner and outer len is in place.</li>
</ul>
<p><strong>References</strong></p>
<ul>
<li><a title="FixYa post by Gert Jan" href="http://www.fixya.com/support/t987082-17_85mm_mechanically_stuck_17mm_will_not" target="_blank">FixYa post      by Gert Jan</a> [fixa.com]</li>
<li><a title="Canon EF 20-35mm f/3.5-4.5 USM Lens Repair" href="http://photo.net/canon-eos-digital-camera-forum/00QHjI" target="_blank">Canon EF      20-35mm f/3.5-4.5 USM Lens Repair</a> [photo.net]</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/canon-efs-17-85mm-is-stucklocked-zoom-repairdisassembly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pimsleur Mandarin Chinese Unit 1 Transcripts</title>
		<link>http://thydzik.com/pimsleur-mandarin-chinese-unit-1-transcripts/</link>
		<comments>http://thydzik.com/pimsleur-mandarin-chinese-unit-1-transcripts/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 12:23:09 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Mandarin]]></category>
		<category><![CDATA[Chinese]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Pimsleur]]></category>
		<category><![CDATA[Taryn's Transcripts]]></category>
		<category><![CDATA[transcripts]]></category>
		<category><![CDATA[Unit 1]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=318</guid>
		<description><![CDATA[Due to a Notice of Copyright Infringement from Pimsleur, I have had to remove my transcripts, however due to the demand I have made available Taryn&#8217;s Transcripts (who&#8217;s site was also removed).
To download the transcripts as a zip file, enter your email address below and click submit. A download link will be sent to your [...]]]></description>
			<content:encoded><![CDATA[<p>Due to a <a href="http://thydzik.com/copyright-infringement-pimsleur-transcripts-simon-schuster/">Notice of Copyright Infringement from Pimsleur</a>, I have had to remove my transcripts, however due to the demand I have made available Taryn&#8217;s Transcripts (who&#8217;s site was also removed).</p>
<p>To download the transcripts as a zip file, enter your email address below and click submit. A download link will be sent to your inbox which is good for 5 minutes. Note: the file is 8mbs.</p>
<p><iFrame frameborder="0" src="http://thydzik.com/sendfile/email" width="450" height="150"></iFrame></p>
<p>Leave a comment if there are any problems. I will eventually add all transcripts I have collected to the zip file.</p>
]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/pimsleur-mandarin-chinese-unit-1-transcripts/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Dell PowerEdge SC430 with 8x WesternDigital 1TB drives in RAID-6</title>
		<link>http://thydzik.com/dell-poweredge-sc430-with-8x-westerndigital-1tb-drives-in-raid-6/</link>
		<comments>http://thydzik.com/dell-poweredge-sc430-with-8x-westerndigital-1tb-drives-in-raid-6/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 13:32:19 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Adaptec 3805]]></category>
		<category><![CDATA[Dell PowerEdge SC430]]></category>
		<category><![CDATA[iStar BPN-350SAS]]></category>
		<category><![CDATA[RAID-6]]></category>
		<category><![CDATA[WesternDigital 1TB]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=305</guid>
		<description><![CDATA[Sometimes a man just wants to show of; this is one of those times.
My latest project was upgrading my full 2TB server (Adaptec 2410SA with 4x Seagate 750gb drives in RAID-5) to a 6TB server (Adaptec 3805 with 8x Western Digital 1TB drives in RAID-6).

Obviously, the Dell PowerEdge SC430 wasn&#8217;t designed for 9 drives (an [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes a man just wants to show of; this is one of those times.</p>
<p>My latest project was upgrading my full 2TB server (<a title="Adaptec - Adaptec Serial ATA RAID 410SA" href="http://www.adaptec.com/en-US/support/raid/sata/AAR-2410SA/" target="_blank">Adaptec 2410SA</a> with 4x Seagate 750gb drives in RAID-5) to a 6TB server (<a title="Adaptec - Adaptec RAID 3805" href="http://www.adaptec.com/en-US/products/Controllers/Hardware/sas/value/SAS-3805/" target="_blank">Adaptec 3805</a> with 8x Western Digital 1TB drives in RAID-6).</p>
<p><a title="Dell SC430 with installed iStar BPN-350SAS" rel="thumbnail" href="http://thydzik.com/images/Dell SC430 with installed iStar BPN-350SAS.jpg"><img src="http://thydzik.com/images/Dell SC430 with installed iStar BPN-350SAS th.jpg" alt="Dell SC430 with installed iStar BPN-350SAS" /></a></p>
<p>Obviously, the <a title="Dell PowerEdge SC430 Server Specifications" href="http://www.dell.com/downloads/global/products/pedge/en/sc430_specs.pdf" target="_blank">Dell PowerEdge SC430</a> wasn&#8217;t designed for 9 drives (an extra for the OS) so it was quite challenging fitting it all on. It was made significantly easier by purchasing an <a title="3x5.25&quot; to 5x3.5&quot; SATA/SAS Trayless Hot-Swap Backplane RAID Cage: BPN-350SAS - iStarUSA" href="http://www.istarusa.com/rackmount_chassis/storage_enclosure/sas/bpn-350sas.aspx?AspxAutoDetectCookieSupport=1" target="_blank">iStar BPN-350SAS </a>which allows for five 3.5&#8243; drives to be squeezed into three 5.25&#8243; bays. Plus it is tray-less, and looks very sleek. There was a significant problem in that the SC430 only supported two 5.12&#8243; bays, after quite a bit of hacking the case up, I then realised that the motherboard was preventing the BPN-350SAS to fit in horizontally, with extreme luck and millimetre clearance, it did manage to fit in vertically, but with the extension of the P4 connector and two capacitors that were in the way. Refer to the following pictures.</p>
<p><a title="Dell SC430 motherboard original" rel="thumbnail" href="http://thydzik.com/images/Dell SC430 motherboard original.jpg"><img src="http://thydzik.com/images/Dell SC430 motherboard original th.jpg" alt="Dell SC430 motherboard original" /></a></p>
<p><a title="Dell SC430 motherboard modified" rel="thumbnail" href="http://thydzik.com/images/Dell SC430 motherboard modified.jpg"><img src="http://thydzik.com/images/Dell SC430 motherboard modified th.jpg" alt="Dell SC430 motherboard modified" /></a></p>
<p><a title="Dell SC430 showing motherboard clearance of iStar BPN-350SAS" rel="thumbnail" href="http://thydzik.com/images/Dell SC430 showing motherboard clearance of iStar BPN-350SAS.jpg"><img src="http://thydzik.com/images/Dell SC430 showing motherboard clearance of iStar BPN-350SAS th.jpg" alt="Dell SC430 showing motherboard clearance of iStar BPN-350SAS" /></a></p>
<p>The SC430 now had the two standard bottom hard disk drive cages and the five from the BPN-350SAS which meant I was still two drive spaces short. I removed the drive cage from a Dell Optiplex GX270, which I managed to luckily remove easily with a long stemmed drill to remove the rivets. I removed the SC430&#8217;s card fan, and riveted the GX270&#8217;s cage in place. This allowed me to still use rails for easy removal of drives. The SC430&#8217;s card fan was relocated as an exhaust fan to the back, mainly to stop BIOS from pausing on fan fault during boot-up.</p>
<p><a title="Dell SC430 with new Optiplex GX270 HDD cage" rel="thumbnail" href="http://thydzik.com/images/Dell SC430 with new Optiplex GX270 HDD cage.jpg"><img src="http://thydzik.com/images/Dell SC430 with new Optiplex GX270 HDD cage th.jpg" alt="Dell SC430 with new Optiplex GX270 HDD cage" /></a></p>
<p>Minor problems were; cable protrusion and the side panel not closing. This was fixed by using SATA power cables which had clip on connectors forming a natural right-angled connection, and also by carefully whittling the SATA cable connections so a tighter angle could be formed.</p>
<p><a title="Dell SC430 cable management of 9 drives" rel="thumbnail" href="http://thydzik.com/images/Dell SC430 cable management of 9 drives.jpg"><img src="http://thydzik.com/images/Dell SC430 cable management of 9 drives th.jpg" alt="Dell SC430 cable management of 9 drives" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/dell-poweredge-sc430-with-8x-westerndigital-1tb-drives-in-raid-6/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to repair High Heel Shoes for a few dollars</title>
		<link>http://thydzik.com/how-to-repair-high-heel-shoes-for-a-few-dollars/</link>
		<comments>http://thydzik.com/how-to-repair-high-heel-shoes-for-a-few-dollars/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 14:10:16 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[High Heel]]></category>
		<category><![CDATA[repair]]></category>
		<category><![CDATA[shoes]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=286</guid>
		<description><![CDATA[A very easy guide on repairing high heel shoes for a few dollars.
The damaged high heel shoe culprit, notice the lack of any heel and the exposed dangerous metal pin.


The first task is to remove the old metal pin, depending on how worn the heel is depends on the ease of doing so. If there [...]]]></description>
			<content:encoded><![CDATA[<p>A very easy guide on repairing high heel shoes for a few dollars.</p>
<p>The damaged high heel shoe culprit, notice the lack of any heel and the exposed dangerous metal pin.</p>
<p><a title="Damaged high heel, notice the metail pin protruding" rel="thumbnail" href="http://thydzik.com/images/High heel repair - damaged heel.jpg"><img src="http://thydzik.com/images/High heel repair - damaged heel th.jpg" alt="Damaged high heel, notice the metail pin protruding" /></a></p>
<p><a title="Damaged high heel close up" rel="thumbnail" href="http://thydzik.com/images/High heel repair - damaged heel closeup.jpg"><img src="http://thydzik.com/images/High heel repair - damaged heel closeup th.jpg" alt="Damaged high heel close up" /></a></p>
<p>The first task is to remove the old metal pin, depending on how worn the heel is depends on the ease of doing so. If there is a little rubber still visible or about 1mm of the pin showing it will be quite easy. I like to use a vice to squeeze the protruding head and then pull the shoe while rotating left and right, it should be easy enough with pliers, only a little more fiddling around.</p>
<p>If there is very little of the metal pin protruding and you are finding it very difficult to get a good grip on it, I sometimes cut about 1mm of the white plastic heel around the pin with a knife to expose more of the pin.</p>
<p><a title="Remove the metal pin in a vice or with pliers" rel="thumbnail" href="http://thydzik.com/images/High heel repair - remove pin in vice.jpg"><img src="http://thydzik.com/images/High heel repair - remove pin in vice th.jpg" alt="Remove the metal pin in a vice or with pliers" /></a></p>
<p>Once the pin is removed, give the heel a file to make everything nice and flat. Notice quite a bit of wear on the heel, depending on how fussy the owner is, you can remove any hanging leather and give the heel a nice coat of black paint. Personally, I don&#8217;t think it matters as it is quite hidden when worn.</p>
<p><a title="Metal pin removed" rel="thumbnail" href="http://thydzik.com/images/High heel repair - removed pin.jpg"><img src="http://thydzik.com/images/High heel repair - removed pin th.jpg" alt="Metal pin removed" /></a></p>
<p>After a double spray of flat black paint.</p>
<p><a title="After a double coat of flat black spray paint" rel="thumbnail" href="http://thydzik.com/images/High heel repair - heel painted black.jpg"><img src="http://thydzik.com/images/High heel repair - heel painted black th.jpg" alt="After a double coat of flat black spray paint" /></a></p>
<p>Now, I purchased 10 pairs of 10.5mm (7/16&#8243;) replacement heel tips for £7.50 (roughly $15 Australian, including shipping to Australia) on <a title="eBay seller schwaizeraben" href="http://shop.ebay.com.au/schwaizeraben/m.html" target="_blank">eBay</a>. I have found that the majority of heels are around 10mm, there was one instance I had a stiletto of roughly 8mm and all that was required was some grinding/filing to obtain the required size. The shoes pictured are 10.5mm.</p>
<p><a title="Replacement heel tips" rel="thumbnail" href="http://thydzik.com/images/High heel repair - replacement heels 10.5mm.jpg"><img src="http://thydzik.com/images/High heel repair - replacement heels 10.5mm th.jpg" alt="Replacement heel tips" /></a></p>
<p>In some cases the size of the pin hole may be too large for the regular 2.9mm (7/64&#8243;) pin, so some convertors to 3.1mm (or what they call Flexitubes) may be required. I purchased 8 pairs for £2.85 (roughly $5.7 Australian, including shipping to Australia) from <a title="Stiletto Heel Tips Online" href="http://www.stiletto-heel-tips.co.uk" target="_blank">Stiletto Heel Tips Online</a>.</p>
<p><a title="Flexitubes - comverts 2.9mm pin to 3.1mm pin" rel="thumbnail" href="http://thydzik.com/images/High heel repair - tubes.jpg"><img src="http://thydzik.com/images/High heel repair - tubes th.jpg" alt="Flexitubes - comverts 2.9mm pin to 3.1mm pin" /></a></p>
<p>To fix the new heel to the shoe, first make a very basic shoehorn. Notice the wood is at an angle, as the sole of the shoe as actually at an angle to the heel. A slightly thicker piece of wood would have been better.</p>
<p><a title="Very basic shoehorn" rel="thumbnail" href="http://thydzik.com/images/High heel repair - shoe horn.jpg"><img src="http://thydzik.com/images/High heel repair - shoe horn th.jpg" alt="Very basic shoehorn" /></a></p>
<p>Hammer the new heel all the way down till the plastic heel is touching the shoe&#8217;s heel. Make sure it is facing the right direction, the curved size facing back, and the flat side facing front.</p>
<p><a title="Hammer the new heel tip into the shoe" rel="thumbnail" href="http://thydzik.com/images/High heel repair - hammering the new heel.jpg"><img src="http://thydzik.com/images/High heel repair - hammering the new heel th.jpg" alt="Hammer the new heel tip into the shoe" /></a></p>
<p>The completely repaired high heel shoes for the cost of less than $2.50 Australian.</p>
<p><a title="Completely repaired high heel shoes" rel="thumbnail" href="http://thydzik.com/images/High heel repair - completed repaired heel.jpg"><img src="http://thydzik.com/images/High heel repair - completed repaired heel th.jpg" alt="Completely repaired high heel shoes" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/how-to-repair-high-heel-shoes-for-a-few-dollars/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Copyright Infringement &#8211; Pimsleur transcripts (Simon &amp; Schuster)</title>
		<link>http://thydzik.com/copyright-infringement-pimsleur-transcripts-simon-schuster/</link>
		<comments>http://thydzik.com/copyright-infringement-pimsleur-transcripts-simon-schuster/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 13:24:18 +0000</pubDate>
		<dc:creator>thydzik</dc:creator>
				<category><![CDATA[Mandarin]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Copyright]]></category>
		<category><![CDATA[infringement]]></category>
		<category><![CDATA[Pimsleur alternatives]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[transcripts]]></category>

		<guid isPermaLink="false">http://thydzik.com/?p=274</guid>
		<description><![CDATA[Seems that Pimsleur doesn&#8217;t like me providing transcripts for their Mandarin Chinese 1 Units and have asked for their removal.
Find the Notice of Copyright Infringement below.

Notice of Copyright Infringement &#8211; Pimsleur thydzik.com.pdf

So what are some Pimsleur alternatives for learning a language that are more than happy to provide transcripts.

Livemocha is a Social Language Learning resource.
The [...]]]></description>
			<content:encoded><![CDATA[<p>Seems that Pimsleur doesn&#8217;t like me providing transcripts for their Mandarin Chinese 1 Units and have asked for their removal.</p>
<p>Find the <strong>Notice of Copyright Infringement</strong> below.</p>
<ul>
<li><a title="Notice of Copyright Infringement" href="http://thydzik.com/downloads/Notice%20of%20Copyright%20Infringement%20-%20Pimsleur%20thydzik.com.pdf" target="_blank">Notice of Copyright Infringement &#8211; Pimsleur thydzik.com.pdf</a></li>
</ul>
<p>So what are some <strong>Pimsleur alternatives for learning a language</strong> that are more than happy to provide transcripts.</p>
<ul>
<li><a title="Social Language Learning" href="http://www.livemocha.com/" target="_blank">Livemocha</a> is a Social Language Learning resource.</li>
<li>The world&#8217;s number 1 in language learning software, <a title="Language Learning with Rosetta Stone" href="http://www.rosettastone.com/" target="_blank">Rosetta Stone</a> is another alternative.</li>
<li><a title="Instant Immersion Language Learning Products" href="http://www.instantimmersion.com/" target="_blank">Instant Immersion</a> produces a large collection of language learning programs, in the forms of computer software, audio and books.</li>
<li><a href="http://www.fsi-language-courses.com/">FSI Language Courses</a> is a free alternative with a large number of audio units in the public domain.</li>
</ul>
<p>There are still plenty of sights that provide <strong>Pimsleur transcripts</strong>.</p>
<ul>
<li><a title="Taryn's Transcripts" href="http://www.tarynstranscripts.com/" target="_blank">Taryn&#8217;s Transcripts</a> provides exact <a href="http://www.tarynstranscripts.com/mandarin.html">Mandarin transcrpts</a> of all lessons of all units</li>
<li>Marcel Nijman&#8217;s transcripts are still out there<a title="Pimsleur Mandarin transcription" href="http://marcelnijman.eu/pimsleur/mandarin.php" target="_blank"> Pimsleur Mandarin Transcription Marcel Nijman</a> and <a title="Pimsleur Mandarin transcription" href="http://marcelnijman.eu/pimsleur/mandarin.php" target="_blank">Marcel Nijman Pimsleur Mandarin transcription</a></li>
<li><a title="Pimsleur Mandarin Transcripts for courses I, II and III" href="http://fizzyfizzd.angelfire.com/" target="_blank">Pimsleur Mandarin Transcripts for courses I, II and III</a> by fizzyfizzd</li>
</ul>
<p>And don&#8217;t forgot you can <strong>freely download</strong> any of the Pimsleur audio books online</p>
<ul>
<li><a title="Google" href="http://www.google.com.au/search?q=Pimsleur+Mandarin+filetype%3Atorrent" target="_blank">Google search &#8220;Pimsleur Mandarin torrent&#8221;</a></li>
</ul>
<p><strong>Update December 2009: I have made the transcripts available for download;</strong></p>
<p><strong><a rel="nofollow" href="../../pimsleur-mandarin-chinese-unit-1-transcripts/">http://thydzik.com/pimsleur-mandarin-chinese-unit-1-transcripts/</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://thydzik.com/copyright-infringement-pimsleur-transcripts-simon-schuster/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.418 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-12 20:43:00 -->
<!-- Compression = gzip -->