<?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 PHP vs .Net</title>
	<atom:link href="http://www.phpvs.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpvs.net</link>
	<description>ASP.Net and PHP go head to head</description>
	<lastBuildDate>Tue, 24 Jan 2012 07:03:26 +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 Ten PHP Best Practices Tips that will get you a job by Sanjeeb Sahu</title>
		<link>http://www.phpvs.net/2008/06/04/ten-php-best-practices-tips-that-will-get-you-a-job/comment-page-4/#comment-67498</link>
		<dc:creator>Sanjeeb Sahu</dc:creator>
		<pubDate>Tue, 24 Jan 2012 07:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpvs.net/2008/06/04/ten-php-best-practices-tips-that-will-get-you-a-job/#comment-67498</guid>
		<description>Nice article..After reading i got some basic idea over php. Thanks a lot...</description>
		<content:encoded><![CDATA[<p>Nice article..After reading i got some basic idea over php. Thanks a lot&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTP Signed Requests with PHP by Gavin</title>
		<link>http://www.phpvs.net/2011/12/24/http-signed-requests-with-php/comment-page-1/#comment-66117</link>
		<dc:creator>Gavin</dc:creator>
		<pubDate>Fri, 06 Jan 2012 16:07:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpvs.net/?p=268#comment-66117</guid>
		<description>Thanks a lot for this simple explanation and the codesample. Very much appreciated!</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this simple explanation and the codesample. Very much appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTP Signed Requests with PHP by blake</title>
		<link>http://www.phpvs.net/2011/12/24/http-signed-requests-with-php/comment-page-1/#comment-65479</link>
		<dc:creator>blake</dc:creator>
		<pubDate>Sat, 31 Dec 2011 16:33:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpvs.net/?p=268#comment-65479</guid>
		<description>Hi Yannick,

Good question.  I don&#039;t know of such a page, and unfortunately couldn&#039;t find one with some quick googling. That would definitely be a valid concern for someone writing a public API or REST service, and would be worth researching as part of a project design.

On the plus side, hashing algorithms are generally known and publicly available.  With a little work, they can be implemented in any language, so I would expect the most popular algorithms to make it in to most or all of the major languages either with core support or 3rd-party support.  SHA256 is ok for now, although some people theorize it may be &quot;broken&quot; (ie. take less time to find collisions than you would expect for the size of the hash length) within a few years, and future versions of SHA are already under development.

Since hashing evolves over time, it would not be a bad idea to plan a REST service to include different acceptable hash functions.  In that way you add functions in the future, and deprecate and remove older ones.  It could be as simple as having the user pass a &quot;hash=sha256&quot; parameter with requests that did not use the default preferred hash method.

Cheers, and all the best in 2012!</description>
		<content:encoded><![CDATA[<p>Hi Yannick,</p>
<p>Good question.  I don&#039;t know of such a page, and unfortunately couldn&#039;t find one with some quick googling. That would definitely be a valid concern for someone writing a public API or REST service, and would be worth researching as part of a project design.</p>
<p>On the plus side, hashing algorithms are generally known and publicly available.  With a little work, they can be implemented in any language, so I would expect the most popular algorithms to make it in to most or all of the major languages either with core support or 3rd-party support.  SHA256 is ok for now, although some people theorize it may be &#034;broken&#034; (ie. take less time to find collisions than you would expect for the size of the hash length) within a few years, and future versions of SHA are already under development.</p>
<p>Since hashing evolves over time, it would not be a bad idea to plan a REST service to include different acceptable hash functions.  In that way you add functions in the future, and deprecate and remove older ones.  It could be as simple as having the user pass a &#034;hash=sha256&#034; parameter with requests that did not use the default preferred hash method.</p>
<p>Cheers, and all the best in 2012!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTP Signed Requests with PHP by Yannick Warnier</title>
		<link>http://www.phpvs.net/2011/12/24/http-signed-requests-with-php/comment-page-1/#comment-65467</link>
		<dc:creator>Yannick Warnier</dc:creator>
		<pubDate>Sat, 31 Dec 2011 15:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpvs.net/?p=268#comment-65467</guid>
		<description>Hi Blake,

Thanks for this nice layout of requests signing. The only thing I&#039;m always worried about with signatures is how portable the signing mechanisms are. If SHA1() is insecure now (they say it can be hacked in a matter of hours through brute force now), at least it can be used from any language. As web services tend to improve the cross-languages communication, it would be sad to have one signing method not supported by a specific language.
Would you know of any page which would reference all the hashing algorithms and the programming languages in which they are supported?

Happy new year, by the way.</description>
		<content:encoded><![CDATA[<p>Hi Blake,</p>
<p>Thanks for this nice layout of requests signing. The only thing I&#039;m always worried about with signatures is how portable the signing mechanisms are. If SHA1() is insecure now (they say it can be hacked in a matter of hours through brute force now), at least it can be used from any language. As web services tend to improve the cross-languages communication, it would be sad to have one signing method not supported by a specific language.<br />
Would you know of any page which would reference all the hashing algorithms and the programming languages in which they are supported?</p>
<p>Happy new year, by the way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ten PHP Best Practices Tips that will get you a job by Habeeb Perwad</title>
		<link>http://www.phpvs.net/2008/06/04/ten-php-best-practices-tips-that-will-get-you-a-job/comment-page-4/#comment-64771</link>
		<dc:creator>Habeeb Perwad</dc:creator>
		<pubDate>Sat, 24 Dec 2011 06:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpvs.net/2008/06/04/ten-php-best-practices-tips-that-will-get-you-a-job/#comment-64771</guid>
		<description>Good One...</description>
		<content:encoded><![CDATA[<p>Good One&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ten PHP Best Practices Tips that will get you a job by tarun</title>
		<link>http://www.phpvs.net/2008/06/04/ten-php-best-practices-tips-that-will-get-you-a-job/comment-page-4/#comment-64597</link>
		<dc:creator>tarun</dc:creator>
		<pubDate>Thu, 22 Dec 2011 08:56:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpvs.net/2008/06/04/ten-php-best-practices-tips-that-will-get-you-a-job/#comment-64597</guid>
		<description>nice..good basic points every one should remember..</description>
		<content:encoded><![CDATA[<p>nice..good basic points every one should remember..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.Net MVC &#8211; How to route to images or other file types by embarus</title>
		<link>http://www.phpvs.net/2009/08/06/aspnet-mvc-how-to-route-to-images-or-other-file-types/comment-page-1/#comment-64209</link>
		<dc:creator>embarus</dc:creator>
		<pubDate>Sun, 18 Dec 2011 17:09:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpvs.net/?p=123#comment-64209</guid>
		<description>Hello morgan.

Thank you for your useful post. 
I&#039;ve tried to implement custom route myself.
However, it does not work. 

My custom route is OggHandler and it is not called.

I have posted the question at stackoverflow

http://stackoverflow.com/questions/8550911/custom-route-is-not-called-for-asp-net-mvc-3-application-net-4

and can download link at

http://codesanook.com/shared/MvcOgg.zip</description>
		<content:encoded><![CDATA[<p>Hello morgan.</p>
<p>Thank you for your useful post.<br />
I&#039;ve tried to implement custom route myself.<br />
However, it does not work. </p>
<p>My custom route is OggHandler and it is not called.</p>
<p>I have posted the question at stackoverflow</p>
<p><a href="http://stackoverflow.com/questions/8550911/custom-route-is-not-called-for-asp-net-mvc-3-application-net-4" rel="nofollow">http://stackoverflow.com/questions/8550911/custom-route-is-not-called-for-asp-net-mvc-3-application-net-4</a></p>
<p>and can download link at</p>
<p><a href="http://codesanook.com/shared/MvcOgg.zip" rel="nofollow">http://codesanook.com/shared/MvcOgg.zip</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ten PHP Best Practices Tips that will get you a job by php programmer</title>
		<link>http://www.phpvs.net/2008/06/04/ten-php-best-practices-tips-that-will-get-you-a-job/comment-page-4/#comment-63573</link>
		<dc:creator>php programmer</dc:creator>
		<pubDate>Mon, 12 Dec 2011 19:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpvs.net/2008/06/04/ten-php-best-practices-tips-that-will-get-you-a-job/#comment-63573</guid>
		<description>very nice article. I am using some coding standards and I think the list above will surely help me to improve more.

Thanks
Dhanesh Mane</description>
		<content:encoded><![CDATA[<p>very nice article. I am using some coding standards and I think the list above will surely help me to improve more.</p>
<p>Thanks<br />
Dhanesh Mane</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Manually validate an ASP.Net MVC form on the client side with MicrosoftMvcValidation.js and jQuery by http://tinyurl.com/75qnout</title>
		<link>http://www.phpvs.net/2010/04/26/manually-validate-an-asp-net-mvc-form-on-the-client-side-with-microsoftmvcvalidation-js-and-jquery/comment-page-1/#comment-62832</link>
		<dc:creator>http://tinyurl.com/75qnout</dc:creator>
		<pubDate>Sun, 04 Dec 2011 17:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpvs.net/?p=196#comment-62832</guid>
		<description>I have a video that you might be interested in. If you are like me, you are probably interested in automation. With the use of commission robotics, you can have your marketing done for you through complete automation. A series of robots performs important, methodical tasks, one after the other and allows you to focus on other aspects of internet marketing. It is really interesting how all of these little robots work in unison to perform all of these tasks. Even though this is extremely interesting to me, I think that it will be interesting for others as well and so here is the link to the video: http://goo.gl/v8qVq</description>
		<content:encoded><![CDATA[<p>I have a video that you might be interested in. If you are like me, you are probably interested in automation. With the use of commission robotics, you can have your marketing done for you through complete automation. A series of robots performs important, methodical tasks, one after the other and allows you to focus on other aspects of internet marketing. It is really interesting how all of these little robots work in unison to perform all of these tasks. Even though this is extremely interesting to me, I think that it will be interesting for others as well and so here is the link to the video: <a href="http://goo.gl/v8qVq" rel="nofollow">http://goo.gl/v8qVq</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on An Exercise in WordPress Integration, or Why WordPress Sucks by Dani</title>
		<link>http://www.phpvs.net/2009/12/08/an-exercise-in-wordpress-integration-or-why-wordpress-sucks/comment-page-1/#comment-62564</link>
		<dc:creator>Dani</dc:creator>
		<pubDate>Thu, 01 Dec 2011 22:18:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpvs.net/?p=154#comment-62564</guid>
		<description>I&#039;ve had a lot of fun reading this post, as well as the comments. As the author points out, I just feel sorry for people out there having to work with this piece of crap.</description>
		<content:encoded><![CDATA[<p>I&#039;ve had a lot of fun reading this post, as well as the comments. As the author points out, I just feel sorry for people out there having to work with this piece of crap.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

