﻿<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>HèTianZhuo&#039;s β㏒</title>
	<atom:link href="http://blog.hetianzhuo.com/hetianzhuo.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.hetianzhuo.com/hetianzhuo.com/blog</link>
	<description>读书使人渊博,交谈使人机敏,写作使人严谨。</description>
	<lastBuildDate>Mon, 30 Aug 2010 15:36:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>“快盘”DropBox墙内替代品</title>
		<link>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=463</link>
		<comments>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=463#comments</comments>
		<pubDate>Mon, 30 Aug 2010 15:34:39 +0000</pubDate>
		<dc:creator>Hèr TZ</dc:creator>
				<category><![CDATA[工具资源]]></category>
		<category><![CDATA[同步]]></category>
		<category><![CDATA[网盘]]></category>

		<guid isPermaLink="false">http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=463</guid>
		<description><![CDATA[快盘是由金山出品的同步网盘，空间默认1G(进行简单学习步骤可以升到2.6G)， 毕竟是在国内所以速度相当靠谱。试用了一个月时间，功能还在完善中，不过现在已经能够满足同步备份的需求了。 先说不好的地方，这样大家斟酌的注册： 1 没有版本化恢复功能（这个很重要） 2 没有移动设备版本的软件 下面是官方的宣传语： 上手快：比您想像的更简单。会在“我的电脑”存储文件，就会使用快盘。 容量大：现阶段可以获得2.6GB空间，后续将更多 更顺手：不必非得打开WPS才能使用网上的文件，想怎么用都行。 更省心：把文件放到快盘里，自动上传和更新，不用像网盘一样麻烦 不怕掉线：在本地文件夹里直接管理云存储中的文件，当然就不怕掉线拿不到文件 点击我注册]]></description>
		<wfw:commentRss>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?feed=rss2&amp;p=463</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>用csstidy自动合并压缩子目录下的css文件</title>
		<link>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=456</link>
		<comments>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=456#comments</comments>
		<pubDate>Fri, 13 Aug 2010 06:29:42 +0000</pubDate>
		<dc:creator>Hèr TZ</dc:creator>
				<category><![CDATA[代码片段]]></category>
		<category><![CDATA[bat]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[csstidy]]></category>

		<guid isPermaLink="false">http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=456</guid>
		<description><![CDATA[　　最近看到很多人写了怎么样合并css文件，其实自己以前也写过一个， 因为 aspnet中的AppThemes 机制会将所有文件夹下的css自动引用到页面上， 这样带来两个问题： (1) 大量的HTTP Request，这个违反了YSlow的原则。 (2) 浏览器对样式文件的引入数量是有限定的，超过一定数量后会导致css文件引用失效。 这个批处理用csstidy和 for语句 合作完成的。除了能解决上面说的两个问题外还能够压缩css文件大小。 大致流程如下 (0) 将以前合并的css删除 (1) 重命名所有css后缀文件为cssx； (2) 合并所有目录下的cssx到all-nopack.css；...]]></description>
		<wfw:commentRss>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?feed=rss2&amp;p=456</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>循环压缩当前目录下bak文件为rar</title>
		<link>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=450</link>
		<comments>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=450#comments</comments>
		<pubDate>Thu, 05 Aug 2010 09:06:40 +0000</pubDate>
		<dc:creator>Hèr TZ</dc:creator>
				<category><![CDATA[代码片段]]></category>
		<category><![CDATA[bat]]></category>
		<category><![CDATA[rar]]></category>

		<guid isPermaLink="false">http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=450</guid>
		<description><![CDATA[在服务器上部署了很多数据库，自动备份后非常占用硬盘空间。 于是用rar命令行与for语句结合做了一个压缩批处理。 FOR /r %cd% %%i IN (*.bak) DO ( rar a &#8220;%%~dpi%%~ni&#8221; &#8220;%%~dpi%%~ni%%~xi&#8221; -k -df -ep -y ) *PS:rar为winrar中的命令行文件rar.exe...]]></description>
		<wfw:commentRss>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?feed=rss2&amp;p=450</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>腾讯微博邀请码</title>
		<link>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=431</link>
		<comments>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=431#comments</comments>
		<pubDate>Thu, 13 May 2010 03:42:26 +0000</pubDate>
		<dc:creator>Hèr TZ</dc:creator>
				<category><![CDATA[工具资源]]></category>
		<category><![CDATA[邀请码]]></category>

		<guid isPermaLink="false">http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=431</guid>
		<description><![CDATA[很久没有写文章了，一直在忙公司的WebNuke CMS系统。 刚从同学那里得到的腾讯微博，开通后得到了一些邀请。需要的请留下邮箱。]]></description>
		<wfw:commentRss>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?feed=rss2&amp;p=431</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>阿里旺旺产品设计UED流程图</title>
		<link>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=405</link>
		<comments>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=405#comments</comments>
		<pubDate>Wed, 20 Jan 2010 03:31:08 +0000</pubDate>
		<dc:creator>Hèr TZ</dc:creator>
				<category><![CDATA[管理流程]]></category>
		<category><![CDATA[项目流程]]></category>

		<guid isPermaLink="false">http://blog.hetianzhuo.com/hetianzhuo.com/blog/?p=405</guid>
		<description><![CDATA[从网上看到一份《阿里旺旺产品设计UED流程图》，这个流程图非常全面的描述了一个产品从“需求产生”到“最终交付”的过程。 比起上次转载那篇《网站开发情景流程图[转载]》更加的专业，从这幅图中也可以看到 淘宝UED产品设计的专业程度。 其实我也思考过一些工作流程的问题，个人觉得在现在这个时代好的产品 不仅仅需要灵感，而且需要一个好的设计流程。下面贴出一份我用Axure RP 绘制的 《产品开发流程图》。  ]]></description>
		<wfw:commentRss>http://blog.hetianzhuo.com/hetianzhuo.com/blog/?feed=rss2&amp;p=405</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
