<?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>Yodanto</title>
	<atom:link href="http://yodanto.com/feed" rel="self" type="application/rss+xml" />
	<link>http://yodanto.com</link>
	<description>Personal Notes</description>
	<lastBuildDate>Tue, 24 Jan 2012 23:54:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Session Cookies between SSL and Non-SSL in CakePHP</title>
		<link>http://yodanto.com/technology/development/session-cookies-between-ssl-and-non-ssl-in-cakephp?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=session-cookies-between-ssl-and-non-ssl-in-cakephp</link>
		<comments>http://yodanto.com/technology/development/session-cookies-between-ssl-and-non-ssl-in-cakephp#comments</comments>
		<pubDate>Sun, 15 Jan 2012 03:20:18 +0000</pubDate>
		<dc:creator>Yodanto</dc:creator>
				<category><![CDATA[Developments]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://yodanto.com/?p=134</guid>
		<description><![CDATA[If you use SSL (https) for User login action in CakePHP, the session cookie by default works only for SSL connection. When you move to non-SSL (http) pages, the cookie will be lost and the system will redirect you again to login screen. After searching for solutions from many resources, the answer is actually there in CakePHP's Cookbook. Read more for the link. <a href="http://yodanto.com/technology/development/session-cookies-between-ssl-and-non-ssl-in-cakephp">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>CakePHP 2.0</p></blockquote>
<p>If you use SSL (https, secure) for User login action in CakePHP, the session cookie by default works only for SSL connection.</p>
<pre>&lt;?php
class UsersController extends AppController {

    public $components = array('Security');

    function beforeFilter() {
        $this-&gt;Security-&gt;blackHoleCallback = 'forceSSL';
        $this-&gt;Security-&gt;requireSecure();
        parent::beforeFilter();
        $this-&gt;Auth-&gt;allow('login', 'logout');
    }

    function forceSSL() {
        $this-&gt;redirect('https://' . env('SERVER_NAME') . $this-&gt;here);
    }
}</pre>
<p>So, when you do the login under a secure page/https, after a successful login CakePHP will save a session cookie under https protocol only, and by default will continue serving under https.</p>
<p>While this suits most requirements in practice, some people prefer redirect back to normal page/http afterwards to save server&#8217;s CPU. Using this default configuration, when you move to non-SSL (http) pages, the cookie is lost and the system will redirect you again to login screen. This may cause a loop of unsuccessful logins.</p>
<p>After searching for solutions from many resources, the answer is actually there in CakePHP&#8217;s Cookbook under &#8220;Session&#8221; topic.</p>
<p><a href="http://book.cakephp.org/2.0/en/development/sessions.html">http://book.cakephp.org/2.0/en/development/sessions.html</a></p>
<p>From the page:</p>
<blockquote><p>CakePHP’s defaults to setting <tt>session.cookie_secure</tt> to true, when your application is on an SSL protocol. If your application serves from both SSL and non-SSL protocols, then you might have problems with sessions being lost. If you need access to the session on both SSL and non-SSL domains you will want to disable this:</p></blockquote>
<pre>&lt;?php
Configure::write('Session', array(
    'defaults' =&gt; 'php',
    'ini' =&gt; array(
        'session.cookie_secure' =&gt; false
    )
));</pre>
<p>Put the code above in <tt>core.php</tt> along with other directives.</p>
]]></content:encoded>
			<wfw:commentRss>http://yodanto.com/technology/development/session-cookies-between-ssl-and-non-ssl-in-cakephp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Self-Healing Online Server Platform</title>
		<link>http://yodanto.com/technology/business/self-healing-online-server-platform?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=self-healing-online-server-platform</link>
		<comments>http://yodanto.com/technology/business/self-healing-online-server-platform#comments</comments>
		<pubDate>Wed, 07 Sep 2011 13:00:52 +0000</pubDate>
		<dc:creator>Yodanto</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://yodanto.com/?p=121</guid>
		<description><![CDATA[Self-healing virtual servers is a technology that helps a virtual servers keep always-on. If a node fails, the virtual servers are moved to a spare. <a href="http://yodanto.com/technology/business/self-healing-online-server-platform">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Some practical issues with online application servers:</p>
<ol>
<li>A dedicated server may be too much for an online application &#8212; maximum resource utilization never reached and causing it wasting too much resources. This is especially a problem for a new/developing application.</li>
<li>A dedicated server is not easily or quickly expandable when more resource is required.</li>
<li>For small web site owners, like me, server crash means downtime and the time required to take it back online is unpredictable.</li>
</ol>
<p>A popular solution for efficient resource usage is by using server virtualization (<a href="http://en.wikipedia.org/wiki/Virtual_machine">virtual servers/machines</a>). Initially this solved the efficiency problem by putting many virtual servers into a single physical server. This way, we can add up virtual servers until near full resources of the physical server are used. Every individual virtual server can also be scaled easily.</p>
<p>Recently, a virtual server technology called <a href="http://xen.org/">Xen</a> is developed to have a self-healing feature. This is possible by having a software controller to monitor the virtual servers running on several physical servers. If a virtual server is down, the controller will immediately move the virtual server to another running physical server. So, your server is in &#8216;always-on&#8217; state and this solves the problem #3.</p>
<p>In practice, Virtual Private Servers (VPS) play a significant role in growing the Software-as-a-Service business. The provider can start by using a small VPS and upscale later when the application needs more resources as the business grows.</p>
]]></content:encoded>
			<wfw:commentRss>http://yodanto.com/technology/business/self-healing-online-server-platform/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smartphone Competition</title>
		<link>http://yodanto.com/technology/business/smartphone-competition?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=smartphone-competition</link>
		<comments>http://yodanto.com/technology/business/smartphone-competition#comments</comments>
		<pubDate>Wed, 16 Feb 2011 11:03:17 +0000</pubDate>
		<dc:creator>Yodanto</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://yodanto.com/?p=105</guid>
		<description><![CDATA[Users began to consider the operating system used by a smartphone. <a href="http://yodanto.com/technology/business/smartphone-competition">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So many things to consider in the competition for mobile handset market like whether it will be a QWERTY, touchscreen, or both. But it seems many people now also consider the operating system used and favor the ones with iOS or Android operating systems. So, it is the operating system choice and also the marketplace under the system. The following is the excerpt from the article at <a title="CNN-Money" href="http://money.cnn.com/2011/02/15/news/international/lg_smartphone_failure.fortune/index.htm">Fortune</a> (CNN-Money):</p>
<p><em>Many questions about LG&#8217;s strategic choice needed answering. After all, Windows Mobile was a hastily cooked-up OS designed to keep up with Apple and Google. Microsoft had basically scaled down its PC-based Windows OS and squeezed it into a handset, making the OS painfully slow. Moreover, the problems with Windows Mobile were not restricted to speed. While in Barcelona, Ballmer was busy criticizing Apple&#8217;s App Store &#8212; not on product merit, but on the basis of Apple&#8217;s closed system. Ballmer said it was important that the App Store be open, because he viewed openness as a basic requirement.</em></p>
<p>Quite interesting.</p>
]]></content:encoded>
			<wfw:commentRss>http://yodanto.com/technology/business/smartphone-competition/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I Choose Mootools over jQuery</title>
		<link>http://yodanto.com/technology/development/why-i-choose-mootools-over-jquery?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=why-i-choose-mootools-over-jquery</link>
		<comments>http://yodanto.com/technology/development/why-i-choose-mootools-over-jquery#comments</comments>
		<pubDate>Wed, 12 Jan 2011 22:34:43 +0000</pubDate>
		<dc:creator>Yodanto</dc:creator>
				<category><![CDATA[Developments]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://yodanto.com/?p=96</guid>
		<description><![CDATA[Mootools has better animation effects than any other Javascript libraries. <a href="http://yodanto.com/technology/development/why-i-choose-mootools-over-jquery">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just my another opinion. When I realized that Mootools has the smoothest animation, it became my favorite Javascript library. jQuery is very popular, especially for its ease of use. But in my book, smooth effects is ultimately more pleasing, while it is not much more complex than others too.</p>
<p>See the demos of both libraries on GUI effect called &#8216;Accordion&#8217; below (and yes, try clicking on the &#8216;headers&#8217; to see the panels&#8217; slide effects):</p>
<p>Mootools: <a href="http://mootools.net/demos/?demo=Accordion">http://mootools.net/demos/?demo=Accordion<br />
</a>jQuery: <a href="http://jquery.com/files/demo/dl-done.html"><span style="text-decoration: line-through;">http://jquery.com/files/demo/dl-done.html</span></a> updated to <a href="http://docs.jquery.com/UI/Accordion">http://docs.jquery.com/UI/Accordion</a> (checked: 2011-07-31)</p>
]]></content:encoded>
			<wfw:commentRss>http://yodanto.com/technology/development/why-i-choose-mootools-over-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Platform Independent Applications</title>
		<link>http://yodanto.com/technology/business/online-platform-independent-applications?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=online-platform-independent-applications</link>
		<comments>http://yodanto.com/technology/business/online-platform-independent-applications#comments</comments>
		<pubDate>Sun, 02 Jan 2011 04:15:04 +0000</pubDate>
		<dc:creator>Yodanto</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://yodanto.com/?p=82</guid>
		<description><![CDATA[Online applications are hot. This makes a good opportunity for online server business. <a href="http://yodanto.com/technology/business/online-platform-independent-applications">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just saw the article at <a href="http://tech.fortune.cnn.com/2010/12/20/videogamings-online-explosion/">http://tech.fortune.cnn.com/2010/12/20/videogamings-online-explosion/</a> also says that online gaming applications are spreading (similar to my post about <a href="http://yodanto.com/technology/business/computer-applications-trend-2011"> &#8216;Computer Application Trend 2011&#8242;</a>). The growing of this business may give only small contribution to the old-style-proprietary platform such as: Nintendo, Microsoft, or Sony, as they are not using those platforms. I believe this makes a new opportunity for this new expertise: server farm and cloud.</p>
<p>Moving further, I also see that thin clients will be used more. Mobile platforms (mobile phone handsets) and their operating systems will also be seen more in the market. So, client platforms such as iOS, Android, Chrome, and others (like Symbian and Bada), may be the way of the future for operating systems.</p>
<p>Don&#8217;t bother the big players, but see this as a good opportunity to grow. The market is growing fast.</p>
]]></content:encoded>
			<wfw:commentRss>http://yodanto.com/technology/business/online-platform-independent-applications/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Applications Trend 2011</title>
		<link>http://yodanto.com/technology/business/computer-applications-trend-2011?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=computer-applications-trend-2011</link>
		<comments>http://yodanto.com/technology/business/computer-applications-trend-2011#comments</comments>
		<pubDate>Thu, 09 Dec 2010 06:30:33 +0000</pubDate>
		<dc:creator>Yodanto</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://yodanto.com/?p=64</guid>
		<description><![CDATA[Web application marketplace is seen to gain more uses in 2011. This is also expected to reduce software piracy. <a href="http://yodanto.com/technology/business/computer-applications-trend-2011">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://yodanto.com/wp-content/uploads/2010/12/MR900406913.jpg"><img src="http://yodanto.com/wp-content/uploads/2010/12/MR900406913.jpg" alt="Directions" title="Trend and direction" width="96" height="96" class="alignright size-full wp-image-72" /></a>Looking at the facts in 2010, I believe that web based applications will gain more uses in 2011. Web application marketplace is going to be more common available. Currently we see those virtual marketplaces in Apple, Nokia, Google, and Samsung devices. Since they have strong infrastructure and user base, many more and more people are using the marketplaces. Soon, web application marketplace may replace the current conventional software distribution system, where softwares are purchased then installed locally in our computers.</p>
<p>Many advantages brought by this new software distribution system. One significant one for users is <strong>lower maintenance cost</strong> since applications are maintained centrally by the provider. Another one is <strong>accessibility</strong>, like the ones provided under Google Apps. You don&#8217;t need to use your own computer in order to access the same application set up for you and your organization. You can go to another country and immediately use the local computer there to access your same web applications you have been using. No re-installation, re-setup, and memorizing your technical settings.</p>
<p>In some years from now, I expect to see less &#8220;Software Installation Wizard&#8221; running in our computers and also reduced software piracy.</p>
]]></content:encoded>
			<wfw:commentRss>http://yodanto.com/technology/business/computer-applications-trend-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Tips for Development Using CakePHP</title>
		<link>http://yodanto.com/technology/development/some-tips-for-development-using-cakephp?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=some-tips-for-development-using-cakephp</link>
		<comments>http://yodanto.com/technology/development/some-tips-for-development-using-cakephp#comments</comments>
		<pubDate>Mon, 29 Nov 2010 04:04:56 +0000</pubDate>
		<dc:creator>Yodanto</dc:creator>
				<category><![CDATA[Developments]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://yodanto.com/?p=50</guid>
		<description><![CDATA[Some practices I do when developing with CakePHP. This is a growing list and may be updated. <a href="http://yodanto.com/technology/development/some-tips-for-development-using-cakephp">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://yodanto.com/wp-content/uploads/2010/11/MR900438757.jpg"><img src="http://yodanto.com/wp-content/uploads/2010/11/MR900438757.jpg" alt="Development" title="Construction and development" width="96" height="96" class="alignright size-full wp-image-75" /></a>Some practices I do when developing with CakePHP. This is a growing list and may be updated.</p>
<h2>Use standard variable naming</h2>
<p>CakePHP uses Inflector to relate variables. This is actually a very useful feature for software developers. For instance, models are suggested to be named in singular form while controllers are in plural. You can still name those whatever and in any format, just in case you&#8217;re curious. But, following this standard will help you save some time to deal with the hassles in variable management.<br />
One important benefit is when you relate a field with a selection (or combo) box. Let&#8217;s say you have a field named <code>user_id</code> in table/model <code>Recipe</code>. When preparing for a list of users in <code>RecipesController</code> you may write this way:</p>
<pre>
function add() {

$users = $this->User->find('list');
// This will pass $users variable to the view
$this->set(compact('users'));

}
</pre>
<p>And in your form in <code>add.ctp</code> view, you can simply write this:</p>
<pre>
&lt;?php

// This will display a combo box with values from $users variable
echo $this->Html->input('user_id');

?&gt;
</pre>
<p>CakePHP internal use of it&#8217;s own Inflector system is smart to automatically relate <code>user_id</code> variable with a list from <code>$users</code> variable. Very convenient.</p>
]]></content:encoded>
			<wfw:commentRss>http://yodanto.com/technology/development/some-tips-for-development-using-cakephp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Development Environments</title>
		<link>http://yodanto.com/technology/development/software-development-environments?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=software-development-environments</link>
		<comments>http://yodanto.com/technology/development/software-development-environments#comments</comments>
		<pubDate>Wed, 24 Nov 2010 09:42:24 +0000</pubDate>
		<dc:creator>Yodanto</dc:creator>
				<category><![CDATA[Developments]]></category>

		<guid isPermaLink="false">http://yodanto.com/?p=10</guid>
		<description><![CDATA[My personal software development environments: Linux/UNIX, Apache, PHP, MySQL, PostgreSQL, CakePHP. <a href="http://yodanto.com/technology/development/software-development-environments">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://yodanto.com/wp-content/uploads/2010/11/MR900216055.jpg"><img class="alignright size-full wp-image-77" title="Environment" src="http://yodanto.com/wp-content/uploads/2010/11/MR900216055.jpg" alt="Environment" width="96" height="96" /></a>As a background, I have been developing software systems since 1996 under DOS, Windows 95 and newer versions up to Windows XP and Windows Server 2003 using the following popular technologies:</p>
<ul>
<li>Microsoft Windows API,</li>
<li>COM/COM+, ATL, WTL,</li>
<li>Microsoft Jet Database Engine,</li>
<li>Microsoft SQL Server,</li>
<li>SQLite,</li>
<li>Microsoft Visual C++ and Visual Basic,</li>
<li>Microsoft ASP (IIS).</li>
</ul>
<p>Since 2005, I have also seriously been developing using Open Source technologies for mostly web database applications. The following technologies are used:</p>
<ul>
<li>FreeBSD, Debian GNU/Linux, Ubuntu,</li>
<li>Apache Web Server,</li>
<li>PHP,</li>
<li>MySQL,</li>
<li>PostgreSQL,</li>
<li>CakePHP Framework.</li>
</ul>
<p>Currently, I am sticking with the Open Source Software and joining the trend in online accessible applications development for Small and Medium Businesses (SMB). So, if you&#8217;re looking for someone to develop systems under those technologies in Indonesia, get in touch with me.</p>
]]></content:encoded>
			<wfw:commentRss>http://yodanto.com/technology/development/software-development-environments/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why a Software Developer/Architect Loves His/Her Job</title>
		<link>http://yodanto.com/technology/development/why-a-software-developer-architect-loves-the-job?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=why-a-software-developer-architect-loves-the-job</link>
		<comments>http://yodanto.com/technology/development/why-a-software-developer-architect-loves-the-job#comments</comments>
		<pubDate>Sat, 16 Oct 2010 00:58:21 +0000</pubDate>
		<dc:creator>Yodanto</dc:creator>
				<category><![CDATA[Developments]]></category>

		<guid isPermaLink="false">http://yodanto.com/gen/why-a-software-developerarchitect-loves-hisher-job</guid>
		<description><![CDATA[This is something I take from CNNMoney web site, featuring an article ‘I have the Best Job in America!’. The job: Software Architect “I put together applications people actually use. So for me, the greatest joy comes from seeing people &#8230; <a href="http://yodanto.com/technology/development/why-a-software-developer-architect-loves-the-job">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is something I take from CNNMoney web site, featuring an article ‘<a href="http://money.cnn.com/galleries/2010/pf/jobs/1010/gallery.best_jobs_real_people.moneymag/index.html">I have the Best Job in America!</a>’.</p>
<p>The job: Software Architect</p>
<blockquote><p>“I put together applications people actually use. So for me, the greatest joy comes from seeing people use the product in a way that makes their life better or makes it easier for them to do their job.”</p></blockquote>
<p>Similar to the above, a Software Developer may say</p>
<blockquote><p>“I develop/create applications people actually use.” (The joy would be the same)</p></blockquote>
<p>Software developers, keep dreaming, keep aiming high, and say “I love my job!” Not only in America of course.</p>
]]></content:encoded>
			<wfw:commentRss>http://yodanto.com/technology/development/why-a-software-developer-architect-loves-the-job/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSSQL DateTime Field in CakePHP</title>
		<link>http://yodanto.com/technology/development/cakephp-ms-sql-function-modification?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cakephp-ms-sql-function-modification</link>
		<comments>http://yodanto.com/technology/development/cakephp-ms-sql-function-modification#comments</comments>
		<pubDate>Fri, 03 Sep 2010 14:21:51 +0000</pubDate>
		<dc:creator>Yodanto</dc:creator>
				<category><![CDATA[Developments]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://yodanto.com/?p=28</guid>
		<description><![CDATA[A slight addition to CakePHP MS SQL Server database function to prevent storing 0 (zero) value in an empty date/datetime field. <a href="http://yodanto.com/technology/development/cakephp-ms-sql-function-modification">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>(This is a note on modification of CakePHP functions for Microsoft SQL Server, in my case is version 2000).</p>
<pre>CakePHP version: 1.2.x, 1.3.x</pre>
<p>Add two sections into the function:</p>
<pre><code>function value() {

}</code></pre>
<p>in dbo_mssql.php:</p>
<pre><code>/* Yodanto, 2010-01-21 */
'datetime', 'smalldatetime'</code></pre>
<p>to prevent empty date stored as 0 (zero) and make it &#8216;NULL&#8217; instead..</p>
<p>To find the exact location, find the following lines (in your core CakePHP dbo_mssql.php):</p>
<pre><code>if (in_array($column, array('integer', 'float', 'binary')) &amp;&amp;
    $data === '') {
    return 'NULL';
}
</code></pre>
<p>and change it to:</p>
<pre><code>if (in_array($column, array('integer', 'float', 'binary',
    'datetime', 'smalldatetime')) &amp;&amp;  $data === '') {
    return 'NULL';
}
</code></pre>
<p>Additional note:  there&#8217;s probably another way officially to prevent this 0 (zero) value problem in date/datetime field, but so far I have not digged into it.</p>
]]></content:encoded>
			<wfw:commentRss>http://yodanto.com/technology/development/cakephp-ms-sql-function-modification/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

