<?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>~ overflow ~ &#187; Uncategorized</title>
	<atom:link href="http://www.overflow.biz/blog/lang/en-us/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.overflow.biz/blog</link>
	<description>Coding and Internet Randomness</description>
	<lastBuildDate>Sun, 08 Jan 2012 23:34:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en-us</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automatic Backups to gmail</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2010/03/25/automatic-backups-to-gmail?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=automatic-backups-to-gmail</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2010/03/25/automatic-backups-to-gmail#comments</comments>
		<pubDate>Thu, 25 Mar 2010 05:08:56 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://www.overflow.biz/blog/?p=337</guid>
		<description><![CDATA[Problem:
Gmail is offering a considerable ammount of free space, now, it can be used to do automatic backups, specially if you run a database or something critical.
Solution:
They offer a lot of space &#8230; but you can&#8217;t get emails bigger than 20mb,  so you need to do some tricks,
first a little bash script:

#!/bin/bash
s_ts() { date [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>Gmail is offering a considerable ammount of free space, now, it can be used to do automatic backups, specially if you run a database or something critical.</p>
<p><strong>Solution:</strong></p>
<p>They offer a lot of space &#8230; but you can&#8217;t get emails bigger than 20mb,  so you need to do some tricks,</p>
<p>first a little bash script:</p>
<pre class="brush: bash;">
#!/bin/bash
s_ts() { date &#34;+[%H:%M:%S%p]&#34;; }
_dt=`date +%y%m%d`
echo \(c\) z3n - R1V1.06@070509 \(PiD:$$\)
cd /path/to/backup/folder
echo `s_ts` SQL Backup...
mysqldump -pMYSQL_PASSWORD --all-databases &#62; mysql-&#34;$_dt&#34;.sql
echo `s_ts` Compressing...
rar a -m5 -inul -s -rr3  -v19750k -df mysql-&#34;$_dt&#34;.rar mysql-&#34;$_dt&#34;.sql
cd ..;php ma.php mysql-&#34;$_dt&#34;.rar
</pre>
<p>and then a ma.php to email attachments:</p>
<pre class="brush: php;">
// (c) z3n - z3n666@gmail.com

define('from','backup@youdomain.com');
define('to','your.gmail@gmail.com');
define('subject','MySQL Backup - '.date(&#34;Y-m-d&#34;));
define('base_path','/path/to/backup/');

set_time_limit(0);
ini_set(&#34;memory_limit&#34;,&#34;1G&#34;);

function send_attach_mail($email_from,$email_to,$email_subject,$file) {

	$email_message = $file; // Message that the email has in it 

	$semi_rand=md5(time());
	$mime_boundary=&#34;==Multipart_Boundary_x{$semi_rand}x&#34;;
	$headers=&#34;From: &#34;.$email_from.&#34;\nMIME-Version: 1.0\nContent-Type: multipart/mixed;\n boundary=\&#34;{$mime_boundary}\&#34;&#34;;
	$email_message.=&#34;This is a multi-part message in MIME format.\n\n--{$mime_boundary}\nContent-Type:text/html; charset=\&#34;iso-8859-1\&#34;\nContent-Transfer-Encoding: 7bit\n\n&#34;.$email_message.&#34;\n\n&#34;;

	/* First File */
	$fileatt_type = &#34;application/octet-stream&#34;; // File Type
	$fileatt_name = $file; // Filename that will be used for the file as the attachment 

	$rfile = fopen($file,'rb');
	$data = fread($rfile,filesize($file));
	fclose($rfile);
	$data = chunk_split(base64_encode($data));
	$email_message .= &#34;--{$mime_boundary}\nContent-Type: {$fileatt_type};\n name=\&#34;{$fileatt_name}\&#34;\nContent-Transfer-Encoding: base64\n\n&#34;.$data.&#34;\n\n--{$mime_boundary}\n&#34;; 

	@mail($email_to, $email_subject, $email_message, $headers);
}

if (!isset($argv[1])) {
	die(&#34;Usage: &#34;.$_SERVER['PHP_SELF'].&#34; &#60;filename&#62;&#34;);
} else {
	$argv[1]=str_replace(&#34;..&#34;,&#34;&#34;,$argv[1]);
	if (!file_exists(base_path.$argv[1])) { // try to see if this is multipart file
		for ($i=1;file_exists(substr(base_path.$argv[1],0,-3).&#34;part0&#34;.$i.&#34;.rar&#34;);$i++) {
			send_attach_mail(from,to,subject,substr(base_path.$argv[1],0,-3).&#34;part0&#34;.$i.&#34;.rar&#34;);
		}
	} else {
		send_attach_mail(from,to,subject,base_path.$argv[1]);
	}
}
</pre>
<p>Done!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2010/03/25/automatic-backups-to-gmail/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symlinks on Windows</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2010/01/12/symlinks-on-windows?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=symlinks-on-windows</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2010/01/12/symlinks-on-windows#comments</comments>
		<pubDate>Tue, 12 Jan 2010 14:38:09 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[junction]]></category>
		<category><![CDATA[symlink]]></category>
		<category><![CDATA[sysinternals]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.overflow.biz/blog/?p=303</guid>
		<description><![CDATA[Problem:
How to make a symlink or anything similar on windows?
Solution:
According to many sites, windows vista and newer has a built-in hability to do junctions (aka symlink on windows) due it&#8217;s new file system, but i don&#8217;t want all the gayness of vista, so i&#8217;m stuck on xp.
I found out that you can also do junctions [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>How to make a symlink or anything similar on windows?</p>
<p><strong>Solution:</strong></p>
<p>According to many sites, windows vista and newer has a built-in hability to do junctions (aka symlink on windows) due it&#8217;s new file system, but i don&#8217;t want all the gayness of vista, so i&#8217;m stuck on xp.</p>
<p>I found out that you can also do junctions on windows xp, although the <a href="http://articles.techrepublic.com.com/5100-10878_11-5388706.html" target="_blank">manual method</a> is not easy. But then i came across <a href="http://stackoverflow.com/questions/90121/symlink-in-windows-xp" target="_blank">this post</a> and found out that <a href="http://www.sysinternals.com" target="_blank">sysinternals</a> has a <a href="http://technet.microsoft.com/pt-br/sysinternals/bb896768(en-us).aspx" target="_blank">tool</a> to make things easy.</p>
<p>Neat huh?</p>
<p><em>In case you&#8217;re wondering, i&#8217;m using this &#8220;windows symlink&#8221; to freeup space on my o/s drive, since i made (long time ago) a setup with not so much space on that partittion and i don&#8217;t want to format, i just did a couple of symlinks to another drive, it worked flawlessly.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2010/01/12/symlinks-on-windows/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using telnet to access pop3 (retrieve emails) and smtp (send emails)</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2010/01/11/using-telnet-to-access-pop3-retrieve-emails-and-smtp-send-emails?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=using-telnet-to-access-pop3-retrieve-emails-and-smtp-send-emails</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2010/01/11/using-telnet-to-access-pop3-retrieve-emails-and-smtp-send-emails#comments</comments>
		<pubDate>Mon, 11 Jan 2010 23:09:39 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[pop]]></category>
		<category><![CDATA[raw]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[telnet]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://www.overflow.biz/blog/?p=301</guid>
		<description><![CDATA[Problem:
How to test retrieve and send emails by raw telnet?
Solution:
Retrieving emails (bold lines are the commands, italics are outputs)
telnet mail.yourserver.com 110
Trying 1.2.3.4&#8230;
Connected to mail.yourserver.com.
Escape character is &#8216;^]&#8217;.
+OK Dovecot ready.
user your_email@yourserver.com
+OK
pass your_password
+OK Logged in.
list
+OK 1 messages:
1 1133
.
retr 1
message
.
quit
Sending emails:
telnet mail.youremailserver.com 25
Trying 1.2.3.4&#8230;
Connected to mail.youremailserver.com.
Escape character is &#8216;^]&#8217;.
220 youremailserver.com ESMTP Postfix
helo yourdomain.com
250 youremailserver.com
auth login
334 VXNlcm5hbWU6
eW91cmVtYWlsQHlvdXJkb21haW4uY29t (youremail@yourdomain.com base64 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>How to test retrieve and send emails by raw telnet?</p>
<p><strong>Solution:</strong></p>
<p>Retrieving emails (bold lines are the commands, italics are outputs)</p>
<p><strong>telnet mail.yourserver.com 110</strong><br />
<em>Trying 1.2.3.4&#8230;<br />
Connected to mail.yourserver.com.<br />
Escape character is &#8216;^]&#8217;.<br />
+OK Dovecot ready.<br />
</em><strong>user your_email@yourserver.com</strong><br />
+OK<br />
<strong>pass your_password</strong><br />
+OK Logged in.<br />
<strong>list</strong><br />
+OK 1 messages:<br />
1 1133</p>
<p>.</p>
<p><strong>retr 1</strong></p>
<p><em>message</em></p>
<p><em>.</em></p>
<p><strong>quit</strong></p>
<p>Sending emails:</p>
<p><strong>telnet mail.youremailserver.com 25</strong><br />
<em>Trying 1.2.3.4&#8230;<br />
Connected to mail.youremailserver.com.<br />
Escape character is &#8216;^]&#8217;.<br />
220 youremailserver.com ESMTP Postfix</em><br />
<strong>helo yourdomain.com</strong><br />
<em>250 youremailserver.com</em><br />
<strong>auth login</strong><br />
334 VXNlcm5hbWU6<br />
<strong>eW91cmVtYWlsQHlvdXJkb21haW4uY29t</strong> <em>(youremail@yourdomain.com base64 encoded)</em><br />
334 UGFzc3dvcmQ6<br />
<strong>eW91cnBhc3N3b3Jk</strong> <em>(yourpassword base64 encoded)</em><br />
<em>235 2.0.0 Authentication successful</em><br />
<strong>mail from:youremail@yourdomain.com</strong><br />
<em>250 2.1.0 Ok</em><br />
<strong>rcpt to: someone@somedomain.com</strong><br />
<em>250 2.1.5 Ok</em><br />
<strong>data</strong><br />
<em>354 End data with &lt;CR&gt;&lt;LF&gt;.&lt;CR&gt;&lt;LF&gt;</em><br />
<strong>subject: test</p>
<p>hi</strong><br />
.</p>
<p><em>250 2.0.0 Ok: queued as 8B65ED40075</em><br />
<strong>quit</strong><br />
Note that there&#8217;s many different authentication protocols, base64 is the less secure one, some servers may require a better authentication mechanism, or even use an ecrypted port, which will not work with telnet, try open ssl instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2010/01/11/using-telnet-to-access-pop3-retrieve-emails-and-smtp-send-emails/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Port Scan on Linux</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2010/01/11/port-scan-on-linux?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=port-scan-on-linux</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2010/01/11/port-scan-on-linux#comments</comments>
		<pubDate>Mon, 11 Jan 2010 21:49:03 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nc]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[port scan]]></category>

		<guid isPermaLink="false">http://www.overflow.biz/blog/?p=298</guid>
		<description><![CDATA[Problem:
How to do a port scan on a specific ip/hostname on linux?
Solution:
nc -z &#60;ip&#62; &#60;port-range&#62;
eg.: nc -z 127.0.0.1 1-1024
Source:
ciberciti
]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>How to do a port scan on a specific ip/hostname on linux?</p>
<p><strong>Solution:</strong></p>
<p><em>nc -z &#60;ip&#62; &#60;port-range&#62;</em></p>
<p><strong>eg.: nc -z 127.0.0.1 1-1024</strong></p>
<p><strong>Source:</strong></p>
<p><a href="http://www.cyberciti.biz/faq/linux-port-scanning/" target="_blank">ciberciti</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2010/01/11/port-scan-on-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL importing .sql with accents causing issues</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2009/12/30/mysql-importing-sql-with-accents-causing-issues?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=mysql-importing-sql-with-accents-causing-issues</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2009/12/30/mysql-importing-sql-with-accents-causing-issues#comments</comments>
		<pubDate>Wed, 30 Dec 2009 21:33:15 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[charset]]></category>
		<category><![CDATA[impot]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysqld]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[utf8]]></category>

		<guid isPermaLink="false">http://www.overflow.biz/blog/?p=295</guid>
		<description><![CDATA[Problem:
When importing a .sql with entries with accents, like not regular english, it may lead to issues, like:
&#8216;SÃ£o Paulo&#8216; instead of &#8216;São Paulo&#8216;
Solution:
Even mysqld default charset being latin1, sometimes it don&#8217;t work with accents, depending on the imports you&#8217;re doing.
So you may need to force it to fallback to utf8, on my case i just [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>When importing a .sql with entries with accents, like not regular english, it may lead to issues, like:</p>
<p>&#8216;<em>SÃ£o Paulo</em>&#8216; instead of &#8216;<em>São Paulo</em>&#8216;</p>
<p><strong>Solution:</strong></p>
<p>Even mysqld default charset being latin1, sometimes it don&#8217;t work with accents, depending on the imports you&#8217;re doing.</p>
<p>So you may need to force it to fallback to utf8, on my case i just added this to the beggining of the .sql file i was importing:</p>
<p><strong>charset utf8 \c</strong></p>
<p>and it worked just fine.</p>
<p>Note: If you are using asian chars (japanese/chinese specific), then utf8 might not be enough to cover all chars.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2009/12/30/mysql-importing-sql-with-accents-causing-issues/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dark Skin for Firebug</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2009/10/28/dark-skin-for-firebug?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dark-skin-for-firebug</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2009/10/28/dark-skin-for-firebug#comments</comments>
		<pubDate>Wed, 28 Oct 2009 15:06:52 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[dark skin]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[skin]]></category>

		<guid isPermaLink="false">http://www.overflow.biz/blog/?p=266</guid>
		<description><![CDATA[Problem:
Firebug skin is white, it&#8217;s annoying and it hurts my eyes.
Solution:
I edited myself a bunch of css files and build up a less annoying version, although there&#8217;s a lots of borders that still too light, it&#8217;s a real relief for me already.
You can download it here.
You should replace the files on the classic skin, they [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>Firebug skin is white, it&#8217;s annoying and it hurts my eyes.</p>
<p><strong>Solution:</strong></p>
<p>I edited myself a bunch of css files and build up a less annoying version, although there&#8217;s a lots of borders that still too light, it&#8217;s a real relief for me already.</p>
<p>You can download it <a title="Firebug dark skin" href="http://www.overflow.biz/blog/~scripts/firebug-dark-skin.rar" target="_blank">here</a>.</p>
<p>You should replace the files on the classic skin, they are located inside the document settings/your user/data something/mozilla/extensions/firebug/skin/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2009/10/28/dark-skin-for-firebug/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ratio Master 1.7.5’s µTorrent 1.8.2 (14458) .client file</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2009/02/24/ratio-master-175%e2%80%99s-%c2%b5torrent-182-14458-client-file?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ratio-master-175%e2%80%99s-%c2%b5torrent-182-14458-client-file</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2009/02/24/ratio-master-175%e2%80%99s-%c2%b5torrent-182-14458-client-file#comments</comments>
		<pubDate>Tue, 24 Feb 2009 16:24:01 +0000</pubDate>
		<dc:creator>z3n</dc:creator>
				<category><![CDATA[Tips & Hints]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ratio master]]></category>
		<category><![CDATA[utorrent]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://overflow.biz/blog/?p=35</guid>
		<description><![CDATA[&#60;client name=”uTorrent 1.8.2 build (14458)” author=”z3n” version=”1.1″ processname=”utorrent”&#62;
&#60;query&#62;info_hash={infohash}&#38;peer_id={peerid}&#38;port={port}&#38;uploaded={uploaded}&#38;downloaded={downloaded}&#38;left={left}&#38;key={key}{event}&#38;numwant={numwant}&#38;compact=1&#38;no_peer_id=1&#60;/query&#62;
&#60;headers&#62;Host: {host}_nl_User-Agent: uTorrent/1820_nl_Accept-Encoding: gzip_nl_&#60;/headers&#62;
&#60;peer_id prefix=”-UT1820-_1″ type=”random” length=”10″ urlencoding=”true” upperCase=”false” value=”&#8221;/&#62;
&#60;key type=”hex” length=”8″ urlencoding=”false” upperCase=”true” value=”&#8221;/&#62;
&#60;protocol value=”HTTP/1.1″/&#62;
&#60;hash upperCase=”false”/&#62;
&#60;/client&#62;
]]></description>
			<content:encoded><![CDATA[<p>&#60;client name=”uTorrent 1.8.2 build (14458)” author=”z3n” version=”1.1″ processname=”utorrent”&#62;<br />
&#60;query&#62;info_hash={infohash}&#38;peer_id={peerid}&#38;port={port}&#38;uploaded={uploaded}&#38;downloaded={downloaded}&#38;left={left}&#38;key={key}{event}&#38;numwant={numwant}&#38;compact=1&#38;no_peer_id=1&#60;/query&#62;<br />
&#60;headers&#62;Host: {host}_nl_User-Agent: uTorrent/1820_nl_Accept-Encoding: gzip_nl_&#60;/headers&#62;<br />
&#60;peer_id prefix=”-UT1820-_1″ type=”random” length=”10″ urlencoding=”true” upperCase=”false” value=”&#8221;/&#62;<br />
&#60;key type=”hex” length=”8″ urlencoding=”false” upperCase=”true” value=”&#8221;/&#62;<br />
&#60;protocol value=”HTTP/1.1″/&#62;<br />
&#60;hash upperCase=”false”/&#62;<br />
&#60;/client&#62;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2009/02/24/ratio-master-175%e2%80%99s-%c2%b5torrent-182-14458-client-file/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.overflow.biz/blog/lang/en-us/2008/05/15/hello-world?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=hello-world</link>
		<comments>http://www.overflow.biz/blog/lang/en-us/2008/05/15/hello-world#comments</comments>
		<pubDate>Thu, 15 May 2008 15:44:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://overflow.biz/blog/?p=1</guid>
		<description><![CDATA[w00000000t
welcome to the blog
i don&#8217;t have much time so i&#8217;m not writing a cool custom shiny message.
]]></description>
			<content:encoded><![CDATA[<p>w00000000t</p>
<p>welcome to the blog</p>
<p>i don&#8217;t have much time so i&#8217;m not writing a cool custom shiny message.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.overflow.biz/blog/lang/en-us/2008/05/15/hello-world/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

