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

<channel>
	<title>Hsiang Chieh的小地盘</title>
	<atom:link href="http://www.beautycss.org/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.beautycss.org/blog</link>
	<description></description>
	<pubDate>Sun, 04 Jan 2009 17:12:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>在wordpress如何创建一个动态的sidebar</title>
		<link>http://www.beautycss.org/blog/archives/498</link>
		<comments>http://www.beautycss.org/blog/archives/498#comments</comments>
		<pubDate>Sun, 04 Jan 2009 16:51:49 +0000</pubDate>
		<dc:creator>hsiang</dc:creator>
		
		<category><![CDATA[技术文档]]></category>

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

		<category><![CDATA[翻译]]></category>

		<guid isPermaLink="false">http://www.beautycss.org/blog/archives/498</guid>
		<description><![CDATA[首先,你要问自己,&#8221;我了解我的theme么?&#8221;它是否需要一个无序列表去创建一个sidebar.
这里有一个很好的sidebar的例子:
使用代码时,请将全角的尖括号替换成半角的.

＜ul id=&#8221;sidebar&#8221;＞
	＜li id=&#8221;about&#8221;＞
＜h2＞About＜/h2＞
This is my blog.＜/li＞
	＜li id=&#8221;links&#8221;＞
＜h2＞Links＜/h2＞
＜ul＞
	＜li＞＜a href=&#8221;http://example.com&#8221;＞Example＜/a＞＜/li＞
＜/ul＞
＜/li＞
＜/ul＞

注意这个sidebar是用无序列表构建的,title用
h2.并非所有的theme都需要这样构建.但是这个是最常见,
widget Api 提供一些功能给你的模板.这些功能让Wordpress的替代你的theme的sidebar.
这里有个例子:


＜ul id=&#8221;sidebar&#8221;＞ &#124;&#124; !dynamic_sidebar() ) : ?&#62;
	＜li id=&#8221;about&#8221;＞
＜h2＞About＜/h2＞
This is my blog.＜/li＞
	＜li id=&#8221;links&#8221;＞
＜h2＞Links＜/h2＞
＜ul＞
	＜li＞＜a href=&#8221;http://blog.hsiang.org&#8221;＞Example＜/a＞＜/li＞
＜/ul＞
＜/li＞
 ＜/ul＞

看到没? 我们只是加了两行代码,现在它将变成一个动态的sidebar,如果你需要的话.当然,如果你不设置,它依旧是过去的样子.你可以在后台添加或删除这些.
现在我们要在theme身上动点手脚了.如果你用WP2.0或更高的版本,这些变化都是放在functions.php 这个文件里的.
你可以通过下面的代码来创建一个functions.php:
if ( function_exists(&#8217;register_sidebar&#8217;) )
register_sidebar();
?&#62;

这些才4行.这些代码告诉wp,你的theme提供动态sidebar的功能.这时,后台会有项选项:sidebar widgets.这些你可以拖出来使用了.是不是很神奇?
＜em＞我的sidebar 不是一个列表,我应该怎么办?＜/em＞
我就晓得你肯定要这么问,你要去发现你的sidebar的设计样式.然后用一些额外的样式调哦告诉plugin,怎样驾驭它们.我来给你觉个例子:

＜div id=&#8221;sidebar&#8221;＞
＜div class=&#8221;title&#8221;＞About＜/div＞
This is my blog.
＜div class=&#8221;title&#8221;＞Links＜/div＞
＜ul＞
	＜li＞＜a href=&#8221;http://example.com&#8221;＞Example＜/a＞＜/li＞
＜/ul＞
＜/div＞

这是另外一种写sidebar的方法,你可以看到div代替了h2.
我们更倾向于用 &#8220;ul/li/h2&#8243; .
原文:http://codex.wordpress.org/Widgetizing_Themes
PS:只翻译了如何插入API的部分.其他的做了省略. 
]]></description>
			<content:encoded><![CDATA[<p>首先,你要问自己,&#8221;我了解我的theme么?&#8221;它是否需要一个无序列表去创建一个sidebar.<br />
这里有一个很好的sidebar的例子:<br />
<em>使用代码时,请将全角的尖括号替换成半角的.</em></p>
<blockquote>
<p>＜ul id=&#8221;sidebar&#8221;＞<br />
	＜li id=&#8221;about&#8221;＞<br />
＜h2＞About＜/h2＞<br />
This is my blog.＜/li＞<br />
	＜li id=&#8221;links&#8221;＞<br />
＜h2＞Links＜/h2＞<br />
＜ul＞<br />
	＜li＞＜a href=&#8221;http://example.com&#8221;＞Example＜/a＞＜/li＞<br />
＜/ul＞<br />
＜/li＞<br />
＜/ul＞
</p></blockquote>
<p>注意这个sidebar是用无序列表构建的,title用<br />
h2.并非所有的theme都需要这样构建.但是这个是最常见,<br />
widget Api 提供一些功能给你的模板.这些功能让Wordpress的替代你的theme的sidebar.<br />
这里有个例子:<br />
<span id="more-498"></span></p>
<blockquote><p>
＜ul id=&#8221;sidebar&#8221;＞ || !dynamic_sidebar() ) : ?&gt;<br />
	＜li id=&#8221;about&#8221;＞<br />
＜h2＞About＜/h2＞<br />
This is my blog.＜/li＞<br />
	＜li id=&#8221;links&#8221;＞<br />
＜h2＞Links＜/h2＞<br />
＜ul＞<br />
	＜li＞＜a href=&#8221;http://blog.hsiang.org&#8221;＞Example＜/a＞＜/li＞<br />
＜/ul＞<br />
＜/li＞<br />
 ＜/ul＞
</p></blockquote>
<p>看到没? 我们只是加了两行代码,现在它将变成一个动态的sidebar,如果你需要的话.当然,如果你不设置,它依旧是过去的样子.你可以在后台添加或删除这些.<br />
现在我们要在theme身上动点手脚了.如果你用WP2.0或更高的版本,这些变化都是放在functions.php 这个文件里的.<br />
你可以通过下面的代码来创建一个functions.php:</p>
<blockquote><p>if ( function_exists(&#8217;register_sidebar&#8217;) )<br />
register_sidebar();<br />
?&gt;</p>
</blockquote>
<p>这些才4行.这些代码告诉wp,你的theme提供动态sidebar的功能.这时,后台会有项选项:sidebar widgets.这些你可以拖出来使用了.是不是很神奇?<br />
＜em＞我的sidebar 不是一个列表,我应该怎么办?＜/em＞<br />
我就晓得你肯定要这么问,你要去发现你的sidebar的设计样式.然后用一些额外的样式调哦告诉plugin,怎样驾驭它们.我来给你觉个例子:</p>
<blockquote><p>
＜div id=&#8221;sidebar&#8221;＞<br />
＜div class=&#8221;title&#8221;＞About＜/div＞<br />
This is my blog.<br />
＜div class=&#8221;title&#8221;＞Links＜/div＞<br />
＜ul＞<br />
	＜li＞＜a href=&#8221;http://example.com&#8221;＞Example＜/a＞＜/li＞<br />
＜/ul＞<br />
＜/div＞
</p></blockquote>
<p>这是另外一种写sidebar的方法,你可以看到div代替了h2.<br />
我们更倾向于用 &#8220;ul/li/h2&#8243; .</p>
<p>原文:http://codex.wordpress.org/Widgetizing_Themes<br />
PS:只翻译了如何插入API的部分.其他的做了省略. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.beautycss.org/blog/archives/498/feed</wfw:commentRss>
		</item>
		<item>
		<title>IE6的一个Css问题</title>
		<link>http://www.beautycss.org/blog/archives/495</link>
		<comments>http://www.beautycss.org/blog/archives/495#comments</comments>
		<pubDate>Sat, 03 Jan 2009 19:09:55 +0000</pubDate>
		<dc:creator>hsiang</dc:creator>
		
		<category><![CDATA[流水账]]></category>

		<guid isPermaLink="false">http://www.beautycss.org/blog/archives/495</guid>
		<description><![CDATA[今天遇到一个问题,CSS源码如下:
a:link,a:visited,a:hover,a:active{font-famliy:&#8221;宋体&#8221;;color:#fff;font-size:18px}
现象:IE6里字体,颜色,大小都没有效果,其他浏览器正常.用firebug看了下.发现问题出在CSS文件的编码上,导致浏览器将&#8221;宋体&#8221;认成了乱码,进而导致整个句子都没效果.
解决方法:css文件转成utf-8. 不会改的,在DW里新建一个css,全拷过去就好了.
]]></description>
			<content:encoded><![CDATA[<p>今天遇到一个问题,CSS源码如下:</p>
<blockquote><p>a:link,a:visited,a:hover,a:active{font-famliy:&#8221;宋体&#8221;;color:#fff;font-size:18px}</p></blockquote>
<p>现象:IE6里字体,颜色,大小都没有效果,其他浏览器正常.用firebug看了下.发现问题出在CSS文件的编码上,导致浏览器将&#8221;宋体&#8221;认成了乱码,进而导致整个句子都没效果.</p>
<p>解决方法:css文件转成utf-8. 不会改的,在DW里新建一个css,全拷过去就好了.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beautycss.org/blog/archives/495/feed</wfw:commentRss>
		</item>
		<item>
		<title>被劫持了?</title>
		<link>http://www.beautycss.org/blog/archives/494</link>
		<comments>http://www.beautycss.org/blog/archives/494#comments</comments>
		<pubDate>Sat, 03 Jan 2009 19:02:09 +0000</pubDate>
		<dc:creator>hsiang</dc:creator>
		
		<category><![CDATA[流水账]]></category>

		<guid isPermaLink="false">http://www.beautycss.org/blog/archives/494</guid>
		<description><![CDATA[昨天开始访问我自己的博客页脚就会出现广告.我还以为是迅雷的广告,也没在意.可今天没开迅雷,依然如此,刷新了一下,页面出现了横向滚动条.很奇怪.查了访客记录IP是这个122,193,4,242 . 放Google里搜了下,原来是&#8221;和谐&#8221;的中国联通(原来的网通)的劫持.好吧,我不得不和谐的说一句.&#8221;F-UCK U!&#8221;
]]></description>
			<content:encoded><![CDATA[<p>昨天开始访问我自己的博客页脚就会出现广告.我还以为是迅雷的广告,也没在意.可今天没开迅雷,依然如此,刷新了一下,页面出现了横向滚动条.很奇怪.查了访客记录IP是这个122,193,4,242 . 放Google里搜了下,原来是&#8221;和谐&#8221;的中国联通(原来的网通)的劫持.好吧,我不得不和谐的说一句.&#8221;F-UCK U!&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beautycss.org/blog/archives/494/feed</wfw:commentRss>
		</item>
		<item>
		<title>pjblog 转 wordpress 方法总结</title>
		<link>http://www.beautycss.org/blog/archives/487</link>
		<comments>http://www.beautycss.org/blog/archives/487#comments</comments>
		<pubDate>Fri, 02 Jan 2009 15:40:59 +0000</pubDate>
		<dc:creator>hsiang</dc:creator>
		
		<category><![CDATA[流水账]]></category>

		<guid isPermaLink="false">http://www.beautycss.org/blog/archives/487</guid>
		<description><![CDATA[最近和kidaubis在做一些东西,牵扯到了pjblog转wordpress的事情,现列出方法来供大家参考:
方法1
首先点此下载转换工具此工具需要.net framework2的支持，.把PJ的数据库下到本地，改后缀为MDB。然后打开小工具，剩下的你肯定都会了。然后打开WP的后台，点管理–导入，选择从wordpress导入文件，就可以了。如果第一次没导入完整，就再来一遍。这个方法的优点是,操作简单.缺点是,注册用户数据无法转移.图片和附件要重新上传.所以,如果你是大文字量,图片又不多的.可以用这个.
方法2
详见这篇文章 .不过我自己用了下,好像无法使用.

方法3
首先点此下载.然后,将解压出来的asp文件,放到pjblog的根目录下.在地址栏里输入&#8221;http://博客地址(比如www.beautycss.org/blog)/pj2wp.asp&#8221; 仔细阅读声明后,点最下面的&#8221;确定导出&#8221;,完了以后会提示你下载导出的数据.下回本地的是一个txt文档.然后用SQL工具,来导入数据.以phpmyadmin这个SQL工具为例:



最后,把pjblog目录里的&#8221;attachments&#8221;文件夹放到wordpress的根目录下.
这个方法不方便在对新手来说操作稍微复杂,但是移植的效果却是最好的.
方法4 如果你实在是不会了.这里有个收费的方法.具体看这里
]]></description>
			<content:encoded><![CDATA[<p>最近和kidaubis在做一些东西,牵扯到了pjblog转wordpress的事情,现列出方法来供大家参考:<br />
方法1</p>
<p>首先<a href="http://www.beautycss.org/blog/wp-content/uploads/2008/07/pj2wp.rar">点此下载转换工具</a>此工具需要.net framework2的支持，.把PJ的数据库下到本地，改后缀为MDB。然后打开小工具，剩下的你肯定都会了。然后打开WP的后台，点管理–导入，选择从wordpress导入文件，就可以了。如果第一次没导入完整，就再来一遍。这个方法的优点是,操作简单.缺点是,注册用户数据无法转移.图片和附件要重新上传.所以,如果你是大文字量,图片又不多的.可以用这个.</p>
<p>方法2</p>
<p>详见<a href="http://www.awflasher.com/blog/archives/800">这篇文章</a> .不过我自己用了下,好像无法使用.<br />
<span id="more-487"></span><br />
方法3</p>
<p>首先<a href="http://www.beautycss.org/blog/wp-content/uploads/2009/01/pj2wp.rar">点此下载</a>.然后,将解压出来的asp文件,放到pjblog的根目录下.在地址栏里输入&#8221;http://博客地址(比如www.beautycss.org/blog)/pj2wp.asp&#8221; 仔细阅读声明后,点最下面的&#8221;确定导出&#8221;,完了以后会提示你下载导出的数据.下回本地的是一个txt文档.然后用SQL工具,来导入数据.以phpmyadmin这个SQL工具为例:</p>
<p><a href="http://www.beautycss.org/blog/wp-content/uploads/2009/01/step1.jpg"><img class="alignnone size-medium wp-image-485" style="border: 1px solid #999;" title="step1" src="http://www.beautycss.org/blog/wp-content/uploads/2009/01/step1-299x237.jpg" alt="step1" width="299" height="237" /></a></p>
<p><a href="http://www.beautycss.org/blog/wp-content/uploads/2009/01/step2.jpg"><img class="alignnone size-medium wp-image-486" style="border: 1px solid #999;" title="step2" src="http://www.beautycss.org/blog/wp-content/uploads/2009/01/step2-300x222.jpg" alt="step2" width="300" height="222" /></a></p>
<p><a href="http://www.beautycss.org/blog/wp-content/uploads/2009/01/step3.jpg"><img class="alignnone size-medium wp-image-484" style="border: 1px solid #999;" title="step3" src="http://www.beautycss.org/blog/wp-content/uploads/2009/01/step3-300x221.jpg" alt="step3" width="300" height="221" /></a><br />
最后,把pjblog目录里的&#8221;attachments&#8221;文件夹放到wordpress的根目录下.<br />
这个方法不方便在对新手来说操作稍微复杂,但是移植的效果却是最好的.</p>
<p>方法4 如果你实在是不会了.这里有个收费的方法.<a href="http://fairyfish.net/2008/11/07/pjblog-2-wordpress-misuisui/">具体看这里</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beautycss.org/blog/archives/487/feed</wfw:commentRss>
		</item>
		<item>
		<title>提示,hsiang.net.cn 域名将于1月4号停用.</title>
		<link>http://www.beautycss.org/blog/archives/480</link>
		<comments>http://www.beautycss.org/blog/archives/480#comments</comments>
		<pubDate>Thu, 01 Jan 2009 14:57:33 +0000</pubDate>
		<dc:creator>hsiang</dc:creator>
		
		<category><![CDATA[流水账]]></category>

		<guid isPermaLink="false">http://www.beautycss.org/blog/?p=480</guid>
		<description><![CDATA[hsiang.net.cn 域名将于1月4号停用.请所有做链接的朋友们修改链接为http://www.beautycss.org/blog/
]]></description>
			<content:encoded><![CDATA[<p>hsiang.net.cn 域名将于1月4号停用.请所有做链接的朋友们修改链接为http://www.beautycss.org/blog/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beautycss.org/blog/archives/480/feed</wfw:commentRss>
		</item>
		<item>
		<title>流氓无处不在</title>
		<link>http://www.beautycss.org/blog/archives/472</link>
		<comments>http://www.beautycss.org/blog/archives/472#comments</comments>
		<pubDate>Fri, 19 Dec 2008 12:54:25 +0000</pubDate>
		<dc:creator>hsiang</dc:creator>
		
		<category><![CDATA[流水账]]></category>

		<guid isPermaLink="false">http://www.beautycss.org/blog/?p=472</guid>
		<description><![CDATA[升级了Windows大师,准备优化下系统,结果碰到了这么一个选项.

IE默认搜索引擎的选项也就算了,毕竟大部分人都用baidu或者google.但是这个默认首页就雷人了.
回头想想现在的共享软件有两大流行趋势,一种是像QQ那样加一个新闻弹窗,问题是如果内容是新闻外加广告也就算了.像迅雷那样把广告打扮成新闻的,就真是雷中之雷了.
另一种就是像暴风影音那样在你播放视频的时候在角上加个小广告,这意思就是生怕你不走神,还把这小flash广告做的那么炫那么诱惑,时不时的来个美女,来个性暗示什么的.有一次我就真给诱惑过去了.广告是这么写的&#8212;你想让哪个美女陪你游戏? 成人游戏 18岁禁! 注册就送美女! 我点了一下,结果跳到一个网页游戏界面,大大的广告更露骨了&#8212;男人,你能挺几次?,我心里想,网页游戏这种没画质的游戏我到要看看到底什么诱惑.注册了一个进去,一看就是一个战略优秀.一个美女都没有.
虽然共享软件们现在也就靠广告赚点钱,但是这个广告做的还是雷了点&#8230; &#8230; 其实也不怪他们,这得怪那帮广告设计精英们,不对,精英们肯定也不想这么没品位,按照常理来说,在国内这种外行领导内行的环境下,我们应该怪&#8230; &#8230;唉,还是自己慢慢想吧.免得雷人.
]]></description>
			<content:encoded><![CDATA[<p>升级了Windows大师,准备优化下系统,结果碰到了这么一个选项.</p>
<p><img class="alignnone size-medium wp-image-473" style="border: 1px solid #999;" title="e69caae591bde5908d" src="http://www.beautycss.org/blog/wp-content/uploads/2008/12/e69caae591bde5908d-300x162.jpg" alt="e69caae591bde5908d" width="300" height="162" /></p>
<p>IE默认搜索引擎的选项也就算了,毕竟大部分人都用baidu或者google.但是这个默认首页就雷人了.</p>
<p>回头想想现在的共享软件有两大流行趋势,一种是像QQ那样加一个新闻弹窗,问题是如果内容是新闻外加广告也就算了.像迅雷那样把广告打扮成新闻的,就真是雷中之雷了.</p>
<p>另一种就是像暴风影音那样在你播放视频的时候在角上加个小广告,这意思就是生怕你不走神,还把这小flash广告做的那么炫那么诱惑,时不时的来个美女,来个性暗示什么的.有一次我就真给诱惑过去了.广告是这么写的&#8212;你想让哪个美女陪你游戏? 成人游戏 18岁禁! 注册就送美女! 我点了一下,结果跳到一个网页游戏界面,大大的广告更露骨了&#8212;男人,你能挺几次?,我心里想,网页游戏这种没画质的游戏我到要看看到底什么诱惑.注册了一个进去,一看就是一个战略优秀.一个美女都没有.</p>
<p>虽然共享软件们现在也就靠广告赚点钱,但是这个广告做的还是雷了点&#8230; &#8230; 其实也不怪他们,这得怪那帮广告设计精英们,不对,精英们肯定也不想这么没品位,按照常理来说,在国内这种外行领导内行的环境下,我们应该怪&#8230; &#8230;唉,还是自己慢慢想吧.免得雷人.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beautycss.org/blog/archives/472/feed</wfw:commentRss>
		</item>
		<item>
		<title>祝贺老罗培训(罗永浩)雅思课程开设成功</title>
		<link>http://www.beautycss.org/blog/archives/470</link>
		<comments>http://www.beautycss.org/blog/archives/470#comments</comments>
		<pubDate>Sun, 14 Dec 2008 15:36:01 +0000</pubDate>
		<dc:creator>hsiang</dc:creator>
		
		<category><![CDATA[流水账]]></category>

		<guid isPermaLink="false">http://www.beautycss.org/blog/?p=470</guid>
		<description><![CDATA[不想在新东方 环球 朗阁 等培训机构学习雅思课程的同学们现在有福音了.罗永浩的老罗培训终于开始了雅思培训.
地址在此::http://www.laoluo.org/pages/1/courses.aspx
祝老罗培训发展顺利.
]]></description>
			<content:encoded><![CDATA[<p>不想在新东方 环球 朗阁 等培训机构学习雅思课程的同学们现在有福音了.罗永浩的老罗培训终于开始了雅思培训.</p>
<p>地址在此::http://www.laoluo.org/pages/1/courses.aspx</p>
<p>祝老罗培训发展顺利.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beautycss.org/blog/archives/470/feed</wfw:commentRss>
		</item>
		<item>
		<title>actor&#8217;s lines</title>
		<link>http://www.beautycss.org/blog/archives/465</link>
		<comments>http://www.beautycss.org/blog/archives/465#comments</comments>
		<pubDate>Mon, 08 Dec 2008 17:49:53 +0000</pubDate>
		<dc:creator>hsiang</dc:creator>
		
		<category><![CDATA[流水账]]></category>

		<guid isPermaLink="false">http://www.beautycss.org/blog/?p=465</guid>
		<description><![CDATA[I do like many of u appreciate the comforts of the everyday routine the security of the familiar the tranquility of repetition
I enjoy them as much as any bloke,but in the spirit of commemoration whereby important events of the past usually associated with someone&#8217;s death or the end of some awful bloody struggle are celebrated [...]]]></description>
			<content:encoded><![CDATA[<p>I do like many of u appreciate the comforts of the everyday routine the security of the familiar the tranquility of repetition</p>
<p>I enjoy them as much as any bloke,but in the spirit of commemoration whereby important events of the past usually associated with someone&#8217;s death or the end of some awful bloody struggle are celebrated with a nice holiday.I thought we could mark this november the 5th a day that is sadly no longer remember by taking some time.Out of our daily lives to sitdown and have a little chat.</p>
<p>There are of course those who do not want us to speak.Even now orders are being shouted into telephones.And men with guns will soon be on their way.</p>
<p>Why? Because while the truncheon may be used in lieu of conversation.Words will always retain their power.Words offer the means to meaning and for those who will listen the enunciation of truth.And the truth is there is something terribly wrong with this country ,isn&#8217;t there?</p>
<p>Cruelty and injustice into lerance and oppression.And there once you had the freedom to object to think and speak as you saw fit you now have censors and surveillance coercing your conformity and soliciting submission.</p>
<p>How did this happen?Who&#8217;s to blame?Certainly there are those who are more responsible than others.And they will be held accountable.But again truth be told if you are looking for the guilty ,you need only into a mirror.I know why you did it.I know you were afarid.Who wonldn&#8217;t be?War,Terror,Disease.</p>
<p>There were a mgrlad of problems which conspired to corrupt your reasons and rob of your common sense.Fear got the best of you.And in your panic you turned to the now chancellor.</p>
<p>He promised you order ,he promised you pease and all he demanded in return was your silent obedient consent.</p>
<p>Last night,I sought to end that silence.</p>
<p>More than 400 years ago,A great citizen wished to inbed the 5th of novermeber.Forver in our momery.His hope was to remind the world that fairness justice and freedom and more than words.They are perspectives.</p>
<p>So if you see nothing,if the crimes of this government remain unknow to you then I would suggest that you allow the 5th of novermber to pass unmarked.</p>
<p>But if you see what I see,if you feel as I feel and if you seek as I seek.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beautycss.org/blog/archives/465/feed</wfw:commentRss>
		</item>
		<item>
		<title>最牛英语单词奖颁发给&#8221;F-u-c-k&#8221;</title>
		<link>http://www.beautycss.org/blog/archives/459</link>
		<comments>http://www.beautycss.org/blog/archives/459#comments</comments>
		<pubDate>Sun, 07 Dec 2008 17:46:27 +0000</pubDate>
		<dc:creator>hsiang</dc:creator>
		
		<category><![CDATA[流水账]]></category>

		<guid isPermaLink="false">http://www.beautycss.org/blog/?p=459</guid>
		<description><![CDATA[
 
fuck一词是英语中很有意思的单词之一，是f开头的词中很少可以将&#8221;喜怒哀乐&#8221;全部表达出来的单词。fuck一词让人信服的来源是古德语的ficken，意思是to strike，意思是&#8221;攻击、袭击、压铸&#8221;
1.作动词：A fucked B
2.形容词：John is doing all the fucking work
3.作副词：B talks too fucking much!(丫他妈的太贫了)
B is fucking beautiful!(丫太她妈漂亮了)
4.作名词：I don&#8217;t give a FUCK!
5.作为插入词：absofuckinglutely，infuckingcredible
6.还有若干语境，类似于汉语的&#8221;操&#8221;
场景：我偷东西被警察抓住了，于是很郁闷，弱弱地说，&#8221;fuck&#8221;。。。
当然，最彪悍的说法是扯开嗓门大喊&#8221;FUCK YOU!&#8221;，并竖起中指。
]]></description>
			<content:encoded><![CDATA[<p><span style="color: #551a8b; text-decoration: underline;"><a href="http://www.youtube.com/watch?v=l_PkJ_4oEjc"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="play" value="false" /><param name="src" value="http://www.youtube.com/v/l_PkJ_4oEjc" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/l_PkJ_4oEjc" play="false"></embed></object></a></span></p>
<p> </p>
<p>fuck一词是英语中很有意思的单词之一，是f开头的词中很少可以将&#8221;喜怒哀乐&#8221;全部表达出来的单词。fuck一词让人信服的来源是古德语的ficken，意思是to strike，意思是&#8221;攻击、袭击、压铸&#8221;</p>
<blockquote><p>1.作动词：A fucked B<br />
2.形容词：John is doing all the fucking work<br />
3.作副词：B talks too fucking much!(丫他妈的太贫了)<br />
B is fucking beautiful!(丫太她妈漂亮了)<br />
4.作名词：I don&#8217;t give a FUCK!<br />
5.作为插入词：absofuckinglutely，infuckingcredible<br />
6.还有若干语境，类似于汉语的&#8221;操&#8221;<br />
场景：我偷东西被警察抓住了，于是很郁闷，弱弱地说，&#8221;fuck&#8221;。。。<br />
当然，最彪悍的说法是扯开嗓门大喊&#8221;FUCK YOU!&#8221;，并竖起中指。</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.beautycss.org/blog/archives/459/feed</wfw:commentRss>
		</item>
		<item>
		<title>七天</title>
		<link>http://www.beautycss.org/blog/archives/457</link>
		<comments>http://www.beautycss.org/blog/archives/457#comments</comments>
		<pubDate>Fri, 05 Dec 2008 06:32:56 +0000</pubDate>
		<dc:creator>hsiang</dc:creator>
		
		<category><![CDATA[流水账]]></category>

		<guid isPermaLink="false">http://www.beautycss.org/blog/?p=457</guid>
		<description><![CDATA[不管这七天是七天前,还是七天后,对我来说都是十分要命的七天.
OK,听我来说说七天前.七天前,我搬家以后第一次要去verycd看看,结果我刚打开这页面,就听硬盘&#8221;啪~啪~啪~&#8221; 响了3下,我的心立马揪起来了.事实证明我的心揪的没错.电脑马上蓝屏,然后自动重启,然后没完没了的重启,然后我只好拔电源.拆了硬盘跑别人电脑上去扫描了一遍,删掉了几个索引文件,就OK了.但是OK了没多久,就完全歇菜了.好吧,至少我也是个高手,自己折腾吧,这一折腾一个下午就没了.可恨的是,实在不能确定到底是哪个东西的问题.无奈之下,跑珠江路去把机箱,硬盘,主板,全换了.1000块钱就这么没了,问题是解决了,但是实在搞不清楚到底是哪里的问题,.可气的是,我买电脑的那个店的店员,得了,我对南京的影响又差了&#8230; &#8230;(省略500字)
然后,我来说说后七天,13号考试,进了12月我就没安心看过书,背过的单词也忘了40%了.最担心的就是13号了.往往人都有这种感受,临近考试,就什么都不想干了,我现在就是这样.明明意识到了自己还应该看很多,但是就是没那个劲头了.哎,每天晚上教育完了宁某,自己就开始感到阵阵的不安&#8230; &#8230;
好吧,我的13th Dec
]]></description>
			<content:encoded><![CDATA[<p>不管这七天是七天前,还是七天后,对我来说都是十分要命的七天.</p>
<p>OK,听我来说说七天前.七天前,我搬家以后第一次要去verycd看看,结果我刚打开这页面,就听硬盘&#8221;啪~啪~啪~&#8221; 响了3下,我的心立马揪起来了.事实证明我的心揪的没错.电脑马上蓝屏,然后自动重启,然后没完没了的重启,然后我只好拔电源.拆了硬盘跑别人电脑上去扫描了一遍,删掉了几个索引文件,就OK了.但是OK了没多久,就完全歇菜了.好吧,至少我也是个高手,自己折腾吧,这一折腾一个下午就没了.可恨的是,实在不能确定到底是哪个东西的问题.无奈之下,跑珠江路去把机箱,硬盘,主板,全换了.1000块钱就这么没了,问题是解决了,但是实在搞不清楚到底是哪里的问题,.可气的是,我买电脑的那个店的店员,得了,我对南京的影响又差了&#8230; &#8230;(省略500字)</p>
<p>然后,我来说说后七天,13号考试,进了12月我就没安心看过书,背过的单词也忘了40%了.最担心的就是13号了.往往人都有这种感受,临近考试,就什么都不想干了,我现在就是这样.明明意识到了自己还应该看很多,但是就是没那个劲头了.哎,每天晚上教育完了宁某,自己就开始感到阵阵的不安&#8230; &#8230;</p>
<p>好吧,我的13th Dec</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beautycss.org/blog/archives/457/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
