<?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>Blogging Secret &#187; Tutorials</title>
	<atom:link href="http://www.blogging-secret.com/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.blogging-secret.com</link>
	<description>make money, wordpress themes, blogging basics and tips and more</description>
	<lastBuildDate>Wed, 25 Aug 2010 17:56:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>How to Display Feedburner Subscribers in Plain Text</title>
		<link>http://www.blogging-secret.com/how-to-display-feedburner-subscribers-in-plain-text</link>
		<comments>http://www.blogging-secret.com/how-to-display-feedburner-subscribers-in-plain-text#comments</comments>
		<pubDate>Tue, 29 Jun 2010 09:20:00 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=910</guid>
		<description><![CDATA[Feedburner came with feed count banner, but if you think this banner doesn&#8217;t match your website design or you want to display Feedburner subscribers in plain text, this is possible! Copy and paste the following code into your template, for example sidebar.php, replace feedburner-id with your Feedbuner username. This script will grab you the feed [...]]]></description>
			<content:encoded><![CDATA[<p>Feedburner came with feed count banner, but if you think this banner doesn&#8217;t match your website design or you want to <strong>display Feedburner subscribers in plain text</strong>, this is possible!</p>
<p>Copy and paste the following code into your template, for example <em>sidebar.php</em>,  replace <strong>feedburner-id</strong> with your Feedbuner username. This script will grab you the feed count in numbers.</p>
<pre><code>//get cool feedburner count
$whaturl="http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburner-id";

//Initialize the Curl session
$ch = curl_init();

//Set curl to return the data instead of printing it to the browser.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

//Set the URL
curl_setopt($ch, CURLOPT_URL, $whaturl);

//Execute the fetch
$data = curl_exec($ch);

//Close the connection
curl_close($ch);
$xml = new SimpleXMLElement($data);
$fb = $xml-&gt;feed-&gt;entry['circulation'];
//end get cool feedburner count</code></pre>
<p>Now paste this anywhere you want and it’ll display a Feedburner subscriber count in text.</p>
<pre><code>echo $fb;</code></pre>
<p><a href="http://www.hongkiat.com/blog/how-to-display-feedburner-subscriber-count-in-text">Source</a> from Hongkiat</p>]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/how-to-display-feedburner-subscribers-in-plain-text/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Display Twitter Count in Plain Text</title>
		<link>http://www.blogging-secret.com/how-to-display-twitter-count-in-plain-text</link>
		<comments>http://www.blogging-secret.com/how-to-display-twitter-count-in-plain-text#comments</comments>
		<pubDate>Wed, 04 Nov 2009 08:15:04 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=725</guid>
		<description><![CDATA[If you don&#8217;t like the Twitter Counter Badge provided by TwitterCounter and you want to display your Twitter counter in plain text, actually it is easy. You can just follow the below simple step to do it. 1. Add the following code to functions.php. function string_getInsertedString($long_string,$short_string,$is_html=false){ if($short_string&#62;=strlen($long_string))return false; $insertion_length=strlen($long_string)-strlen($short_string); for($i=0;$i&#60;strlen($short_string);++$i){ if($long_string[$i]!=$short_string[$i])break; } $inserted_string=substr($long_string,$i,$insertion_length); if($is_html &#38;&#38; [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t like the <strong>Twitter Counter Badge</strong> provided by <a href="http://twittercounter.com"></a>TwitterCounter and you want to display your Twitter counter in plain text, actually it is easy. You can just follow the below simple step to do it.</p>
<p>1. Add the following code to functions.php.</p>
<pre><code>function string_getInsertedString($long_string,$short_string,$is_html=false){
  if($short_string&gt;=strlen($long_string))return false;
  $insertion_length=strlen($long_string)-strlen($short_string);
  for($i=0;$i&lt;strlen($short_string);++$i){
    if($long_string[$i]!=$short_string[$i])break;
  }
  $inserted_string=substr($long_string,$i,$insertion_length);
  if($is_html &amp;&amp; $inserted_string[$insertion_length-1]=='&lt;'){
    $inserted_string='&lt;'.substr($inserted_string,0,$insertion_length-1);
  }
  return $inserted_string;
}

function DOMElement_getOuterHTML($document,$element){
  $html=$document-&gt;saveHTML();
  $element-&gt;parentNode-&gt;removeChild($element);
  $html2=$document-&gt;saveHTML();
  return string_getInsertedString($html,$html2,true);
}

function getFollowers($username){
  $x = file_get_contents("http://twitter.com/".$username);
  $doc = new DomDocument;
  @$doc-&gt;loadHTML($x);
  $ele = $doc-&gt;getElementById('follower_count');
  $innerHTML=preg_replace('/^&lt;[^&gt;]*&gt;(.*)&lt;[^&gt;]*&gt;$/',"\\1",DOMElement_getOuterHTML($doc,$ele));
  return $innerHTML;
}</code></pre>
<p>2. Copy and paste the following short code to anywhere on your theme files, remember replace your twitter username.</p>
<pre><code>&lt;?php echo getFollowers("yourtwitterusername")." followers"; ?&gt;</code></pre>]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/how-to-display-twitter-count-in-plain-text/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Setup Hotmail POP3 in the Email Program on Your PC or Mobile Device</title>
		<link>http://www.blogging-secret.com/how-to-setup-hotmail-pop3-in-the-email-program-on-your-pc-or-mobile-device</link>
		<comments>http://www.blogging-secret.com/how-to-setup-hotmail-pop3-in-the-email-program-on-your-pc-or-mobile-device#comments</comments>
		<pubDate>Sat, 29 Aug 2009 16:18:12 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=646</guid>
		<description><![CDATA[I don&#8217;t like to use free email service without POP3 technology, that&#8217;s why I already say goodbye to Hotmail for long time ago. Since Hotmail officially announced that that POP3 technology is now available to Hotmail users worldwide, may be I will consider to use back as I have been waiting for so long for [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t like to use free email service without POP3 technology, that&#8217;s why I already say goodbye to Hotmail for long time ago. Since Hotmail officially announced that <span id="ctl00_MainContentPlaceholder_ctl01_ctl00_lblEntry">that POP3 technology is now available to Hotmail users worldwide, may be I will consider to use back as I have been waiting for so long for this.<br />
</span></p>
<p>What is POP3? It is a protocol that allows almost any e-mail software program that you’ve installed on your mobile phone or PC to get messages from your e-mail inbox on the web and deliver them in the designated program. For example, you can use Outlook Express to setup Hotmail account. During setting up Hotmail account in Outlook Express, you may be asked for the following information.</p>
<p><span id="ctl00_MainContentPlaceholder_ctl01_ctl00_lblEntry"><strong>POP server</strong>: pop3.live.com (Port 995)<br />
<strong>POP SSL required</strong>? Yes<br />
<strong>User name</strong>: Your Windows Live ID, for example yourname@hotmail.com<br />
<strong>Password</strong>: The password you usually use to sign in to Hotmail or Windows Live<br />
<strong>SMTP server</strong>: smtp.live.com (Port 25)<br />
<strong>Authentication required?</strong> Yes (this matches your POP username and password)<br />
<strong>TLS/SSL required?</strong> Yes</span></p>]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/how-to-setup-hotmail-pop3-in-the-email-program-on-your-pc-or-mobile-device/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to Uninstall XAMMP in Windows Vista</title>
		<link>http://www.blogging-secret.com/how-to-uninstall-xammp-in-windows-vista</link>
		<comments>http://www.blogging-secret.com/how-to-uninstall-xammp-in-windows-vista#comments</comments>
		<pubDate>Tue, 18 Aug 2009 18:17:49 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/?p=602</guid>
		<description><![CDATA[XAMMP and WAMP allow you to run WordPress on your PC, but I prefer to use WAMP, that&#8217;s why I want to uninstall XAMMP that I have installed before. I&#8217;m using Windows Vista, I found that I can&#8217;t even uninstall XAMMP and this caused WAMP cannot be run properly. I have tried to find solution [...]]]></description>
			<content:encoded><![CDATA[<p>XAMMP and <a href=http://www.blogfeatured.com/how-to-install-and-run-wordpress-on-your-pc>WAMP</a> allow you to run WordPress on your PC, but I prefer to use WAMP, that&#8217;s why I want to uninstall XAMMP that I have installed before. </p>
<p>I&#8217;m using Windows Vista, I found that I can&#8217;t even uninstall XAMMP and this caused WAMP cannot be run properly. I have tried to find solution from Internet but unfortunately I can&#8217;t get any help from that. I nearly give up to give it a try, I was thinking that to format pc and install back Windows again in order to solve this problem.</p>
<p>After that, I suddenly figured out that normally Windows Vista requires us to run software and application that we install as administrator. That&#8217;s right! All you need to do is to <strong>run xampp-control.exe as administrator (right click xampp-control.exe file and choose Run as Administrator), and then stop  the Apacha and My SQL</strong>, then you can uninstall without any problem. </p>]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/how-to-uninstall-xammp-in-windows-vista/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Way to Remove Advertisement from Msn Live Messenger</title>
		<link>http://www.blogging-secret.com/quick-way-to-remove-advertisement-from-msn-live-messenger</link>
		<comments>http://www.blogging-secret.com/quick-way-to-remove-advertisement-from-msn-live-messenger#comments</comments>
		<pubDate>Tue, 07 Jul 2009 03:17:48 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/quick-way-to-remove-advertisement-from-msn-live-messenger</guid>
		<description><![CDATA[Do you use msn live messenger? Those people who have use it, I know you will hate the advertisement on the msn, you may accidently click on it, right or not? Actually you can remove the advertisement from msn by using Live Advert Remover. Just click on this link and download it to your computer [...]]]></description>
			<content:encoded><![CDATA[<p>Do you use msn live messenger? Those people who have use it, I know you will hate the advertisement on the msn, you may accidently click on it, right or not?</p>
<p>Actually you can remove the advertisement from msn by using <a href="http://www.4neurons.com/msn/">Live Advert Remover</a>. Just click on this link and download it to your computer and then run it with few simple steps, very easy!</p>
<p>Please note that Live Advert Remover does not make the default Live Messenger banner disappear, so the banner will remain intact, but it is never replaced by a commercial advertisement.</p>]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/quick-way-to-remove-advertisement-from-msn-live-messenger/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Analytics Video Tutorial</title>
		<link>http://www.blogging-secret.com/google-analytics-video-tutorial</link>
		<comments>http://www.blogging-secret.com/google-analytics-video-tutorial#comments</comments>
		<pubDate>Thu, 06 Mar 2008 17:35:13 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/google-analytics-video-tutorial</guid>
		<description><![CDATA[Google Analytics service is offering traffic measurement and interactive reporting for small and large sites, which includes visitor tracking, navigation analysis, and many more. I believe that many webmaster has using it now. If you are still not familiar using Google Analytics, I hope the below Google Analytics video tutorial can help!]]></description>
			<content:encoded><![CDATA[<p>Google Analytics service is offering traffic measurement and interactive reporting for small and large sites, which includes visitor tracking, navigation analysis, and many more. I believe that many webmaster has using it now. If you are still not familiar using Google Analytics, I hope the below <strong>Google Analytics video tutorial</strong> can help!</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/3KK7i084W2w"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/3KK7i084W2w" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/google-analytics-video-tutorial/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Public Blog Post Using Microsoft Words 2007</title>
		<link>http://www.blogging-secret.com/public-blog-post-using-microsoft-words-2007</link>
		<comments>http://www.blogging-secret.com/public-blog-post-using-microsoft-words-2007#comments</comments>
		<pubDate>Sat, 29 Dec 2007 02:36:39 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/public-blog-post-using-microsoft-words-2007</guid>
		<description><![CDATA[Microsoft Words 2007 allows you to create a new blog post and public to your blog provider. Here are the easy and simple steps to do so. 1. Go to Office Button > Public > Blog 2. “Register a Blog Account” dialog box will be displayed 3. Click “Register Now” 4. Choose your blog provide, [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Words 2007 allows you to create a new blog post and public to your blog provider. Here are the easy and simple steps to do so.</p>
<p>1. Go to Office Button > Public > Blog</p>
<p><img src="http://i212.photobucket.com/albums/cc87/blogging-secret/tutorials/publishblog.jpg" border="0" width=490></p>
<p>2. “Register a Blog Account” dialog box will be displayed<br />
3. Click “Register Now”<br />
4. Choose your blog provide, for example wordpress</p>
<p><img src="http://i212.photobucket.com/albums/cc87/blogging-secret/tutorials/serviceprovider.jpg" border="0"></p>
<p>5. Enter the required information as per example below</p>
<p><img src="http://i212.photobucket.com/albums/cc87/blogging-secret/tutorials/account.jpg" border="0"></p>
<p>6. Then you can start to write something and click public button to publish your post, that’s all.</p>]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/public-blog-post-using-microsoft-words-2007/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install and Run WordPress in Your Computer</title>
		<link>http://www.blogging-secret.com/install-and-run-wordpress-in-your-computer</link>
		<comments>http://www.blogging-secret.com/install-and-run-wordpress-in-your-computer#comments</comments>
		<pubDate>Wed, 26 Dec 2007 05:09:17 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/install-and-run-wordpress-in-your-computer</guid>
		<description><![CDATA[Last time when I want to test my design for my free wordpress theme, I will upload to my web hosting and run it in live. Recently, I started to learn how to run wordpress locally in Windows in order to save my time when the time I want to design free wordpress theme. Here [...]]]></description>
			<content:encoded><![CDATA[<p>Last time when I want to test my design for my <a href="http://www.blogging-secret.com/wordpress-themes-free-download/">free wordpress theme</a>, I will upload to my web hosting and run it in live. Recently, I started to learn how to run wordpress locally in Windows in order to save my time when the time I want to design free wordpress theme. </p>
<p>Here is a simple and easy guide that will help you install and run wordpress locally in your computer.</p>
<p>1. Download <a href="http://www.apachefriends.org/en/xampp-windows.html">XAMMP lite</a> for windows. Choose the exe version and then extract it in the root of C drive</p>
<p><img src="http://i212.photobucket.com/albums/cc87/blogging-secret/tutorials/extractxammp.jpg" border="0"></p>
<p>2. Browse to C:\xampplit and double click <strong>setup_xampp.bat</strong></p>
<p><img src="http://i212.photobucket.com/albums/cc87/blogging-secret/tutorials/setupxammp.jpg"  border="0" width=490></p>
<p>3. Double click <strong>xampp-control.exe</strong> and start the Apache and MySql services</p>
<p><img src="http://i212.photobucket.com/albums/cc87/blogging-secret/tutorials/xamppcontrol.jpg" border="0"></p>
<p>4. Open your browser and go to this address: <strong>http://localhost/</strong>. From the menu on the left column, choose your preferred language<br />
5. Click on <strong>phpMyAdmin</strong> on the left bottom of the page</p>
<p><img src="http://i212.photobucket.com/albums/cc87/blogging-secret/tutorials/phpmyadmin.jpg" border="0"></p>
<p>6. Create new database by entering the information as per following picture<br />
7. Download <a href="http://wordpress.org/download/">WordPress</a> and unzip it under c:\xampplite\htdocs.<br />
8. After unzip the wordpress, browse to c:\xampplite\htdocs\wordpress and you will see a file named wp-config-sample.php. Open it in your favourite text editor and replace the default values by the ones you see under this paragraph. Save the file as wp-config.php (under the same folder).</p>
<p>// ** MySQL settings ** //<br />
define(&#8216;DB_NAME&#8217;, &#8216;wordpress&#8217;); // The name of the database<br />
define(&#8216;DB_USER&#8217;, &#8216;root&#8217;); // Your MySQL username<br />
define(&#8216;DB_PASSWORD&#8217;, &#8221;); // &#8230;and password (needs to be empty, just for local install)<br />
define(&#8216;DB_HOST&#8217;, &#8216;localhost&#8217;); // 99% chance you won&#8217;t need to change this value</p>
<p>9. Open your browser and navigate to <strong>http://localhost/wordpress/wp-admin/install.php</strong>, set up the wordpress as per instructions. </p>]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/install-and-run-wordpress-in-your-computer/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Secret of Google Analytics &#8211; Receive Your Stats by Scheduled Email</title>
		<link>http://www.blogging-secret.com/secret-of-google-analytics-receive-your-stats-by-scheduled-email</link>
		<comments>http://www.blogging-secret.com/secret-of-google-analytics-receive-your-stats-by-scheduled-email#comments</comments>
		<pubDate>Tue, 18 Dec 2007 08:15:48 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/secret-of-google-analytics-receive-your-stats-by-scheduled-email</guid>
		<description><![CDATA[I just knew Google Analytics can send us scheduled email report (daily, weekly, monthly, quarterly) for your web stats in the file formats of PDF, XML, CSV and TSV. To setup the scheduled email report, perform the following steps:- 1. Select the Report that you want to schedule 2. Click the email button below the [...]]]></description>
			<content:encoded><![CDATA[<p>I just knew <a href="http://www.google.com/analytics/">Google Analytics</a> can send us <strong>scheduled email report</strong> (daily, weekly, monthly, quarterly) for your web stats in the <strong>file formats of PDF, XML, CSV and TSV</strong>.</p>
<p>To setup the scheduled email report, perform the following steps:-</p>
<p>1. Select the Report that you want to schedule<br />
2. Click the email button below the “Dashboard” title (refer below image)</p>
<p><img src="http://i212.photobucket.com/albums/cc87/blogging-secret/blogging%20basics/googleanalytics-schedule1.jpg" border="0" width=490 /></p>
<p>3. Select the Schedule tab (refer below image)</p>
<p><img src="http://i212.photobucket.com/albums/cc87/blogging-secret/blogging%20basics/googleanalytics-schedule2.jpg" border="0" /></p>
<p>4. You can send report to others by entering their email addresses and of course you can send report to yourself (send to me radio button is check by default)<br />
5. Edit the Subject and / or Description if desired.<br />
6. Select a file format<br />
7. Choose the data range to be scheduled<br />
8. If you would like to compare the currently selected date range with either the Previous date range or with your Sitewide average, make your selection from the Comparison drop-down list.<br />
9. Click Schedule button to complete</p>]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/secret-of-google-analytics-receive-your-stats-by-scheduled-email/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Add Addon Domain</title>
		<link>http://www.blogging-secret.com/how-to-add-addon-domain</link>
		<comments>http://www.blogging-secret.com/how-to-add-addon-domain#comments</comments>
		<pubDate>Sat, 24 Nov 2007 13:51:28 +0000</pubDate>
		<dc:creator>Eric</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.blogging-secret.com/how-to-add-addon-domain</guid>
		<description><![CDATA[If you are planning to purchase more than one domain name, I suggest you purchase web hosting with addon feature, then you hosted these domain names into one web hosting with addon feature, it actually save some cost of web hosting. What is Addon Domain? An addon domain allows you to reach a subdomain when [...]]]></description>
			<content:encoded><![CDATA[<p>If you are planning to purchase more than one domain name, I suggest you purchase web hosting with addon feature, then you hosted these domain names into one web hosting with addon feature, it actually save some cost of web hosting.</p>
<p><strong>What is Addon Domain?</strong></p>
<p>An addon domain allows you to reach a subdomain when entering the name of the addon domain into a browser. This means that you can host additional domains from your account, if allowed by your hosting provider. Addon Domains are relative to your account&#8217;s home directory.</p>
<p><strong>How to Add Addon Domain?</strong></p>
<p>1. The additional domain name(s) need to point to corresponding DNS as your main domain.<br />
2. Once you have completed the above, you should be able to add the add-on domain.</p>
<p>a. Please login to your account (cPanel Account)<br />
b. Please go to “add-on domain” section of the site.<br />
c. There you will be able to complete the addition of your extra domain.</p>
<p>Once the domain is added, you should be able to see a folder with the name of your domain (e.g. if your domain is xyz.com your folder name is going to be xyz, unless you change your folder name).</p>]]></content:encoded>
			<wfw:commentRss>http://www.blogging-secret.com/how-to-add-addon-domain/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
