<?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>氧气吧</title>
	<atom:link href="http://yangqi.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://yangqi.org</link>
	<description>春节快乐，虎虎虎！</description>
	<lastBuildDate>Wed, 10 Mar 2010 02:11:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery语法总结和注意事项</title>
		<link>http://yangqi.org/resource_sharing/jquery-syntax-summary-and-notes/</link>
		<comments>http://yangqi.org/resource_sharing/jquery-syntax-summary-and-notes/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 02:11:32 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[学习笔记]]></category>
		<category><![CDATA[资源分享]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=342</guid>
		<description><![CDATA[1、关于页面元素的引用
通过jquery的$()引用元素包括通过id、class、元素名以及元素的层级关系及dom或者xpath条件等方法，且返回的对象为jquery对象（集合对象），不能直接调用dom定义的方法。
2、jQuery对象与dom对象的转换
只有jquery对象才能使用jquery定义的方法。注意dom对象和jquery对象是有区别的，调用方法时要注意操作的是dom对象还是jquery对象。
普通的dom对象一般可以通过$()转换成jquery对象。
如：$(document.getElementById(&#8220;msg&#8221;))则为jquery对象，可以使用jquery的方法。
由于jquery对象本身是一个集合。所以如果jquery对象要转换为dom对象则必须取出其中的某一项，一般可通过索引取出。
如：$(&#8220;#msg&#8221;)[0]，$(&#8220;div&#8221;).eq(1)[0]，$(&#8220;div&#8221;).get()[1]，$(&#8220;td&#8221;)[5]这些都是dom对象，可以使用dom中的方法，但不能再使用Jquery的方法。
以下几种写法都是正确的：

程序代码 程序代码
$(&#8220;#msg&#8221;).html();
$(&#8220;#msg&#8221;)[0].innerHTML;
$(&#8220;#msg&#8221;).eq(0)[0].innerHTML;
$(&#8220;#msg&#8221;).get(0).innerHTML;
3、如何获取jQuery集合的某一项
对于获取的元素集合，获取其中的某一项（通过索引指定）可以使用eq或get(n)方法或者索引号获取，要注意，eq返回的是jquery对象，而get(n)和索引返回的是dom元素对象。对于jquery对象只能使用jquery的方法，而dom对象只能使用dom的方法，如要获取第三个
元素的内容。有如下两种方法：
程序代码 程序代码
$(&#8220;div&#8221;).eq(2).html();               //调用jquery对象的方法
$(&#8220;div&#8221;).get(2).innerHTML;       //调用dom的方法属性
4、同一函数实现set和get
Jquery中的很多方法都是如此，主要包括如下几个：
$(&#8220;#msg&#8221;).html();               //返回id为msg的元素节点的html内容。
$(&#8220;#msg&#8221;).html(&#8220;new content&#8220;);
//将“new content” 作为html串写入id为msg的元素节点内容中,页面显示粗体的new content
$(&#8220;#msg&#8221;).text();            [...]


Related posts:<ol><li><a href='http://yangqi.org/web_collection/monoface/' rel='bookmark' title='Permanent Link: monoface-面部拼盘，五官大杂烩'>monoface-面部拼盘，五官大杂烩</a></li>
<li><a href='http://yangqi.org/video_sharing/lost-final-season-6-returns/' rel='bookmark' title='Permanent Link: Lost第六季强档回归'>Lost第六季强档回归</a></li>
<li><a href='http://yangqi.org/resource_sharing/tiny-island-lake-philippine/' rel='bookmark' title='Permanent Link: 岛中湖，湖中岛'>岛中湖，湖中岛</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/resource_sharing/jquery-syntax-summary-and-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>收到Lockerz邀请(什么是lockerz)</title>
		<link>http://yangqi.org/resource_sharing/lockerz-invitation-what-is-lockerz/</link>
		<comments>http://yangqi.org/resource_sharing/lockerz-invitation-what-is-lockerz/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 15:49:10 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[资源分享]]></category>
		<category><![CDATA[lockerz]]></category>
		<category><![CDATA[邀请]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=339</guid>
		<description><![CDATA[在google wave之后，最近lockerz的邀请也被炒的很火。Lockerz.com是一个今年3月成立的网站，秋季刚开始运营。这是一个通过游戏和回答问题来获取积分，用积分兑换礼品的网站。他的目标是整合社区/影音/游戏/购物…等多项服务， 目前有些功能还没开放。刚刚收到别人邀请，进去看了下，感觉还是不错，只要每天登陆，或者在里面看video，回答问题，都可以获得LTZ积分，最后可以换礼品。刚听到这个，我觉得可能就是进去点点广告之类的，这样很无聊。但是注册进去以后感觉很新鲜，界面没有任何广告气息，挑选的video也都是exclusive很特别的，整个气氛很好。每天在里面混一混就有积分拿，最后还能换奖品，多好的事。Lockerz是由美国最大的媒体公司之一美国有线电视公司Liberty Media投资建立，CEO—Kathy Savitt，之前是Amazon的副经理以及American Eagle Outfitters。 网站现阶段只有被邀请的人才可以注册。

想要邀请的在下面留下邮箱，我会发过去。

&#8212;&#8212;如何获取更多PTZ？&#8212;&#8212;

每邀请一个朋友可以得到2PTZ
在页面右下角有个 DAILIES ，进去回答每日问题（好像只有回答当日的问题才能加PTZ），虽然是全英文的，但都是非常简单的问题，如果实在有看不懂的单词，让Google给你翻译一下吧。
每次登录也会增加PTZ
成为 Z-LISTER。这个后面我会详细讲。
 &#8212;&#8211;成为Z-LISTER&#8212;&#8211;
 只要邀请到20位朋友来注册，就自动成为Z-LISTER了，这个不难。
成为Z-LISTER以后将得到双倍PTZ的VIP权限。
成为Z-LISTER以后将获得Lockerz.com赠送的一件t-shirt。
想要邀请的赶紧留下邮箱吧。


No related posts.


No related posts.]]></description>
		<wfw:commentRss>http://yangqi.org/resource_sharing/lockerz-invitation-what-is-lockerz/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Linux下socket异步通讯聊天程序（转）</title>
		<link>http://yangqi.org/study_notes/linux-socket-asynchronous-im-system/</link>
		<comments>http://yangqi.org/study_notes/linux-socket-asynchronous-im-system/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 03:37:03 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[学习笔记]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[编程]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=333</guid>
		<description><![CDATA[网络课的project 1能用到的资料，程序结构比较清晰，转来学习一下
什么是异步通讯？
就是通讯任意一方可以任意发送消息，有消息来到时会收到系统提示去接收消息。
这里要用到select函数。使用步骤如下：
1、设置一个集合变量，用来存放所有要判断的句柄（file descriptors：即我们建立的每个socket、用open打开的每个文件等）
2、把需要判断的句柄加入到集合里
3、设置判断时间
4、开始等待，即select
5、如果在设定的时间内有任何句柄状态变化了就马上返回，并把句柄设置到集合里

服务器端源代码如下：

View Code C1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#include &#60;stdio.h&#62;
#include &#60;stdlib.h&#62;
#include &#60;errno.h&#62;
#include &#60;string.h&#62;
#include &#60;sys/types.h&#62;
#include &#60;netinet/in.h&#62;
#include &#60;sys/socket.h&#62;
#include &#60;sys/wait.h&#62;
#include &#60;unistd.h&#62;
#include &#60;arpa/inet.h&#62;
#include &#60;sys/time.h&#62;
#include &#60;sys/types.h&#62;
&#160;
#define MAXBUF 1024
/************关于本文档********************************************
*filename: async-server.c
*purpose: 演示网络异步通讯，这是服务器端程序
*wrote by: zhoulifa(zhoulifa@163.com) 周立发(http://zhoulifa.bokee.com)
Linux爱好者 Linux知识传播者 SOHO族 开发者 最擅长C语言
*date time:2007-01-25 21:22
*Note: 任何人可以任意复制代码并运用这些文档，当然包括你的商业用途
* 但请遵循GPL
*Thanks to: Google.com
*Hope:希望越来越多的人贡献自己的力量，为科学技术发展出力
* 科技站在巨人的肩膀上进步更快！感谢有开源前辈的贡献！
*********************************************************************/
&#160;
int main&#40;int argc, char **argv&#41;
&#123;
    int sockfd, new_fd;
    socklen_t len;
    struct sockaddr_in [...]


Related posts:<ol><li><a href='http://yangqi.org/study_notes/notes-about-scanf-in-c/' rel='bookmark' title='Permanent Link: C语言中scanf()的用法探讨'>C语言中scanf()的用法探讨</a></li>
<li><a href='http://yangqi.org/study_notes/add-rewrite-rule-for-sablog/' rel='bookmark' title='Permanent Link: 为Sablog的标签添加伪静态'>为Sablog的标签添加伪静态</a></li>
<li><a href='http://yangqi.org/video_sharing/tears-in-heaven-eric-clapton/' rel='bookmark' title='Permanent Link: Tears in Heaven（泪洒天堂）'>Tears in Heaven（泪洒天堂）</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/study_notes/linux-socket-asynchronous-im-system/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>C语言中scanf()的用法探讨</title>
		<link>http://yangqi.org/study_notes/notes-about-scanf-in-c/</link>
		<comments>http://yangqi.org/study_notes/notes-about-scanf-in-c/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 05:06:46 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[学习笔记]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[编程]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=332</guid>
		<description><![CDATA[scanf()作为 C 语言中的基本输入,曾经带给我们初次编写 C 程序的快乐。但是随着C 的不断深入,我们却发现:原来最难理解的东西居然是我们自以为很熟悉的东西。
我们真正了解 scanf()吗?那么看看下面的几个例子吧。
QQREADER524B6CDE17384BD0
一、关于 scanf()中的格式控制符
scanf()的格式控制符有多个,但我只想讨论一下%[]这个格式控制符。%[]可以用来进行多个字符的输入,并对结束符进行自定义。
ANSI C 标准向 scanf() 增加了一种新特性,称为扫描集(scanset)。 扫描集定义一个字符集合,可由 scanf() 读入其中允许的字符并赋给对应字符数组。 扫描集合由一对方括号中的一串字符定义,左方括号前必须缀以百分号。 例如,以下的扫描集使 scanf()读入字符 A、B 和 C:
%[ABC]

使用扫描集时,scanf() 连续吃进集合中的字符并放入对应的字符数组,直到发现不在集合中的字符为止(即扫描集仅读匹配的字符)。返回时,数组中放置以 null 结尾、由读入字符组成的字符串。
对于许多实现来说,用连字符可以说明一个范围。 例如,以下扫描集使 scanf() 接受字母 A 到 Z:%[A-Z]          
重要的是要注意扫描集是区分大小写的。因此,希望扫描大、小写字符时,应该分别说明大、小写字母。对于%[]还可以用^+任意字符(包括 eof)来结束字符串的输入。比如%[^EOF]就是直到有EOF 输入,字符串才中止。但一定要记住就是 c 语言是缓冲输入,即使你%[^a],再你输入回车之前输入多少的 a 都是不可能结束的。
如下面的一段程序:

View Code C1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include&#60;stdio.h&#62;
int main&#40;&#41;
&#123;
       [...]


Related posts:<ol><li><a href='http://yangqi.org/study_notes/linux-socket-asynchronous-im-system/' rel='bookmark' title='Permanent Link: Linux下socket异步通讯聊天程序（转）'>Linux下socket异步通讯聊天程序（转）</a></li>
<li><a href='http://yangqi.org/study_notes/add-rewrite-rule-for-sablog/' rel='bookmark' title='Permanent Link: 为Sablog的标签添加伪静态'>为Sablog的标签添加伪静态</a></li>
<li><a href='http://yangqi.org/mood_diary/last-day/' rel='bookmark' title='Permanent Link: 最后一天'>最后一天</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/study_notes/notes-about-scanf-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>小虎队，不可取代的经典</title>
		<link>http://yangqi.org/mood_diary/xiaohudui-alway-classic/</link>
		<comments>http://yangqi.org/mood_diary/xiaohudui-alway-classic/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 15:57:06 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[心情日记]]></category>
		<category><![CDATA[视听分享]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[小虎队]]></category>
		<category><![CDATA[音乐]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=329</guid>
		<description><![CDATA[小虎队在刚结束的春晚中20年聚首亮相勾起了几代人的回忆，那个年少的梦是多么美好啊！那个梦里有爱，最单纯的、浪漫的爱，“把你的心、我的心串一串，串一株幸运草、串一個同心圆”，在梦里我们像星星般约会，“明天夜空会有传奇，那是我们的星座，永远亮着我和你，永远不分离”，梦里还飞着红蜻蜓，“天空是永恒的家，大地就是他的王国，飞翔是生活”，我们时常喜欢逍遥游，“阳光温柔地照着我，山谷和溪流也在说哈啰 ，梦中的国度就在眼前”，走过一片青苹果乐园，“ 音乐，星光，样样都浪漫，烦恼，忧愁，都与我无关”……

在我们心目中，小虎队就是我们的青春偶像。我们是听着小虎队的歌长大的，在我四五岁的时候已然在电视机前哼哼唱着小虎队的“爱”手舞足蹈。
然而，随着年龄的增长，随着陈志朋入伍、苏有朋考上大学、吴奇隆服兵役等等，长大了的小虎队，如同他们的歌所唱：“终于还是走到这一天/要奔向各自的世界”；“我们都已长大/好多梦正在飞/就像童年看到的红色的蜻蜓”……我们只有祝他们一路顺风。因为天下没有不散的筵席，因为青春的永恒只能是在我们每个人的记忆里。
回忆当年还是上小学的时候，一个月才5块零花钱，而一盘磁带要10块钱，每次买小虎队的专辑还要向上级申请批准，然后回来在收音机前边放边跟着哼&#8230;4年级时候的儿童节还上台跳过舞，音乐就是小虎队的“爱”。这些美好的回忆都被今年小虎队的重聚首提了上来，相信很多人和我一样有这些回忆。虽然现在小虎队重组不太可能，但即使重组了也不能代替20年前的那只小虎队，他们是永远的经典！

下面就回忆一下小虎队的歌吧



Related posts:Mia in Tree Hill? Kate Voegele专辑下载~
The Lightning Thief &#8211; 美国版哈利波特
强烈推荐：卡农（Canon）摇滚版视频



Related posts:<ol><li><a href='http://yangqi.org/video_sharing/mia-in-tree-hill-kate-voegele%e4%b8%93%e8%be%91%e4%b8%8b%e8%bd%bd/' rel='bookmark' title='Permanent Link: Mia in Tree Hill? Kate Voegele专辑下载~'>Mia in Tree Hill? Kate Voegele专辑下载~</a></li>
<li><a href='http://yangqi.org/mood_diary/the-lightning-thief-american-version-harry-potter/' rel='bookmark' title='Permanent Link: The Lightning Thief &#8211; 美国版哈利波特'>The Lightning Thief &#8211; 美国版哈利波特</a></li>
<li><a href='http://yangqi.org/video_sharing/canon-rocking-video/' rel='bookmark' title='Permanent Link: 强烈推荐：卡农（Canon）摇滚版视频'>强烈推荐：卡农（Canon）摇滚版视频</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/mood_diary/xiaohudui-alway-classic/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Lightning Thief &#8211; 美国版哈利波特</title>
		<link>http://yangqi.org/mood_diary/the-lightning-thief-american-version-harry-potter/</link>
		<comments>http://yangqi.org/mood_diary/the-lightning-thief-american-version-harry-potter/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 06:09:12 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[心情日记]]></category>
		<category><![CDATA[视听分享]]></category>
		<category><![CDATA[资源分享]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[电影]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=326</guid>
		<description><![CDATA[刚看完Percy Jackson &#38; the Olympians: The Lightning Thief 归来，总体感觉还不错。。。主要是题材挺好的，背景是希腊神话和现实世界的故事。虽然我对希腊神话不是很了解，不过多少也知晓一点。主要剧情就是一个12岁的男孩Percy Jackson因患有多动症和阅读障碍，已经被很多所学校开除了。其实他是海神波塞冬（Poseidon）和凡人之子，而在众神之神宙斯（Zeus）的雷霆杖（Zeus&#8217;s master lightning bolt）之后，Percy成了主要怀疑对象。他必须在10天之内把雷霆杖归还给宙斯，不然众神之间的战争将会殃及人类。然而一直想得到雷霆杖的冥王哈迪斯（Hades）也怀疑是Percy偷的，于是以他母亲要挟Percy交出雷霆杖。Percy为了救他母亲，伙同两个同是“半神”（Demigod or &#8220;half god&#8221;）的伙伴羊男Grover Underwood（希腊神话中的萨特[Satyr]）和Annabeth Chase（雅典娜[Athena]之女）去冥界找冥王哈迪斯救他母亲，并找回宙斯的雷霆杖。

电影是改编自Rick Riordan的美国同名畅销小说Percy Jackson &#38; the Olympians系列的第一部，之前没有看过该小说，不过从电影一开始，就感觉到和哈利波特及其相似，也许是因为同是哈利波特前两部的导演带来的相似风格。年轻的主人公发现自己有神力，来到所谓另一个世界的“学校”接受训练，2男1女构成的三人组私自行动突破重重障碍最后打败恶势力。小说和电影本身没有什么特别突出的地方，不过以希腊神话作为背景确实是很吸引人，至少我很感兴趣。

下面先看下预告片：



Related posts:2010 年好莱坞电影预告(ZZ)
Music&#038;Lyrics makes impressive story
Shanghai Kiss, an impressive one



Related posts:<ol><li><a href='http://yangqi.org/resource_sharing/2010-hollywood-movie-preview/' rel='bookmark' title='Permanent Link: 2010 年好莱坞电影预告(ZZ)'>2010 年好莱坞电影预告(ZZ)</a></li>
<li><a href='http://yangqi.org/mood_diary/music-lyrics-make-a-very-impressive-story/' rel='bookmark' title='Permanent Link: Music&#038;Lyrics makes impressive story'>Music&#038;Lyrics makes impressive story</a></li>
<li><a href='http://yangqi.org/mood_diary/shanghai-kiss-an-impressive-one/' rel='bookmark' title='Permanent Link: Shanghai Kiss, an impressive one'>Shanghai Kiss, an impressive one</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/mood_diary/the-lightning-thief-american-version-harry-potter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2010 年好莱坞电影预告(ZZ)</title>
		<link>http://yangqi.org/resource_sharing/2010-hollywood-movie-preview/</link>
		<comments>http://yangqi.org/resource_sharing/2010-hollywood-movie-preview/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 14:56:53 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[资源分享]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[电影]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=325</guid>
		<description><![CDATA[ZZ From letti@MITBBS
趁新年到来利用闲暇时间写写2010年的好莱坞电影预告。跟09，11年相比，2010年肯定算是电影小年了：09年在&#60;AVATAR&#62;和&#60;Transformers 2&#62;的带领下全年票房位居历史第一，11年则是续集狂潮，&#60;harry potter 8&#62;&#60;pirates of Caribbean 4&#62; &#60;Spiderman 4&#62;&#60;transformers 3&#62;&#60;hangover 2&#62;&#60; Kung Fu Panda 2&#62;都在11年上映，或许还有重量级的&#60;twilight 4&#62;。2010年是绝对的小年，拿的出手的传统大作只有&#60;Iron Man 2&#62;&#60;Shrek 4&#62;&#60;Harry Potter 7&#62;和&#60;Twilight 3&#62;。不过还是有很多值得期待一下：
1.    2月12日上映&#60;Percy Jackson &#38; The Olympians: The lighting Thief&#62;：这个应该会做成一个系列吧，年轻人的吸血鬼片子，至少看过预告片感觉很一般
2.    2月19日上映&#60;Shutter Island&#62;: 去年早就该上映了，耽误了迪卡普里奥冲击奥斯卡，推迟了两次，希望这次别在有意外了。热卖小说改编的悬疑片，看导演演员预告片质量，应该是上乘作品。
3.    3月5日上映&#60;Alice in Wonderland&#62;: 无需多言，春季的儿童制作，戴普领衔根伯顿导演的又一次合作，或许是新年里第一个能给&#60;AVATAR&#62;带来票房压力的电影吧。或许会很像&#60;查理巧克力工厂&#62;？期待不是太高，但希望戴普带来惊喜
4.    3月26日上映&#60;Clash of Titans&#62;: 新年的第一部正宗大制作，应该是翻拍的1981年的经典作品，&#60;AVATAR&#62;主演sam worthington全裸出演，今年的&#60;300勇士&#62;？
5.    4月30日上映&#60;A Nightmare on Elm Street&#62;: 经典恐怖系列的翻拍，不知道能不能达到应有的效果，春季的恐怖片多多但质量差差，选择在夏季档开始前的宁静一周上映莫非信心十足？
6.    5月7日上映&#60;Iron Man 2&#62;: 夏季档的开始！如果&#60;AVATAR&#62;真的在奥斯卡上获了很多奖项，那或许&#60;Iron Man 2&#62;才会是第一部威胁&#60;AVATAR&#62;票房的强将，当然那时候&#60;AVATAR&#62;应该已经突破&#60;the [...]


Related posts:<ol><li><a href='http://yangqi.org/mood_diary/the-lightning-thief-american-version-harry-potter/' rel='bookmark' title='Permanent Link: The Lightning Thief &#8211; 美国版哈利波特'>The Lightning Thief &#8211; 美国版哈利波特</a></li>
<li><a href='http://yangqi.org/chores_sharing/petition-to-establish-harry-potter-day/' rel='bookmark' title='Permanent Link: 建立世界哈利·波特日的倡议书'>建立世界哈利·波特日的倡议书</a></li>
<li><a href='http://yangqi.org/mood_diary/shanghai-kiss-an-impressive-one/' rel='bookmark' title='Permanent Link: Shanghai Kiss, an impressive one'>Shanghai Kiss, an impressive one</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/resource_sharing/2010-hollywood-movie-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>教你自制最简陋的时间机器</title>
		<link>http://yangqi.org/chores_sharing/simple-guide-to-make-time-machine/</link>
		<comments>http://yangqi.org/chores_sharing/simple-guide-to-make-time-machine/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 19:18:19 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[杂事分享]]></category>
		<category><![CDATA[时间机器]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=323</guid>
		<description><![CDATA[网上看到，感觉很有意思，转过来分享一下：
1、准备一张厚厚的，防水的，质量好的纸，至少要100克的，但表面不能太光滑，防止墨迹脱落。
2、在纸上用郑重的语气写上，给我的第N代子孙，我是你的祖先XXX，出生在XXXX年，我留下这张纸的时间是XXX年……
3、按照以上的基调，写完这封信，明确提出要你的子孙坐时间机器回来看你。
4、最后别忘了说一句，“如果你们那个年代还没发明时间机器，请继续封存这封信。”
5、用一个绝对可靠的保险箱把这封信存起来，当然，要非常小心，保证几百年后你的子孙必然会看到。
6、如果一切顺利，几分钟之内你就可以看到你的子孙坐着时间机器，轰然而来……


No related posts.


No related posts.]]></description>
		<wfw:commentRss>http://yangqi.org/chores_sharing/simple-guide-to-make-time-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lost第六季强档回归</title>
		<link>http://yangqi.org/video_sharing/lost-final-season-6-returns/</link>
		<comments>http://yangqi.org/video_sharing/lost-final-season-6-returns/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 17:11:06 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[视听分享]]></category>
		<category><![CDATA[资源分享]]></category>
		<category><![CDATA[lost]]></category>
		<category><![CDATA[下载]]></category>
		<category><![CDATA[美剧]]></category>
		<category><![CDATA[迷失]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=320</guid>
		<description><![CDATA[2004年09月22日，大洋航空815航班坠落在太平洋一座小岛上，48名乘客生还&#8230;正当大家期盼救援到来时，一个个谜团出现了：出现在热带的北极熊，The Others，Dharma Initiative，Jacob&#8230;人们逐渐意识到了小岛的独特之处，有人坚持离开，有人选择留下；利益冲突、信任背叛、留恋唾弃、相恋分手、新生死亡，有人完成了救赎；有人迷失于其中；14位主角在这座小小舞台上演了人世间几乎所有的情感纠葛&#8230;

随着轮子的转动，小岛消失，时间跳跃，70年代、Dharma Initiative、氢弹、雕像，看似平静的生活随着 Oceanic6 的回岛而泛起涟漪， Ilana 一队的出现更是搅起巨大波澜；赞成与反对声中， Jack 肩负起了改变未来的使命， Juliet 则用自己的生命引爆了氢弹&#8230;
他们真的成功了吗？未来真的就此改变吗？ Jacob 之死, 真假 John Locke ， Claire 究竟是生是死，黑衣人的真实身份，亚当与夏娃的骨架……还有那神秘莫测的黑烟 Monster 其中一部分会在最终季中得到解答，而剩下的则可能将成为永远的谜&#8230;


让我们共同欣赏《Lost》第6季！
点击下载迷失第六季：前情回顾 1，2集连播


Related posts:finished, but not the end&#8230;
最近又迷上了美剧《LOST》
The Lightning Thief &#8211; 美国版哈利波特



Related posts:<ol><li><a href='http://yangqi.org/mood_diary/finished-but-not-the-end/' rel='bookmark' title='Permanent Link: finished, but not the end&#8230;'>finished, but not the end&#8230;</a></li>
<li><a href='http://yangqi.org/chores_sharing/lately-crushed-on-lost/' rel='bookmark' title='Permanent Link: 最近又迷上了美剧《LOST》'>最近又迷上了美剧《LOST》</a></li>
<li><a href='http://yangqi.org/mood_diary/the-lightning-thief-american-version-harry-potter/' rel='bookmark' title='Permanent Link: The Lightning Thief &#8211; 美国版哈利波特'>The Lightning Thief &#8211; 美国版哈利波特</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/video_sharing/lost-final-season-6-returns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>52届格莱美颁奖典礼高清视频下载+获奖单曲全收录</title>
		<link>http://yangqi.org/video_sharing/52nd-grammy-award-video-download/</link>
		<comments>http://yangqi.org/video_sharing/52nd-grammy-award-video-download/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 02:54:52 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[视听分享]]></category>
		<category><![CDATA[资源分享]]></category>
		<category><![CDATA[Grammy]]></category>
		<category><![CDATA[taylor swift]]></category>
		<category><![CDATA[下载]]></category>
		<category><![CDATA[格莱美]]></category>
		<category><![CDATA[视频]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=279</guid>
		<description><![CDATA[
这里收录了刚刚结束的第52届格莱美奖颁奖典礼全部获奖单曲的在线试听与整个颁奖典礼的视频下载，如果你喜欢国外的音乐，这个盛典你就不能错过了……



高清视频下载：
CD1 （电驴） 中文字幕1
CD2 （电驴）中文字幕2


Related posts:Lost第六季强档回归
The Lightning Thief &#8211; 美国版哈利波特
强烈推荐：卡农（Canon）摇滚版视频



Related posts:<ol><li><a href='http://yangqi.org/video_sharing/lost-final-season-6-returns/' rel='bookmark' title='Permanent Link: Lost第六季强档回归'>Lost第六季强档回归</a></li>
<li><a href='http://yangqi.org/mood_diary/the-lightning-thief-american-version-harry-potter/' rel='bookmark' title='Permanent Link: The Lightning Thief &#8211; 美国版哈利波特'>The Lightning Thief &#8211; 美国版哈利波特</a></li>
<li><a href='http://yangqi.org/video_sharing/canon-rocking-video/' rel='bookmark' title='Permanent Link: 强烈推荐：卡农（Canon）摇滚版视频'>强烈推荐：卡农（Canon）摇滚版视频</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/video_sharing/52nd-grammy-award-video-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>我已发贴，豆瓣可以来验证了</title>
		<link>http://yangqi.org/uncategorized/%e6%88%91%e5%b7%b2%e5%8f%91%e8%b4%b4%ef%bc%8c%e8%b1%86%e7%93%a3%e5%8f%af%e4%bb%a5%e6%9d%a5%e9%aa%8c%e8%af%81%e4%ba%86/</link>
		<comments>http://yangqi.org/uncategorized/%e6%88%91%e5%b7%b2%e5%8f%91%e8%b4%b4%ef%bc%8c%e8%b1%86%e7%93%a3%e5%8f%af%e4%bb%a5%e6%9d%a5%e9%aa%8c%e8%af%81%e4%ba%86/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 07:28:56 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[未分类]]></category>

		<guid isPermaLink="false">http://yangqi.org/uncategorized/%e6%88%91%e5%b7%b2%e5%8f%91%e8%b4%b4%ef%bc%8c%e8%b1%86%e7%93%a3%e5%8f%af%e4%bb%a5%e6%9d%a5%e9%aa%8c%e8%af%81%e4%ba%86/</guid>
		<description><![CDATA[doubanclaimf3a89b640096f13f
82a1b0c6
d192bcbd-2d5c-484d-b4c3-2a896739fb4d


No related posts.


No related posts.]]></description>
		<wfw:commentRss>http://yangqi.org/uncategorized/%e6%88%91%e5%b7%b2%e5%8f%91%e8%b4%b4%ef%bc%8c%e8%b1%86%e7%93%a3%e5%8f%af%e4%bb%a5%e6%9d%a5%e9%aa%8c%e8%af%81%e4%ba%86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Big Bang Theory 完整片头曲</title>
		<link>http://yangqi.org/video_sharing/the-big-bang-theory-theme-song/</link>
		<comments>http://yangqi.org/video_sharing/the-big-bang-theory-theme-song/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 02:57:27 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[视听分享]]></category>
		<category><![CDATA[喜剧]]></category>
		<category><![CDATA[美剧]]></category>
		<category><![CDATA[视频]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=232</guid>
		<description><![CDATA[最近大爱CBS的生活情境喜剧The Big Bang Theory （中文名“生活大爆炸”），最近貌似也比较火，正在播出第三季，已经续约第四季了。每集只有20多分钟，无聊或者心情沉重的时候看个1，2集可以让我心情很快放松下来。故事发生在四个nerd和一个金发美女之间。这四个nerd是加州理工学院的科学家，Leonard Hofstadter, Ph.D， Sheldon Cooper, Ph.D.， Howard Wolowitz, M.Eng.， Rajesh Koothrappali, Ph.D. 四个人都各有特点，都是活宝，但是sheldon算是四个人中最突出的了。目前刚结束第二季，跟进中。。。

下面是完整的片头曲

This video was embedded using the YouTuber plugin by Roy Tanck. Adobe Flash Player is required to view the video.
主人公Leonard (JohnnyGalecki, &#8220;Roseanne&#8221;) 和Sheldon (Jim Parsons &#8220;JudgingAmy&#8221;)是一对好朋友，他们的智商绝对高人一等，因为他们对量子物理学理论可以倒背如流，无论你问他们什么问题，都难不倒他们。但是说到日常生活，这两个不修边幅的男孩就彻底没了脾气－－生活中柴米油盐这些看似简单的事情，却让他们有迷失在太空里一样的感觉，他们所掌握的那些科学原理在这里根本没有用武之地。直到有一天……隔壁搬来一位美貌性感的女孩Penny (Kaley Cuoco, &#8220;8SimpleRules&#8230;&#8221;)，顿时吸引了Leonard的目光。Penny是个梦想成为演员的女孩，但一直没有能成功，平时只能在快餐店打工，她个性开朗，待人友善，是位与Leonard、Sheldon截然不同的追求时尚的年轻人，最重要的是——她最近刚刚变成单身。
Leonard和Sheldon还有两个好朋友。自认为是花花公子的Howard Wolowitz(Simon Helberg, &#8220;Studio 60 on the Sunset Strip&#8221;)，他称自己是加州理工学院的&#8221;卡萨诺瓦&#8221;（1725-1798，意大利冒险家，以所写的包括他的许多风流韵事的《自传》而著称，后来该词被引申为&#8221;风流浪子，好色之徒&#8221;)，能用六种语言泡妞，参与负责美国的火星探索计划（喜欢邀请看上的女孩去火星兜风，也因此在第二季引发一场事故，遗憾地与“火星生命发现者”的称号失之交臂），其实Howard不过是个喜欢拿一些过时的手段把妹的家伙，很多时候他的把妹手法都让对方感到恶心。来自印度的 Rajesh Koothrappali [...]


No related posts.]]></description>
		<wfw:commentRss>http://yangqi.org/video_sharing/the-big-bang-theory-theme-song/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>岛中湖，湖中岛</title>
		<link>http://yangqi.org/resource_sharing/tiny-island-lake-philippine/</link>
		<comments>http://yangqi.org/resource_sharing/tiny-island-lake-philippine/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 21:35:47 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[资源分享]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=231</guid>
		<description><![CDATA[
图中这个小小的翠绿的湖中小山包，名字叫做 Vulcan 点或者 Vulcan 岛，是地球上一个神奇的存在。它是世界上最大的“岛中湖中岛中湖中火山岛”。听上去很绕吧，就是说，这个岛是火山岛，但是它长在一个湖里。这个湖在一个更大的岛上，这个更大的岛套在一个更大的湖中，更大的湖又在一个更更大的岛里面……

这个神奇的地方在菲律宾

在菲律宾 Luzon 岛上，有一个圆环套圆环工程……
放大看卫星图
再放大，可以看到， Luzon 岛西南部有个湖叫 Taal 湖，湖里有个 Crater 岛，岛上有个 Crater 湖。
以后给小孩子讲故事就是：从前有个岛，叫 Luzon 岛；Luzon 岛上有个湖，叫 Taal 湖；Taal 湖里有个岛，叫 Crater 岛；Crater 岛上有个湖，叫 Crater 湖；Crater 湖里有个岛，叫 Vulcan 岛；Vulcan 岛会喷火山&#8230;哈哈


No related posts.


No related posts.]]></description>
		<wfw:commentRss>http://yangqi.org/resource_sharing/tiny-island-lake-philippine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>火星上的神奇地貌</title>
		<link>http://yangqi.org/resource_sharing/wonderful-landscape-on-mars/</link>
		<comments>http://yangqi.org/resource_sharing/wonderful-landscape-on-mars/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 21:16:55 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[资源分享]]></category>
		<category><![CDATA[Mars]]></category>
		<category><![CDATA[NASA]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=222</guid>
		<description><![CDATA[NASA的火星探测卫星上装载了高清图像科学实验(HiRISE)相机,此相机是NASA现有卫星上最强大的相机,它可以极为清晰的拍摄火星表面的地貌,至今已经拍了超过13000幅照片,火星的有些地貌与地球截然不同,这儿我们选了些较为神奇的地貌,你可以在NASA的网页上看到更多更清晰的照片:High Resolution Imaging Science Experiment
         


Related posts:finished, but not the end&#8230;
最后一天



Related posts:<ol><li><a href='http://yangqi.org/mood_diary/finished-but-not-the-end/' rel='bookmark' title='Permanent Link: finished, but not the end&#8230;'>finished, but not the end&#8230;</a></li>
<li><a href='http://yangqi.org/mood_diary/last-day/' rel='bookmark' title='Permanent Link: 最后一天'>最后一天</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/resource_sharing/wonderful-landscape-on-mars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zen Coding – 超快地写网页代码</title>
		<link>http://yangqi.org/resource_sharing/zen-coding/</link>
		<comments>http://yangqi.org/resource_sharing/zen-coding/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 02:50:59 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[资源分享]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=208</guid>
		<description><![CDATA[今天看到这个叫 Zen Coding 的东西，我强烈推荐给经常和 HTML CSS 打交道的朋友。下面的动态演示图，只是它强大功能的一部分而已。它无视了编辑器的自动提示和自动完成，秒杀了你自定义的各种快捷键或者 AHK 的热字符串，以智能简洁高效的缩短输入，带给你超快速地书写各种复杂而枯燥的 HTML 和 CSS 代码的体验。
先举一个复杂的例子：zen-coding 可以把这样的代码：div#header&#62;ul.navigation&#62;li*4&#62;a，变成下面的 HTML 代码


View Code HTML1
2
3
4
5
6
7
8
&#60;div id=&#34;”header”&#34;&#62;
&#60;ul class=&#34;”navigation”&#34;&#62;
	&#60;li&#62;&#60;a href=&#34;”&#34;&#62;&#60;/a&#62;&#60;/li&#62;
	&#60;li&#62;&#60;a href=&#34;”&#34;&#62;&#60;/a&#62;&#60;/li&#62;
	&#60;li&#62;&#60;a href=&#34;”&#34;&#62;&#60;/a&#62;&#60;/li&#62;
	&#60;li&#62;&#60;a href=&#34;”&#34;&#62;&#60;/a&#62;&#60;/li&#62;
&#60;/ul&#62;
&#60;/div&#62;

看到这熟悉的语法结构，会 CSS 的朋友一定会惊声尖叫！最妙的是那个“*4”，直接生成 4 个 li 代码了。没错，Zen Coding 就是这样牛叉的东西，Zen Coding 分为 Zen HTML 和 Zen CSS 两部分。这两部分功能是以插件的形式来实现的。如果你用 NetBeans、SlickEdit、Sublime、TextMate、TopStyle、UltraEdit、WebIDE and IntelliJ IDEA、Dreamweaver、Aptana 都可以在官方下载页面找到相关的插件。
即使你不使用上面提到的编辑器，那么还有一种选择，点击下载页面的最后一个链接： Zen Coding for 。这是一个网页版的 Zen Coding！打开 example.html 之后，把光标定位到文本框里面，按下 Ctrl + [...]


Related posts:<ol><li><a href='http://yangqi.org/mood_diary/long-island-iced-tea-cocktail/' rel='bookmark' title='Permanent Link: 长岛冰茶-原来是鸡尾酒'>长岛冰茶-原来是鸡尾酒</a></li>
<li><a href='http://yangqi.org/resource_sharing/flickroom/' rel='bookmark' title='Permanent Link: Flickroom: 漂亮的 Flickr 管理软件'>Flickroom: 漂亮的 Flickr 管理软件</a></li>
<li><a href='http://yangqi.org/resource_sharing/jquery-syntax-summary-and-notes/' rel='bookmark' title='Permanent Link: jQuery语法总结和注意事项'>jQuery语法总结和注意事项</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/resource_sharing/zen-coding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>终于搞定Linux下Wireless连接</title>
		<link>http://yangqi.org/study_notes/linux-wireless-wpa-ubuntu/</link>
		<comments>http://yangqi.org/study_notes/linux-wireless-wpa-ubuntu/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 02:59:07 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[学习笔记]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[WPA]]></category>

		<guid isPermaLink="false">http://yangqi.org/study_notes/%e7%bb%88%e4%ba%8e%e6%90%9e%e5%ae%9alinux%e4%b8%8bwireless%e8%bf%9e%e6%8e%a5/</guid>
		<description><![CDATA[其实没那么复杂，可是这两天网上找了N多教程总是不成功，百般无奈今天继续尝试，结果无意查看进程的时候发现NetworkManager进程居然在列，而且怎么也杀不掉。于是搜索了一下，ubuntu的NetworkManager评价并不是很好，估计就是这个manager产生冲突，于是直接删掉，然后用之前设置好的配置立马连接成功。。。
下面就记录下过程。。。
首先是删掉NetworkManager，执行命令

View Code BASH1
sudo apt-get remove network-manager

接着需要用到wpa_supplicant，我用的ubuntu 9.10默认已经安装了，如果没有则运行下面命令

View Code BASH1
sudo apt-get install wpasupplicant

安装好wpasupplicant，接着是配置wpa_supplicant.conf文件，该文件一般存放在/etc/wpa_supplicant/目录下，也可以自己修改

View Code BASH1
sudo vi /etc/wpa_supplicant/wpa_supplicant.conf

我的配置文件内容如下：


View Code BASH1
2
3
4
5
6
7
8
ctrl_interface=/var/run/wpa_supplicant
network=&#123;
          ssid=&#34;your essid&#34;
          psk=&#34;your security key&#34;
          proto=WPA
     [...]


Related posts:<ol><li><a href='http://yangqi.org/study_notes/linux-study-notes-network/' rel='bookmark' title='Permanent Link: Linux学习笔记1'>Linux学习笔记1</a></li>
<li><a href='http://yangqi.org/video_sharing/avatar-feature-the-world-of-pandora-imax-download/' rel='bookmark' title='Permanent Link: 阿凡达幕后特辑：潘多拉的世界IMAX高清视频'>阿凡达幕后特辑：潘多拉的世界IMAX高清视频</a></li>
<li><a href='http://yangqi.org/study_notes/linux-socket-asynchronous-im-system/' rel='bookmark' title='Permanent Link: Linux下socket异步通讯聊天程序（转）'>Linux下socket异步通讯聊天程序（转）</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/study_notes/linux-wireless-wpa-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>长岛冰茶-原来是鸡尾酒</title>
		<link>http://yangqi.org/mood_diary/long-island-iced-tea-cocktail/</link>
		<comments>http://yangqi.org/mood_diary/long-island-iced-tea-cocktail/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 15:53:39 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[心情日记]]></category>
		<category><![CDATA[cocktail]]></category>
		<category><![CDATA[鸡尾酒]]></category>

		<guid isPermaLink="false">http://yangqi.org/mood_diary/%e9%95%bf%e5%b2%9b%e5%86%b0%e8%8c%b6-%e5%8e%9f%e6%9d%a5%e6%98%af%e9%b8%a1%e5%b0%be%e9%85%92/</guid>
		<description><![CDATA[晚上去了美式餐厅Friday，因为是周末所以很火爆，等了一会终于坐下来了。开始点喝的，我一向喜欢点Iced tea，菜单上一眼就看到了Long Island Iced Tea，于是就点了，结果服务员问我要ID，我才知道原来里面有alcohol，喝完以后感觉味道还不错，于是网上研究了一下，居然属于鸡尾酒的一种。

下面也让大家普及一下知识：

长岛冰茶（Long Island Iced Tea）虽取名冰茶，却是在没有使用红茶的情况下，调制出具有红茶色泽与口味的美味鸡尾酒。调制的主要成份为伏特加，琴酒，兰姆酒与龙舌兰酒。喝过长岛冰茶的人都知道，它绝对是无庸置疑的烈酒，酒精浓度接近30%。
起源之一的说法为1920年代美国禁酒令期间，酒保将烈酒与可乐混成一杯看似茶的饮品，来钻法令漏洞；起源之二是据说在1972年，由长岛橡树滩客栈（Oak Beach Inn）的酒保发明了这种以四种基酒混制出来的饮料。
特色
味道微辣而带有可乐与红茶的气味，适合餐后饮用。
调制方法

一份伏特加
一份琴酒
一份兰姆酒
一份龙舌兰酒
一份橙皮酒
半份酸甜汁，sweet and sour mix或柠檬汁

将所有材料放入摇酒瓶中，加入适量碎冰轻微摇晃搅拌后倒入柯林斯杯（en:Collins glass）中，然后添满可乐以产生类似红茶的颜色，最后在杯缘用柠檬片装饰。
变种

长岛冰茶第二代 &#8211; 多加一份波本酒（en:bourbon）。
长岛冰茶第三代 &#8211; 在第二代里多加一份白兰地（en:brandy）。
长堤冰茶 &#8211; 用小红莓汁代替可乐。
加州冰茶 &#8211; 用杏仁酒（en:amaretto）代替龙舌兰与橙皮酒，并用等量的小红莓汁与凤梨汁取代可乐添满。
夏威夷冰茶 &#8211; 用Chambord覆盆子酒取代龙舌兰与橙皮酒，并用雪碧汽水取代可乐。
迈阿密冰茶 &#8211; 用Midori蜜瓜酒与桃味蒸馏酒（peach schnapps）取代龙舌兰与橙皮酒，而用柳橙汁代替可乐。
加勒比冰茶 &#8211; 用牙买加黑兰姆酒（dark jamaican rum）取代龙舌兰与伏特加。
德州冰茶 &#8211; 用白兰地取代琴酒。
东京红茶 &#8211; 用一份Midori蜜瓜酒取代可乐，又称“三哩岛”。
比佛利山冰茶 &#8211; 用香槟替代可乐。
触电冰茶 &#8211; 用波本酒取代龙舌兰。
阿拉斯加冰茶 &#8211; 用四份Blue Curacao蓝橙甜酒与四份sweet and sour mix取代龙舌兰酒，柠檬苏打水取代可乐。
Baptist Redemption &#8211; 不加可乐的长岛冰茶。
其它 &#8211; 用真正的红茶代替可乐。




Related posts:2010 年好莱坞电影预告(ZZ)



Related posts:<ol><li><a href='http://yangqi.org/resource_sharing/2010-hollywood-movie-preview/' rel='bookmark' title='Permanent Link: 2010 年好莱坞电影预告(ZZ)'>2010 年好莱坞电影预告(ZZ)</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/mood_diary/long-island-iced-tea-cocktail/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>阿凡达幕后特辑：潘多拉的世界IMAX高清视频</title>
		<link>http://yangqi.org/video_sharing/avatar-feature-the-world-of-pandora-imax-download/</link>
		<comments>http://yangqi.org/video_sharing/avatar-feature-the-world-of-pandora-imax-download/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 15:37:25 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[视听分享]]></category>
		<category><![CDATA[资源分享]]></category>
		<category><![CDATA[Avatar]]></category>
		<category><![CDATA[IMAX]]></category>
		<category><![CDATA[Pandora]]></category>
		<category><![CDATA[潘多拉]]></category>
		<category><![CDATA[阿凡达]]></category>

		<guid isPermaLink="false">http://yangqi.org/video_sharing/%e9%98%bf%e5%87%a1%e8%be%be%e5%b9%95%e5%90%8e%e7%89%b9%e8%be%91%ef%bc%9a%e6%bd%98%e5%a4%9a%e6%8b%89%e7%9a%84%e4%b8%96%e7%95%8cimax%e9%ab%98%e6%b8%85%e8%a7%86%e9%a2%91/</guid>
		<description><![CDATA[这部特辑开头部分所出现的潘多拉星球的具体位置的介绍画面，还是电影中所没有的，因此即使你已经看过了电影，这部特辑也是值得欣赏的。不过特辑后面的大部分内容所配的都是电影中的画面，因此还是建议还没有看过电影的人，等看过电影之后再回来看这部特辑，以免到时看电影版时新奇感下降。

苹果官网Avatar页面最近公布了一部全新的《阿凡达》（AVATAR）特辑《潘多拉的世界》（The World of Pandora），这部特辑虽然早前在网络上也有出现过，但提供1080P 下载这还是首次。这部特辑主要是内容就是介绍潘多拉星球！包括潘多拉星球的具体位置，以及星球上的人文地理动物风貌等等，相当精彩，而且是由片中的格蕾丝博士（Dr. Grace Augustine）来进行介绍的，该角色就是电影中最了解潘多拉星球的人，因此，以她的声音来介绍潘多拉星球，有更权威的感觉。


推荐大家看看。在电影院可是看不到的，也算在看阿凡达之前对这个电影的背景知识有个了解，就像《2012》出来的时候美国 Discovery.Channel推出的《2012启示录》纪录片一样。
电驴下载地址


Related posts:The Lightning Thief &#8211; 美国版哈利波特
Lost第六季强档回归
强烈推荐：卡农（Canon）摇滚版视频



Related posts:<ol><li><a href='http://yangqi.org/mood_diary/the-lightning-thief-american-version-harry-potter/' rel='bookmark' title='Permanent Link: The Lightning Thief &#8211; 美国版哈利波特'>The Lightning Thief &#8211; 美国版哈利波特</a></li>
<li><a href='http://yangqi.org/video_sharing/lost-final-season-6-returns/' rel='bookmark' title='Permanent Link: Lost第六季强档回归'>Lost第六季强档回归</a></li>
<li><a href='http://yangqi.org/video_sharing/canon-rocking-video/' rel='bookmark' title='Permanent Link: 强烈推荐：卡农（Canon）摇滚版视频'>强烈推荐：卡农（Canon）摇滚版视频</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/video_sharing/avatar-feature-the-world-of-pandora-imax-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux学习笔记1</title>
		<link>http://yangqi.org/study_notes/linux-study-notes-network/</link>
		<comments>http://yangqi.org/study_notes/linux-study-notes-network/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 00:39:07 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[学习笔记]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://yangqi.org/?p=194</guid>
		<description><![CDATA[记录下今天学习的Linux几个简单的命令：

View Code BASH1
2
sudo /etc/init.d/gdm stop  退出桌面进入命令行
sudo /etc/init.d/gdm start 启动进入桌面

命令行下的网络配置，首先编辑/etc/network/interfaces配置文件按

View Code BASH1
sudo vi /etc/network/interfaces

然后添加

View Code BASH1
2
3
auto lo
auto lo inet loopback
auto eth0

如果是自动获取IP，接着添加

View Code BASH1
auto eth0 inet dhcp

如果是手动配置IP

View Code BASH1
2
3
4
auto eth0 inet static
address xxx.xxx.xxx.xxx
netmask xxx.xxx.xxx.xxx
gateway xxx.xxx.xxx.xxx

然后保存退出，下面是配置DNS

View Code BASH1
sudo vi /etc/resolv.conf

添加

View Code BASH1
nameserver 192.168.1.1 &#40;此处我设置的是路由的地址&#41;

最后保存退出，重启网络使使设置生效

View Code BASH1
sudo /etc/init.d/networking restart

只是最基本的几个命令，可是我用的是无线网络，命令行下面配置就麻烦点了，下次再弄。


Related posts:终于搞定Linux下Wireless连接
Linux下socket异步通讯聊天程序（转）
阿凡达幕后特辑：潘多拉的世界IMAX高清视频



Related posts:<ol><li><a href='http://yangqi.org/study_notes/linux-wireless-wpa-ubuntu/' rel='bookmark' title='Permanent Link: 终于搞定Linux下Wireless连接'>终于搞定Linux下Wireless连接</a></li>
<li><a href='http://yangqi.org/study_notes/linux-socket-asynchronous-im-system/' rel='bookmark' title='Permanent Link: Linux下socket异步通讯聊天程序（转）'>Linux下socket异步通讯聊天程序（转）</a></li>
<li><a href='http://yangqi.org/video_sharing/avatar-feature-the-world-of-pandora-imax-download/' rel='bookmark' title='Permanent Link: 阿凡达幕后特辑：潘多拉的世界IMAX高清视频'>阿凡达幕后特辑：潘多拉的世界IMAX高清视频</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/study_notes/linux-study-notes-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows7新功能“库”的使用教程电子书</title>
		<link>http://yangqi.org/resource_sharing/windows-7-library-intro-pdf-download/</link>
		<comments>http://yangqi.org/resource_sharing/windows-7-library-intro-pdf-download/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 03:38:37 +0000</pubDate>
		<dc:creator>yangqi</dc:creator>
				<category><![CDATA[资源分享]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[库]]></category>

		<guid isPermaLink="false">http://yangqi.org/resource_sharing/windows-7-%e6%96%b0%e5%8a%9f%e8%83%bd%e2%80%9c%e5%ba%93%e2%80%9d%e6%98%af%e4%bb%80%e4%b9%88%ef%bc%9f%e5%ba%93%e7%9a%84%e8%af%a6%e8%a7%a3%e4%bb%8b%e7%bb%8d%e4%b8%8e%e4%bd%bf%e7%94%a8%e6%95%99%e7%a8%8b/</guid>
		<description><![CDATA[微软在 Windows7 中新增了很多新的特性和功能，其中一个重要的特性就是“库”(Library)的概念，很可能认为它只是资源管理器的一个小小新功能而已，但看了本文，您就会认识到，它具有相当强大的功能，运用它可以大大提高你使用电脑的方便程度！它被称为“Windows 资源管理器的革命”！
在 Windows XP 时代，文件管理的主要形式是以用户的个人意愿，用文件夹的形式作为基础分类进行存放，然后再按照文件类型进行细化。但随着文件数量和种类的增多，加上用户行为的不确定性，原有的文件管理方式往往会造成文件存储混乱、重复文件多等情况，已经无法满足用户的实际需求。而在Windows7中，由于引进了 “库”，文件管理更方便，可以把本地或局域网中的文件添加到“库”，把文件收藏起来。

简单地讲，Windows7文件库可以将我们需要的文件和文件夹统统集中到一起，就如同网页收藏夹一样，只要单击库中的链接，就能快速打开添加到库中的文件夹——而不管它们原来深藏在本地电脑或局域网当中的任何位置。另外，它们都会随着原始文件夹的变化而自动更新，并且可以以同名的形式存在于文件库中。

Windows 7 已经将“库”列为其重要的功能，那么如果你已经用上 Windows7 你就不能浪费了如此实用的一个功能了！Win7除了能在桌面上显示库图标外，在默认情况下Win7取消了快捷启动栏，“库” 文件夹显示在任务栏左侧的位置。这样方便我们快速启动“库”。在各个文件夹或计算机窗口的左侧任务窗格中我们也可以快速启动“库”或“库”文件夹。在我们保存文件的时候，我们也可以清楚看到保存到“库”的选项，可以说，在Windows7中，“库”无处不在。
既然是这样，我们就有必要学习一下如何利用好Windows7的“库”来提高我们使用电脑的效率和方便性了！下面的PDF电子书将带我们一起走进Windows7的“库”功能，详细且通俗地讲解了“库”的演变与使用教程，那么，一起来体验一下Windows7的“库”带给我们的超凡体验吧！

这是一本不可多得的电子书，作者的描述相当的透彻全面，而且图文并茂，相当的细致！看完全部内容后你会对Windows的文件资源管理方面会有更深的认识，非常值得大家学习。
点击进入下载：[download#1#nohits]


Related posts:Windows 7的“上帝模式”



Related posts:<ol><li><a href='http://yangqi.org/resource_sharing/windows7-god-mode/' rel='bookmark' title='Permanent Link: Windows 7的“上帝模式”'>Windows 7的“上帝模式”</a></li>
</ol>]]></description>
		<wfw:commentRss>http://yangqi.org/resource_sharing/windows-7-library-intro-pdf-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 6.545 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-11 14:23:59 -->
