<?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"
	>

<channel>
	<title>若水资讯 &#187; Ruisin</title>
	<atom:link href="http://ruisin.info/archives/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://ruisin.info</link>
	<description>专注于web交互设计和Web2.0应用领域的个人博客</description>
	<pubDate>Wed, 17 Sep 2008 05:53:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>初用jQuery的小帖士</title>
		<link>http://ruisin.info/archives/89</link>
		<comments>http://ruisin.info/archives/89#comments</comments>
		<pubDate>Wed, 17 Sep 2008 05:53:42 +0000</pubDate>
		<dc:creator>Ruisin</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[api]]></category>

		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[冲突]]></category>

		<guid isPermaLink="false">http://ruisin.info/?p=89</guid>
		<description><![CDATA[知道jQuery这个东西已经很久了，而且7月的时候也买了《jQuery基础教程》来看，但是实际应用还是这两天实训。所以总结一下我理解的入门的little tips和大家分享。
1.$()这个函数被各种类库用烂了，我也在网上看到了好些关于解决类库间方法冲突问题的文章。虽然我至今没有接触过这类问题，但是今天在翻阅jQuery的API文档的时候发现了jQuery.noConflict()这个函数，使用这个函数使jQuery让渡对$()函数名的使用。
2.开始以为jQuery的选择器是全兼容css选择符的，但是实际情况看起来不是。对于我正在使用的1.2.3版，对于类选择，像$(&#8217;.head&#8217;)这样选择是无效的，而应该使用$(&#8217;div.head&#8217;)这样的标签名+类名的选择方法。这和传统上我们自己构建的getElementsByClass()函数使用的原理是一致的，迭代选定的TagName然后再找到符合要求的ID——这是效率和和效果的折中点。
]]></description>
		<wfw:commentRss>http://ruisin.info/archives/89/feed</wfw:commentRss>
		</item>
		<item>
		<title>这两天实训项目网站的效果图</title>
		<link>http://ruisin.info/archives/85</link>
		<comments>http://ruisin.info/archives/85#comments</comments>
		<pubDate>Wed, 10 Sep 2008 12:24:58 +0000</pubDate>
		<dc:creator>Ruisin</dc:creator>
		
		<category><![CDATA[web平面设计]]></category>

		<category><![CDATA[demo]]></category>

		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://ruisin.info/?p=85</guid>
		<description><![CDATA[话说因为这学期还要找工作，所以这个实训真的是很耽误事情。
我主要负责的事情是完成demo设计，最后绑定Struts2传来的数据，但是后者还不是很熟悉，希望不会耽误太多时间。
昨天上了一整天的课，全都是无聊内容，web设计的老师水平很一般。最后晚上的时候我们写了概要设计，到十点半勉强写完。
今天下午的时候本来要讲Oracle数据库，但是因为教师节活动，所以取消了，直接导致的结果是我写了一天的网站效果图，界面还是比较满意的，但是也因此损失了很多时间。
希望周五前能完成demo。
上图。

P.S.伤心，刚刚我们team的一个女生说我的这个界面太方正了。
]]></description>
		<wfw:commentRss>http://ruisin.info/archives/85/feed</wfw:commentRss>
		</item>
		<item>
		<title>关于JS引擎解析效率的实践</title>
		<link>http://ruisin.info/archives/79</link>
		<comments>http://ruisin.info/archives/79#comments</comments>
		<pubDate>Wed, 03 Sep 2008 08:37:58 +0000</pubDate>
		<dc:creator>Ruisin</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[chrome]]></category>

		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://ruisin.info/?p=79</guid>
		<description><![CDATA[前两天在《JavaScript高级程序设计》的书里看到了一段和下面类似的代码，作者提到使用浏览器js里默认的加法运算符进行字符串连接（第一段代码）效率很低，所以创造了一个新的stringBuffer对象（第二段代码）。
&#60;script language=&#8221;JavaScript&#8221;&#62;
 //传统连接法
 var str = &#8220;&#8221;;
 var d1 = new Date();
 for (var i = 0; i &#60; 10000; i++) {
 str += &#8220;text&#8221;;
 }
 var d2 = new Date();
 document.write(&#8221;Concatention with plus: &#8221; + (d2.getTime() - d1.getTime()) + &#8221; milliseconds&#8221;);
 
 
 //stringBuffer类
 function stringBuffer(){
 this.__strings__ = new Array;
 }
 stringBuffer.prototype.append = function [...]]]></description>
		<wfw:commentRss>http://ruisin.info/archives/79/feed</wfw:commentRss>
		</item>
		<item>
		<title>百度的web2.0风格化</title>
		<link>http://ruisin.info/archives/74</link>
		<comments>http://ruisin.info/archives/74#comments</comments>
		<pubDate>Mon, 01 Sep 2008 07:32:27 +0000</pubDate>
		<dc:creator>Ruisin</dc:creator>
		
		<category><![CDATA[web平面设计]]></category>

		<category><![CDATA[baidu]]></category>

		<guid isPermaLink="false">http://ruisin.info/?p=74</guid>
		<description><![CDATA[百度的百科和贴吧在今年上半年对首页进行了改版，很有向Mozilla风格发展的趋势。然而百度知道却一直保留着google风格的页面，但是虽然google风格很简洁，但是在中国尤其是对于年轻人恐怕很难有吸引力。



]]></description>
		<wfw:commentRss>http://ruisin.info/archives/74/feed</wfw:commentRss>
		</item>
		<item>
		<title>张艺谋意料之外的第2009张笑脸</title>
		<link>http://ruisin.info/archives/69</link>
		<comments>http://ruisin.info/archives/69#comments</comments>
		<pubDate>Mon, 01 Sep 2008 06:50:04 +0000</pubDate>
		<dc:creator>Ruisin</dc:creator>
		
		<category><![CDATA[互联网故事]]></category>

		<category><![CDATA[girl]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[Olympic]]></category>

		<guid isPermaLink="false">http://ruisin.info/?p=69</guid>
		<description><![CDATA[张艺谋在奥运会的开幕式上给我们带来了2008张笑脸的照片——这是一个噱头，迎合领导并且有中国特色的一个节目而已。倘若真的要让笑脸传达到全世界，老谋子的水平还差得多。
不过奥运期间，真的就有这么个中国女孩的笑脸传遍了全世界，被大家亲切的称为iPhone Girl，并为他建立了网站。
最美丽的笑容总是出现在不经意的时候，在这次事情中“人肉搜索”文化并没有起到多大作用，因为中国网民比想象的要冷静。


]]></description>
		<wfw:commentRss>http://ruisin.info/archives/69/feed</wfw:commentRss>
		</item>
		<item>
		<title>Joomla官方网站的新页面</title>
		<link>http://ruisin.info/archives/65</link>
		<comments>http://ruisin.info/archives/65#comments</comments>
		<pubDate>Thu, 21 Aug 2008 11:42:38 +0000</pubDate>
		<dc:creator>Ruisin</dc:creator>
		
		<category><![CDATA[web平面设计]]></category>

		<category><![CDATA[joomla]]></category>

		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://ruisin.info/?p=65</guid>
		<description><![CDATA[Joomla.org的官方网站是上周改版的，排版格式中规中距，但是在背景的设计上很有突破性。因为我也曾经设计过这种层次感很深的页面效果，但是Joomla的设计无疑要出彩得多。

这个是首页截屏：

这个是内容页截屏：

之所以把Joomla的网页贴出来，是因为它的层次深度把握得很好，而关于新版页面的说明也可以在这里看到。
]]></description>
		<wfw:commentRss>http://ruisin.info/archives/65/feed</wfw:commentRss>
		</item>
		<item>
		<title>Violence Enforcement During the Olympic Games</title>
		<link>http://ruisin.info/archives/60</link>
		<comments>http://ruisin.info/archives/60#comments</comments>
		<pubDate>Tue, 12 Aug 2008 14:49:50 +0000</pubDate>
		<dc:creator>Ruisin</dc:creator>
		
		<category><![CDATA[互联网故事]]></category>

		<category><![CDATA[Olympic]]></category>

		<guid isPermaLink="false">http://ruisin.info/?p=60</guid>
		<description><![CDATA[援引中国IDC圈8月11日报道：中国IDC圈记者接消息人士透露，国内技术性网站csdn.net遭关停。据消息人士进一步透露，CSDN服务器在某IDC服务商北京机房内，因机房内一网站非法播放奥运开幕式视频，机房相关网段被封锁，导致网段内包括csdn.net在内的众多网站不能访问。
记者在第一时间联系了机房的市场人员，据这位市场人员介绍，“这次遭关停的只是一小部分网段，机房总体没受太大影响。之前我们已经再三提醒客户奥运期间不要做有关此类事情。客户执意冒险，我们只好依法办事。”
8月18日，CSDN已经恢复。
According to the terrible news, one of the most famous China IT technonlogy website CSDN.net, like MSDN in the USA, has been affected for a website in the same network section, who infringed the Beijing Olympic copyright. The Internet management department shut down the whole section to reduce the influence of the infraction. NO NEWS [...]]]></description>
		<wfw:commentRss>http://ruisin.info/archives/60/feed</wfw:commentRss>
		</item>
		<item>
		<title>北岛康介在训练中游出超世界纪录成绩</title>
		<link>http://ruisin.info/archives/57</link>
		<comments>http://ruisin.info/archives/57#comments</comments>
		<pubDate>Sat, 02 Aug 2008 07:39:30 +0000</pubDate>
		<dc:creator>Ruisin</dc:creator>
		
		<category><![CDATA[时政摘要]]></category>

		<category><![CDATA[NHK]]></category>

		<category><![CDATA[Olympic]]></category>

		<category><![CDATA[北岛康介]]></category>

		<category><![CDATA[奥运]]></category>

		<category><![CDATA[求婚大作战]]></category>

		<guid isPermaLink="false">http://ruisin.info/?p=57</guid>
		<description><![CDATA[据日本《日刊体育》报道，正在韩国济州岛进行赛前训练的日本游泳名将北岛康介，1日在男子100米蛙泳训练赛中游出56秒97的超世界纪录成绩，这个成绩比59秒13的这个项目的世界纪录整整快了2秒多。
我一直对游泳比赛没有兴趣，而知道北岛也是因为在《求婚大作战》里第七集的时候健三对着干雄的摄像机说的04年成为流行语的北岛奥运夺冠感言“気持ち，超気持ち（爽，超爽）”。
这也难怪为什么NHK的女负责人会在08年奥运持权转播商的会议上向北京奥组委质询游泳比赛决赛在白天举行的问题。就像顾拜旦定义的那样，现代奥运会就是一场没有硝烟的国家战争，赛场上是北岛康介和菲尔普斯的战争，赛场背后就是NHK和NBC这样的持权转播商战争，最后更是国家实力的战争。
]]></description>
		<wfw:commentRss>http://ruisin.info/archives/57/feed</wfw:commentRss>
		</item>
		<item>
		<title>非常2.0的bbc</title>
		<link>http://ruisin.info/archives/54</link>
		<comments>http://ruisin.info/archives/54#comments</comments>
		<pubDate>Fri, 01 Aug 2008 14:56:10 +0000</pubDate>
		<dc:creator>Ruisin</dc:creator>
		
		<category><![CDATA[web平面设计]]></category>

		<category><![CDATA[bbc]]></category>

		<guid isPermaLink="false">http://ruisin.info/?p=54</guid>
		<description><![CDATA[好久没有上bbc的网站，才晓得年初的时候就已经改版了，真的是非常让人惊叹的页面，几乎囊括了所有web2.0的元素。看了一些别人的帖子，原来是bbc征集来的设计，果然就是不同凡响。
可以定制的主体颜色，三等分页面结构，自定义的首页内容可拖拽、安排栏目和选择条目数，再加上右上角那个非常cute的flash时钟，你怎么能够想到这是古板传统BBC呢？和一些简直是sitemap结构的国内新闻网站相比，用户体验都会相差很多。
]]></description>
		<wfw:commentRss>http://ruisin.info/archives/54/feed</wfw:commentRss>
		</item>
		<item>
		<title>中文维基可以访问了</title>
		<link>http://ruisin.info/archives/50</link>
		<comments>http://ruisin.info/archives/50#comments</comments>
		<pubDate>Thu, 31 Jul 2008 14:23:44 +0000</pubDate>
		<dc:creator>Ruisin</dc:creator>
		
		<category><![CDATA[互联网故事]]></category>

		<category><![CDATA[GFW]]></category>

		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://ruisin.info/?p=50</guid>
		<description><![CDATA[虽然没有一个人在正式场合承认过政府对网络的限制，但是中国的互联网总是“莫名其妙”地能在平时连接不了一些在其他国家能够连接的网站，在特殊时期连接不了一些平时能够连接的网站，在极其特殊的情况下（比如最近）能够连接一些平时不能够连接的网站。
当然，很多情况下你无法解释这些“奇异现象”出现的社会原因，比如sourceForge.net会被莫名其妙地封锁3个月，再比如blogger.com也是时好时坏，搞得人不敢用。但是在今天，8月前的最后一天，被视为互联网“万恶之源”的wikipedia中文网站也能够被我用中国网通的宽带直接连通了，我相信这种情况能够持续整个8月。
Although the China government never announced in public, but they have controled the Internet connection for several years. You have to bear that some important Web 2.0 site like blogger, wikipedia (Chinese edition), also include the sourceForge, which is an open source site, are often blocked by the Internet management department.
But the situation will be [...]]]></description>
		<wfw:commentRss>http://ruisin.info/archives/50/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
