<?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>My Science Is Better</title>
	<atom:link href="http://www.myscienceisbetter.info/feed" rel="self" type="application/rss+xml" />
	<link>http://www.myscienceisbetter.info</link>
	<description></description>
	<lastBuildDate>Sun, 18 Dec 2011 22:26:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>First and last day of the month in PHP</title>
		<link>http://www.myscienceisbetter.info/first-and-last-day-of-the-month-in-php.html</link>
		<comments>http://www.myscienceisbetter.info/first-and-last-day-of-the-month-in-php.html#comments</comments>
		<pubDate>Sun, 18 Dec 2011 22:25:40 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=289</guid>
		<description><![CDATA[I've been working with dates today and i've found a pretty neat snippet to show the first and the last day of the month using php]]></description>
			<content:encoded><![CDATA[<p>I've been working with dates today and i've found a pretty neat snippet to show the <a href="http://www.myscienceisbetter.info/first-and-last-day-of-the-month-in-php.html">first and the last day of the month using php</a></p>
<pre class="brush: php; title: ; notranslate">
		$firstDoM = date(&quot;Y-m-01&quot;); //01 -&gt; first day of month
		$lastDoM = date(&quot;Y-m-t&quot;); //t -&gt; last day of month
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/first-and-last-day-of-the-month-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Force IE to use the latest engine</title>
		<link>http://www.myscienceisbetter.info/force-ie-to-use-the-latest-engine.html</link>
		<comments>http://www.myscienceisbetter.info/force-ie-to-use-the-latest-engine.html#comments</comments>
		<pubDate>Thu, 08 Dec 2011 21:37:36 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=287</guid>
		<description><![CDATA[If by some unknown reason IE8/9/10 are rendering your site in compatibility mode, ie IE7 mode or something lame like that, just force it to use the latest engine available: note that the code added right before the doctype declaration. the using_ie() boolean function below (credits to Simeon for this solution: http://www.php.net/manual/en/function.get-browser.php#101314)]]></description>
			<content:encoded><![CDATA[<p>If by some unknown reason IE8/9/10 are rendering your site in compatibility mode, ie IE7 mode or something lame like that, just force it to use the latest engine available:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php if (using_ie()) {header(&quot;X-UA-Compatible: IE=Edge&quot;); ?&gt;&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=Edge&quot;/&gt;&lt;?php } ?&gt;&lt;!DOCTYPE html&gt;
</pre>
<p>note that the code added right before the doctype declaration. the using_ie() boolean function below (credits to Simeon for this solution: http://www.php.net/manual/en/function.get-browser.php#101314)</p>
<pre class="brush: php; title: ; notranslate">
function using_ie()
{
    $u_agent = $_SERVER['HTTP_USER_AGENT'];
    $ub = False;
    if(preg_match('/MSIE/i',$u_agent))
    {
        $ub = True;
    } 

    return $ub;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/force-ie-to-use-the-latest-engine.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento get all products</title>
		<link>http://www.myscienceisbetter.info/magento-get-all-products.html</link>
		<comments>http://www.myscienceisbetter.info/magento-get-all-products.html#comments</comments>
		<pubDate>Tue, 15 Nov 2011 06:00:40 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=284</guid>
		<description><![CDATA[Here is an easy way to return all the products from a magento store.]]></description>
			<content:encoded><![CDATA[<p>Here is an easy way to return all the products from a magento store.</p>
<pre class="brush: php; title: ; notranslate">
$collection = Mage::getModel('catalog/product')
                        -&gt;getCollection()
                        -&gt;addAttributeToSelect('*');

foreach ($collection as $product) {
    echo $product-&gt;getName() . &quot;&lt;br /&gt;&quot;;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/magento-get-all-products.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP response headers in Zend Framework</title>
		<link>http://www.myscienceisbetter.info/http-response-headers-in-zend-framework.html</link>
		<comments>http://www.myscienceisbetter.info/http-response-headers-in-zend-framework.html#comments</comments>
		<pubDate>Thu, 13 Oct 2011 22:17:58 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[response headers]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=279</guid>
		<description><![CDATA[I needed to display a Zend Framework generated PDF using the browser plugins and after a bit of looking around it turns out that some headers need to be set in order to achieve that. If you'd want to automatically download the PDF instead of displaying it using the browser plugins, you need to change [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to display a Zend Framework generated PDF using the browser plugins and after a bit of looking around it turns out that some headers need to be set in order to achieve that.</p>
<pre class="brush: php; title: ; notranslate">
$this-&gt;getResponse()
     -&gt;setHeader('Content-Disposition', 'inline; filename=invoice.pdf')
     -&gt;setHeader('Content-type', 'application/x-pdf');
</pre>
<p>If you'd want to automatically download the PDF instead of displaying it using the browser plugins, you need to change the 'Content-Disposition' as follows:</p>
<pre class="brush: php; title: ; notranslate">
$this-&gt;getResponse()
     -&gt;setHeader('Content-Disposition', 'attachment; filename=invoice.pdf')
     -&gt;setHeader('Content-type', 'application/x-pdf');
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/http-response-headers-in-zend-framework.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switch layouts in Zend Framework</title>
		<link>http://www.myscienceisbetter.info/switch-layouts-in-zend-framework.html</link>
		<comments>http://www.myscienceisbetter.info/switch-layouts-in-zend-framework.html#comments</comments>
		<pubDate>Thu, 13 Oct 2011 15:28:59 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[zend_layout]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=274</guid>
		<description><![CDATA[If you have a larger Zend Framework application, you probably want to you use a layout for more of your pages. For instance you'd need at least two layouts: one for a backend and another one for frontend. In order to tell ZF to use layouts, you'll need to set the layout paths in your [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a larger Zend Framework application, you probably want to you use a layout for more of your pages. For instance you'd need at least two layouts: one for a backend and another one for frontend. In order to tell ZF to use layouts, you'll need to set the layout paths in your application.ini </p>
<p>In order to store the layouts in /application/layouts/scripts, add the following to /application/configs/application.ini</p>
<pre class="brush: bash; title: ; notranslate">
resources.layout.layoutpath = APPLICATION_PATH &quot;/layouts/scripts&quot;
</pre>
<p>You can now create several layouts, something around this model:</p>
<pre class="brush: php; title: ; notranslate">
&lt;!DOCTYPE html
    PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;
    &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
    &lt;?php echo $this-&gt;headTitle() ?&gt;
    &lt;?php echo $this-&gt;headScript() ?&gt;
    &lt;?php echo $this-&gt;headStyle() ?&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;?php echo $this-&gt;render('header.phtml') ?&gt;

    &lt;div id=&quot;content&quot;&gt;&lt;?php echo $this-&gt;layout()-&gt;content ?&gt;&lt;/div&gt;

    &lt;?php echo $this-&gt;render('footer.phtml') ?&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>By default, your application will use the layout in /application/layouts/scripts/layout.phtml, but if you want some pages to be rendered using another layout you can tell ZF to do so like this:</p>
<pre class="brush: php; title: ; notranslate">
// Within controller
// note that the file that's going to be rendered is /application/layouts/scripts/backend.phtml
$this-&gt;_helper-&gt;_layout-&gt;setLayout('backend')

//Within view script
$this-&gt;layout()-&gt;setLayout('other-layout'); ?&gt;
</pre>
<p>More info on using Zend_Layout: <a href="http://framework.zend.com/manual/en/zend.layout.quickstart.html">http://framework.zend.com/manual/en/zend.layout.quickstart.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/switch-layouts-in-zend-framework.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Password protect a folder in Apache using .htaccess</title>
		<link>http://www.myscienceisbetter.info/password-protect-a-folder-in-apache-using-htaccess.html</link>
		<comments>http://www.myscienceisbetter.info/password-protect-a-folder-in-apache-using-htaccess.html#comments</comments>
		<pubDate>Fri, 07 Oct 2011 10:25:56 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=269</guid>
		<description><![CDATA[then in your htaccess add these:]]></description>
			<content:encoded><![CDATA[<pre class="brush: bash; title: ; notranslate">
mkdir -p /home/secure/
htpasswd -c /home/secure/apasswords developer
chown apache:apache /home/secure/apasswords
chmod 0660 /home/secure/apasswords
</pre>
<p>then in your htaccess add these:</p>
<pre class="brush: bash; title: ; notranslate">
AuthType Basic
AuthName &quot;Restricted Access&quot;
AuthUserFile /home/secure/apasswords
Require user developer
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/password-protect-a-folder-in-apache-using-htaccess.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FIX: Sites not working in IE7, IE8 CO</title>
		<link>http://www.myscienceisbetter.info/fix-sites-not-working-in-ie7-ie8-co.html</link>
		<comments>http://www.myscienceisbetter.info/fix-sites-not-working-in-ie7-ie8-co.html#comments</comments>
		<pubDate>Tue, 20 Sep 2011 20:56:23 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ie8]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=267</guid>
		<description><![CDATA[Recently I had to fix a site that was not being displayed correctly in IE8. Turned out that some of the DOM was written by Javascript, and IE8 on client's machine was not displaying parts of the page. At first i was not able to replicate the issue on a clean XP SP3, with IE8, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had to fix a site that was not being displayed correctly in IE8. Turned out that some of the DOM was written by Javascript, and IE8 on client's machine was not displaying parts of the page. At first i was not able to replicate the issue on a clean XP SP3, with IE8, but then after i disabled javascript i got the same effect as the client. Thought the solution was easy, assumed the client has JS disabled, but it turns out JS was enabled.</p>
<p>After closer investigation, the only difference between my IE8 and client's IE8 was a CO, installed using IEAK8 (corporate shit) and it had by default native XMLHTTP disabled. Translated: jQuery was assuming the browser is IE6.</p>
<p>To fix this issue, enable XMLHTTP in IE7, or IE8</p>
<pre>1. Open IE8
2. Go to Tools -&gt; Internet Options -&gt; Advanced
3. make sure "Enable native XMLHTTP support" is checked
4. Save</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/fix-sites-not-working-in-ie7-ie8-co.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heroku on Ubuntu</title>
		<link>http://www.myscienceisbetter.info/heroku-on-ubuntu.html</link>
		<comments>http://www.myscienceisbetter.info/heroku-on-ubuntu.html#comments</comments>
		<pubDate>Sun, 18 Sep 2011 18:21:42 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[heroku]]></category>
		<category><![CDATA[ruby-1.9.2]]></category>
		<category><![CDATA[rvm]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=256</guid>
		<description><![CDATA[http://devcenter.heroku.com/articles/quickstart]]></description>
			<content:encoded><![CDATA[<p>As everything that comes from ruby world, getting heroku running on Ubuntu is not as easy as we're used to (ie: apt-get install heroku) so there are a few steps that need to be followed. I've written this down so i can come back to it later and so that others don't lose hours trying to figure this out. The data on this article has been scraped from<a href=" http://www.web2linux.com/05/installing-rails-3-on-ubuntu-10-04-lucid-lynx/" target="_blank"> http://www.web2linux.com/05/installing-rails-3-on-ubuntu-10-04-lucid-lynx/</a> and <a href="http://devcenter.heroku.com/articles/quickstart" target="_blank">http://devcenter.heroku.com/articles/quickstart</a></p>
<h4>Installing dependencies</h4>
<pre class="brush: bash; title: ; notranslate">
sudo apt-get install curl git-core build-essential zlib1g-dev libssl-dev libreadline5-dev
</pre>
<h4>Install rvm</h4>
<pre class="brush: bash; title: ; notranslate">
#for latest, check https://rvm.beginrescueend.com/
bash &lt; </pre>
<h4>Install ruby-1.9.2</h4>
<pre class="brush: bash; title: ; notranslate">
rvm install 1.9.2 &amp;&amp; rvm use 1.9.2 --default
</pre>
<p>Then add this line as the last line in your .bashrc:</p>
<pre class="brush: bash; title: ; notranslate">
if [[ -s &quot;$HOME/.rvm/scripts/rvm&quot; ]];
        then source &quot;$HOME/.rvm/scripts/rvm&quot;;
fi
</pre>
<h4>Install Heroku</h4>
<p><a href="http://heroku.com/signup">Sign-up for a Heroku account</a> if you haven’t already and then install the <code>heroku</code>gem.</p>
<pre class="brush: bash; title: ; notranslate">gem install heroku</pre>
<p>You will be asked to enter your Heroku credentials the first time you run a command; after the first time, your email address and an API token will be saved to <code>~/.heroku/credentials</code> for future use.</p>
<p>It’s generally a good idea to add your public key immediately after installing the heroku gem so that you can use git to push or clone Heroku app repositories:</p>
<pre class="brush: bash; title: ; notranslate">heroku keys:add
Enter your Heroku credentials.
Email: joe@example.com
Password:
Uploading ssh public key /Users/joe/.ssh/id_rsa.pub
</pre>
<h4>Track your application with Git</h4>
<p>If you’re already using Git with your application, skip to the next step. If you’re not yet using Git to track your application, run this:</p>
<pre class="brush: bash; title: ; notranslate">
cd PATH/TO/MY_APP
git init
# Initialized empty Git repository in .git/
git add .
git commit -m &quot;new app&quot;
Created initial commit 5df2d09: new app
44 files changed, 8393 insertions(+), 0 deletions(-)
</pre>
<h4>Create your Heroku application</h4>
<p>At the command line, run heroku create. The first time you do this, you’ll be asked to enter your Heroku credentials. Once you do, your email address and an API token will be saved to ~/.heroku/credentials, so you won’t have to provide them again.</p>
<p>This first use will also upload your public SSH key so you’ll be able to push and pull code.</p>
<pre class="brush: bash; title: ; notranslate">
heroku create
Enter your Heroku credentials.
Email: joe@example.com
Password:
Uploading ssh public key /Users/joe/.ssh/id_rsa.pub
Created http://high-sunrise-58.heroku.com/ | git@heroku.com:high-sunrise-58.git
Git remote heroku added
</pre>
<p>The last line shows the name of your new Heroku app; in this case, it’s “high-sunrise-58”, and is available at http://high-sunrise-58.heroku.com. If you were to visit that URL before pushing your application code (either by typing it in or running heroku open), you’d see a standard Heroku welcome page.</p>
<p>On the next to last line, there’s another important piece of information: git@heroku.com:high-sunrise-58.git. This is the Git repository address for your new Heroku app, and if you check the output of git remote show heroku you can see that the heroku gem added it as a remote for you automatically.</p>
<h4>Push your application to Heroku</h4>
<pre class="brush: bash; title: ; notranslate">
git push heroku master
Counting objects: 65, done.
Compressing objects: 100% (58/58), done.
Writing objects: 100% (65/65), 80.54 KiB, done.
Total 65 (delta 14), reused 0 (delta 0)

-----&gt; Heroku receiving push
-----&gt; Rails app detected
       Compiled slug size is 0.1MB
-----&gt; Launching....... done
       App deployed to Heroku

To git@heroku.com:high-sunrise-58.git
 * [new branch]      master -&gt; master
</pre>
<h4>Bootstrap your database</h4>
<p>Your app is now running on Heroku with an empty database. Depending on your framework, run the appropriate command to set up your DB. For Ruby on Rails, run:</p>
<pre class="brush: bash; title: ; notranslate">
heroku rake db:migrate
(in /mnt/home/slugs/41913_b81cc1e5813c58c443e4120aff984d006f36ef20/mnt)
== 20081118092504 CreateWidgets: migrating ====================================
-- create_table(:widgets)
   -&gt; 0.0519s
== 20081118092504 CreateWidgets: migrated (0.0520s) ===========================
</pre>
<p>That’s it, your app is now running on Heroku! You can take a look at it in your default web browser by running heroku open.</p>
<p>Next Steps</p>
<p>Now that your application is running, it’s easy to push updates:</p>
<p>Develop and test changes locally.<br />
Commit code to git.<br />
Push your changes to Heroku with git push heroku.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/heroku-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove MS Word formatting using PHP regular expressions</title>
		<link>http://www.myscienceisbetter.info/remove-ms-word-formatting-using-php-regular-expressions.html</link>
		<comments>http://www.myscienceisbetter.info/remove-ms-word-formatting-using-php-regular-expressions.html#comments</comments>
		<pubDate>Mon, 12 Sep 2011 08:02:59 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=252</guid>
		<description><![CDATA[Recently i've had a client which would only paste into the CMS text from MS Word. Normally a JS should have been in place to automatically strip the crazy tags Word adds, but on this project this was not the case. Here's hos to remove MS Word formatting using PHP regular expressions:]]></description>
			<content:encoded><![CDATA[<p>Recently i've had a client which would only paste into the CMS text from MS Word. Normally a JS should have been in place to automatically strip the crazy tags Word adds, but on this project this was not the case. Here's hos to <a href="http://www.myscienceisbetter.info/remove-ms-word-formatting-using-php-regular-expressions.html" title="remove MS Word formatting using PHP regular expressions">remove MS Word formatting using PHP regular expressions</a>:</p>
<pre class="brush: php; title: ; notranslate">
// it will remove all &lt;!--[if ...]&gt;....&lt;![endif]--&gt; comments
preg_replace('/&lt;!--\[if[^\]]*]&gt;.*?&lt;!\[endif\]--&gt;/i', '', $string);

or 

// it will remove all &lt;!--[if ...]&gt;.... --&gt; comments
preg_replace('/&lt;!--\[if[^\]]*]&gt;.*?--&gt;/i', '', $string);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/remove-ms-word-formatting-using-php-regular-expressions.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirect entire site to another domain, excluding folder</title>
		<link>http://www.myscienceisbetter.info/redirect-entire-site-to-another-domain-excluding-folder.html</link>
		<comments>http://www.myscienceisbetter.info/redirect-entire-site-to-another-domain-excluding-folder.html#comments</comments>
		<pubDate>Thu, 21 Jul 2011 14:17:18 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[redirect entire site]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=242</guid>
		<description><![CDATA[A site i've built for a campaign needed to be redirected to another site as the campaign expired, but one folder in the domain needed still to be accessible. htaccess to the rescue: This rule does match any URL path that does not begin with either /uploads or /uploads/ (leading / is missing in the [...]]]></description>
			<content:encoded><![CDATA[<p>A site i've built for a campaign needed to be redirected to another site as the campaign expired, but one folder in the domain needed still to be accessible. htaccess to the rescue:</p>
<pre class="brush: bash; title: ; notranslate">
RewriteEngine on
RewriteRule !^uploads($|/) http://example.com%{REQUEST_URI} [L,R=301]
</pre>
<blockquote><p>This rule does match any URL path that does not begin with either /uploads or /uploads/ (leading / is missing in the pattern due to the path prefix removal when used in .htaccess files) and redirects the request to the corresponding path at example.com.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/redirect-entire-site-to-another-domain-excluding-folder.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

