<?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>“刘钢的博客 - 我是UED”的评论</title>
	<atom:link href="http://www.iamued.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.iamued.com</link>
	<description>http://www.IamUED.com</description>
	<lastBuildDate>Thu, 12 Jan 2012 11:08:59 +0800</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>aiyinr 对《Mysql函数(function)返回值中文编码问题》的评论</title>
		<link>http://www.iamued.com/development/mysql/2065.html/comment-page-1#comment-6841</link>
		<dc:creator>aiyinr</dc:creator>
		<pubDate>Thu, 12 Jan 2012 11:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.iamued.com/?p=2065#comment-6841</guid>
		<description>一直没有搞懂 现在清楚了</description>
		<content:encoded><![CDATA[<p>一直没有搞懂 现在清楚了</p>
]]></content:encoded>
	</item>
	<item>
		<title>RichieLiu 对《javascript线程解释（setTimeout,setInterval你不知道的事）》的评论</title>
		<link>http://www.iamued.com/qianduan/1645.html/comment-page-1#comment-6759</link>
		<dc:creator>RichieLiu</dc:creator>
		<pubDate>Tue, 03 Jan 2012 02:13:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.iamued.com/?p=1645#comment-6759</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-6758&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-6758&quot; rel=&quot;nofollow&quot;&gt;zhkzyth&lt;/a&gt; :&lt;/strong&gt;
&lt;p&gt;哦，对了，刘师兄，你这些关于浏览器线程、底层方面的知识都是哪里了解到的呢？需要具备哪些知识去深入这些关于浏览器实现方面的内容呢？&lt;/p&gt;
&lt;/blockquote&gt;
其实现在几个大浏览器用的底层引擎都是开源的 可以看看～：（ 我也没看过 不知道需要什么基础啦
http://www.webkit.org/
http://src.chromium.org/</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-6758"><p>
<strong><a href="#comment-6758" rel="nofollow">zhkzyth</a> :</strong></p>
<p>哦，对了，刘师兄，你这些关于浏览器线程、底层方面的知识都是哪里了解到的呢？需要具备哪些知识去深入这些关于浏览器实现方面的内容呢？</p>
</blockquote>
<p>其实现在几个大浏览器用的底层引擎都是开源的 可以看看～：（ 我也没看过 不知道需要什么基础啦<br />
<a href="http://www.webkit.org/" rel="nofollow">http://www.webkit.org/</a><br />
<a href="http://src.chromium.org/" rel="nofollow">http://src.chromium.org/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>zhkzyth 对《javascript线程解释（setTimeout,setInterval你不知道的事）》的评论</title>
		<link>http://www.iamued.com/qianduan/1645.html/comment-page-1#comment-6758</link>
		<dc:creator>zhkzyth</dc:creator>
		<pubDate>Mon, 02 Jan 2012 16:48:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.iamued.com/?p=1645#comment-6758</guid>
		<description>哦，对了，刘师兄，你这些关于浏览器线程、底层方面的知识都是哪里了解到的呢？需要具备哪些知识去深入这些关于浏览器实现方面的内容呢？</description>
		<content:encoded><![CDATA[<p>哦，对了，刘师兄，你这些关于浏览器线程、底层方面的知识都是哪里了解到的呢？需要具备哪些知识去深入这些关于浏览器实现方面的内容呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>zhkzyth 对《javascript线程解释（setTimeout,setInterval你不知道的事）》的评论</title>
		<link>http://www.iamued.com/qianduan/1645.html/comment-page-1#comment-6757</link>
		<dc:creator>zhkzyth</dc:creator>
		<pubDate>Mon, 02 Jan 2012 16:46:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.iamued.com/?p=1645#comment-6757</guid>
		<description>刘师兄，谢谢你的文章。

有点疑问，关于setInterval的代码解释：
   setInterval(function(){
       /*代码块... */
     }, 10);
这里两个setinterval的执行时间间隔应该跟运行程序的时间大小有关，不知道这样理解是否正确。在MDN的windows.setInterval的手册说明中，是这样描述的:
If there is a possibility that your logic could take longer to execute than the interval time, it is recommended that you recursively call a named function using window.setTimeout.  For example, if using setInterval to poll a remote server every 5 seconds, network latency, an unresponsive server, and a host of other issues could prevent the request from completing in its alloted time.  As such, you may find yourself with queued up XHR requests that won&#039;t necessarily return in order.

PS:文中“第二段自setInterval设置定时后,定时触发线程就会源源不断的每隔十秒产生异步定时事件并放到任务队列尾,理论上两个setInterval 回调执行时间间隔&lt;=10.”，这里应该是“每隔十毫秒”吧？</description>
		<content:encoded><![CDATA[<p>刘师兄，谢谢你的文章。</p>
<p>有点疑问，关于setInterval的代码解释：<br />
   setInterval(function(){<br />
       /*代码块&#8230; */<br />
     }, 10);<br />
这里两个setinterval的执行时间间隔应该跟运行程序的时间大小有关，不知道这样理解是否正确。在MDN的windows.setInterval的手册说明中，是这样描述的:<br />
If there is a possibility that your logic could take longer to execute than the interval time, it is recommended that you recursively call a named function using window.setTimeout.  For example, if using setInterval to poll a remote server every 5 seconds, network latency, an unresponsive server, and a host of other issues could prevent the request from completing in its alloted time.  As such, you may find yourself with queued up XHR requests that won&#8217;t necessarily return in order.</p>
<p>PS:文中“第二段自setInterval设置定时后,定时触发线程就会源源不断的每隔十秒产生异步定时事件并放到任务队列尾,理论上两个setInterval 回调执行时间间隔&lt;=10.”，这里应该是“每隔十毫秒”吧？</p>
]]></content:encoded>
	</item>
	<item>
		<title>mmdagent 对《CSDN泄漏数据信息查询》的评论</title>
		<link>http://www.iamued.com/other/2057.html/comment-page-1#comment-6682</link>
		<dc:creator>mmdagent</dc:creator>
		<pubDate>Sat, 24 Dec 2011 11:17:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.iamued.com/?p=2057#comment-6682</guid>
		<description>http://mmdagent.org/pwdsearch/pwdsearch.php
这是我做的一个泄漏密码查询，支持CSDN，嘟嘟牛，7K7K，人人以及178 
应该是现在最全的了吧</description>
		<content:encoded><![CDATA[<p><a href="http://mmdagent.org/pwdsearch/pwdsearch.php" rel="nofollow">http://mmdagent.org/pwdsearch/pwdsearch.php</a><br />
这是我做的一个泄漏密码查询，支持CSDN，嘟嘟牛，7K7K，人人以及178<br />
应该是现在最全的了吧</p>
]]></content:encoded>
	</item>
	<item>
		<title>RichieLiu 对《通过nginx为forever-webui添加密码验证 实现外部管理》的评论</title>
		<link>http://www.iamued.com/development/nodejs/2043.html/comment-page-1#comment-6568</link>
		<dc:creator>RichieLiu</dc:creator>
		<pubDate>Tue, 06 Dec 2011 06:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.iamued.com/?p=2043#comment-6568</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-6551&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-6551&quot; rel=&quot;nofollow&quot;&gt;Neeke&lt;/a&gt; :&lt;/strong&gt;
&lt;p&gt;o(∩_∩)o 哈哈 UED也开始搞后端了？&lt;/p&gt;
&lt;/blockquote&gt;
哈哈哈，其实一直都在乱搞 ～</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-6551"><p>
<strong><a href="#comment-6551" rel="nofollow">Neeke</a> :</strong></p>
<p>o(∩_∩)o 哈哈 UED也开始搞后端了？</p>
</blockquote>
<p>哈哈哈，其实一直都在乱搞 ～</p>
]]></content:encoded>
	</item>
	<item>
		<title>Neeke 对《通过nginx为forever-webui添加密码验证 实现外部管理》的评论</title>
		<link>http://www.iamued.com/development/nodejs/2043.html/comment-page-1#comment-6551</link>
		<dc:creator>Neeke</dc:creator>
		<pubDate>Sat, 03 Dec 2011 08:53:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.iamued.com/?p=2043#comment-6551</guid>
		<description>o(∩_∩)o 哈哈 UED也开始搞后端了？</description>
		<content:encoded><![CDATA[<p>o(∩_∩)o 哈哈 UED也开始搞后端了？</p>
]]></content:encoded>
	</item>
	<item>
		<title>云刊 对《Linode &amp;&amp; SAE 开发者 站长 geek必备[2]》的评论</title>
		<link>http://www.iamued.com/development/php/2027.html/comment-page-1#comment-6523</link>
		<dc:creator>云刊</dc:creator>
		<pubDate>Mon, 28 Nov 2011 10:12:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.iamued.com/?p=2027#comment-6523</guid>
		<description>这个免费主机很多人去挤啊</description>
		<content:encoded><![CDATA[<p>这个免费主机很多人去挤啊</p>
]]></content:encoded>
	</item>
	<item>
		<title>RichieLiu 对《给我留言？》的评论</title>
		<link>http://www.iamued.com/message/comment-page-3#comment-6515</link>
		<dc:creator>RichieLiu</dc:creator>
		<pubDate>Sun, 27 Nov 2011 02:34:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.iamued.com/?page_id=107#comment-6515</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-6514&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-6514&quot; rel=&quot;nofollow&quot;&gt;天涯PHP博客&lt;/a&gt; :&lt;/strong&gt;
&lt;p&gt;回访来了，TYCMS源码已发送。&lt;br&gt;
PS：SAE怎么绑定域名的？&lt;/p&gt;
&lt;/blockquote&gt;
只要备案的 发邮件申请 很快就会审批过</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-6514"><p>
<strong><a href="#comment-6514" rel="nofollow">天涯PHP博客</a> :</strong></p>
<p>回访来了，TYCMS源码已发送。<br />
PS：SAE怎么绑定域名的？</p>
</blockquote>
<p>只要备案的 发邮件申请 很快就会审批过</p>
]]></content:encoded>
	</item>
	<item>
		<title>天涯PHP博客 对《给我留言？》的评论</title>
		<link>http://www.iamued.com/message/comment-page-3#comment-6514</link>
		<dc:creator>天涯PHP博客</dc:creator>
		<pubDate>Sun, 27 Nov 2011 01:35:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.iamued.com/?page_id=107#comment-6514</guid>
		<description>回访来了，TYCMS源码已发送。
PS：SAE怎么绑定域名的？</description>
		<content:encoded><![CDATA[<p>回访来了，TYCMS源码已发送。<br />
PS：SAE怎么绑定域名的？</p>
]]></content:encoded>
	</item>
</channel>
</rss>

