<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>朱哲</title>
	<link>http://zhuzhe.orzk.com</link>
	<description>本人记性不好，这个拿来记记东西</description>
	<lastBuildDate>Thu, 16 Dec 2010 15:09:45 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>测试</title>
		<description><![CDATA[from ipad]]></description>
		<link>http://zhuzhe.orzk.com/2010/12/16/%e6%b5%8b%e8%af%95/</link>
			</item>
	<item>
		<title>密码保护：写点无聊的东西吧（施工中&#8230;）</title>
		<description><![CDATA[无法提供摘要。这是一篇受保护的文章。]]></description>
		<link>http://zhuzhe.orzk.com/2010/05/16/%e5%86%99%e7%82%b9%e6%97%a0%e8%81%8a%e7%9a%84%e4%b8%9c%e8%a5%bf%e5%90%a7%ef%bc%88%e6%96%bd%e5%b7%a5%e4%b8%ad%ef%bc%89/</link>
			</item>
	<item>
		<title>5.1朝阳公园游小女照片</title>
		<description><![CDATA[&#160;]]></description>
		<link>http://zhuzhe.orzk.com/2010/05/01/5-1%e6%9c%9d%e9%98%b3%e5%85%ac%e5%9b%ad%e6%b8%b8%e5%b0%8f%e5%a5%b3%e7%85%a7%e7%89%87/</link>
			</item>
	<item>
		<title>发个jQuery的跑马灯</title>
		<description><![CDATA[原文复制三边，用animate跑，每次跑1/3，然后用css(‘left’,reset) 移动位置，其他就不多解释了。 var scroller = $(&#8216;#rtext&#8217;),html = scroller.html(),scrollInterval = -1,scrollTime = 30000,reset = 0; scroller.html( html + html + html); scrollInterval = window.setInterval(function(){ &#160;&#160;&#160; scroll(true); },scrollTime/4); function scroll(){ &#160;&#160;&#160; scroller.css({&#8216;left&#8217;:reset}).stop().animate({&#8216;left&#8217;:&#34;-=&#34;+scroller.width()/3},scrollTime/3,&#8217;linear&#8217;); } scroller.css(&#8216;width&#8217;,'auto&#8217;).hover(function(){ &#160;&#160;&#160; $(&#8216;#rtext&#8217;).stop(); &#160;&#160;&#160; scrollInterval = window.clearInterval(scrollInterval); },function(){ &#160;&#160;&#160; scrollInterval = window.clearInterval(scrollInterval); &#160;&#160;&#160; scrollInterval = window.setInterval(function(){ &#160;&#160;&#160;&#160;&#160;&#160;&#160; scroll(); &#160;&#160;&#160; },scrollTime/3); &#160;&#160;&#160; scroller.stop().animate({&#8216;left&#8217;:&#34;-=&#34;+scroller.width()/3},scrollTime/3,&#8217;linear&#8217;); &#160;&#160;&#160; if(parseInt(scroller.css(&#8216;left&#8217;)) [...]]]></description>
		<link>http://zhuzhe.orzk.com/2010/04/28/%e5%8f%91%e4%b8%aajquery%e7%9a%84%e8%b7%91%e9%a9%ac%e7%81%af/</link>
			</item>
	<item>
		<title>纠结的淘宝货 DIR-635</title>
		<description><![CDATA[多年前在淘宝买过一个自称DIR-635的设备，当时是为了上802.11n，所以买了个号称工程机的东西，花了400大洋，当时觉得挺值，后来由于表现的不是很稳定，所以一直用室友的TP-LINK。 最近闲着，翻出来，折腾一下。 网页上面写的是这样的 Product Page: DIR-635          Hardware Version: B1            Firmware Version: 2.00 板上面的信息是这样的 21514DR635B11A1 VER：A1 机器盒子里面的芯片基本上是这样的。 处理器：Marvell 88F5181-BBR1 QG37781A.3 0608 BIE TW 交换机：Marvell 88E6061-LAJ1 A60423.1 0615 A1P TW 无线网卡： Marvell 88W8361P-BEM1 FN27721.2 0616 A3P TW 去gz上面的网络设备区咨询了一下之后，他提出这个问题，你那个不是615么？ 然后我又去淘宝了一根TTL线，接上去查了一下uboot U-Boot 1.1.1 (Jul 24 2006 &#8211; 15:35:49) CAMEO uBoot Linux Loader version: 1.3.0.0 DRAM CS[0] base 0&#215;00000000   size  [...]]]></description>
		<link>http://zhuzhe.orzk.com/2010/04/25/%e7%ba%a0%e7%bb%93%e7%9a%84%e6%b7%98%e5%ae%9d%e8%b4%a7-dir-635/</link>
			</item>
	<item>
		<title>鼠标划过Tab，内容区闪屏的解决</title>
		<description><![CDATA[解决方法是就是延时100ms 如果100ms内进入下一个触发区就不显示了。 $(&#8216;.tab li&#8217;).mouseenter(function(e){ &#160;&#160;&#160; timeout = window.clearTimeout(timeout); &#160;&#160;&#160; timeout = window.setTimeout(function(){ &#160;&#160;&#160;&#160;&#160;&#160;&#160; //鼠标进入热点区要执行的代码 &#160;&#160;&#160;&#160;&#160;&#160;&#160; /*&#8230;*/ &#160;&#160;&#160;&#160;&#160;&#160;&#160; //&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- &#160;&#160;&#160; },100); );]]></description>
		<link>http://zhuzhe.orzk.com/2010/04/14/%e9%bc%a0%e6%a0%87%e5%88%92%e8%bf%87tab%ef%bc%8c%e5%86%85%e5%ae%b9%e5%8c%ba%e9%97%aa%e5%b1%8f%e7%9a%84%e8%a7%a3%e5%86%b3/</link>
			</item>
	<item>
		<title>密码保护：SEO 优化中UED 注意事项</title>
		<description><![CDATA[无法提供摘要。这是一篇受保护的文章。]]></description>
		<link>http://zhuzhe.orzk.com/2010/04/08/seo-%e4%bc%98%e5%8c%96%e4%b8%adued-%e6%b3%a8%e6%84%8f%e4%ba%8b%e9%a1%b9/</link>
			</item>
	<item>
		<title>headbase</title>
		<description><![CDATA[&#60;base id=&#34;headbase&#34; href=&#34;http://bbs.yahoo.cn/&#34; /&#62;]]></description>
		<link>http://zhuzhe.orzk.com/2010/04/02/headbase/</link>
			</item>
	<item>
		<title>浏览器所支持的HTML5 功能属性</title>
		<description><![CDATA[原标题：Build Web applications with HTML 5 原链接：http://www.ibm.com/developerworks/web/library/wa-html5webapp/?ca=dgr-lnxw07HTML5-Appsdth-WD 大家自己去看，不做全文翻译，不清楚的可以提出来交流 相关功能 1.多线程 2.数据库 3.视频 4.H264支持 5.OGG支持 6.GEO信息 浏览器支持情况 #Firefox 3.6 Your browser&#8217;s user-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6 Web Workers? true Database? false Video? true Can play H.264? no Can play OGG? probably Geolocation? true Latitude: 37.2502812 Longitude: -121.9059866 &#160; [...]]]></description>
		<link>http://zhuzhe.orzk.com/2010/04/02/features_of_html5_supported_by_browers/</link>
			</item>
	<item>
		<title>cufon Javascript 动态生成字体</title>
		<description><![CDATA[官方首页 http://wiki.github.com/sorccu/cufon/about &#160; 演示页 http://wiki.github.com/sorccu/cufon/demos &#160; 使用方法 http://wiki.github.com/sorccu/cufon/usage &#160; 字体生成 http://cufon.shoqolate.com/generate/ &#160; 注意：cufon用中文的话体积不小，库文件是7.3k，字体文件大概是1个字1k左右(有人说)， 所以大家可以根据需要在图片和cufon之间自行取舍。 &#160; &#160; 最后再盗用一个官方的原理图]]></description>
		<link>http://zhuzhe.orzk.com/2010/03/31/html_font_by_cufon_using_javascript/</link>
			</item>
</channel>
</rss>

