<?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 on: About</title>
	<atom:link href="http://www.codediesel.com/about/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codediesel.com</link>
	<description>/* PHP &#38; MySQL Journal */</description>
	<lastBuildDate>Thu, 03 May 2012 18:35:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Dan</title>
		<link>http://www.codediesel.com/about/comment-page-1/#comment-3455</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 19 Mar 2012 10:45:38 +0000</pubDate>
		<guid isPermaLink="false">#comment-3455</guid>
		<description>In regards to your post &quot;Transferring large PSD files quickly using Diff-Patch&quot; -
You can use dropbox to share files with your customers. Dropbox keeps synchronizing only the diffs.</description>
		<content:encoded><![CDATA[<p>In regards to your post &#8220;Transferring large PSD files quickly using Diff-Patch&#8221; -<br />
You can use dropbox to share files with your customers. Dropbox keeps synchronizing only the diffs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damitr</title>
		<link>http://www.codediesel.com/about/comment-page-1/#comment-2979</link>
		<dc:creator>Damitr</dc:creator>
		<pubDate>Sun, 20 Nov 2011 17:53:22 +0000</pubDate>
		<guid isPermaLink="false">#comment-2979</guid>
		<description>Hi,

This is related to your post on Mir Books. 
Check out my attempt to redeem them:

http://mirtitles.org

D</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This is related to your post on Mir Books.<br />
Check out my attempt to redeem them:</p>
<p><a href="http://mirtitles.org" rel="nofollow">http://mirtitles.org</a></p>
<p>D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juergen</title>
		<link>http://www.codediesel.com/about/comment-page-1/#comment-2968</link>
		<dc:creator>Juergen</dc:creator>
		<pubDate>Wed, 16 Nov 2011 19:05:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-2968</guid>
		<description>Hello,
I would like to thank you for updating your Amazon API Class for the new associate_tag
Now everything works fine again
Juergen</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I would like to thank you for updating your Amazon API Class for the new associate_tag<br />
Now everything works fine again<br />
Juergen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SuperBebert</title>
		<link>http://www.codediesel.com/about/comment-page-1/#comment-2953</link>
		<dc:creator>SuperBebert</dc:creator>
		<pubDate>Thu, 10 Nov 2011 06:42:56 +0000</pubDate>
		<guid isPermaLink="false">#comment-2953</guid>
		<description>So fan of your article. 
Its very helpfull for the beginners.

Just a litle note about your article &quot;Accessing Amazon Product Advertising API&quot;, there is a wrong space before &#039;&amp;&#039; in the final request building which included signature.
/* create request */
$request = &quot;http://&quot;.$host.$uri.&quot;?&quot;.$canonicalized_query.&quot;
                &amp;Signature=&quot;.$signature;

=&gt; it creates problem for usage</description>
		<content:encoded><![CDATA[<p>So fan of your article.<br />
Its very helpfull for the beginners.</p>
<p>Just a litle note about your article &#8220;Accessing Amazon Product Advertising API&#8221;, there is a wrong space before &#8216;&amp;&#8217; in the final request building which included signature.<br />
/* create request */<br />
$request = &#8220;http://&#8221;.$host.$uri.&#8221;?&#8221;.$canonicalized_query.&#8221;<br />
                &amp;Signature=&#8221;.$signature;</p>
<p>=&gt; it creates problem for usage</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandy</title>
		<link>http://www.codediesel.com/about/comment-page-1/#comment-2940</link>
		<dc:creator>Sandy</dc:creator>
		<pubDate>Fri, 04 Nov 2011 05:02:32 +0000</pubDate>
		<guid isPermaLink="false">#comment-2940</guid>
		<description>Hi Sameer,

Keep up the Good work...

Its very helpfull for the beginners.

Best Regards,
Sandy.</description>
		<content:encoded><![CDATA[<p>Hi Sameer,</p>
<p>Keep up the Good work&#8230;</p>
<p>Its very helpfull for the beginners.</p>
<p>Best Regards,<br />
Sandy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pablo BOZZOLO</title>
		<link>http://www.codediesel.com/about/comment-page-1/#comment-2939</link>
		<dc:creator>Pablo BOZZOLO</dc:creator>
		<pubDate>Thu, 03 Nov 2011 14:25:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-2939</guid>
		<description>Thanks for your post about Link List! very useful!!

Here some add-ons:

// por Pablo
	public function rewind(){
	  $this-&gt;lastNode = $this-&gt;firstNode;
	}
	
	// por Pablo
	public function current(){
	  return $this-&gt;lastNode-&gt;data;
	}
	
    // por Pablo
	public function next(){
	  $out = $this-&gt;lastNode-&gt;data;
	  $this-&gt;lastNode = $this-&gt;lastNode-&gt;next;
	  return $out;	
	}</description>
		<content:encoded><![CDATA[<p>Thanks for your post about Link List! very useful!!</p>
<p>Here some add-ons:</p>
<p>// por Pablo<br />
	public function rewind(){<br />
	  $this-&gt;lastNode = $this-&gt;firstNode;<br />
	}</p>
<p>	// por Pablo<br />
	public function current(){<br />
	  return $this-&gt;lastNode-&gt;data;<br />
	}</p>
<p>    // por Pablo<br />
	public function next(){<br />
	  $out = $this-&gt;lastNode-&gt;data;<br />
	  $this-&gt;lastNode = $this-&gt;lastNode-&gt;next;<br />
	  return $out;<br />
	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Muskie</title>
		<link>http://www.codediesel.com/about/comment-page-1/#comment-2913</link>
		<dc:creator>Muskie</dc:creator>
		<pubDate>Tue, 04 Oct 2011 19:29:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-2913</guid>
		<description>Here is the simplest fix I came up with:

        /**
         * Query Amazon with the issued parameters
         * 
         * @param array $parameters parameters to query around
         * @return simpleXmlObject xml query response
         */
        private function queryAmazon($parameters)
        {
        	$parameters[&quot;AssociateTag&quot;] = myInfo::MY_AMAZON_ASSOCIATE_ID;
       
            return aws_signed_request(&quot;com&quot;, $parameters, $this-&gt;public_key, $this-&gt;private_key);
        }</description>
		<content:encoded><![CDATA[<p>Here is the simplest fix I came up with:</p>
<p>        /**<br />
         * Query Amazon with the issued parameters<br />
         *<br />
         * @param array $parameters parameters to query around<br />
         * @return simpleXmlObject xml query response<br />
         */<br />
        private function queryAmazon($parameters)<br />
        {<br />
        	$parameters["AssociateTag"] = myInfo::MY_AMAZON_ASSOCIATE_ID;</p>
<p>            return aws_signed_request(&#8220;com&#8221;, $parameters, $this-&gt;public_key, $this-&gt;private_key);<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hend</title>
		<link>http://www.codediesel.com/about/comment-page-1/#comment-2912</link>
		<dc:creator>Hend</dc:creator>
		<pubDate>Tue, 04 Oct 2011 14:37:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-2912</guid>
		<description>Hi Sameer,

I&#039;m a beginner QA, I need to learn and fully understand Selenium. I&#039;m working on Linux operating system.

I read the documentation to Selenium but still need help, please advice me what to do.</description>
		<content:encoded><![CDATA[<p>Hi Sameer,</p>
<p>I&#8217;m a beginner QA, I need to learn and fully understand Selenium. I&#8217;m working on Linux operating system.</p>
<p>I read the documentation to Selenium but still need help, please advice me what to do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Muskie</title>
		<link>http://www.codediesel.com/about/comment-page-1/#comment-2901</link>
		<dc:creator>Muskie</dc:creator>
		<pubDate>Thu, 29 Sep 2011 03:39:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-2901</guid>
		<description>Amazon Product API is requiring AssociateTag now or very soon.  How does this affect your Amazon Product API example.  I use a modified version of your code.  Ultimately everything goes to aws_signed_request which is where the public and private key are added.  Is this no long sufficient?  I think adding the AssociateTag there would be the simplest change but I wonder if I have to pass teh AssociateTag in as part of $parameters every time...

Gotta look at it more, but I thought since it was your original design you might have some thoughts too.</description>
		<content:encoded><![CDATA[<p>Amazon Product API is requiring AssociateTag now or very soon.  How does this affect your Amazon Product API example.  I use a modified version of your code.  Ultimately everything goes to aws_signed_request which is where the public and private key are added.  Is this no long sufficient?  I think adding the AssociateTag there would be the simplest change but I wonder if I have to pass teh AssociateTag in as part of $parameters every time&#8230;</p>
<p>Gotta look at it more, but I thought since it was your original design you might have some thoughts too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atasa</title>
		<link>http://www.codediesel.com/about/comment-page-1/#comment-2024</link>
		<dc:creator>Atasa</dc:creator>
		<pubDate>Sat, 05 Jun 2010 12:04:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-2024</guid>
		<description>Hi, Nice work...
I visit Pune Often maybe grat to read this</description>
		<content:encoded><![CDATA[<p>Hi, Nice work&#8230;<br />
I visit Pune Often maybe grat to read this</p>
]]></content:encoded>
	</item>
</channel>
</rss>

