<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>Xu.hel's Blog</title>
	
	<link>http://xuhel.cn</link>
	<description>分享界面设计的点点滴滴.</description>
	<lastBuildDate>Fri, 10 Jul 2009 07:47:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/xuhel" type="application/rss+xml" /><item>
		<title>图标的设计和制作</title>
		<link>http://xuhel.cn/ui-design/icon-design-and-made.html</link>
		<comments>http://xuhel.cn/ui-design/icon-design-and-made.html#comments</comments>
		<pubDate>Fri, 10 Jul 2009 07:40:51 +0000</pubDate>
		<dc:creator>xu.hel</dc:creator>
				<category><![CDATA[UI Design]]></category>
		<category><![CDATA[Designs]]></category>
		<category><![CDATA[icon]]></category>

		<guid isPermaLink="false">http://xuhel.cn/?p=730</guid>
		<description><![CDATA[经常收到朋友关于 .ico 格式的图标相关求助，在下也是无赖了，在网上有没有找到一些简单明了的教程之类的东西。虽然 Rokey 那有个图标设计的教程，但是他更换了Bolg程序后丢失了。我就拼凑... ]]></description>
			<content:encoded><![CDATA[<p>经常收到朋友关于 .ico 格式的图标相关求助，在下也是无赖了，在网上有没有找到一些简单明了的教程之类的东西。虽然 <a href="http://www.rokey.net/">Rokey</a> 那有个图标设计的教程，但是他更换了Bolg程序后丢失了。我就拼凑了一个出来。</p>
<p>设计图标的第一步就是用设计工具吧图标的设计出来。一般工具选用 Photoshop 和 Illustrator。用 Illustrator 只是为了方便的进行尺寸的大小缩放，其实  Photoshop 的钢笔工具也可以满住这个需求，不过钢笔用起来就有点麻烦了。</p>
<p>.ico 格式的图标文件包含了48&#215;48、32&#215;32、16&#215;16这三种尺寸和 32位色、24位色、8位色的图标。这样看来 .ico 格式的图标其实就是把不同尺寸的图片和不同位色的图标打包为一个 .ico 文件的图标集合。不过这种格式图标只有Windows才支持。不过很可惜的是很多程序员都不知道到这个，都认为这个 .ico 格式的图标都只有一个尺寸大小。想起这个就想骂以前公司的那些傻程序员。</p>
<p>好了，就此打住，要不然就会偏题了。</p>
<p><strong>那现在就开始设计一个简单的图标吧。</strong></p>
<p>现在打开 PS 新建一个 128&#215;128 的空白文档。为什么要128&#215;128 这个尺寸来设计，一般来说是要看个人的习惯了，这是我的习惯。当然我这里用做例子的图标只是个示意了。如图：</p>
<p><img class="alignnone size-full wp-image-756" title="picdemo 1" src="http://xuhel.cn/wp-content/uploads/2009/06/picdemo-1.png" alt="picdemo 1" width="217" height="234" /></p>
<p>好了128&#215;128 的做好了，接下来就是 48&#215;48 的了。其实还可以做成 96&#215;96、64&#215;64 的。不过这样一来 ico 格式的文件就太大了。</p>
<p>我们现在只需把尺寸 128&#215;128 的这个文档另存为 一个新的文档，并缩小为48&#215;48 的。这下新的问题就出现了，大尺寸的图标缩小后出项了边缘和部分细节不清晰的问题。要解决这个问题的最好方法是重新绘制一个48&#215;48的，其实还有个简单的方法，就是用像素画的方法来处理就行了。如图：</p>
<p><img class="alignnone size-full wp-image-757" title="picdemo 2" src="http://xuhel.cn/wp-content/uploads/2009/06/picdemo-2.png" alt="picdemo 2" width="221" height="191" /></p>
<p>右边的就是经过像素画处理了的细节部分和边缘就清晰了。</p>
<p>尺寸为 32&#215;32 的也是用这个方式来处理。</p>
<p><img class="alignnone size-full wp-image-758" title="picdemo 3" src="http://xuhel.cn/wp-content/uploads/2009/06/picdemo-3.png" alt="picdemo 3" width="285" height="206" /></p>
<p>左边是用128&#215;128 直接另存并缩小成 32&#215;32 的。右边是缩小后经过像素画处理了的。对于32&#215;32 这个尺寸，要是你所绘制的图标细节过多的话那就要舍弃部分细节了。</p>
<p>对于16&#215;16 这个尺寸的两种处理方法：一种是用上面的方法直接缩小然后像素化处理边缘；另一种是用像素的方法重新绘制一个。那这个实例的图标来说只需去掉它的透视就可以了来。如图这样：</p>
<p><img class="alignnone size-full wp-image-763" title="picdemo 4" src="http://xuhel.cn/wp-content/uploads/2009/07/picdemo-4.png" alt="picdemo 4" width="285" height="201" /></p>
<p>这个图里面左边的是直接缩小成16&#215;16的，右边的是像素重绘的。清晰度一看就明了了。</p>
<p>当然其他尺寸的也可以重新绘制的。不过要看你的时间多不多了。</p>
<p>现在 所有的尺寸合在一起就是下图这样：</p>
<p><img class="alignnone size-full wp-image-764" title="icondemo" src="http://xuhel.cn/wp-content/uploads/2009/07/icondemo.jpg" alt="icondemo" width="415" height="161" /></p>
<p>最后把这些尺寸的图标去掉背景图层，并按尺寸单独的保存成PNG 透明的图片。也就是 128&#215;128 的存为一个png图片文件。48&#215;48的、32&#215;32的、16&#215;16的，共4个PNG图片。</p>
<p><em>为什么用PS 而不用 Illustrator，主要是 Illustrator 有的功能都可以在PS里面找到替代的方法。当然设计用的工具你可以用 Illustrator 来画好然后用 PS 来修饰一下细节和边缘。这个就依照个人的习惯来设计了。</em></p>
<p>好了现在图标是设计好了。怎样才可以生成一个ico 的文件呢？这里介绍个简单的方法，那就是直接用 PS 的 <a href="http://iconfactory.com/software/iconbuilder">IconBuilder</a> 滤镜就可以生成了。不过 IconBuilder 滤镜是收费的。我还是给个 iconbuilder 滤镜是界面图来说说好了。看图：</p>
<p><a href="http://xuhel.cn/wp-content/uploads/2009/07/iconbuilder-demo.png" rel="lightbox[730]"><img class="alignnone size-full wp-image-765" title="iconbuilder demo" src="http://xuhel.cn/wp-content/uploads/2009/07/iconbuilder-demo.png" alt="iconbuilder demo" width="420" height="292" /></a></p>
<p>安装 iconbuilder 滤镜后通过 PS 的滤镜菜单就可以打开 iconbuilder 滤镜了。选择要建立的图标格式的模板，比如 Windows 的图标格式，还是Mac 的图标格式。然后移动不同尺寸范围的选区到对应的位置，调整好了后点击保存按钮，选择文件的保存位置就搞定了。</p>
<p>好了，PS 的演出到此为止了。现在改用别的工具来转换成 ico 格式的图标了。</p>
<p><strong>Windows 方面：</strong></p>
<p>创建 Windows 的 .ico 格式图标的软件很多，不过我推荐用 Axialis 公司的 <a href="http://www.axialis.com/iconworkshop/">IconWorkshop</a>。</p>
<p><em>Axialis IconWorkshop是一款专业制作图标的编辑软件，通过它可以非常轻松地制作出图标。它还内置了不少滤镜模糊、平滑、锐化、细节、等高线、浮雕等和图像调整色调、饱和度、亮度、对比度等的工具，以及还可以缩放尺寸、任意角度转动、翻转等；增强的与 Adobe和Jasc色彩文件相兼容的色板和调色板管理系统；还有自定义Windows图标的功能等等。</em></p>
<p>IconWorkshop 的<a href="http://www.google.com/search?q=iconworkshop+%E6%95%99%E7%A8%8B">使用教程</a>自己个噢噢过了一下就有很多了，我这就暂时不写了。等下次吧。</p>
<p>基于我的这个教程，建议用 IconWorkshop 新建一个 空白的 Windows 图标，然后建立对应的规格，用 IconWorkshop 打开 用PS 导出的PNG 图片。</p>
<p>将对于的尺寸的图复制并粘贴到 空白的Windows 图标里面。如下图：</p>
<p><a href="http://xuhel.cn/wp-content/uploads/2009/07/icowdemo1.jpg" rel="lightbox[730]"><img class="alignnone size-full wp-image-767" title="icowdemo1" src="http://xuhel.cn/wp-content/uploads/2009/07/icowdemo1.jpg" alt="icowdemo1" width="420" height="323" /></a></p>
<p>然后现在是 32位色的图标，为了兼容其他版本的Windows 还要创建每个尺寸对应的 256色的图标就可以了方法如下图：</p>
<p><a href="http://xuhel.cn/wp-content/uploads/2009/07/icowdemo2.jpg" rel="lightbox[730]"><img class="alignnone size-full wp-image-768" title="icowdemo2" src="http://xuhel.cn/wp-content/uploads/2009/07/icowdemo2.jpg" alt="icowdemo2" width="420" height="323" /></a></p>
<p>然后保存文件，ok 现在一个Windows 的 ico 格式图标就此创建完毕了。</p>
<p>最后给个 IconWorkshop 的从图像创建图标的设置参考好了。</p>
<p><a href="http://xuhel.cn/wp-content/uploads/2009/07/icowdemo3.jpg" rel="lightbox[730]"><img class="alignnone size-full wp-image-769" title="icowdemo3" src="http://xuhel.cn/wp-content/uploads/2009/07/icowdemo3.jpg" alt="icowdemo3" width="420" height="350" /></a></p>
<p>Windows 的就到此为止了。</p>
<p><strong>Mac OS X 方面：</strong></p>
<p>创建 Mac 下的图标有个很方便的软件那就是 Icon Composer 了。</p>
<p><a href="http://xuhel.cn/wp-content/uploads/2009/07/Icon-Composer-demo.png" rel="lightbox[730]"><img class="alignnone size-full wp-image-766" title="Icon Composer demo" src="http://xuhel.cn/wp-content/uploads/2009/07/Icon-Composer-demo.png" alt="Icon Composer demo" width="420" height="330" /></a></p>
<p>Icon Composer 最方便的地方就是直接吧 尺寸相同的图片拖到对应的图片框里面，然后保存即可生成一个符合 Mac 系统规范的 icns 格式的图标了。当然 icns 格式的图标是可以通过 Axialis 公司的 IconWorkshop 转换成Windows 所支持的 ico 格式的图标的。</p>
<p>欢迎补充，呵呵。</p>
<p>PS:花了很长的时间写完后，自己还是觉得这个写的有点罗唆了。。。</p>
<img src="http://xuhel.cn/?ak_action=api_record_view&id=730&type=feed" alt="" />
	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://xuhel.cn/ui-design/%e8%87%aa%e5%b7%b1-blog-%e7%9a%84%e5%9b%be%e6%a0%87.html" title="自己 Blog 的图标 (12-01-2006)">自己 Blog 的图标</a> (1)</li>
	<li><a href="http://xuhel.cn/ui-design/theme-packs.html" title="Theme Packs (08-09-2008)">Theme Packs</a> (3)</li>
	<li><a href="http://xuhel.cn/ui-design/soft-ui-design.html" title="软件界面设计要素 (11-19-2007)">软件界面设计要素</a> (0)</li>
	<li><a href="http://xuhel.cn/librarys/3d-powerpoint-2007.html" title="让人吃惊的PowerPoint2007 (09-18-2007)">让人吃惊的PowerPoint2007</a> (3)</li>
	<li><a href="http://xuhel.cn/ui-design/grid_system_research_4.html" title="网页栅格系统研究（4）：技术实现 (11-28-2008)">网页栅格系统研究（4）：技术实现</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://xuhel.cn/ui-design/icon-design-and-made.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>羊群效应</title>
		<link>http://xuhel.cn/bloglife/herding.html</link>
		<comments>http://xuhel.cn/bloglife/herding.html#comments</comments>
		<pubDate>Thu, 09 Jul 2009 05:35:32 +0000</pubDate>
		<dc:creator>xu.hel</dc:creator>
				<category><![CDATA[My Blog]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://xuhel.cn/?p=761</guid>
		<description><![CDATA[有则幽默讲：一位石油大亨到天堂去参加会议，一进会议室发现已经座无虚席，没有地方落座，于是他灵机一动，喊了一声：“地狱里发现石油了！”这一喊 不要 紧，天堂里的石油大亨们纷纷... ]]></description>
			<content:encoded><![CDATA[<p>有则幽默讲：一位石油大亨到天堂去参加会议，一进会议室发现已经座无虚席，没有地方落座，于是他灵机一动，喊了一声：“地狱里发现石油了！”这一喊 不要 紧，天堂里的石油大亨们纷纷向地狱跑去，很快，天堂里就只剩下那位后来的了。这时，这位大亨心想，大家都跑了过去，莫非地狱里真的发现石油了？于是，他也 急匆匆地向地狱跑去。</p>
<p>笑过之后，聪明的你应该很快就能明白什么是羊群效应。羊群是一种很散乱的组织，平时在一起也是盲目地左冲右撞，但一旦有一只头羊动起来，其他的羊也会不假 思索地一哄而上，全然不顾旁边可能有的狼和不远处更好的草。羊群效应就是比喻人都有一种从众心理，从众心理很容易导致盲从，而盲从往往会陷入骗局或遭到失败。</p>
<p>由于羊群效应，前几天我所在的这个(dv) 被拖下水了，掉进河里了。。。</p>
<p>被迫去72松那里解解闷。现在要是你能够看到这篇文章那就是说 DNS 解析已经更新了，Blog恢复正常了。</p>
<p>那我就可以继续写图标教程了。</p>
<p>PS：要是72松可以上传自己的主题的话，那我就多了个推广我自己WP主题的地方了，呵呵。</p>
<p>评论已关闭.</p>
<img src="http://xuhel.cn/?ak_action=api_record_view&id=761&type=feed" alt="" />
	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://xuhel.cn/bloglife/wow-and-au.html" title="魔兽世界玩家和劲舞团玩家的差别 (10-14-2008)">魔兽世界玩家和劲舞团玩家的差别</a> (5)</li>
	<li><a href="http://xuhel.cn/bloglife/play-is-the-heartbeat.html" title="玩的就是心跳 (11-01-2008)">玩的就是心跳</a> (13)</li>
	<li><a href="http://xuhel.cn/librarys/alienware-pc.html" title="最奢侈的电脑-Alienware (09-05-2008)">最奢侈的电脑-Alienware</a> (7)</li>
	<li><a href="http://xuhel.cn/bloglife/chunjiekuaile.html" title="春节快乐 (02-03-2008)">春节快乐</a> (2)</li>
	<li><a href="http://xuhel.cn/bloglife/now-next.html" title="接下来的事 (08-13-2008)">接下来的事</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://xuhel.cn/bloglife/herding.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>属于他的光辉岁月</title>
		<link>http://xuhel.cn/librarys/%e5%b1%9e%e4%ba%8e%e4%bb%96%e7%9a%84%e5%85%89%e8%be%89%e5%b2%81%e6%9c%88.html</link>
		<comments>http://xuhel.cn/librarys/%e5%b1%9e%e4%ba%8e%e4%bb%96%e7%9a%84%e5%85%89%e8%be%89%e5%b2%81%e6%9c%88.html#comments</comments>
		<pubDate>Tue, 30 Jun 2009 13:38:50 +0000</pubDate>
		<dc:creator>xu.hel</dc:creator>
				<category><![CDATA[Librarys]]></category>
		<category><![CDATA[Beyond]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://xuhel.cn/?p=759</guid>
		<description><![CDATA[
“香港没有乐坛，只有娱乐圈”这是家驹的金句，大家都喜欢他的率性、他的音乐、他说的话、他的笑声……你还记得他吗？
现在香港没有摇滚，只有 Beyond 。对于Beyond 乐队来说他一直是灵魂... ]]></description>
			<content:encoded><![CDATA[<p><a href="http://farm4.static.flickr.com/3632/3674716663_220faa2ae6_o.jpg" rel="lightbox[759]"><img class="alignnone" src="http://farm4.static.flickr.com/3632/3674716663_220faa2ae6_o.jpg" alt="" width="200" height="273" /></a></p>
<p>“香港没有乐坛，只有娱乐圈”这是家驹的金句，大家都喜欢他的率性、他的音乐、他说的话、他的笑声……你还记得他吗？</p>
<p>现在香港没有摇滚，只有 Beyond 。对于Beyond 乐队来说他一直是灵魂人物了，不过他已经离开我们16年了。他活着的那段日子是他的光辉岁月，也是 Beyond 的光辉岁月。</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="200" height="20" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://xuhel.cn/myavatar/dewplayer.swf?mp3=http://taling.hnie.edu.cn/xygs2009/stzq/200904/W020090411496724136315.mp3&amp;autostart=1&amp;autoreplay=1" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="200" height="20" src="http://xuhel.cn/myavatar/dewplayer.swf?mp3=http://taling.hnie.edu.cn/xygs2009/stzq/200904/W020090411496724136315.mp3&amp;autostart=1&amp;autoreplay=1" wmode="transparent"></embed></object></p>
<p>PS: 这两个人现在要在一个月内纪念了。。。是巧合么？</p>
<img src="http://xuhel.cn/?ak_action=api_record_view&id=759&type=feed" alt="" />
	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://xuhel.cn/librarys/say-goodbye-michael-jackson.html" title="Say goodbye Michael Jackson. (06-26-2009)">Say goodbye Michael Jackson.</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://xuhel.cn/librarys/%e5%b1%9e%e4%ba%8e%e4%bb%96%e7%9a%84%e5%85%89%e8%be%89%e5%b2%81%e6%9c%88.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stillness Theme v1.5 更新</title>
		<link>http://xuhel.cn/wordpress/stillness-theme-v15-update.html</link>
		<comments>http://xuhel.cn/wordpress/stillness-theme-v15-update.html#comments</comments>
		<pubDate>Sun, 28 Jun 2009 09:35:38 +0000</pubDate>
		<dc:creator>Xu.hel</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Skins]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://xuhel.cn/?p=752</guid>
		<description><![CDATA[
Stillness Theme  1.5 更新咯。从上一次更新到现在差不多有一年的时间了。现在这个更新应该是这个主题的最后一次更新了。
更新条目如下：

更新版本到 v1.5
添加 Widgets 支持
支持 WP 2.7 的新评论... ]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.xuhel.cn/wp-content/uploads/2007/11/themepve.png" alt="themepve.png" /></p>
<p>Stillness Theme  1.5 更新咯。从上一次更新到现在差不多有一年的时间了。现在这个更新应该是这个主题的最后一次更新了。</p>
<p>更新条目如下：</p>
<ul>
<li>更新版本到 v1.5</li>
<li>添加 Widgets 支持</li>
<li>支持 WP 2.7 的新评论特性(不建议开启评论分页)</li>
<li>该主题最后一次更新！</li>
</ul>
<div class="but_down"><a href="http://xuhel.cn/wordpress/wp-theme-stillness.html"><span>Stillness Theme</span></a><div class="clear"></div></div>
<p>该主题最后一次更新！</p>
<img src="http://xuhel.cn/?ak_action=api_record_view&id=752&type=feed" alt="" />
	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://xuhel.cn/wordpress/wp-theme-updated-circular2.html" title="WP主题更新提示 (07-31-2008)">WP主题更新提示</a> (3)</li>
	<li><a href="http://xuhel.cn/wordpress/wptheme-lost-blue.html" title="WP-Theme:Lost Blue (05-12-2008)">WP-Theme:Lost Blue</a> (11)</li>
	<li><a href="http://xuhel.cn/wordpress/wp-theme-dark-wish.html" title="WP-Theme:Dark Wish (07-13-2008)">WP-Theme:Dark Wish</a> (54)</li>
	<li><a href="http://xuhel.cn/wordpress/wp-theme-ii-tango.html" title="WP Theme:ii Tango (09-26-2008)">WP Theme:ii Tango</a> (95)</li>
	<li><a href="http://xuhel.cn/themes/tango-for-wordpress.html" title="Tango! for WordPress (09-11-2008)">Tango! for WordPress</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://xuhel.cn/wordpress/stillness-theme-v15-update.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Say goodbye Michael Jackson.</title>
		<link>http://xuhel.cn/librarys/say-goodbye-michael-jackson.html</link>
		<comments>http://xuhel.cn/librarys/say-goodbye-michael-jackson.html#comments</comments>
		<pubDate>Fri, 26 Jun 2009 09:40:21 +0000</pubDate>
		<dc:creator>xu.hel</dc:creator>
				<category><![CDATA[Librarys]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Michael Jackson]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://xuhel.cn/?p=749</guid>
		<description><![CDATA[
2009年6月26日，The King Of Pop，流行音乐之王迈克尔.杰克逊因为心脏病突发逝世，终年50岁。
迈克尔·约瑟夫·杰克逊（Michael Joseph Jackson，1958年8月29日—2009年6月26日 ），这个名字一直被赋予着丰... ]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://pic.yupoo.com/hecaitou/804777a7afe3/medium.jpg" alt="" width="500" height="414" /></p>
<p>2009年6月26日，The King Of Pop，流行音乐之王迈克尔.杰克逊因为心脏病突发逝世，终年50岁。</p>
<p>迈克尔·约瑟夫·杰克逊（Michael Joseph Jackson，1958年8月29日—2009年6月26日 ），这个名字一直被赋予着丰富的含义，他的人生也充满着变幻莫测。歌者、舞者、天才的创作家；流行音乐之王、舞台上的传奇教主。对，Jackson代表了 这一切，甚至更多。他用生命诠释了这个复杂而丰富的主题。作为一个世纪流行文化的化身，他的一生是无与伦比的。Michael Jackson生于美国印地安那州盖瑞市，美国著名流行歌手、作曲家、舞蹈家和唱片制作人。1960年代和70年代杰克逊作为杰克逊5人组乐队的主唱开始 了他的音乐历程，并于1979年开始了个人独唱生涯，继而成为流行音乐史上最成功的非洲裔美国籍黑人歌手，也是世界上最成功的流行音乐歌手之一。他被誉为 “流行音乐之王”或“音乐电视之王”。杰克逊演唱事业的成功使他获得了全世界众多歌迷的支持与喜爱，包括他的歌曲和标志性的舞步。然而，媒体更感兴趣的却 是他肤色的变化和怪僻的生活方式。 杰克逊曾获得许多音乐奖项，包括18届葛莱美奖。他在美国共创造了13首冠军单曲，在全世界销售了约1亿7000万张唱片。他的《颤 栗》（Thriller）专輯是有史以来全世界最畅销的唱片，全球销量逼近6000万张，同时也是美国最畅销的原创唱片之一。</p>
<p><em>自从我打破唱片纪录开始&#8212;我打破了猫王的纪录，我打破了披头士的纪录&#8212;然后呢？他们叫我畸形人，同性恋者，性骚扰小孩的怪胎！他们说我漂白了自己的皮肤，做一切可做的来诋毁我，这些都是阴谋！当我站在镜前时看着自己，我知道，我是个黑人！<br />
&#8212;迈克尔.杰克逊 </em></p>
<p><embed src="http://xuhel.cn/myavatar/dewplayer.swf?mp3=http://218.204.255.52:8100/uploads/diary/200804/28180355266.mp3&amp;autostart=1&amp;autoreplay=1"  width="200" height="20" wmode="transparent" type="application/x-shockwave-flash"></p>
<p>Heal The World &#8211; Michael Jackson.</p>
<p>There&#8217;s a place in your heart<br />
And I know that it is love<br />
And this place could be much<br />
Brighter than tomorrow<br />
And if you really try<br />
You&#8217;ll find there&#8217;s no need to cry<br />
In this place you&#8217;ll feel<br />
There&#8217;s no hurt or sorrow<br />
There are ways to get there<br />
If you care enough for the living<br />
Make a little space<br />
Make a better place &#8230;<br />
Heal the world<br />
Make it a better place<br />
For you and for me<br />
And the entire human race<br />
There are people dying<br />
If you care enough for the living<br />
Make it a better place<br />
For you and for me<br />
If you want to know why<br />
There&#8217;s love that cannot lie<br />
Love is strong<br />
It only cares of joyful giving<br />
If we try we shall see<br />
In this bliss we cannot feel<br />
Fear od dread<br />
We stop existing and start living<br />
The it feels that always<br />
Love&#8217;s enough for us growing<br />
So make a better world<br />
Make a better place &#8230;<br />
Heal the world<br />
Make it a better place<br />
For you and for me<br />
And the entire human race<br />
There are people dying<br />
If you care enough for the living<br />
Make a better place for you and for me<br />
And the dream we were conceived in<br />
Will reveal a joyful face<br />
And the world we once believed in<br />
Will shine again in grace<br />
Then why do we keep strangling life<br />
Wound this earth, crucify its soul<br />
Though it&#8217;s plain to see<br />
This world is heavenly<br />
Be god&#8217;s glow<br />
We could fly so high<br />
Let our spirits never die<br />
In my heart I feel you are all my brothers<br />
Create a world with no fear<br />
Together we cry happy tears<br />
See the nations turn their swords into plowshares<br />
We could really get there<br />
If you cared enough for the living<br />
Make a little space<br />
To make a better place &#8230;<br />
Heal the world<br />
Make it a better place<br />
For you and for me<br />
And the entire human race<br />
There are people dying<br />
If you care neough for the living<br />
Make a better place for you and for me<br />
Heal the world<br />
Make it a better place<br />
For you and for me<br />
And the entire human race<br />
There are people dying<br />
If you care neough for the living<br />
Make a better place for you and for me<br />
Heal the world<br />
Make it a better place<br />
For you and for me<br />
And the entire human race<br />
There are people dying<br />
If you care neough for the living<br />
Make a better place for you and for me<br />
There are pepole dying<br />
If you care enough for the living<br />
Make a better place for you and for me<br />
There are pepole dying<br />
If you care enough for the living<br />
Make a better place for you and for me<br />
You and for me &#8230;<br />
You and for me &#8230;<br />
You and for me &#8230;<br />
You and for me &#8230;<br />
You and for me &#8230;</p>
<p>He is the King.</embed></p>
<img src="http://xuhel.cn/?ak_action=api_record_view&id=749&type=feed" alt="" />
	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://xuhel.cn/bloglife/%e8%b5%b0%e9%94%99%e4%ba%86%ef%bc%9f%e4%b8%8d%ef%bc%8c%e6%b2%a1%e6%9c%89%ef%bc%81%ef%bc%81%ef%bc%81.html" title="走错了？不，没有！！！ (03-31-2007)">走错了？不，没有！！！</a> (1)</li>
	<li><a href="http://xuhel.cn/bloglife/%e7%bb%99%e4%b8%ad%e5%9b%bd%e5%ad%a6%e7%94%9f%e7%9a%84%e7%ac%ac%e5%9b%9b%e5%b0%81%e4%bf%a1%e2%80%94%e2%80%94%e5%a4%a7%e5%ad%a6%e5%9b%9b%e5%b9%b4%e5%ba%94%e8%af%a5%e8%bf%99%e4%b9%88%e5%ba%a6%e8%bf%87.html" title="给中国学生的第四封信——大学四年应该这么度过 (10-11-2006)">给中国学生的第四封信——大学四年应该这么度过</a> (0)</li>
	<li><a href="http://xuhel.cn/bloglife/%e7%bb%99%e4%b8%ad%e5%9b%bd%e5%ad%a6%e7%94%9f%e7%9a%84%e7%ac%ac%e5%85%ad%e5%b0%81%e4%bf%a1%e2%80%94%e2%80%94%e9%80%89%e6%8b%a9%e7%9a%84%e6%99%ba%e6%85%a7.html" title="给中国学生的第六封信——选择的智慧 (10-11-2006)">给中国学生的第六封信——选择的智慧</a> (0)</li>
	<li><a href="http://xuhel.cn/bloglife/%e7%bb%99%e4%b8%ad%e5%9b%bd%e5%ad%a6%e7%94%9f%e7%9a%84%e7%ac%ac%e4%ba%94%e5%b0%81%e4%bf%a1%e2%80%94%e2%80%94%e4%bd%a0%e6%9c%89%e9%80%89%e6%8b%a9%e7%9a%84%e6%9d%83%e5%88%a9.html" title="给中国学生的第五封信——你有选择的权利 (10-11-2006)">给中国学生的第五封信——你有选择的权利</a> (0)</li>
	<li><a href="http://xuhel.cn/bloglife/%e7%bb%99%e4%b8%ad%e5%9b%bd%e5%ad%a6%e7%94%9f%e7%9a%84%e7%ac%ac%e4%ba%8c%e5%b0%81%e4%bf%a1%e2%80%94%e2%80%94%e4%bb%8e%e4%bc%98%e7%a7%80%e5%88%b0%e5%8d%93%e8%b6%8a.html" title="给中国学生的第二封信——从优秀到卓越 (10-11-2006)">给中国学生的第二封信——从优秀到卓越</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://xuhel.cn/librarys/say-goodbye-michael-jackson.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WP Theme:iDevelop v1.6</title>
		<link>http://xuhel.cn/wordpress/wp-themeidevelop-v16.html</link>
		<comments>http://xuhel.cn/wordpress/wp-themeidevelop-v16.html#comments</comments>
		<pubDate>Tue, 23 Jun 2009 07:21:07 +0000</pubDate>
		<dc:creator>xu.hel</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://xuhel.cn/?p=746</guid>
		<description><![CDATA[
iDevelop v1.6 更新如下

修复了 RSS订阅的问题
后台选项添加PayPal 捐赠

建议都更新为这个版本。
更新 iDevelop 1.6

	Related posts
	
	隐藏WP的版本信息 (0)
	新主题上线测试 (7)
	收费主题 iMetal Theme (15)
	... ]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.xuhel.cn/wp-content/themes/default/screenshot.png" alt="" /></p>
<p>iDevelop v1.6 更新如下</p>
<ul>
<li>修复了 RSS订阅的问题</li>
<li>后台选项添加PayPal 捐赠</li>
</ul>
<p>建议都更新为这个版本。</p>
<div class="but_down"><a href="http://xuhel.cn/wordpress/wp-theme-idevelop.html"><span>更新 iDevelop 1.6</span></a><div class="clear"></div></div>
<img src="http://xuhel.cn/?ak_action=api_record_view&id=746&type=feed" alt="" />
	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://xuhel.cn/wordpress/wp-version-of-the-hidden.html" title="隐藏WP的版本信息 (11-27-2008)">隐藏WP的版本信息</a> (0)</li>
	<li><a href="http://xuhel.cn/wordpress/new-wp-theme-test.html" title="新主题上线测试 (02-09-2008)">新主题上线测试</a> (7)</li>
	<li><a href="http://xuhel.cn/wordpress/imetal-theme-release.html" title="收费主题 iMetal Theme (05-24-2009)">收费主题 iMetal Theme</a> (15)</li>
	<li><a href="http://xuhel.cn/wordpress/wordpress-theme-downloads.html" title="推荐的WordPress主题下载站 (09-10-2007)">推荐的WordPress主题下载站</a> (1)</li>
	<li><a href="http://xuhel.cn/themes/themes-demo-site.html" title="主题 Demo 站上线 (07-15-2008)">主题 Demo 站上线</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://xuhel.cn/wordpress/wp-themeidevelop-v16.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>iPhone 彩信软件</title>
		<link>http://xuhel.cn/librarys/iphone-mms-soft.html</link>
		<comments>http://xuhel.cn/librarys/iphone-mms-soft.html#comments</comments>
		<pubDate>Mon, 22 Jun 2009 15:20:03 +0000</pubDate>
		<dc:creator>Xu.hel</dc:creator>
				<category><![CDATA[Librarys]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[MMS]]></category>
		<category><![CDATA[UI Design]]></category>

		<guid isPermaLink="false">http://xuhel.cn/?p=744</guid>
		<description><![CDATA[
iPhone 的彩信收发在 3.0的固件之前一直是一个问题。不过就在最近几个月国内出现了有一款有意思的彩信软件：信邮天下。这个软件是成都的一家公司开发的集成短信彩信收发平台软件，虽然... ]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://farm3.static.flickr.com/2432/3649920904_19dbeb7f49_o.png" alt="" width="300" height="94" /></p>
<p>iPhone 的彩信收发在 3.0的固件之前一直是一个问题。不过就在最近几个月国内出现了有一款有意思的彩信软件：<a href="http://www.i3gsoft.com/forum/viewthread.php?tid=7&#038;extra=page%3D1">信邮天下</a>。这个软件是成都的一家公司开发的集成短信彩信收发平台软件，虽然现在他们以前发布过的测试版里面有还集成了 E-mail 的收发。</p>
<p>这个软件的简单介绍：</p>
<ul>
<li><span style="font-family: Arial;">短信群发功能，方便信息发送</span></li>
<li><span style="font-family: Arial;">电话薄群组，方便用户对自己的电话簿进行管理，查找更方便</span></li>
<li><span style="font-family: Arial;">信息备份，短信息、电话簿备份到个人网盘，个人信息从此更加安全（貌似这个版本没有这个东东）</span></li>
<li><span style="font-family: Arial;">Rss集成，即时浏览全方位最新信息，信息掌握更加及时。</span></li>
</ul>
<p>好了现在来看看界面吧。</p>
<p>启动画面：</p>
<p><a href="http://farm4.static.flickr.com/3639/3649231355_491026551e_o.png" rel="lightbox[744]"><img class="alignnone" src="http://farm4.static.flickr.com/3639/3649231355_491026551e_o.png" alt="" width="320" height="480" /></a></p>
<p>主界面：</p>
<p><a href="http://farm4.static.flickr.com/3618/3649231407_3de02105c6_o.png" rel="lightbox[744]"><img class="alignnone" src="http://farm4.static.flickr.com/3618/3649231407_3de02105c6_o.png" alt="" width="320" height="480" /></a></p>
<p>短信：</p>
<p><a href="http://farm3.static.flickr.com/2386/3650035380_650c0a6ae4_o.png" rel="lightbox[744]"><img class="alignnone" src="http://farm3.static.flickr.com/2386/3650035380_650c0a6ae4_o.png" alt="" width="320" height="480" /></a></p>
<p><a href="http://farm4.static.flickr.com/3392/3650035456_fc658dfd7f_o.png" rel="lightbox[744]"><img src="http://farm4.static.flickr.com/3392/3650035456_fc658dfd7f_o.png" alt="" /></a></p>
<p>写短信：</p>
<p><a href="http://farm4.static.flickr.com/3548/3649231761_b247777b3c_o.png" rel="lightbox[744]"><img class="alignnone" src="http://farm4.static.flickr.com/3548/3649231761_b247777b3c_o.png" alt="" width="320" height="480" /></a></p>
<p>彩信：</p>
<p><a href="http://farm3.static.flickr.com/2462/3650035770_6d5dcc9e43_o.png" rel="lightbox[744]"><img class="alignnone" src="http://farm3.static.flickr.com/2462/3650035770_6d5dcc9e43_o.png" alt="" width="320" height="480" /></a></p>
<p><a href="http://farm4.static.flickr.com/3382/3650035872_8aed96d9dc_o.png" rel="lightbox[744]"><img class="alignnone" src="http://farm4.static.flickr.com/3382/3650035872_8aed96d9dc_o.png" alt="" width="320" height="480" /></a></p>
<p>写彩信：</p>
<p><a href="http://farm4.static.flickr.com/3369/3649459283_a33127947b_o.png" rel="lightbox[744]"><img class="alignnone" src="http://farm4.static.flickr.com/3369/3649459283_a33127947b_o.png" alt="" width="320" height="480" /></a></p>
<p>搜索：</p>
<p><a href="http://farm4.static.flickr.com/3544/3649232169_6fddbb614e_o.png" rel="lightbox[744]"><img class="alignnone" src="http://farm4.static.flickr.com/3544/3649232169_6fddbb614e_o.png" alt="" width="320" height="480" /></a></p>
<p>设置：</p>
<p><a href="http://farm3.static.flickr.com/2437/3650035320_d872e283a8_o.png" rel="lightbox[744]"><img class="alignnone" src="http://farm3.static.flickr.com/2437/3650035320_d872e283a8_o.png" alt="" width="320" height="480" /></a></p>
<p>不过我感兴趣的是这个：</p>
<p><a href="http://farm4.static.flickr.com/3346/3649232207_dd397b2c1f_o.png" rel="lightbox[744]"><img src="http://farm4.static.flickr.com/3346/3649232207_dd397b2c1f_o.png" alt="" width="320" height="196" /></a></p>
<p>PS：这个有点不好的是界面的细节做得还不够漂亮。安装和卸载的时候必须重启 iPhone。。。</p>
<img src="http://xuhel.cn/?ak_action=api_record_view&id=744&type=feed" alt="" />
	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://xuhel.cn/ui-design/icon-design-and-made.html" title="图标的设计和制作 (07-10-2009)">图标的设计和制作</a> (1)</li>
	<li><a href="http://xuhel.cn/ui-design/theme-packs.html" title="Theme Packs (08-09-2008)">Theme Packs</a> (3)</li>
	<li><a href="http://xuhel.cn/ui-design/rss-widgets.html" title="RSS Widgets (04-07-2008)">RSS Widgets</a> (1)</li>
	<li><a href="http://xuhel.cn/themes/android-v3.html" title="Android v3 (10-14-2008)">Android v3</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://xuhel.cn/librarys/iphone-mms-soft.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iKite Theme 2.1 更新</title>
		<link>http://xuhel.cn/themes/ikite-theme-v21-update.html</link>
		<comments>http://xuhel.cn/themes/ikite-theme-v21-update.html#comments</comments>
		<pubDate>Mon, 22 Jun 2009 01:44:12 +0000</pubDate>
		<dc:creator>Xu.hel</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://xuhel.cn/?p=742</guid>
		<description><![CDATA[
昨天抽空把  iKite Theme 的RSS问题解决了，然后在后台添加了 PayPal 的捐赠，
顺便把主题 CSS 里面的 Theme URI 和 Fooder 的主题链接改为 http://xuhel.cn/wordpress/ikite-theme-release.html 了。原有地址保留的。... ]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://www.xuhel.cn/wp-content/uploads/2007/08/screenshot.png" alt="" width="300" height="250" /></p>
<p>昨天抽空把  iKite Theme 的RSS问题解决了，然后在后台添加了 PayPal 的捐赠，</p>
<p>顺便把主题 CSS 里面的 Theme URI 和 Fooder 的主题链接改为 http://xuhel.cn/wordpress/ikite-theme-release.html 了。原有地址保留的。不过在 9月1日后原来的 http://xuhel.cn/themes/ikite-theme.html 这个地址就不能发表评论了。</p>
<p>就要反馈都到<a href="http://xuhel.cn/wordpress/ikite-theme-release.html ">新地址这里</a>来吧</p>
<div class="but_down"><a href="http://xuhel.cn/wordpress/ikite-theme-release.html"><span>更新 iKite Thems</span></a><div class="clear"></div></div>
<p>iKite Theme 2.1 更新条目如下:</p>
<ul>
<li>更新版本到 v2.1</li>
<li>修复了 RSS订阅的问题；</li>
<li>后台选项添加PayPal 捐赠</li>
</ul>
<img src="http://xuhel.cn/?ak_action=api_record_view&id=742&type=feed" alt="" />
	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://xuhel.cn/wordpress/wp-version-of-the-hidden.html" title="隐藏WP的版本信息 (11-27-2008)">隐藏WP的版本信息</a> (0)</li>
	<li><a href="http://xuhel.cn/wordpress/new-wp-theme-test.html" title="新主题上线测试 (02-09-2008)">新主题上线测试</a> (7)</li>
	<li><a href="http://xuhel.cn/wordpress/imetal-theme-release.html" title="收费主题 iMetal Theme (05-24-2009)">收费主题 iMetal Theme</a> (15)</li>
	<li><a href="http://xuhel.cn/wordpress/wordpress-theme-downloads.html" title="推荐的WordPress主题下载站 (09-10-2007)">推荐的WordPress主题下载站</a> (1)</li>
	<li><a href="http://xuhel.cn/themes/themes-demo-site.html" title="主题 Demo 站上线 (07-15-2008)">主题 Demo 站上线</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://xuhel.cn/themes/ikite-theme-v21-update.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blog 分类调整</title>
		<link>http://xuhel.cn/bloglife/blog-adjustment.html</link>
		<comments>http://xuhel.cn/bloglife/blog-adjustment.html#comments</comments>
		<pubDate>Sat, 06 Jun 2009 10:41:39 +0000</pubDate>
		<dc:creator>Xu.hel</dc:creator>
				<category><![CDATA[My Blog]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://xuhel.cn/?p=739</guid>
		<description><![CDATA[昨晚把 Blog 的分类调整了一下. 将原有  Uncategorized 分类和 My Blog 分类的文章合并到 My Blog分类里面了,并将 My Blog 分类的永久链接地址进行了修改.
遗憾的是这次调整是忘了备份数据库导致昨天... ]]></description>
			<content:encoded><![CDATA[<p>昨晚把 Blog 的分类调整了一下. 将原有  <span class="row-title">Uncategorized </span>分类和 My Blog 分类的文章合并到 My Blog分类里面了,并将 My Blog 分类的永久链接地址进行了修改.</p>
<p>遗憾的是这次调整是忘了备份数据库导致昨天的评论数据丢失了. 下次一定要记得备份数据库阿&#8230;.</p>
<p>提醒一下, 大家在坐公交车时要小心一点. 遇到事故打开 112 是没错的.</p>
<img src="http://xuhel.cn/?ak_action=api_record_view&id=739&type=feed" alt="" />
	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://xuhel.cn/bloglife/wow-and-au.html" title="魔兽世界玩家和劲舞团玩家的差别 (10-14-2008)">魔兽世界玩家和劲舞团玩家的差别</a> (5)</li>
	<li><a href="http://xuhel.cn/bloglife/herding.html" title="羊群效应 (07-09-2009)">羊群效应</a> (1)</li>
	<li><a href="http://xuhel.cn/bloglife/play-is-the-heartbeat.html" title="玩的就是心跳 (11-01-2008)">玩的就是心跳</a> (13)</li>
	<li><a href="http://xuhel.cn/librarys/alienware-pc.html" title="最奢侈的电脑-Alienware (09-05-2008)">最奢侈的电脑-Alienware</a> (7)</li>
	<li><a href="http://xuhel.cn/bloglife/chunjiekuaile.html" title="春节快乐 (02-03-2008)">春节快乐</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://xuhel.cn/bloglife/blog-adjustment.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iDm Studio Test</title>
		<link>http://xuhel.cn/themes/idm-studio-test.html</link>
		<comments>http://xuhel.cn/themes/idm-studio-test.html#comments</comments>
		<pubDate>Tue, 02 Jun 2009 10:12:49 +0000</pubDate>
		<dc:creator>Xu.hel</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Designs]]></category>
		<category><![CDATA[Skins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://xuhel.cn/?p=738</guid>
		<description><![CDATA[iDm Studio 暂时叫这个名字吧。现在上线测试了。
还有部分插件的支持还在调整中，等几天有空了再弄了。最近很忙。
目前 FF 下正常。发现问题就请留言哈。
PS：NeoVFX 改版了，有兴趣的可以逛... ]]></description>
			<content:encoded><![CDATA[<p>iDm Studio 暂时叫这个名字吧。现在上线测试了。</p>
<p>还有部分插件的支持还在调整中，等几天有空了再弄了。最近很忙。</p>
<p>目前 FF 下正常。发现问题就请留言哈。</p>
<p>PS：<a href="http://www.neovfx.com/archives/1331">NeoVFX</a> 改版了，有兴趣的可以<a href="http://www.neovfx.com/archives/1295">逛逛去</a>。</p>
<p>终结者4里面是有州长客窜的，出现的具体时间是保密</p>
<p><span style="color: #ffffff;">1:20:00 左右出现</span></p>
<img src="http://xuhel.cn/?ak_action=api_record_view&id=738&type=feed" alt="" />
	<h3>Related posts</h3>
	<ul class="st-related-posts">
	<li><a href="http://xuhel.cn/wordpress/wp-theme-updated-circular2.html" title="WP主题更新提示 (07-31-2008)">WP主题更新提示</a> (3)</li>
	<li><a href="http://xuhel.cn/wordpress/wp-theme-dark-wish.html" title="WP-Theme:Dark Wish (07-13-2008)">WP-Theme:Dark Wish</a> (54)</li>
	<li><a href="http://xuhel.cn/wordpress/wp-theme-ii-tango.html" title="WP Theme:ii Tango (09-26-2008)">WP Theme:ii Tango</a> (95)</li>
	<li><a href="http://xuhel.cn/themes/tango-for-wordpress.html" title="Tango! for WordPress (09-11-2008)">Tango! for WordPress</a> (3)</li>
	<li><a href="http://xuhel.cn/wordpress/wptheme-nfs-carbon.html" title="NFS:Carbon Release (01-16-2009)">NFS:Carbon Release</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://xuhel.cn/themes/idm-studio-test.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
