<?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>Jason Filley - SnakeLegs &#187; Computers</title>
	<atom:link href="http://www.snakelegs.org/category/computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.snakelegs.org</link>
	<description>Upon thy belly shalt thou go....</description>
	<lastBuildDate>Fri, 09 Jul 2010 22:02:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Windows Embedded Standard Partial Updates with IGEL Thin Clients</title>
		<link>http://www.snakelegs.org/2010/06/29/windows-embedded-standard-partial-updates-with-igel-thin-clients/</link>
		<comments>http://www.snakelegs.org/2010/06/29/windows-embedded-standard-partial-updates-with-igel-thin-clients/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 16:29:46 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=395</guid>
		<description><![CDATA[Windows Embedded Standard Partial Updates with IGEL Thin Clients Assemble your tools: Download the Partial Update manual, the LUNA Reference Guide, and the catalog sample from the Manuals. Download samples from the Hotfixes and Samples pages. If you don&#8217;t have a suitable text editor, try Notepad++, which has syntax highlighting for Lua scripts.  Lua for [...]]]></description>
			<content:encoded><![CDATA[<p><em><a href="http://www.microsoft.com/windowsembedded/">Windows Embedded Standard</a> Partial Updates with <a href="http://www.igel.com/">IGEL Thin Clients</a></em></p>
<p>Assemble your tools:</p>
<ol>
<li>Download the <em>Partial Update</em> manual, the LUNA Reference Guide, and the catalog sample from the <a href="http://www.myigel.com/index.php?filepath=PREVIOUS_SERIES/xppartialupdate/Samples/Manual/&amp;webpath=/ftp/PREVIOUS_SERIES/xppartialupdate/Samples/Manual/&amp;rc=emea">Manuals</a>.</li>
<li>Download samples from the <a href="http://www.myigel.com/index.php?filepath=wespartialupdate/Hotfixes/&amp;webpath=/ftp/wespartialupdate/Hotfixes/&amp;rc=emea">Hotfixes</a> and <a href="http://www.myigel.com/index.php?filepath=PREVIOUS_SERIES/xppartialupdate/Samples/">Samples</a> pages.</li>
<li>If you don&#8217;t have a suitable text editor, try <a href="http://notepad-plus-plus.org/">Notepad++</a>, which has syntax highlighting for Lua scripts.  Lua for Windows (below) includes the IDE SciTE, as well [and switch it to a monospace font...].</li>
<li>Visit the <a href="http://www.lua.org/">Lua scripting language main website</a> and download <a href="http://code.google.com/p/luaforwindows/">Lua for Windows</a>.</li>
<li>Order &#8220;<a href="http://www.amazon.com/exec/obidos/ASIN/8590379825/lua-home-20">Programming in Lua (2nd Edition)</a>.&#8221;  It may be overkill, but there&#8217;s no sense being half-assed about it.</li>
<li>Download <a href="http://www.slproweb.com/products/Win32OpenSSL.html">OpenSSL for Windows</a> to compute your MD5 hashes required for file copies.</li>
</ol>
<p><span id="more-395"></span>Example script to install Flash 10.1, slightly modified from sample scripts:</p>
<pre>-- IGEL WES partial update to install Flash 10.1.53.64

-- Check OS-Version [OS_CHECK]
product_version = setup.get("product.version")
if product_version == nil then
 error("Cannot get product version")
end

os_version = string.sub(product_version, 1, 2)

if os_version ~= "2." and os_version ~= "02" then
 error("Update cannot be applied. OS-Version must be WES")
end

-- Create the Filetable [CF]
files = {
{src="install_flash_player_10_active_x.msi",
dest="C:\\Temp\\Flash_10_1_53_64\\install_flash_player_10_active_x.msi",
digest="9f1c0833befc49cdf7d4f3156a56d1bf",
size=3574}}

-- Check if Partial Update Package matches to the Thin-Client space at all [SP]
NeededSize = fs.usage(files)
AvailableSize = sys.diskfree("C:")
if AvailableSize &lt; NeededSize then
 error("Not enough space on CF to install Partial Update: Flash_10_1_53_64")
end

-- Install the files from the table [IF]
for FilePos, t in ipairs(files) do
 PKG:install(t.src, t.dest, t.digest)
end

-- Silent install of MSI-File [MSI]
sys.exec("C:\\Windows\\System32\\msiexec.exe /i C:\\Temp\\Flash_10_1_53_64\\install_flash_player_10_active_x.msi /passive")
fs.remove("C:\\Temp\\Flash_10_1_53_64")

-- If demanded, force a reboot [FRB]
if fs.pending() then
 sys.reboot()
end
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2010/06/29/windows-embedded-standard-partial-updates-with-igel-thin-clients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sort Merge Join</title>
		<link>http://www.snakelegs.org/2009/12/03/sort-merge-join/</link>
		<comments>http://www.snakelegs.org/2009/12/03/sort-merge-join/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 23:57:33 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=310</guid>
		<description><![CDATA[Try saying that 5 times quickly.]]></description>
			<content:encoded><![CDATA[<p>Try saying <em>that</em> 5 times quickly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/12/03/sort-merge-join/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert SOA RNAME to standard email format</title>
		<link>http://www.snakelegs.org/2009/12/03/convert-soa-rname-to-standard-email-format/</link>
		<comments>http://www.snakelegs.org/2009/12/03/convert-soa-rname-to-standard-email-format/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 16:22:56 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=307</guid>
		<description><![CDATA[#!/usr/bin/perl -T # RFC 1035 3.3.13 # http://www.faqs.org/rfcs/rfc1035.html # The rname of a DNS SOA response gives "domain-name which specifies \ # the mailbox of the person responsible for this zone" use strict; use warnings; #use Email::Valid; if you wish # example - "noc.example.com" is "noc@example.com" # replace first non-escaped period with an @ symbol [...]]]></description>
			<content:encoded><![CDATA[<pre>#!/usr/bin/perl -T
# RFC 1035 3.3.13
# http://www.faqs.org/rfcs/rfc1035.html
# The rname of a DNS SOA response gives "domain-name which specifies \
#       the mailbox of the person responsible for this zone"

use strict;
use warnings;
#use Email::Valid; if you wish

# example - "noc.example.com" is "noc@example.com"
# replace first non-escaped period with an @ symbol
&amp;mailstrip("noc.example.com");

# and remove escapes
#&amp;mailstrip('some\.user.example.com');

sub mailstrip {
 my $emailaddress = shift;

 # replace first non-escaped period with an @ symbol
 # my $brain-&gt;hurts();
 $emailaddress =~ s/(?&lt;!\\)(?=\.)/\@/;
 $emailaddress =~ s/\@\./\@/;
 $emailaddress =~ s/\\(.)/$1/g;

 print "$emailaddress\n";
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/12/03/convert-soa-rname-to-standard-email-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filtering note on Postfix and HylaFAX</title>
		<link>http://www.snakelegs.org/2009/11/20/filtering-note-on-postfix-and-hylafax/</link>
		<comments>http://www.snakelegs.org/2009/11/20/filtering-note-on-postfix-and-hylafax/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 17:54:41 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=305</guid>
		<description><![CDATA[Quick note: if you want a Postfix-&#62;HylaFAX email-to-fax gateway with an incoming format like aaabbbcccc@&#60;hostname&#62;, use regexes to allow the recipient, and also to route to a different transport. main.cf: local_recipient_maps = proxy:unix:passwd.byname $alias_maps $fax_recipients fax_recipients = regexp:/etc/postfix/fax_recipients fax_destination_recipient_limit = 1 fax_recipients: /[0-9]{10}@.*/ OK transport.regex: /[0-9]{10}@.*/ fax:localhost master.cf: fax unix - n n - 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Quick note: if you want a Postfix-&gt;HylaFAX email-to-fax gateway with an incoming format like aaabbbcccc@&lt;hostname&gt;, use regexes to allow the recipient, and also to route to a different transport.</p>
<pre>
main.cf:
local_recipient_maps = proxy:unix:passwd.byname $alias_maps $fax_recipients
fax_recipients = regexp:/etc/postfix/fax_recipients
fax_destination_recipient_limit = 1

fax_recipients:
/[0-9]{10}@.*/  OK

transport.regex:
/[0-9]{10}@.*/  fax:localhost

master.cf:
fax     unix    -       n       n       -       1       pipe
    flags= user=uucp argv=/usr/bin/faxmail -d -n ${user}</pre>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">
main.cf:<br />
local_recipient_maps = proxy:unix:passwd.byname $alias_maps $fax_recipients<br />
fax_recipients = regexp:/etc/postfix/fax_recipients<br />
fax_destination_recipient_limit = 1</p>
<p>fax_recipients:<br />
/[0-9]{10}@.*/  OK</p>
<p>transport.regex:<br />
/[0-9]{10}@.*/  fax:localhost</p>
<p>master.cf:<br />
fax     unix    -       n       n       -       1       pipe<br />
flags= user=uucp argv=/usr/bin/faxmail -d -n ${user}</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/11/20/filtering-note-on-postfix-and-hylafax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lint: perl with Perl::Critic</title>
		<link>http://www.snakelegs.org/2009/11/06/lint-perl-with-perlcritic/</link>
		<comments>http://www.snakelegs.org/2009/11/06/lint-perl-with-perlcritic/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 17:29:05 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=300</guid>
		<description><![CDATA[See Perl::Critic.]]></description>
			<content:encoded><![CDATA[<p>See <a href="http://search.cpan.org/dist/Perl-Critic/lib/Perl/Critic.pm">Perl::Critic</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/11/06/lint-perl-with-perlcritic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lint: SAP ABAP and SQL</title>
		<link>http://www.snakelegs.org/2009/11/06/lint-sap-abap-and-sql/</link>
		<comments>http://www.snakelegs.org/2009/11/06/lint-sap-abap-and-sql/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 17:11:19 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=295</guid>
		<description><![CDATA[SAP actually has good facilities for lint&#8217;ing your ABAP code, built-in.  From the code editor (say by starting SE38), choose Program -&#62; Check -&#62; Extended Check.  Couldn&#8217;t be much easier.  To get a more thorough review, use Code Inspector to also pinpoint data access problems, like SQL queries where a WHERE term isn&#8217;t indexed, and [...]]]></description>
			<content:encoded><![CDATA[<p>SAP actually has good facilities for lint&#8217;ing your ABAP code, built-in.  From the code editor (say by starting SE38), choose Program -&gt; Check -&gt; Extended Check.  Couldn&#8217;t be much easier.  To get a more thorough review, use <a href="http://blogs.msdn.com/saponsqlserver/archive/2008/01/03/using-sap-code-inspector-to-improve-quality-and-performance.aspx">Code Inspector</a> to also pinpoint data access problems, like SQL queries where a WHERE term isn&#8217;t indexed, and the like.</p>
<p><img class="aligncenter size-full wp-image-296" title="SAP lint" src="http://www.snakelegs.org/wp-content/uploads/2009/11/sap_lint.png" alt="SAP lint" width="653" height="308" /></p>
<p><img class="aligncenter size-full wp-image-297" title="SAP extended program check" src="http://www.snakelegs.org/wp-content/uploads/2009/11/sap_lint_2.png" alt="SAP extended program check" width="850" height="702" /></p>
<p><img class="aligncenter size-full wp-image-298" title="SAP extended code check" src="http://www.snakelegs.org/wp-content/uploads/2009/11/sap_lint_3.png" alt="SAP extended code check" width="809" height="591" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/11/06/lint-sap-abap-and-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Audio Redirection in Windows Terminal Server</title>
		<link>http://www.snakelegs.org/2009/10/26/audio-redirection-in-windows-terminal-server/</link>
		<comments>http://www.snakelegs.org/2009/10/26/audio-redirection-in-windows-terminal-server/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 21:15:52 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=286</guid>
		<description><![CDATA[Problem Windows 2003 terminal servers wouldn&#8217;t allow audio redirection over RDP. Client: Windows XP SP3 w/ RDP 6.1 client (6.0.6001). Servers:  Windows 2003 Standard R2 (32-bit) , SP2, all current patches. Servers are in &#8220;Terminal Services&#8221; OU that sets group policy &#8220;Allow audio redirection = Enabled.&#8221;  Viewing in RSOP MMC confirms that the setting is [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong></p>
<p>Windows 2003 terminal servers wouldn&#8217;t allow audio redirection over RDP.</p>
<p>Client: Windows XP SP3 w/ RDP 6.1 client (6.0.6001).</p>
<p>Servers:  Windows 2003 Standard R2 (32-bit) , SP2, all current patches.</p>
<p>Servers are in &#8220;Terminal Services&#8221; OU that sets group policy &#8220;Allow audio redirection = Enabled.&#8221;  Viewing in RSOP MMC confirms that the setting is applied.</p>
<p>gpresult /v:</p>
<p>GPO: Terminal Server Test<br />
KeyName:     SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\fDisableCam<br />
Value:       0, 0, 0, 0<br />
State:       Enabled</p>
<p>HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\fDisableCam == 0</p>
<p>Connect via RDP.  Open Control Panel -&gt; Sounds and Audio Devices.  Uncheck &#8220;Mute&#8221; and click &#8220;Apply.&#8221;  &#8220;Mute&#8221; is checked again.</p>
<p>Clicking &#8220;Advanced&#8221; under &#8220;Speaker Settings&#8221; results in error &#8220;DirectSound settings not available.&#8221;</p>
<p>Similar</p>
<p><a href="http://social.technet.microsoft.com/Forums/en-US/winserverTS/thread/42930f70-a68a-4397-8c61-7d2017a4988b/">http://social.technet.microsoft.com/Forums/en-US/winserverTS/thread/42930f70-a68a-4397-8c61-7d2017a4988b/</a></p>
<p><a href="http://www.virtualpcfaq.com/Virtual_Server_2005/rn-738-15532_DirectSound_settings_not_available.aspx">http://www.virtualpcfaq.com/Virtual_Server_2005/rn-738-15532_DirectSound_settings_not_available.aspx</a></p>
<p><strong>Solution</strong></p>
<p>RDPCLIP.EXE wasn&#8217;t running.</p>
<p><img class="aligncenter size-large wp-image-287" title="It's always a checkbox...." src="http://www.snakelegs.org/wp-content/uploads/2009/10/always_a_checkbox-1024x223.png" alt="It's always a checkbox...." width="740" height="161" /></p>
<p>I didn&#8217;t realize that rdpclip.exe was needed for audio redirection and must have unloaded it when trimming startup programs to lower cpu/memory.  I had already disabled clipboard redirection to speed things up, so I figured there was no need to run rdpclip.exe, which, as the name implies, was originally a Windows 2000 resource kit utility to allow copying and pasting files between client and server.  My kingdom for an architecture diagram&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/10/26/audio-redirection-in-windows-terminal-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backing up Fortinet firewalls</title>
		<link>http://www.snakelegs.org/2009/09/25/backing-up-fortinet-firewalls/</link>
		<comments>http://www.snakelegs.org/2009/09/25/backing-up-fortinet-firewalls/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 14:30:24 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=280</guid>
		<description><![CDATA[The cheap way to automate Fortinet firewall backups is: Enable SSH on the firewall. Enable SCP (System -&#62; Admin -&#62; Settings -&#62; Enable SCP) Create a &#8216;backup&#8217; admin user with read_only profile. Run a script to scp the configs. Uses Net::SCP::Expect #!/usr/bin/perl -w use warnings; use Net::SCP::Expect; @firewallips = ('192.168.1.1', '192.168.2.1', '192.168.3.1', '192.168.4.1', '192.168.5.1', '192.168.6.1' [...]]]></description>
			<content:encoded><![CDATA[<p>The cheap way to automate Fortinet firewall backups is:</p>
<ol>
<li> Enable SSH on the firewall.</li>
<li>Enable SCP (System -&gt; Admin -&gt; Settings -&gt; Enable SCP)</li>
<li>Create a &#8216;backup&#8217; admin user with read_only profile.</li>
<li>Run a script to scp the configs.</li>
</ol>
<p>Uses <a href="http://search.cpan.org/~rybskej/Net-SCP-Expect-0.16/Expect.pm">Net::SCP::Expect</a></p>
<pre>#!/usr/bin/perl -w

use warnings;
use Net::SCP::Expect;

@firewallips = ('192.168.1.1',
 '192.168.2.1',
 '192.168.3.1',
 '192.168.4.1',
 '192.168.5.1',
 '192.168.6.1'
);

foreach $ip (@firewallips) {
 print "$ip\n";

 my $scpe = Net::SCP::Expect-&gt;new(auto_yes=&gt;1);
 $scpe-&gt;login('backup', 'SUPERSECRET');
 $scpe-&gt;scp("$ip:sys_config","/home/fortinetbackups/fortinet-$ip\.conf");

}</pre>
<p>Or you could do it <a href="http://www.nullamatix.com/howto-fortinet-public-key-authentication-for-scp-config-backups/">this way</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/09/25/backing-up-fortinet-firewalls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lint Everything</title>
		<link>http://www.snakelegs.org/2009/07/07/lint-everything/</link>
		<comments>http://www.snakelegs.org/2009/07/07/lint-everything/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 16:38:52 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=275</guid>
		<description><![CDATA[Debian&#8217; Lintian automatically checks for rule violations (e.g., &#8220;&#8216;bashism&#8217;&#8221; in /bin/sh&#8221;).  Nice.]]></description>
			<content:encoded><![CDATA[<p>Debian&#8217; <a href="http://lintian.debian.org/">Lintian </a>automatically checks for rule violations (e.g., &#8220;&#8216;bashism&#8217;&#8221; in /bin/sh&#8221;).  Nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/07/07/lint-everything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sick of Cable (last word on it)</title>
		<link>http://www.snakelegs.org/2009/03/01/sick-of-cable-last-word-on-it/</link>
		<comments>http://www.snakelegs.org/2009/03/01/sick-of-cable-last-word-on-it/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 17:00:23 +0000</pubDate>
		<dc:creator>Jason Filley</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.snakelegs.org/?p=261</guid>
		<description><![CDATA[Here&#8217;s a Get Rich Slowly blog entry recommending Hulu and kin, including a link to an extensive list of online video content source (bookmark that one).  Don&#8217;t forget your local library as a source of DVD&#8217;s &#8212; you helped pay for &#8216;em.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a <a href="http://www.getrichslowly.org/blog/2009/02/19/how-i-cut-my-television-bill-in-half/">Get Rich Slowly blog entry</a> recommending Hulu and kin, including a link to <a href="http://www.randomn3ss.com/the-complete-list-of-websites-to-stream-full-tv-shows-and-movies-from/">an extensive list of online video content source</a> (bookmark that one).  Don&#8217;t forget your local library as a source of DVD&#8217;s &#8212; you helped pay for &#8216;em.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snakelegs.org/2009/03/01/sick-of-cable-last-word-on-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
