<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for andrewfreiday.com</title>
	<atom:link href="http://andrewfreiday.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewfreiday.com</link>
	<description>Useless web programming tips and code snippets</description>
	<lastBuildDate>Mon, 06 Feb 2012 22:40:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on &#8220;phrames&#8221; framework/ORM now on github by Quadric</title>
		<link>http://andrewfreiday.com/2011/09/04/phrames-frameworkorm-now-on-github/comment-page-1/#comment-5143</link>
		<dc:creator>Quadric</dc:creator>
		<pubDate>Mon, 06 Feb 2012 22:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://andrewfreiday.com/?p=170#comment-5143</guid>
		<description>Hey!
It&#039;s great to hear from you. I&#039;m happy that you continue this project. I&#039;ve checked it and it looks much better. No problems running it on PDO. I&#039;ve made unit test for Article model and everything works ok. Check if you like: http://quadric.goblix.pl/storage/ArticleTest.zip

I really hope that this project would stay simple and elegant (as far as php allows to do that) but i&#039;m very sad that you prefer database oriented approach than model oriented approach. In my job when develop an application we works on a local sqlite database. But the staging and production system is on postgresql. When i inform a php model what columns it has and what type it is - the migration system can easily put schema changes into my local sqlite and when i deploy application on production system it migrates changes to postgresql. I don&#039;t need to look into database structure because i don&#039;t really care. If this is mysql, sqlite, postgresql, oracle, mongo or sth else. Other example - how will you optimize table joins? In django there is a &quot;select_related&quot; option. Django will make just one sql query (join table A with table B) and split columns into object A and B. Without column info it&#039;s impossible to do that because you can&#039;t get A.* and B.* having known in a result what columns is from what model. Of course you may try to explore database structures in system tables of current DB adapter but i guess has not a good performance.

But this is my approach and my experience and this is your project. Maybe some day you&#039;ll allow me to fork your project and change it :P

Anyway.. great that you continue this project. I look for updates everyday. When you think of this project to be more &quot;production ready&quot; i could help you with making a postgres adapter or maybe write some unit tests. Let me know.

Cheers.</description>
		<content:encoded><![CDATA[<p>Hey!<br />
It&#8217;s great to hear from you. I&#8217;m happy that you continue this project. I&#8217;ve checked it and it looks much better. No problems running it on PDO. I&#8217;ve made unit test for Article model and everything works ok. Check if you like: <a href="http://quadric.goblix.pl/storage/ArticleTest.zip" rel="nofollow">http://quadric.goblix.pl/storage/ArticleTest.zip</a></p>
<p>I really hope that this project would stay simple and elegant (as far as php allows to do that) but i&#8217;m very sad that you prefer database oriented approach than model oriented approach. In my job when develop an application we works on a local sqlite database. But the staging and production system is on postgresql. When i inform a php model what columns it has and what type it is &#8211; the migration system can easily put schema changes into my local sqlite and when i deploy application on production system it migrates changes to postgresql. I don&#8217;t need to look into database structure because i don&#8217;t really care. If this is mysql, sqlite, postgresql, oracle, mongo or sth else. Other example &#8211; how will you optimize table joins? In django there is a &#8220;select_related&#8221; option. Django will make just one sql query (join table A with table B) and split columns into object A and B. Without column info it&#8217;s impossible to do that because you can&#8217;t get A.* and B.* having known in a result what columns is from what model. Of course you may try to explore database structures in system tables of current DB adapter but i guess has not a good performance.</p>
<p>But this is my approach and my experience and this is your project. Maybe some day you&#8217;ll allow me to fork your project and change it <img src='http://andrewfreiday.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Anyway.. great that you continue this project. I look for updates everyday. When you think of this project to be more &#8220;production ready&#8221; i could help you with making a postgres adapter or maybe write some unit tests. Let me know.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;phrames&#8221; framework/ORM now on github by Andrew</title>
		<link>http://andrewfreiday.com/2011/09/04/phrames-frameworkorm-now-on-github/comment-page-1/#comment-5142</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Mon, 06 Feb 2012 14:44:20 +0000</pubDate>
		<guid isPermaLink="false">http://andrewfreiday.com/?p=170#comment-5142</guid>
		<description>Hey again,

I know, I&#039;ve been busy as heck lately and just haven&#039;t had much time to dedicate to this side project. However, I have done some work on a pretty major overhaul/rewrite that so far I am quite happy with. I have a long ways to go still, a lot of testing and code clean up, but I&#039;ve done a lot better job this time with properly separating the components into different classes (Models/Objects are defined separately, I&#039;ve wrote it in such a way that alternate DB drivers could be used, I&#039;m now using PDO as you recommended. I also have some plans on tightly integrating an intelligent caching mechanism (this will also be implemented properly to allow for different &quot;drivers&quot; if needed, i.e. memcache, Redis, etc).

I&#039;m very hesitant to plan for any sort of Rails/django-style database model generator. Ideally I want to keep this &quot;framework&quot; as lightweight as possible, to be used more as a rapid-development assistant. Personally, when I&#039;m working on any sort of project, I typically always draft the database schema first (after defining the requirements) to ensure I can properly normalize the tables. I definitely don&#039;t want to replicate the database field-by-field in my framework model -- I wanted to only define my models using the key fields/relationships (i.e. one-to-one, one-to-many relationships) and leave the rest of the native/root variable types (ints, strings, etc) to PHP. Hopefully this makes sense. Bottom line: for rapid development, I don&#039;t want to have to replicate my carefully constructed database schema all over again in my PHP models. I also don&#039;t prefer my database schema being auto-generated from my ORM model. This is all just personal preference. I&#039;m trying to design phrames in the most flexible/expandable way possible.

I have done something very similar to what you&#039;ve suggested, here is an example of how I&#039;m defining Models in my rewrite so far:

&lt;pre&gt;
  class Car extends Model {

    protected static function fields() {
      return array(
        &quot;id&quot; =&gt; array(
          &quot;type&quot; =&gt; &quot;ID&quot;,
        ),
        &quot;make&quot; =&gt; array(
          &quot;type&quot; =&gt; &quot;Make&quot;,
          &quot;required&quot; =&gt; true,
        ),
        &quot;name&quot; =&gt; array(
          &quot;required&quot; =&gt; true,
          &quot;__get&quot; =&gt; function($v) {
            return strtoupper($v);
          },
          &quot;__set&quot; =&gt; function($v) {
            return strtolower($v);
          }
        ),
      );
    }

    public function __toString() {
      return $this-&gt;name;
    }
    
  }
&lt;/pre&gt;

I think namespaces are a fantastic addition to the PHP language, and I&#039;m definitely interested in implementing them with this project, I just want to get the core functionality in there first (and hopefully some legitimate unit testing). It&#039;s not a huge codebase, so adding namespaces won&#039;t be too difficult.

If you want to take a look through my rewrite so far, feel free. I&#039;ve uploaded it to the link below. Just don&#039;t judge me just yet on code quality -- I&#039;m just trying to get this rolling! :)

http://andrewfreiday.com/temp/phrames-dev-20120206.zip

Once this is in a more usable state I will glady upload this over my existing github project and send you an e-mail.

Thank you so much for your support and interest. All the best,

Andrew</description>
		<content:encoded><![CDATA[<p>Hey again,</p>
<p>I know, I&#8217;ve been busy as heck lately and just haven&#8217;t had much time to dedicate to this side project. However, I have done some work on a pretty major overhaul/rewrite that so far I am quite happy with. I have a long ways to go still, a lot of testing and code clean up, but I&#8217;ve done a lot better job this time with properly separating the components into different classes (Models/Objects are defined separately, I&#8217;ve wrote it in such a way that alternate DB drivers could be used, I&#8217;m now using PDO as you recommended. I also have some plans on tightly integrating an intelligent caching mechanism (this will also be implemented properly to allow for different &#8220;drivers&#8221; if needed, i.e. memcache, Redis, etc).</p>
<p>I&#8217;m very hesitant to plan for any sort of Rails/django-style database model generator. Ideally I want to keep this &#8220;framework&#8221; as lightweight as possible, to be used more as a rapid-development assistant. Personally, when I&#8217;m working on any sort of project, I typically always draft the database schema first (after defining the requirements) to ensure I can properly normalize the tables. I definitely don&#8217;t want to replicate the database field-by-field in my framework model &#8212; I wanted to only define my models using the key fields/relationships (i.e. one-to-one, one-to-many relationships) and leave the rest of the native/root variable types (ints, strings, etc) to PHP. Hopefully this makes sense. Bottom line: for rapid development, I don&#8217;t want to have to replicate my carefully constructed database schema all over again in my PHP models. I also don&#8217;t prefer my database schema being auto-generated from my ORM model. This is all just personal preference. I&#8217;m trying to design phrames in the most flexible/expandable way possible.</p>
<p>I have done something very similar to what you&#8217;ve suggested, here is an example of how I&#8217;m defining Models in my rewrite so far:</p>
<pre>
  class Car extends Model {

    protected static function fields() {
      return array(
        "id" => array(
          "type" => "ID",
        ),
        "make" => array(
          "type" => "Make",
          "required" => true,
        ),
        "name" => array(
          "required" => true,
          "__get" => function($v) {
            return strtoupper($v);
          },
          "__set" => function($v) {
            return strtolower($v);
          }
        ),
      );
    }

    public function __toString() {
      return $this->name;
    }

  }
</pre>
<p>I think namespaces are a fantastic addition to the PHP language, and I&#8217;m definitely interested in implementing them with this project, I just want to get the core functionality in there first (and hopefully some legitimate unit testing). It&#8217;s not a huge codebase, so adding namespaces won&#8217;t be too difficult.</p>
<p>If you want to take a look through my rewrite so far, feel free. I&#8217;ve uploaded it to the link below. Just don&#8217;t judge me just yet on code quality &#8212; I&#8217;m just trying to get this rolling! <img src='http://andrewfreiday.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://andrewfreiday.com/temp/phrames-dev-20120206.zip" rel="nofollow">http://andrewfreiday.com/temp/phrames-dev-20120206.zip</a></p>
<p>Once this is in a more usable state I will glady upload this over my existing github project and send you an e-mail.</p>
<p>Thank you so much for your support and interest. All the best,</p>
<p>Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing the PHP MP3 waveform generator by Andrew</title>
		<link>http://andrewfreiday.com/2011/12/04/optimizing-the-php-mp3-waveform-generator/comment-page-1/#comment-5141</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Mon, 06 Feb 2012 14:25:56 +0000</pubDate>
		<guid isPermaLink="false">http://andrewfreiday.com/?p=175#comment-5141</guid>
		<description>Hi Arjhun,

I really can&#039;t provide much help on any errors you&#039;re having unless you tell me what those errors they are.

Andrew</description>
		<content:encoded><![CDATA[<p>Hi Arjhun,</p>
<p>I really can&#8217;t provide much help on any errors you&#8217;re having unless you tell me what those errors they are.</p>
<p>Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing the PHP MP3 waveform generator by Andrew</title>
		<link>http://andrewfreiday.com/2011/12/04/optimizing-the-php-mp3-waveform-generator/comment-page-1/#comment-5140</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Mon, 06 Feb 2012 14:25:07 +0000</pubDate>
		<guid isPermaLink="false">http://andrewfreiday.com/?p=175#comment-5140</guid>
		<description>Hi John,

A couple of quick suggestions to try and determine the problem:

First, if this is a development server (not public facing), make sure you have your PHP INI settings cranked up to show any errors.

Secondly, the script is likely throwing some errors, you are just not able to see them because it is trying to display the error output as a PNG image (which obviously won&#039;t work). Try commenting out the header(&quot;Content-Type: image/png&quot;); line near the bottom of the script and running it again. This should dump all of your errors properly to your browser window.

Give those two things a shot and let me know what you get.

Andrew</description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>A couple of quick suggestions to try and determine the problem:</p>
<p>First, if this is a development server (not public facing), make sure you have your PHP INI settings cranked up to show any errors.</p>
<p>Secondly, the script is likely throwing some errors, you are just not able to see them because it is trying to display the error output as a PNG image (which obviously won&#8217;t work). Try commenting out the header(&#8220;Content-Type: image/png&#8221;); line near the bottom of the script and running it again. This should dump all of your errors properly to your browser window.</p>
<p>Give those two things a shot and let me know what you get.</p>
<p>Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing the PHP MP3 waveform generator by Arjhun</title>
		<link>http://andrewfreiday.com/2011/12/04/optimizing-the-php-mp3-waveform-generator/comment-page-1/#comment-5139</link>
		<dc:creator>Arjhun</dc:creator>
		<pubDate>Sat, 04 Feb 2012 08:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://andrewfreiday.com/?p=175#comment-5139</guid>
		<description>Andrew,
I just wanted to know why certain MP3 files don&#039;t get analyzed and i get errors. Though i get the output waveform as an image for most, certain don&#039;t process and an error pops up. Any thoughts on why this happens ?</description>
		<content:encoded><![CDATA[<p>Andrew,<br />
I just wanted to know why certain MP3 files don&#8217;t get analyzed and i get errors. Though i get the output waveform as an image for most, certain don&#8217;t process and an error pops up. Any thoughts on why this happens ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing the PHP MP3 waveform generator by John</title>
		<link>http://andrewfreiday.com/2011/12/04/optimizing-the-php-mp3-waveform-generator/comment-page-1/#comment-5138</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 03 Feb 2012 06:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://andrewfreiday.com/?p=175#comment-5138</guid>
		<description>Hello,

I appreciate the effort you have made to create this script. It is exactly what I have been looking for.

I have been trying to run it on my Windows machine for the last few days and have had no luck. I am hoping you have run into this problem before and know a solution.

When I navigate to the .php and select my mp3 audio file, then hit Generate Waveform, the page will either refresh with a blank page. The waveform does not appear on the browser nor has it been created in the physical directory.

I have placed the .php file, lame.exe, and lame_enc.dll in the same directory, they are the only files in the directory, and there are no other directories inside the root directory. The directory has write permissions. I have tried changing certain variables to see if it changes anything, it does not work. I am using various mp3s with different encodes, still no luck.

Have you ever encountered this problem? Thanks.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I appreciate the effort you have made to create this script. It is exactly what I have been looking for.</p>
<p>I have been trying to run it on my Windows machine for the last few days and have had no luck. I am hoping you have run into this problem before and know a solution.</p>
<p>When I navigate to the .php and select my mp3 audio file, then hit Generate Waveform, the page will either refresh with a blank page. The waveform does not appear on the browser nor has it been created in the physical directory.</p>
<p>I have placed the .php file, lame.exe, and lame_enc.dll in the same directory, they are the only files in the directory, and there are no other directories inside the root directory. The directory has write permissions. I have tried changing certain variables to see if it changes anything, it does not work. I am using various mp3s with different encodes, still no luck.</p>
<p>Have you ever encountered this problem? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8220;phrames&#8221; framework/ORM now on github by Quadric</title>
		<link>http://andrewfreiday.com/2011/09/04/phrames-frameworkorm-now-on-github/comment-page-1/#comment-5137</link>
		<dc:creator>Quadric</dc:creator>
		<pubDate>Thu, 02 Feb 2012 23:12:13 +0000</pubDate>
		<guid isPermaLink="false">http://andrewfreiday.com/?p=170#comment-5137</guid>
		<description>Hi Andrew,

I see that you don&#039;t have time for phrames yet :( Will you continue in developing this project?

My answers:
1) I guess it will be good to split connection types for database backends, including schema browsing for making migrations (check answer 3). I think PDO is a good backend for this)
3) For template engine very similar to django there is a Twig. Looks and works very good. I used it for one of my projects. About south - django makes ORM &quot;Model oriented&quot; not &quot;Database oriented&quot; which means that database is created from model structure which makes sense for me. So when creating models it&#039;s neccessary to tell info about properites/columns, like so:

class Channel(models.Model):

    name = models.TextField(u&#039;Name&#039;)
    order = models.IntegerField(u&#039;Weight&#039;)
    def __unicode__(self):
        return self.name

So south creates schemamigrations and migrate them into database. It will create SQL channel table with column name of type &quot;text&quot; and order column with type &quot;integer&quot;.

So it will be good to have this in PHP, but insteda of propel or doctrine i don&#039;t think it&#039;s good to have it declared in xml&#039;s or yaml&#039;s. It maybe something like this

class Channel extends Model {
    $name = array(&#039;type&#039; =&gt; &#039;text&#039;);
    $order = array(&#039;ty[e&#039; =&gt; &#039;integer&#039;);
}


I&#039;ve changed structure to PHP namespaces so it looks much better. What do you thing about namespaces?


And some sort of links to my work 
(i can&#039;t show you much of my work becouse of company restrictions).

(everything is in polish)

http://outlay.goblix.pl (Django)
http://you-ebook.pl (PHP with my own framework)
http://rct.goblix.pl (This is PunBB Forum but with lot&#039;s of extensions i&#039;ve made)
http://quadric.goblix.pl (This is my personal blog)


I still wait for an e-mail from you when you got some time.
Cheers.</description>
		<content:encoded><![CDATA[<p>Hi Andrew,</p>
<p>I see that you don&#8217;t have time for phrames yet <img src='http://andrewfreiday.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Will you continue in developing this project?</p>
<p>My answers:<br />
1) I guess it will be good to split connection types for database backends, including schema browsing for making migrations (check answer 3). I think PDO is a good backend for this)<br />
3) For template engine very similar to django there is a Twig. Looks and works very good. I used it for one of my projects. About south &#8211; django makes ORM &#8220;Model oriented&#8221; not &#8220;Database oriented&#8221; which means that database is created from model structure which makes sense for me. So when creating models it&#8217;s neccessary to tell info about properites/columns, like so:</p>
<p>class Channel(models.Model):</p>
<p>    name = models.TextField(u&#8217;Name&#8217;)<br />
    order = models.IntegerField(u&#8217;Weight&#8217;)<br />
    def __unicode__(self):<br />
        return self.name</p>
<p>So south creates schemamigrations and migrate them into database. It will create SQL channel table with column name of type &#8220;text&#8221; and order column with type &#8220;integer&#8221;.</p>
<p>So it will be good to have this in PHP, but insteda of propel or doctrine i don&#8217;t think it&#8217;s good to have it declared in xml&#8217;s or yaml&#8217;s. It maybe something like this</p>
<p>class Channel extends Model {<br />
    $name = array(&#8216;type&#8217; =&gt; &#8216;text&#8217;);<br />
    $order = array(&#8216;ty[e&#8217; =&gt; &#8216;integer&#8217;);<br />
}</p>
<p>I&#8217;ve changed structure to PHP namespaces so it looks much better. What do you thing about namespaces?</p>
<p>And some sort of links to my work<br />
(i can&#8217;t show you much of my work becouse of company restrictions).</p>
<p>(everything is in polish)</p>
<p><a href="http://outlay.goblix.pl" rel="nofollow">http://outlay.goblix.pl</a> (Django)<br />
<a href="http://you-ebook.pl" rel="nofollow">http://you-ebook.pl</a> (PHP with my own framework)<br />
<a href="http://rct.goblix.pl" rel="nofollow">http://rct.goblix.pl</a> (This is PunBB Forum but with lot&#8217;s of extensions i&#8217;ve made)<br />
<a href="http://quadric.goblix.pl" rel="nofollow">http://quadric.goblix.pl</a> (This is my personal blog)</p>
<p>I still wait for an e-mail from you when you got some time.<br />
Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing the PHP MP3 waveform generator by Nicholas Cooper</title>
		<link>http://andrewfreiday.com/2011/12/04/optimizing-the-php-mp3-waveform-generator/comment-page-1/#comment-5136</link>
		<dc:creator>Nicholas Cooper</dc:creator>
		<pubDate>Wed, 25 Jan 2012 10:48:04 +0000</pubDate>
		<guid isPermaLink="false">http://andrewfreiday.com/?p=175#comment-5136</guid>
		<description>Thank you for your insight and expertise, that information is correct and I thought the same thing. I will be receiving a server within a month will I be able to then process this script? 

Thank You</description>
		<content:encoded><![CDATA[<p>Thank you for your insight and expertise, that information is correct and I thought the same thing. I will be receiving a server within a month will I be able to then process this script? </p>
<p>Thank You</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing the PHP MP3 waveform generator by Andrew</title>
		<link>http://andrewfreiday.com/2011/12/04/optimizing-the-php-mp3-waveform-generator/comment-page-1/#comment-5135</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Sun, 22 Jan 2012 21:18:46 +0000</pubDate>
		<guid isPermaLink="false">http://andrewfreiday.com/?p=175#comment-5135</guid>
		<description>Based on what I can see, it looks like you&#039;re running a Linux-based server, not Windows. In this case, the lame Windows executable files (DLL and EXE) are not going to be useful to you. With shared hosting it&#039;s going to be really difficult, but you&#039;ll probably need root access in order to install LAME on Linux or build from source.</description>
		<content:encoded><![CDATA[<p>Based on what I can see, it looks like you&#8217;re running a Linux-based server, not Windows. In this case, the lame Windows executable files (DLL and EXE) are not going to be useful to you. With shared hosting it&#8217;s going to be really difficult, but you&#8217;ll probably need root access in order to install LAME on Linux or build from source.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing the PHP MP3 waveform generator by Nicholas Cooper</title>
		<link>http://andrewfreiday.com/2011/12/04/optimizing-the-php-mp3-waveform-generator/comment-page-1/#comment-5134</link>
		<dc:creator>Nicholas Cooper</dc:creator>
		<pubDate>Sat, 21 Jan 2012 11:13:28 +0000</pubDate>
		<guid isPermaLink="false">http://andrewfreiday.com/?p=175#comment-5134</guid>
		<description>Hey trying to get this to work on my shared hosting,
http://www.theelectronicnation.com/waveform/php-waveform-svg.php

I got a lot of errors popping up and I made sure that the directory had a CHMOD of 777 as well as the file itself. I&#039;ve placed the lame.dll in the director yet no luck, I am missing a step or something please help thank you.</description>
		<content:encoded><![CDATA[<p>Hey trying to get this to work on my shared hosting,<br />
<a href="http://www.theelectronicnation.com/waveform/php-waveform-svg.php" rel="nofollow">http://www.theelectronicnation.com/waveform/php-waveform-svg.php</a></p>
<p>I got a lot of errors popping up and I made sure that the directory had a CHMOD of 777 as well as the file itself. I&#8217;ve placed the lame.dll in the director yet no luck, I am missing a step or something please help thank you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

