<?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>roobasoft blog &#187; Commentary</title>
	<atom:link href="http://roobasoft.com/blog/category/commentary/feed/" rel="self" type="application/rss+xml" />
	<link>http://roobasoft.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 05 Aug 2010 13:35:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Now running on EC2</title>
		<link>http://roobasoft.com/blog/2008/10/11/now-running-on-ec2/</link>
		<comments>http://roobasoft.com/blog/2008/10/11/now-running-on-ec2/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 05:06:08 +0000</pubDate>
		<dc:creator>BrianC</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[roobasoft]]></category>

		<guid isPermaLink="false">http://roobasoft.com/blog/2008/10/11/now-running-on-ec2/</guid>
		<description><![CDATA[Probably not very exciting to many, but I just finished moving roobasoft.com and 7 other domains from 2 virtual private servers and 1 dedicated server over to 1 EC2 instance. The move was surprisingly painless.

Why did I do all this? The main reason was because the one dedicated server was real cheap and scared me. [...]]]></description>
			<content:encoded><![CDATA[<p>Probably not very exciting to many, but I just finished moving roobasoft.com and 7 other domains from 2 virtual private servers and 1 dedicated server over to 1 <a href="http://aws.amazon.com/ec2">EC2</a> instance. The move was surprisingly painless.</p>

<p>Why did I do all this? The main reason was because the one dedicated server was real cheap and scared me. It was a single disk setup with zero redundancy and only nightly backups of critical data that I had to setup manually. I had gotten away with running in that setup for about a year and it was really only a matter of time before that machine failed me. If that hard drive or any part of the machine failed I&#8217;d have to rebuild the server from scratch and manually restore the critical data.</p>

<p>After moving to EC2 I have a custom image that I boot with all my configuration setup and an elastic block storage volume with all the database and other changing data stored on it. The volume is easy to take snapshots of and I feel pretty good about the whole setup.</p>

<p>The only gotcha I hit was when I tried to run two SSL virtual hosts off the same IP. Turns out <a href="http://httpd.apache.org/docs/2.0/ssl/ssl_faq.html#vhosts2">you can&#8217;t do that</a>. The recommended solution is to use separate IP addresses to differentiate the hosts. However, EC2 currently only allows you to bind one public IP per instance. I went with the solution to keep one vhost on the standard https port, 443, and the other on a non-standard port. Not pretty, but it&#8217;s working for now.</p>

<p>Some light details about the setup:</p>

<ul>
<li>Apache virtual hosts are serving the 8 domains</li>
<li><a href="http://modrails.com">mod&#95;rails</a> is taking care of the 4 domains that are rails applications. So far I&#8217;m very pleased with mod&#95;rails &#8211; add a new vhost and bam, it just works. No monkeying with mongrel_cluster yaml files.</li>
<li>Sending of mail is being taken care of by <a href="http://authsmtp.com">authsmtp.com</a>. This is new for me but so far I&#8217;m happy. I always hate setting up sending or anything related to email on a server. Was happy to outsource this.</li>
<li>DNS is now being hosted by <a href="https://www.dnsmadeeasy.com/">https://www.dnsmadeeasy.com/</a>. Not a pretty app, but it does the job at a decent price and it&#8217;s something I&#8217;ll rarely have to tweak.</li>
</ul>

<p>Thanks to <a href="http://daikini.com">Jonathan</a> for helping with the move and recommending the DNS host. It was nice to know someone who also did a similar migration in case things blew up <img src='http://roobasoft.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (he recently moved <a href="http://roundhaus.com">Round Haus</a> to EC2).</p>

<p>In summary I&#8217;m really happy with the new setup. We&#8217;ll see how long I stay happy.</p>

<p><small>note: I was fairly light on the details of the move (post was already long enough). If anyones interested, feel free to email me or comment here.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://roobasoft.com/blog/2008/10/11/now-running-on-ec2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Default Application Icon as NSImage</title>
		<link>http://roobasoft.com/blog/2006/05/31/getting-default-application-icon-as-nsimage/</link>
		<comments>http://roobasoft.com/blog/2006/05/31/getting-default-application-icon-as-nsimage/#comments</comments>
		<pubDate>Wed, 31 May 2006 05:15:43 +0000</pubDate>
		<dc:creator>BrianC</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Commentary]]></category>

		<guid isPermaLink="false">http://roobasoft.com/blog/2006/05/31/getting-default-application-icon-as-nsimage/</guid>
		<description><![CDATA[To get the icon that represents an application with no custom icon (default application icon) just call:
[NSImage imageNamed:@â€œNSDefaultApplicationIconâ€];

]]></description>
			<content:encoded><![CDATA[<p>To get the icon that represents an application with no custom icon (default application icon) just call:
<pre class="code">[NSImage imageNamed:@â€œNSDefaultApplicationIconâ€];
</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://roobasoft.com/blog/2006/05/31/getting-default-application-icon-as-nsimage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secret Core Data Reserved Keywords</title>
		<link>http://roobasoft.com/blog/2006/04/25/secret-core-data-reserved-keywords/</link>
		<comments>http://roobasoft.com/blog/2006/04/25/secret-core-data-reserved-keywords/#comments</comments>
		<pubDate>Tue, 25 Apr 2006 20:23:30 +0000</pubDate>
		<dc:creator>BrianC</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://roobasoft.com/blog/2006/04/25/secret-core-data-reserved-keywords/</guid>
		<description><![CDATA[Somewhere there exists a list of words you shouldn&#8217;t assign as attributes within Core Data.  I don&#8217;t know where that list is, and today I got bit by not knowing.  I tried to use the word &#8220;deleted&#8221; as an attribute.  No matter how hard I tried to set the &#8220;deleted&#8221; value and [...]]]></description>
			<content:encoded><![CDATA[<p>Somewhere there exists a list of words you shouldn&#8217;t assign as attributes within Core Data.  I don&#8217;t know where that list is, and today I got bit by not knowing.  I tried to use the word &#8220;deleted&#8221; as an attribute.  No matter how hard I tried to set the &#8220;deleted&#8221; value and regardless of what I saw in the XML, querying &#8220;deleted&#8221; returned NO.  Actually, that&#8217;s an interesting point.  I was able to setValue: &#8220;deleted&#8221; but not &#8220;valueForKey:&#8221; it.  Odd.</p>

<p>The other funny thing about this is that if you try to use the name &#8220;isDeleted&#8221;, Xcode squawks up and makes it clear that &#8220;isDeleted&#8221; is a no no.  See image of squawking:</p>

<p><img src="http://roobasoft.com/blog/wp-content/uploads/xcodeSqwuak.png" height="162" width="429" border="0" align="middle" hspace="4" vspace="4" alt="Xcodesqwuak" />
I settled on &#8220;isProfileDeleted&#8221;.  Redundant, but it works a heck of a lot better now (reads and writes!).  Why the &#8220;name clash&#8221; code in Xcode isn&#8217;t catching &#8220;deleted&#8221; I don&#8217;t know.</p>

<p>I did some searching and couldn&#8217;t find a list of reserved words.  If you know of one, please share.</p>
]]></content:encoded>
			<wfw:commentRss>http://roobasoft.com/blog/2006/04/25/secret-core-data-reserved-keywords/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[NSString propertyList]</title>
		<link>http://roobasoft.com/blog/2006/03/27/nsstring-propertylist/</link>
		<comments>http://roobasoft.com/blog/2006/03/27/nsstring-propertylist/#comments</comments>
		<pubDate>Mon, 27 Mar 2006 08:44:22 +0000</pubDate>
		<dc:creator>BrianC</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://roobasoft.com/blog/2006/03/27/nsstring-propertylist/</guid>
		<description><![CDATA[NSString has a great little method prototyped as




- (id)propertyList


What does it do?  To quote the docs:


Parses the receiver as a text representation of a property list, returning an NSString, NSData, NSArray, or NSDictionary object, according to the topmost element.


If you started staring at CFPropertyList(&#8230;) functions, just trying to figure out how to read a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://roobasoft.com/blog/wp-content/uploads//plisthover.png" border="1" height="67" width="197" alt="plisthover.png" align="right" />NSString has a great little method prototyped as</p>

<p></p>

<p><pre class="code">
- (id)propertyList
</pre></p>

<p>What does it do?  To quote the docs:</p>

<blockquote>
Parses the receiver as a text representation of a property list, returning an NSString, NSData, NSArray, or NSDictionary object, according to the topmost element.
</blockquote>

<p>If you started staring at CFPropertyList(&#8230;) functions, just trying to figure out how to read a plist file, the &#8216;propertyList&#8217; method of NSString is tums for your heart burn.</p>

<p>Also, I&#8217;m loving the developer doc&#8217;s new &#8220;hover over a method to see the short description&#8221; as pictured above.  If you don&#8217;t see this, grab the March ADC Reference Library Update.</p>
]]></content:encoded>
			<wfw:commentRss>http://roobasoft.com/blog/2006/03/27/nsstring-propertylist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>__MyCompanyName__</title>
		<link>http://roobasoft.com/blog/2006/03/23/__mycompanyname__/</link>
		<comments>http://roobasoft.com/blog/2006/03/23/__mycompanyname__/#comments</comments>
		<pubDate>Thu, 23 Mar 2006 10:06:18 +0000</pubDate>
		<dc:creator>BrianC</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://roobasoft.com/blog/2006/03/23/__mycompanyname__/</guid>
		<description><![CDATA[I finally got sick of changing MyCompanyName in my new source files.  To change MyCompanyName to something useful, you need to edit the ORGANIZATIONNAME in the com.apple.Xcode prefs.  I used the &#8216;defaults write&#8217; method described here, which looks like this:
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions \
'{ "ORGANIZATIONNAME" = "YourCompanyName";}'
Surprisingly, I had to quit and reopen [...]]]></description>
			<content:encoded><![CDATA[<p>I <em>finally</em> got sick of changing <strong>MyCompanyName</strong> in my new source files.  To change <strong>MyCompanyName</strong> to something useful, you need to edit the ORGANIZATIONNAME in the com.apple.Xcode prefs.  I used the &#8216;defaults write&#8217; method described <a href="http://www.cocoadev.com/index.pl?XcodeProjectTemplates">here</a>, which looks like this:
<pre class="code">defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions \
'{ "ORGANIZATIONNAME" = "<strong>YourCompanyName</strong>";}'
</pre>Surprisingly, I had to quit and reopen Xcode before the change took effect.</p>

<p>To change more of the template, find and edit the template file in &#8220;/Library/Application Support/Apple/Developer Tools/File Templates&#8221;</p>

<p>I&#8217;m a
<pre class="code">foo
{
}
</pre>kind of guy, vs. the default templates
<pre class="code">foo {
}
</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://roobasoft.com/blog/2006/03/23/__mycompanyname__/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Think.</title>
		<link>http://roobasoft.com/blog/2006/01/28/think/</link>
		<comments>http://roobasoft.com/blog/2006/01/28/think/#comments</comments>
		<pubDate>Sat, 28 Jan 2006 22:15:09 +0000</pubDate>
		<dc:creator>BrianC</dc:creator>
				<category><![CDATA[Commentary]]></category>

		<guid isPermaLink="false">http://roobasoft.com/blog/2006/01/28/think/</guid>
		<description><![CDATA[Think first. Think some more. Think about the whole problem. Think about a little part of the problem you&#8217;re going to start with. Think about the whole thing again, in relation to your idea on the starting point.


&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;-Wil Shipley

My app had some code that would allow the user to spawn an unlimited number of helper [...]]]></description>
			<content:encoded><![CDATA[<blockquote>Think first. Think some more. Think about the whole problem. Think about a little part of the problem you&#8217;re going to start with. Think about the whole thing again, in relation to your idea on the starting point.
</blockquote>

<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-<a href="http://wilshipley.com/blog/2005_02_01_archive.html">Wil Shipley</a></p>

<p>My app had some code that would allow the user to spawn an unlimited number of helper processes that went off and did their thing reporting back and taking orders as needed.  I&#8217;ve finally got to the point where I wanted to limit the number of &#8220;active&#8221; helper procs to some reasonable value that could be adjusted via preferences.  Well, I wrote that code but I forgot to think.  I wrote the code such that even when a new request comes in that needed to be queued (due to too many helper procs) I spawned the proc but then &#8220;paused&#8221; it.  This was probably the easiest way to implement the desired effect to the user, but the problem is that it consumed the same amount of resources as before.  Nothing was solved.  I felt this was a good example of not thinking and paying the price.</p>

<p>Now, time to do some thinking.</p>
]]></content:encoded>
			<wfw:commentRss>http://roobasoft.com/blog/2006/01/28/think/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paths with AppleScript</title>
		<link>http://roobasoft.com/blog/2006/01/25/paths-with-applescript/</link>
		<comments>http://roobasoft.com/blog/2006/01/25/paths-with-applescript/#comments</comments>
		<pubDate>Wed, 25 Jan 2006 05:50:08 +0000</pubDate>
		<dc:creator>BrianC</dc:creator>
				<category><![CDATA[Commentary]]></category>

		<guid isPermaLink="false">http://roobasoft.com/blog/2006/01/25/paths-with-applescript/</guid>
		<description><![CDATA[AppleScript expects files in the form of

Users:bcooke:Movies:blah.mov

If you&#8217;re like most sane people, you want to use

/Users/bcooke/Movies/blah.mov

To do this, you just have to prefix your path with &#8216;posix file&#8217;.

via Sundown via google
]]></description>
			<content:encoded><![CDATA[<p>AppleScript expects files in the form of</p>

<blockquote>Users:bcooke:Movies:blah.mov</blockquote>

<p>If you&#8217;re like most sane people, you want to use</p>

<blockquote>/Users/bcooke/Movies/blah.mov</blockquote>

<p>To do this, you just have to prefix your path with &#8216;posix file&#8217;.</p>

<p>via <a href="http://sundown.greyledge.net/pages/2004/01/applescript_unix_and_hfs_filenames.html">Sundown</a> via <a href="http://google.com">google</a></p>
]]></content:encoded>
			<wfw:commentRss>http://roobasoft.com/blog/2006/01/25/paths-with-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MPEG-4 Audio == AAC</title>
		<link>http://roobasoft.com/blog/2006/01/20/mpeg-4-audio-aac/</link>
		<comments>http://roobasoft.com/blog/2006/01/20/mpeg-4-audio-aac/#comments</comments>
		<pubDate>Fri, 20 Jan 2006 11:48:53 +0000</pubDate>
		<dc:creator>BrianC</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[QuickTime]]></category>

		<guid isPermaLink="false">http://roobasoft.com/blog/?p=39</guid>
		<description><![CDATA[In QuickTime&#8217;s export dialog, &#8220;MPEG-4 Audio&#8221; is &#8220;AAC&#8221;.  Somehow iMovie and QuickTime are using a different dialog for their export &#8220;sound&#8221; options.  Compare the two lists of compressors below:

Default Sound options when using &#8216;MovieExportDoUserDialog&#8217;


QuickTime 7 and iMovie&#8217;s dialog



The QT7/iMovie dialog has some clear advantages.


Shorter
MPEG-4 Audio is re-worded as AAC (as far as I [...]]]></description>
			<content:encoded><![CDATA[<p>In QuickTime&#8217;s export dialog, &#8220;MPEG-4 Audio&#8221; is &#8220;AAC&#8221;.  Somehow iMovie and QuickTime are using a different dialog for their export &#8220;sound&#8221; options.  Compare the two lists of compressors below:</p>

<table><tr><td align='center' valign='top'>Default Sound options when using &#8216;MovieExportDoUserDialog&#8217;<br />
<img src="http://roobasoft.com/blog/wp-content//DoUserDialogSound.png" border="0" height="305" width="196" alt="DoUserDialogSound.png" align="" />
</td><td align='center' valign='top'>
QuickTime 7 and iMovie&#8217;s dialog<br />
<img src="http://roobasoft.com/blog/wp-content//QTPro and iMovie Sound.png" border="0" height="229" width="198" alt="QTPro and iMovie Sound.png" align="" />
<br /></td></tr></table>

<p>The QT7/iMovie dialog has some clear advantages.</p>

<ol>
<li>Shorter
</li><li>MPEG-4 Audio is re-worded as AAC (as far as I can tell that&#8217;s the only difference).  People that see this dialog know what AAC is (most?) and know when they want it.  However, I&#8217;m doubtful that all know that MPEG-4 Audio gets you AAC (I wasn&#8217;t, hence this post).
</li><li>&#8220;None&#8221; is not an option.
</li><li>&#8220;Linear PCM&#8221; takes the place of &#8220;None&#8221; and the four int and floating point options.
</li></ol>

<p>Do we, as QuickTime developers, have access to this friendlier dialog?  Do we have to role our own?  Those are questions I&#8217;m trying to answer on the side.  I did minimal research and found nothing. Right now I can&#8217;t devote the time required to keep digging.</p>
]]></content:encoded>
			<wfw:commentRss>http://roobasoft.com/blog/2006/01/20/mpeg-4-audio-aac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>nextKeyView gotcha</title>
		<link>http://roobasoft.com/blog/2006/01/18/nextkeyview-gotcha/</link>
		<comments>http://roobasoft.com/blog/2006/01/18/nextkeyview-gotcha/#comments</comments>
		<pubDate>Thu, 19 Jan 2006 02:27:58 +0000</pubDate>
		<dc:creator>BrianC</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Interface Builder]]></category>

		<guid isPermaLink="false">http://roobasoft.com/blog/?p=38</guid>
		<description><![CDATA[If your window doesn&#8217;t have an &#8220;InitialFirstResponder&#8221; set, each elements &#8220;nextKeyView&#8221; is ignored.  I guess that makes sense?  Something to remember anyway.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://roobasoft.com/blog/wp-content//nextKeyView.png" border="0" height="107" width="150" alt="nextKeyView.png" align="right" />If your window doesn&#8217;t have an &#8220;InitialFirstResponder&#8221; set, each elements &#8220;nextKeyView&#8221; is ignored.  I guess that makes sense?  Something to remember anyway.</p>
]]></content:encoded>
			<wfw:commentRss>http://roobasoft.com/blog/2006/01/18/nextkeyview-gotcha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iLife &#8216;06 Mini Review</title>
		<link>http://roobasoft.com/blog/2006/01/16/ilife-06-mini-review/</link>
		<comments>http://roobasoft.com/blog/2006/01/16/ilife-06-mini-review/#comments</comments>
		<pubDate>Tue, 17 Jan 2006 02:22:13 +0000</pubDate>
		<dc:creator>BrianC</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://roobasoft.com/blog/?p=37</guid>
		<description><![CDATA[
My copy of iLife &#8216;06 showed up today.  I don&#8217;t feel like I&#8217;m the right person to give it a full review, but here&#8217;s my two cents:


iPhoto:  is much faster (seriously, *much* faster with my 5613 photos), has cool date overlay when scrolling, a nice full screen implementation, photocasting (would love this if [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://roobasoft.com/blog/wp-content//ilifeoh6.png" border="0" height="90" width="89" alt="ilifeoh6.png" align="right" />
My copy of iLife &#8216;06 showed up today.  I don&#8217;t feel like I&#8217;m the right person to give it a full review, but here&#8217;s my two cents:</p>

<ul>
<li>iPhoto:  is much faster (seriously, *much* faster with my 5613 photos), has cool date overlay when scrolling, a nice full screen implementation, photocasting (would love this if my fam had macs), calendars, cards and iWeb integration.
</li><li>iWeb:  The themes look pretty nice.  Looks simple enough to use and the themes seem pleasing.  I really just loaded it up, clicked around and that was it.
</li><li>iMovie:  new &#8220;themes&#8221; seem nifty and added audio effects.
</li><li>iDVD:  16:9 and new themes that seem to match iMovie&#8217;s.
</li><li>GarageBand:  I haven&#8217;t used GB, but now that it has a podcast &#8220;mode&#8221; I may give it a whirl for the rare occasion when I record an audio note.  You can also bring in video, presumably for a vidcast, but that didn&#8217;t seem complete nor the focus.  Requires more investigation.
</li><li>iTunes:  Should they really say this is part of the iLife suite anymore?  Seems more appropriate to consider it part of the OS, like Safari and Mail.  No comments.
</li></ul>

<p>Well, that&#8217;s what stuck out to me.  Am I happy with the purchase?  Yes.  iPhoto got lots of attention and iMovie&#8217;s themes seem useful.  Those being the two apps I use most, I&#8217;m pleased.  Plus I&#8217;m sure I missed tons of stuff in my 60 minutes with it, so I look forward to experiencing and reading more thorough reviews containing the other gems I missed.</p>

<p><b>update:</b> iMovie now lets you open multiple projects at the same time.  That&#8217;s very handy, yet sad that it took this long.<br />
<b>update 2:</b> iMovie should have a full-screen edit mode just like iPhoto.</p>
]]></content:encoded>
			<wfw:commentRss>http://roobasoft.com/blog/2006/01/16/ilife-06-mini-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
