<?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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" version="2.0">

<channel>
	<title>Playing With Wire</title>
	
	<link>http://www.playingwithwire.com</link>
	<description>The Internet Startup Blog</description>
	<lastBuildDate>Sun, 09 May 2010 21:58:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/PlayingWithWire" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="playingwithwire" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>37.380207</geo:lat><geo:long>-122.087871</geo:long><item>
		<title>The easy way to secure Wordpress with SSL</title>
		<link>http://www.playingwithwire.com/2010/01/the-easy-way-to-secure-wordpress-with-ssl/</link>
		<comments>http://www.playingwithwire.com/2010/01/the-easy-way-to-secure-wordpress-with-ssl/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 16:51:27 +0000</pubDate>
		<dc:creator>Viktor Petersson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Dreamhost]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.playingwithwire.com/?p=748</guid>
		<description><![CDATA[It&#8217;s a good secure practice to force SSL on the the Admin back-end and the login-page in Wordpress. I&#8217;m hardly the first one to point this out. There&#8217;s even an entire page over at Wordpress&#8217; website dedicated to this (Administration over SSL).
I&#8217;ve spent the last few days setting up Wordpress as a CMS and webshop [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a good secure practice to force SSL on the the Admin back-end and the login-page in Wordpress. I&#8217;m hardly the first one to point this out. There&#8217;s even an entire page over at Wordpress&#8217; website dedicated to this (<a href="http://codex.wordpress.org/Administration_Over_SSL" >Administration over SSL</a>).</p>
<p>I&#8217;ve spent the last few days setting up Wordpress as a CMS and webshop (with wp-e-commerce) for a company. While there are no credit cards involved in the webshop, I still wanted to secure the login and admin page. However, since the website is hosted at Dreamhost, I was limited to the .htaccess file. Moreover, since the .htaccess-file is the same for both SSL mode and non-SSL mode, I needed to use some kind of condition to avoid creating an infinite loop.</p>
<p>Enough rambling. The code snippets over at &#8216;Administration over SSL&#8217; didn&#8217;t work, so I had to write one myself. Here it is:<br/>
<code><br/>
RewriteCond %{HTTPS} !=on<br/>
RewriteRule ^(wp-admin.*|wp-login.*) https://www.yourdomain.com/$1<br/>
RewriteCond %{HTTPS} =on<br/>
RewriteRule !^(wp-admin.*|wp-login.*) http://www.yourdomain.com/$1<br/>
</code></p>
<p>Also, please note that this snippet must be <strong>after</strong> WP&#8217;s own redirection snippet, otherwise it won&#8217;t  work. The entire .htaccess file looks as follow:<br/>
<code><br/>
<ifmodule mod_rewrite.c="" ><br/>
RewriteEngine On</p>
<p>## Wordpress' SEO permlinks<br/>
RewriteCond %{REQUEST_FILENAME} !-f<br/>
RewriteCond %{REQUEST_FILENAME} !-d<br/>
RewriteRule . /index.php [L]</p>
<p>## Beefing up the security<br/>
RewriteCond %{HTTPS} !=on<br/>
RewriteRule ^(wp-admin.*|wp-login.*) https://www.yourdomain.com/$1<br/>
RewriteCond %{HTTPS} =on<br/>
RewriteRule !^(wp-admin.*|wp-login.*) http://www.yourdomain.com/$1<br/>
</ifmodule><br/>
</code></p>
<p><strong>Update</strong>: This will actually not work very well as images for the back-end are not stored in any of the SSL folders. Hence the the server tries to serve the images without SSL while you are in SSL mode, which does not work very well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.playingwithwire.com/2010/01/the-easy-way-to-secure-wordpress-with-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing FML Ninja</title>
		<link>http://www.playingwithwire.com/2010/01/introducing-fml-ninja/</link>
		<comments>http://www.playingwithwire.com/2010/01/introducing-fml-ninja/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 14:50:41 +0000</pubDate>
		<dc:creator>Viktor Petersson</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[FML Ninja]]></category>

		<guid isPermaLink="false">http://www.playingwithwire.com/?p=730</guid>
		<description><![CDATA[FML stories is one of those things that can only really thrive in the semi-anonymous world online. If you have never heard of the FML phenomenon yet, it&#8217;s a one or two sentence long story about how miserably the author&#8217;s life is or how they  have managed to screw up. 
I&#8217;ve been a fan [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.playingwithwire.com/2010/01/introducing-fml-ninja/fmlninja_logo/"  rel="attachment wp-att-731" ><img hspace="0"  vspace="2"  align="left"  src="http://www.playingwithwire.com/wp-content/uploads/2010/01/fmlninja_logo.png"  alt=""  title="fmlninja_logo"  width="250"  height="94"  class="alignleft size-full wp-image-731"   style="float: left; padding: 4px; margin: 0 7px 2px 0; display: inline;"/></a>FML stories is one of those things that can only really thrive in the semi-anonymous world online. If you have never heard of the FML phenomenon yet, it&#8217;s a one or two sentence long story about how miserably the author&#8217;s life is or how they  have managed to screw up. </p>
<p>I&#8217;ve been a fan of FML stories for a long time, as they are very entertaining to read. For quite some time I&#8217;ve received my daily dosage of FML stories from <a href="http://www.fmylife.org" >FMyLife</a>, but with the raise of Twitter and countless competitors, it&#8217;s role became less important. </p>
<p>To resolve this problem, we created <a href="http://www.fmlninja.com" >FML Ninja</a>. With FML Ninja you can access FML stories from around the web in one place, as we aggregate stories from multiple sources (including FMyLife and Twitter). But we didn&#8217;t stop there. We also added a <a href="http://www.digg.com" >Digg</a>-like voting system that allows our users to vote up their favorite top FML stories.</p>
<p>Ready to change the way you read your FML stories? Then check out <a href="http://www.fmlninja.com" >FML Ninja</a> now. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.playingwithwire.com/2010/01/introducing-fml-ninja/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get Celeryd to work on FreeBSD</title>
		<link>http://www.playingwithwire.com/2009/10/how-to-get-celeryd-to-work-on-freebsd/</link>
		<comments>http://www.playingwithwire.com/2009/10/how-to-get-celeryd-to-work-on-freebsd/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 12:39:46 +0000</pubDate>
		<dc:creator>Viktor Petersson</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.playingwithwire.com/?p=709</guid>
		<description><![CDATA[Celery is a great product. Unfortunately getting it to work on FreeBSD is a bit of a hassle. After some troubleshooting we managed to get it running, here&#8217;s how we did it.
We are running FreeBSD 7.2, but this is likely to work on 7.x.
Step 1: Recompile kernel
I assume that you know how to compile the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ask.github.com/celery/introduction.html" >Celery</a> is a great product. Unfortunately getting it to work on FreeBSD is a bit of a hassle. After some troubleshooting we managed to get it running, here&#8217;s how we did it.</p>
<p>We are running FreeBSD 7.2, but this is likely to work on 7.x.</p>
<h3>Step 1: Recompile kernel</h3>
<p>I assume that you know how to compile the kernel on FreeBSD. If not, you can find out how to do it <a href="http://www.freebsd.org/doc/en/books/handbook/kernelconfig.html" >here</a>. I also assume that you have the source code for FreeBSD installed.</p>
<p>Let&#8217;s head over to the code.<br/>
<code>#cd /usr/src/sys/i386/conf</code></p>
<p>Make a copy of the standard kernel-config.<br/>
<code>#cp GENERIC YOUR_KERNEL</code></p>
<p>Now we need to edit the kernel-config. You can obviously use any editor, but I prefer joe.<br/>
<code>#joe YOUR_KERNEL</code></p>
<p>Change the &#8216;ident&#8217; from GENERIC to YOUR_KERNEL<br/>
<code>ident	YOUR_KERNEL</code></p>
<p>This is the most important part. We need to add support for POSIX Semaphores. Add the following line:<br/>
<code>options         P1003_1B_SEMAPHORES     # POSIX-style semaphores</code></p>
<p>That&#8217;s it for the kernel-config. Now just save the changes and exit (^K+X in joe).</p>
<p>Next up is the compiling and installing the actual kernel.<br/>
<code>#cd /usr/src<br/>
#make buildkernel KERNCONF=YOUR_KERNEL<br/>
#make installkernel KERNCONF=YOUR_KERNEL<br/>
#reboot<br/>
</code></p>
<p>That&#8217;s it. If everything went well, you should now have a kernel with POSIX Semaphores enabled.</p>
<h3>Step 1: Install Python</h3>
<p>I assume you got the ports installed, so here we go.<br/>
<code><br/>
#cd /usr/ports/lang/python26<br/>
#make config<br/>
</code><br/>
Make sure to select SEM and deselect PTH. If PTH is enabled, Celery won&#8217;t work.</p>
<p>If you&#8217;re running FreeBSD &lt;7.2, you will need to edit Makefile and comment out the following:<br/>
<code><br/>
Line 63-71:<br/>
#.if defined(WITH_SEM)<br/>
#.if ${OSVERSION} >= 701106<br/>
#SEM_MSG=       ""<br/>
#.else<br/>
#IGNORE=                POSIX semaphore support only works in FreeBSD 7-STABLE and later<br/>
#.endif # ${OSVERSION} >= 701106<br/>
#.else # !defined(WITH_SEM)<br/>
#SEM_MSG=       "@comment "<br/>
.#endif # defined(WITH_SEM)</p>
<p>and line 186:<br/>
#.if ${OSVERSION} >= 701106<br/>
</code></p>
<p>Next up, install Python:<br/>
<code>#make clean install</code></p>
<h3>Step 3: Test with simple app</h3>
<p>With Python installed, let&#8217;s see if it actually works. To accomplish that, we will create a simple app.</p>
<p>Create a new file: test_mp.py<br/>
<code><br/>
import multiprocessing as mp<br/>
p = mp.Pool(16)<br/>
import time<br/>
p.apply_async(time.sleep, 1)<br/>
</code></p>
<p>Let&#8217;s run it:<br/>
<code>#python test_mp.py</code></p>
<p>If the application silently exits within a second or so, you&#8217;re good to go. If not, please re-visit Step 1 and Step 2 to make sure you configured everything properly.</p>
<h3>Step 4: Install Celery</h3>
<p>This is probably the easiest step:<br/>
<code>#easy_install celery</code></p>
<p>That&#8217;s it! Good luck!</p>
<p><strong>Credits</strong>: Thanks asksol and raysl over at #celery.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.playingwithwire.com/2009/10/how-to-get-celeryd-to-work-on-freebsd/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New stuff at Email Service Guide</title>
		<link>http://www.playingwithwire.com/2009/09/new-stuff-at-email-service-guide/</link>
		<comments>http://www.playingwithwire.com/2009/09/new-stuff-at-email-service-guide/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 02:21:47 +0000</pubDate>
		<dc:creator>Alexander Ljungberg</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.playingwithwire.com/?p=689</guid>
		<description><![CDATA[We have recently introduced news and articles over at Email Service Guide to complement the guide part itself. The theme is of course email in the form of reviews, analysis and how to&#8217;s. Here&#8217;re the current highlights:

Review of LifeIO &#8211; A first look at this email and social networking aggregation site.
Taking Thunderbird 3 Beta 4 [...]]]></description>
			<content:encoded><![CDATA[<p>We have recently introduced <a href="http://www.emailserviceguide.com/articles/" >news and articles</a> over at Email Service Guide to complement the <a href="http://www.emailserviceguide.com/" >guide</a> part itself. The theme is of course email in the form of reviews, analysis and how to&#8217;s. Here&#8217;re the current highlights:</p>
<ul>
<li><a href="http://www.emailserviceguide.com/2009/09/review-of-lifeio/" >Review of LifeIO</a> &#8211; A first look at this email and social networking aggregation site.</li>
<li><a href="http://www.emailserviceguide.com/2009/09/taking-thunderbird-3-beta-4-for-mac-os-x-out-for-a-spin/" >Taking Thunderbird 3 Beta 4 for Mac OS X out for a spin</a> &#8211; A thorough look at the latest version of Mozilla&#8217;s Thunderbird.</li>
<li><a href="http://www.emailserviceguide.com/2009/09/cant-access-your-hotmail-with-outlook-outlook-express-or-entourage/" >Can’t Access Your Hotmail with Outlook, Outlook Express or Entourage?</a> &#8211; A quick tip on how to get back on track after Microsoft&#8217;s recent service changes.</li>
<li><a href="http://www.emailserviceguide.com/2009/09/bank-emails-wrong-person-sues/" >Bank emails wrong person, sues</a> &#8211; When just receiving an email is enough to get you into trouble.</li>
</ul>
<p>We&#8217;ll definitely be adding to this list quickly in the coming week so make sure to check back often if you&#8217;re interested in the email space.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.playingwithwire.com/2009/09/new-stuff-at-email-service-guide/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to recover from when Spaces/Expose stop working</title>
		<link>http://www.playingwithwire.com/2009/09/how-to-recover-from-a-spacesexpose-stop-working/</link>
		<comments>http://www.playingwithwire.com/2009/09/how-to-recover-from-a-spacesexpose-stop-working/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 20:55:58 +0000</pubDate>
		<dc:creator>Viktor Petersson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.playingwithwire.com/?p=679</guid>
		<description><![CDATA[Did Expose/Spaces stop working all of the sudden? This happens to me almost every day. Most of this time this is when I resume my MacBook Pro at home. I assume this has something to do with the fact that I have an external monitor connected at the office, and that somehow messes with Expose/Spaces. [...]]]></description>
			<content:encoded><![CDATA[<p>Did Expose/Spaces stop working all of the sudden? This happens to me almost every day. Most of this time this is when I resume my MacBook Pro at home. I assume this has something to do with the fact that I have an external monitor connected at the office, and that somehow messes with Expose/Spaces. Luckily there is a quite simple solution.</p>
<ul>
<li>Fire up Activity Monitor (/Applications/Utilities/Activity Monitor)</li>
<li>Filter the results for &#8216;Dock&#8217;</li>
<li>Click on &#8216;Dock&#8217; and &#8216;Quit Process&#8217;</li>
</ul>
<div id="attachment_682"  class="wp-caption alignnone"  style="width: 600px" ><img src="http://www.playingwithwire.com/wp-content/uploads/2009/09/Acticity-Monitor-590x457.png"  alt="Filter for &#039;Dock&#039; in Activity Monitor"  title="Activity Monitor"  width="590"  height="457"  class="size-large wp-image-682" /><p class="wp-caption-text" >Filter for 'Dock' in Activity Monitor</p></div>
<p>Unfortunately this will collect all windows into a single &#8217;space,&#8217; but you will be able to once again use Expose/Spaces. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.playingwithwire.com/2009/09/how-to-recover-from-a-spacesexpose-stop-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building the perfect networked media center with Plex and iLife.</title>
		<link>http://www.playingwithwire.com/2009/09/building-the-perfect-networked-media-center-with-plex-and-ilife/</link>
		<comments>http://www.playingwithwire.com/2009/09/building-the-perfect-networked-media-center-with-plex-and-ilife/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 16:39:45 +0000</pubDate>
		<dc:creator>Viktor Petersson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[iLife]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[media center]]></category>
		<category><![CDATA[plex]]></category>

		<guid isPermaLink="false">http://www.playingwithwire.com/?p=624</guid>
		<description><![CDATA[I know, I know, this topic has been covered a billion times before. Everyone has got their own idea of what the perfect multimedia system is. But hear me out, I think you&#8217;ll like what I have to say. Since you&#8217;re probably in the process of upgrading to Snow Leopard, perhaps now is a good [...]]]></description>
			<content:encoded><![CDATA[<p>I know, I know, this topic has been covered a billion times before. Everyone has got their own idea of what the perfect multimedia system is. But hear me out, I think you&#8217;ll like what I have to say. Since you&#8217;re probably in the process of upgrading to Snow Leopard, perhaps now is a good time to reorganize your media.</p>
<p>When we&#8217;re done you will have the following:</p>
<ul>
<li>Central iPhoto and iMovie libraries</li>
<li>Your central iPhoto library accessible in Front Row</li>
<li>All your music, movies and TV shows, organized and accessible directly from your remote control</li>
</ul>
<p><center><div id="attachment_675"  class="wp-caption alignnone"  style="width: 600px" ><img src="http://www.playingwithwire.com/wp-content/uploads/2009/09/main-590x356.png"  alt="Have all your media accessible with your remote control."  title="Plex main screen"  width="590"  height="356"  class="size-large wp-image-675" /><p class="wp-caption-text" >Have all your media accessible with your remote control.</p></div></center></p>
<h3>The requirements</h3>
<p>Like all solutions, there are some requirements. However, I would consider these requirements pretty basic. For most gadgeteers out there, these are things you already got in your possession:</p>
<ul>
<li>A Network Attached Storage (eg. Drobo, ReadyNAS, or an old Linux box). Preferably something with some redundancy (RAID1, RAID5, RAID-Z etc.)</li>
<li>Two or more Macs with Leopard or later (perhaps a Mac Mini to the TV/Projector and an iMac as a desktop)</li>
<li>A lot of media (picture, music, movies, TV shows etc).</li>
<p>Sounds too good to be true? Well, it isn&#8217;t. Best of all, you won&#8217;t have to spend a single dime on software. So what&#8217;s the secret? Good &#8216;ol UNIX symlinks and a software called Plex. That&#8217;s it.</p>
<h3>Configuring the NAS</h3>
<p>Since I have no idea what kind of NAS you&#8217;ve got (and it doesn&#8217;t really matter), all I&#8217;ll say is that I recommend that you create the following shares:</p>
<ul>
<li>&#8216;pictures&#8217; &#8211; for the iPhoto library</li>
<li>&#8216;videos&#8217; &#8211; for the iMovie library</li>
<li>&#8216;movies&#8217; &#8211; for all your movies</li>
<li>&#8216;tvshows&#8217; &#8211; for all your TV shows</li>
<li>&#8216;music&#8217; &#8211; for all your music</li>
</ul>
<p>If your NAS supports AFP, that&#8217;s great, but SMB will do just fine too.</p>
</ul>
<h3>Copying the media to the NAS</h3>
<p>While I&#8217;m not going to cover how you copy your movies, TV shows and music (as I assume you know that), I will however cover how you copy your iPhoto and iMovie libraries. </p>
<p>Start by connecting to your network shares &#8216;pictures&#8217; and &#8216;videos&#8217; (or equivalent). You can do that either by browsing to them in Finder, or use Finder&#8217;s &#8216;Connect to server&#8217; feature (available under &#8216;Go&#8217; -> &#8216;Connect to server&#8217;).</p>
<p>If you&#8217;re a power user, skip the next four paragraphs.</p>
<p>Let&#8217;s start with the iPhoto library. Open up your home directory and go into the &#8216;Pictures&#8217; folder. Now copy the &#8216;iPhoto Library&#8217; folder over to the share &#8216;pictures&#8217;. Depending on the size of your archive and the speed of your network, this can take a while. Once done, rename the folder &#8216;iPhoto Library&#8217; on your local computer to &#8216;iPhoto Library.old&#8217; or something similar. </p>
<p>Now, this is the important part. Go over to the &#8216;picture&#8217; share on the NAS and drag the iPhoto Library back to the local folder <strong>while pressing Command and Option</strong>. An arrow will show up under the icon you are dragging. Release the mouse button. If the files start to copy, you did not successfully press Command and Option. </p>
<p>We&#8217;re now done with iPhoto. You should now be able to fire up iPhoto and it will access the photos directly from the NAS. To do the same for another computer, all you need to do is to rename the local &#8216;iPhoto Library&#8217; into something else, and create a link as we just did above.</p>
<p>Next up is the iMovie library (if you use it). Start by opening up the two folders (&#8216;videos&#8217; on the NAS and Movies in your home directory). Now copy the &#8216;iMovie Projects&#8217; from the local Movies folder onto &#8216;videos&#8217; on the NAS. Next, rename &#8216;iMovie Projects&#8217; on the local machine to &#8216;iMovie Projects.old&#8217; and create a link to the NAS (by dragging it from the &#8216;videos&#8217; folder to the local &#8216;Movies&#8217; folder with Command and Option held down). Repeat the same thing with the folder &#8216;iMovie Events&#8217;.</p>
<p>For the power-users out there, there is an easier way to do all this. Simply fire up the Terminal and run the following commands:<br/>
<code>$ rsync -aP "~/Pictures/iPhoto Library" /Volumes/pictures/<br/>
$ mv "~/Pictures/iPhoto Library" "~/Pictures/iPhoto Library.old"<br/>
$ ln -s "/Volumes/pictures/iPhoto Library" ~/Pictures/<br/>
$ rsync -aP ~/Movies/iMovie* /Volumes/videos/<br/>
$ mv "~/Movies/iMovie Events" "~/Movies/iMovie Events.old"<br/>
$ mv "~/Movies/iMovie Projects" "~/Movies/iMovie Projects.old"<br/>
$ ln -s "/Volumes/videos/iMovie Events" ~/Movies/<br/>
$ ln -s "/Volumes/videos/iMovie Projects" ~/Movies/</code></p>
<p>For additional computers, just run the same commands, but leave out the rsync.
</p>
<h3>Automounting the shares</h3>
<p>While you would imagine this to be very easy on a UNIX based system, it&#8217;s surprisingly difficult on Mac OS. Perhaps there is a better way, but this is the most straight-forward solution I&#8217;ve found. If you know of a better way of doing this, please let me know!</p>
<p><div id="attachment_636"  class="wp-caption alignright"     style="width: 310pxwidth: 310pxfloat: right; padding: 4px; margin: 0 0 2px 7px; display: inline;float: right; padding: 4px; margin: 0 0 2px 7px; display: inline;"><img src="http://www.playingwithwire.com/wp-content/uploads/2009/09/browse-300x174.png"  alt="Finder -&gt; &#039;Go&#039; -&gt; &#039;Connect to Server&#039;"  title="Browse"  width="300"  height="174"  class="size-medium wp-image-636" /><p class="wp-caption-text" >Finder -> 'Go' -> 'Connect to Server'</p></div><br/>
From Finder, navigate to the &#8216;Go&#8217; menu and select &#8216;Connect to Server&#8217;. Once it opens up, you need to enter the address to your NAS (complete with the names of the share). That is, if you NAS is named FOO, enter &#8217;smb://foo/pictures&#8217; and press the plus icon. Repeat this for the share &#8216;videos&#8217;. </p>
<p>Next we need to open up the folder &#8216;Library/Favorites&#8217; in your home directory. Within this folder, you will see the two shares you just created in the step above. Leave this Finder window open while you click on &#8216;Apple&#8217; -> &#8216;System Preferences&#8217; -> &#8216;Accounts.&#8217; Then select &#8216;Login Items.&#8217; Now drag the two shares from Favorites into the list of Login Items. <div id="attachment_641"  class="wp-caption alignright"     style="width: 310pxwidth: 310pxfloat: right; padding: 4px; margin: 0 0 2px 7px; display: inline;float: right; padding: 4px; margin: 0 0 2px 7px; display: inline;"><img src="http://www.playingwithwire.com/wp-content/uploads/2009/09/login_items-300x245.png"  alt="The Items list after dragging in the two shares."  title="Login items"  width="300"  height="245"  class="size-medium wp-image-641" /><p class="wp-caption-text" >The Items list after dragging in the two shares.</p></div> The two shares will now automatically mount upon login for the current user. As noted above, this is not a great way to automatically mount shares, but as far as I know, this is the most convenient way. Keep in mind that, if you do not automatically mount the shares, you will not be able to access your iPhoto/iMovie library until you&#8217;ve manually mounted the shares.</p>
<h3>Moving on to the other media</h3>
<p>With iPhoto and iMovie moved to the central storage, it&#8217;s time to move on to the other media. Luckily this is much easier.</p>
<p>The cornerstone in managing all the remaining media is a software called <a href="http://www.plexapp.com/"" >Plex</a>. If you never heard of it, Plex is basically a Mac OS version of the popular media center solution XBMC for Xbox. In its look and feel, Plex is quite similar to Front Row, but it offers a plethora of features that is missing in Front Row. Not only are you able to watch your Movies and TV Shows, you will also be able to install apps within Plex  which allow you to stream media directly from sources such as Hulu and BBC.</p>
<p><img hspace="7"  vspace="2"  align="right"  src="http://www.playingwithwire.com/wp-content/uploads/2009/09/content-300x181.png"  alt="Plex Content"  title="Plex Content"  width="300"  height="181"  class="alignright size-medium wp-image-646"   style="float: right; padding: 4px; margin: 0 0 2px 7px; display: inline;"/>Assuming you&#8217;ve already downloaded and installed Plex, just launch it and head to &#8216;Watch your Videos&#8217; -> &#8216;Add Source&#8217; -> &#8216;Browse&#8217; -> &#8216;Windows Network (SMB)&#8217; -> Locate your NAS and select the share &#8216;movies&#8217; and press &#8216;OK.&#8217; Now go to &#8216;Set Content,&#8217; select &#8216;Movies,&#8217; &#8216;imdb,&#8217; and then press &#8216;Select&#8217;. Plex will now scan through the folder and all its sub-folders and run it against imdb to try to figure out what it is. If the movies are properly named, Plex will fetch the description of the movie, the cover as well as the full name and year. It will then take all of that data and present them neatly organized under &#8216;Watch your Movies&#8217;</p>
<p>Now repeat the same thing for &#8216;tvshows&#8217; and &#8216;music,&#8217; but select the content accordingly. </p>
<p>The whole process is pretty straight forward, but since the <a href="http://wiki.plexapp.com" >Plex Wiki</a> already does a great job of describing this process in greater detail, I will simply recommend that you read more about that <a href="http://wiki.plexapp.com/index.php/Getting_Started#Using_Plex_Library_Mode" >there</a>.</p>
<p>There you go, that&#8217;s it really. While there is a whole lot of things that can be added to this article, such as iPhoto integration etc., I&#8217;ve intentionally left that out to keep the article a bit briefer. You might also wonder why I didn&#8217;t move the iTunes library over to the NAS. The reason for this is that I think that it might get corrupted if multiple users access it simultaneously. That&#8217;s why I instead suggested that you simply move the music-files itself to the network, and play them directly in Plex.</p>
<p>One obvious expansion of this setup is to include Plex Media Server. Perhaps I will cover that in a &#8216;Part 2&#8242; </p>
]]></content:encoded>
			<wfw:commentRss>http://www.playingwithwire.com/2009/09/building-the-perfect-networked-media-center-with-plex-and-ilife/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>No more default prefix in YippieMove</title>
		<link>http://www.playingwithwire.com/2009/08/no-more-default-prefix-in-yippiemove/</link>
		<comments>http://www.playingwithwire.com/2009/08/no-more-default-prefix-in-yippiemove/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 22:33:40 +0000</pubDate>
		<dc:creator>Viktor Petersson</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[YippieMove]]></category>

		<guid isPermaLink="false">http://www.playingwithwire.com/?p=615</guid>
		<description><![CDATA[Let me start by saying how much we appreciate the feedback from you guys. Your feedback is an important element in the way we drive the development of YippieMove.
Thanks to you guys&#8217; feedback, we&#8217;ve now decided to remove the default prefix in &#8216;Step 3&#8242;. That is, in the past, when you&#8217;ve made a transfer with [...]]]></description>
			<content:encoded><![CDATA[<p>Let me start by saying how much we appreciate the feedback from you guys. Your feedback is an important element in the way we drive the development of <a href="http://www.yippiemove.com" >YippieMove</a>.</p>
<p><img hspace="7"  vspace="2"  align="right"  src="http://www.playingwithwire.com/wp-content/uploads/2009/08/no_prefix-300x230.png"  alt="No more default prefix in YippieMove"  title="No more default prefix in YippieMove"  width="300"  height="230"  class="alignright size-medium wp-image-616"   style="float: right; padding: 4px; margin: 0 0 2px 7px; display: inline;"/>Thanks to you guys&#8217; feedback, we&#8217;ve now decided to remove the default prefix in &#8216;Step 3&#8242;. That is, in the past, when you&#8217;ve made a transfer with YippieMove from, let&#8217;s say, Yahoo Mail, all the transferred folders would by default end up under a sub-folder on the destination side named &#8216;yahoo&#8217;. However, as many of you guys pointed out, that is not a preference. Instead, a you would rather see a seamless migration (ie. the old Inbox would end up in the destination Inbox).</p>
<p>For those of you who do prefer to still utilize our &#8216;prefix&#8217; feature, that is still possible. Simply click on the &#8216;Bulk action&#8217; text below the folders and select &#8216;Use a name pattern&#8217;. A window will now pop up where you can enter your prefix (eg. some-prefix/$SOURCE_NAME$).</p>
<p>Again, let me reiterate how much we value your feedback. If there&#8217;s anything you like or do not like about <a href="http://www.yippiemove.com" >YippieMove</a>, please let us know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.playingwithwire.com/2009/08/no-more-default-prefix-in-yippiemove/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing EmailServiceGuide.com</title>
		<link>http://www.playingwithwire.com/2009/08/introducing-emailserviceguide-com/</link>
		<comments>http://www.playingwithwire.com/2009/08/introducing-emailserviceguide-com/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 12:52:28 +0000</pubDate>
		<dc:creator>Viktor Petersson</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://www.playingwithwire.com/?p=604</guid>
		<description><![CDATA[When we introduced YippieMove about a year ago, we made it easer then ever before for users to move their email between different email providers. That did however assume that you already knew where you wanted to move to. The email hosting space is a jungle with a ton of players offering similar products pitched [...]]]></description>
			<content:encoded><![CDATA[<p>When we introduced <a href="http://www.yippiemove.com" >YippieMove</a> about a year ago, we made it easer then ever before for <div id="attachment_613"  class="wp-caption alignright"     style="width: 310pxwidth: 310pxfloat: right; padding: 4px; margin: 0 0 2px 7px; display: inline;float: right; padding: 4px; margin: 0 0 2px 7px; display: inline;"><img src="http://www.playingwithwire.com/wp-content/uploads/2009/08/frontpage-300x230.png"  alt="ESG Front Page"  title="ESG Front Page"  width="300"  height="230"  class="size-medium wp-image-613" /><p class="wp-caption-text" >ESG Front Page</p></div>users to move their email between different email providers. That did however assume that you already knew where you wanted to move to. The email hosting space is a jungle with a ton of players offering similar products pitched with confusing marketing lingo and vague payment terms. So how can can you possibly figure which is the best email provider for your exact needs?</p>
<p>You could spend a few days doing research and browse through various pay-for-the-top-spot top-lists. Another, and much more efficient option, is to check out brand new service named <a href="http://www.emailserviceguide.com" >Email Service Guide</a>. With this tool you can find the best possible provider based on your criterions. With Email Service Guide, you are able to answer questions like:</p>
<ul>
<li>Who is the cheapest provider that supports IMAP and gives me 8GB in storage per user?</li>
<li>What providers offers Exchange hosting with 99.999% or more Service License Agreement (SLA)</li>
<li>Where can I find email hosting powered by renewable energy?</li>
</ul>
<p>At this point, our database features over 100 different email plans from all of the leading email providers on the market.<a href="http://www.emailserviceguide.com" > Email Service Guide</a> enables you to not only find the best provider according to your needs, but it also allows you to compare the matches objectively side-by-side.</p>
<p>Remember that, once you have found the best email provider for you needs, don&#8217;t forget to use <a href="http://www.yippiemove.com" >YippieMove</a> to move your old emails with you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.playingwithwire.com/2009/08/introducing-emailserviceguide-com/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FirstClass and an annoying IMAP bug</title>
		<link>http://www.playingwithwire.com/2009/07/firstclass-and-an-annoying-imap-bug/</link>
		<comments>http://www.playingwithwire.com/2009/07/firstclass-and-an-annoying-imap-bug/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 10:29:09 +0000</pubDate>
		<dc:creator>Viktor Petersson</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[FirstClass]]></category>
		<category><![CDATA[IMAP]]></category>

		<guid isPermaLink="false">http://www.playingwithwire.com/?p=593</guid>
		<description><![CDATA[A few months back we were working with a potential client to do a rather large migration from FirstClass to Google Apps. However, during our pilot we ran into a bug in IMAP. Being a good citizen, we reached out to Open Text Corporation (the company behind First Class) to report the bug. We described [...]]]></description>
			<content:encoded><![CDATA[<p>A few months back we were working with a potential client to do a rather large migration from <a href="http://www.firstclass.com/" >FirstClass</a> to Google Apps. However, during our pilot we ran into a bug in IMAP. Being a good citizen, we reached out to Open Text Corporation (the company behind First Class) to report the bug. We described the bug and told them how to replicate the bug.</p>
<p>Since we were unable to take on the job due to the bug, we didn&#8217;t pay much attention to First Class and assumed that they would fix the bug in the next release. </p>
<p>Last week, we took the time to install a local copy of First Class to see if they had resolved the problem. Unfortunately the bug still remained in the latest version (9.1). Because of that, we thought it might be appropriate to write a brief blog post explaining the bug.</p>
<h3>About the bug</h3>
<p>The bug is pretty straight forward. It occurs when a message has a subject line that includes one or more quotation marks (&#8220;). The problem is not that a quotation mark is an illegal character according to the RFC&#8217;s, but rather that FirstClass fails to escape them ( &#8216; &#8221; &#8216; should be &#8216; \&#8221; &#8216;). Because of this, when we issue the FETCH command, it&#8217;s impossible to tell where the different different segments of the respond ends. </p>
<p>To put this in a real example, here&#8217;s an example of the FETCH response First Class is sending:</p>
<blockquote><p>
212 FETCH (ENVELOPE (&#8220;Fri, 30 May 2008 15:11:42 GMT&#8221; &#8220;Re: Fwd: lorem ipsum &#8220;foobar&#8221;" ((&#8220;Replace Replace&#8221; NIL &#8220;replacel&#8221; &#8220;replace.com&#8221;)) ((&#8220;Replace Replace&#8221; NIL &#8220;replacel&#8221; &#8220;replace.com&#8221;)) ((&#8220;Replace Replace&#8221; NIL &#8220;replacel&#8221; &#8220;replace.com&#8221;)) ((&#8220;Repl Repl&#8221; NIL &#8220;repla&#8221; &#8220;replace.com&#8221;)) ((&#8220;Rep Rerpla&#8221; NIL &#8220;replace&#8221; &#8220;replace.com&#8221;)) NIL NIL &#8220;<fc .00757e2a04deb2cc3b9aca00d86e3157@replacere.com="" >&#8220;) RFC822.SIZE 5120 INTERNALDATE &#8220;30-May-2008 11:11:42 -0400&#8243; FLAGS (\Seen) UID 89423624)<br/>
</fc></p></blockquote>
<p>If this was properly formatted, the response should read:</p>
<blockquote><p>
212 FETCH (ENVELOPE (&#8220;Fri, 30 May 2008 15:11:42 GMT&#8221; &#8220;Re: Fwd: lorem ipsum \&#8221;foobar\&#8221;" ((&#8220;Replace Replace&#8221; NIL &#8220;replacel&#8221; &#8220;replace.com&#8221;)) ((&#8220;Replace Replace&#8221; NIL &#8220;replacel&#8221; &#8220;replace.com&#8221;)) ((&#8220;Replace Replace&#8221; NIL &#8220;replacel&#8221; &#8220;replace.com&#8221;)) ((&#8220;Repl Repl&#8221; NIL &#8220;repla&#8221; &#8220;replace.com&#8221;)) ((&#8220;Rep Rerpla&#8221; NIL &#8220;replace&#8221; &#8220;replace.com&#8221;)) NIL NIL &#8220;<fc .00757e2a04deb2cc3b9aca00d86e3157@replacere.com="" >&#8220;) RFC822.SIZE 5120 INTERNALDATE &#8220;30-May-2008 11:11:42 -0400&#8243; FLAGS (\Seen) UID 89423624)<br/>
</fc></p></blockquote>
<p>While you might not consider this a very serious but, it really is. FETCH is a very important feature in IMAP and more emails than you&#8217;d imagine includes a quotation mark in the subject line. Let&#8217;s just hope Open Text Corporation will have this fixed in the next release.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.playingwithwire.com/2009/07/firstclass-and-an-annoying-imap-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s in Store in the Future of E-mail</title>
		<link>http://www.playingwithwire.com/2009/07/whats-in-store-in-the-future-of-e-mail/</link>
		<comments>http://www.playingwithwire.com/2009/07/whats-in-store-in-the-future-of-e-mail/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 18:36:20 +0000</pubDate>
		<dc:creator>Lore Dionne Candelaria</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.playingwithwire.com/?p=509</guid>
		<description><![CDATA[This is the second article in a series about email by our guest writer Lore Dionne Candelaria.
After looking back on the humble beginnings of the communication medium that changed the way we see the world today in the article &#8216;45 Years of Email – From Military Tool to Mass Market Communication,&#8217; let us try to [...]]]></description>
			<content:encoded><![CDATA[<p><em>This is the second article in a series about email by our guest writer Lore Dionne Candelaria.</em></p>
<p>After looking back on the humble beginnings of the communication medium that changed the way we see the world today in the article &#8216;<a href="http://www.playingwithwire.com/2009/06/45-years-of-email-from-military-tool-to-mass-market-communication/" >45 Years of Email – From Military Tool to Mass Market Communication</a>,&#8217; let us try to catch a glimpse of where it is heading at.</p>
<p>Authoritative and comprehensive, yet easy to use, portable and instant—these are just some of the reasons why electronic mailing has been a runaway success for the past years. With the unwavering support of its users and subscribers, the use of e-mail has been a web for communication especially for people trying to bridge the gap of distant locations. Thus, the cycle of email seems never ending and innovative as it grows and grows each year settling new and various controls on the world wide web.</p>
<p>As the future of technology per se soars to greater heights and so is the future of electronic mailing in particular. Adding to the fact that latest trends like instant messaging and video conferencing further improved the ways on how people from all walks of life reach out to the world, such widespread penetration can be seen on the millions of people being hooked in using email as a means to connect to people to whatever technological and communicative endeavors they face: whether it be for personal or for business use. Also, a variety of communication choices have emerged over the past few years and each of the options have their own special appeal—this is made possible because of the discovery and further enhancements of electronic mailing.</p>
<p>Just as electronic mailing revolutionized how the world accessed information and communicated through the years, the ongoing development in speed, bandwidth, and functionality will surely continue to cause fundamental changes on how our world will operate for decades to come. So what’s actually cooking now in the world of innovations? When no one could really tell, but we can always speculate in the light of the trends that we observe today. For one, mobility will be the name of the game. We have already seen wireless networking and we are going to see a lot more broadband roaming in the future. This trend has actually begun! Back in January, Novatell Wireless filled a patent or a technology that allows users to flip back and forth between wireless LAN and mobile phone networks, even at high speed.<div id="attachment_583"  class="wp-caption alignright"     style="width: 160pxwidth: 160pxfloat: right; padding: 4px; margin: 0 0 2px 7px; display: inline;float: right; padding: 4px; margin: 0 0 2px 7px; display: inline;"><img src="http://www.playingwithwire.com/wp-content/uploads/2009/07/149486_4647-150x150.jpg"  alt="Rapid-switching technology"  title="Porsche"  width="150"  height="150"  class="size-thumbnail wp-image-583" /><p class="wp-caption-text" >Rapid-switching technology</p></div>  A hybrid 3G cellular and WLAN device built to this spec should be able to maintain a broadband connection on the speedier of the two networks as you roam from zone to zone. In mid July, NEC&#8217;s Ubiquitous Platform Development Division announced a similar technology, which they tested, PT Barnum-style, in the back of a Porsche at a racetrack. They had tested a WLAN-only rapid-switching technology at 330 kilometers per hour, and in May of this year, they showed hybrid technology that jumps between cellular and wireless LAN connections at 200 kilometers per hour. These figures might be overwhelming. But the saga has just began. We expect more of these advances in the years, or maybe even months to come. The implications for this technology are pretty significant. A router that can switch from 6Mbps wireless base stations in an urban setting to slower but more ubiquitous 3G cellular Internet connections as they pass out of WLAN range is pretty thrilling. At speeds like these, high-bandwidth applications such as VoIP telephony and streaming media are quite possible. Despite NEC&#8217;s exciting demonstration, the company won&#8217;t commit to a time frame for product development. The closest it&#8217;ll come is to say &#8220;not for a few years.&#8221; </p>
<p>With these developments, distance was not the only thing man was able to conquer, even time. Internet and email can be accessed real time, even when traveling—not to mention the impressive speed. This is yet another feat for mankind. The influence of e-mail globalism will generally become the main reason for the stay of e-mail as it continually distributes globally the information and knowledge for the people at lower costs that lift the need of the community for accessible information. Another reason why it will continue to be a popular communication option is because of the emergence of communities that continually unite to provide information networks and different relationships that will be further established in the cyberspace may this be for political organizations or social networking. This will provide increasingly wide choices to individuals who wish to participate in local communities that share their ideals, thoughts and interests. Electronic mailing integration with an increasing number of other technologies is as natural as a musician&#8217;s experimentation with notes. These will cause email to become increasingly integrated with phones, televisions, home appliances, portable digital gadgets, and a range of other small hardware and software devices. Hence, e-mail is one core component of an emerging unified messaging solution set as evidenced by convergence of corporate email and instant messaging.</p>
<p>Will email still matter in the coming years? Absolutely! The unprecedented and rapid growth and impact of email with its growing and improving features will constantly evolve and garner significant respects in the future. However there may be some threat to its future use. A concrete example of this is the Google Wave—the freshest and the coolest communication and collaboration tool today initiated by Google. It is not out yet, but it is the most talked about innovation in the world of information technology.<div id="attachment_588"  class="wp-caption alignright"     style="width: 310pxwidth: 310pxfloat: right; padding: 4px; margin: 0 0 2px 7px; display: inline;float: right; padding: 4px; margin: 0 0 2px 7px; display: inline;"><img src="http://www.playingwithwire.com/wp-content/uploads/2009/07/google_wave_01-300x195.jpg"  alt="Google Wave demo"  title="Google Wave"  width="300"  height="195"  class="size-medium wp-image-588" /><p class="wp-caption-text" >Google Wave demo</p></div> With the increasing and anticipative hype surrounding Google Wave, one question remains, will Google Wave ever change the way we see email today? Some says that Google Wave is a great platform. Though it looks like it actually addressed the current problems or loopholes of emailing, is it actually capable of ‘replacing’ electronic mailing? Let me enumerate the feats: One of the coolest features — real-time. When you thought that Instant Messaging is quick enough, think again. With Wave, you could see each character as it is typed. You wouldn’t have to wait. And this does not only apply to chatting, anything concerning the wave is done in real-time. Take for example Google Docs. Wave takes Google Docs a notch higher. It allows several participants to edit a document simultaneously. And speaking of editing, if you are wondering if there is a better way to upload files and photos, with Google Wave, all you have to do is to drag and drop. This drag and drop feature saves you both time and energy. It also is open source, meaning anyone can look at the actual code for Google Wave in order to contribute to it or build an application based on it. Besides the technical advantages for the community, this shows that Google might be more interested in pushing web innovation forward than simply making a dollar off of their web dominance. It is also embeddable. You can simply embed it on any website or blog. Google Wave also transcends the language barrier that exists between and among nations. It has a unique feature named Rosy. Rosy is a robot created to translate your conversations. Just add Rosy to the wave and you suddenly speak any language you’d like.</p>
<p>With Innovations such as Google Wave, which by the way is expected to be released later this year, it is interesting to see how people will embrace the new features that Google Wave is promising. For sure, it will serve as a global and worldwide virtual and technological resource that will cater to the information and communication needs of the humankind. Furthermore, e-mail applications will not only become better and better to reflect the natural world, they will also have the fluidity, flexibility, and speed of the digital world. E-mail architecture has definitely just begun as the new horizons set to its future needs are being driven by the constant need for humans to interact, to communicate and to connect to every part of the universe.<br/>
It’s unquestionable then that surely we will foresee the growing success of email as the primary hub for communication, media and networking in the future. Indeed electronic mailing catapulted the unsettling success of information technology with its’ generatively and innovative character. It has gained a respective mainstream acceptance from the people and this acceptance will be the bread and butter of its’ future and will determine its life span as the provider of secure methods of communication, especially now that such thing as Google Wave is coming out. We could only gauge its success once it is fully launched</p>
]]></content:encoded>
			<wfw:commentRss>http://www.playingwithwire.com/2009/07/whats-in-store-in-the-future-of-e-mail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 1.100 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-19 15:58:45 -->
