<?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>鬼の领地 &#187; 嘻嘻哈哈</title>
	<atom:link href="http://blog.upsuper.org/category/%e5%98%bb%e5%98%bb%e5%93%88%e5%93%88/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.upsuper.org</link>
	<description>the place where there are some ghost appearing...</description>
	<lastBuildDate>Thu, 17 Jun 2010 08:12:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>fork 炸弹</title>
		<link>http://blog.upsuper.org/fork-bomb/</link>
		<comments>http://blog.upsuper.org/fork-bomb/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 04:16:44 +0000</pubDate>
		<dc:creator>upsuper</dc:creator>
				<category><![CDATA[嘻嘻哈哈]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[炸弹]]></category>

		<guid isPermaLink="false">http://blog.upsuper.org/?p=784</guid>
		<description><![CDATA[Linux 的 fork 创建子进程的机制非常著名了，是一个很优美的方式。可是，这个东西是很可怕的。
记得曾经看到一个在 shell 上运行的 fork 炸弹：
（严重警告不要在任何 Linux 或 UNIX 的 Shell 上实验这条命令……）

1
:&#40;&#41;&#123;:&#124;:&#38;&#125;;:

这次我用 C 写了个想试验一下资源限制是否传递到子进程，就有了下面程序：

1
2
3
4
5
6
7
8
9
10
11
12
13
#include &#60;stdio.h&#62;
#include &#60;unistd.h&#62;
#include &#60;sys/resource.h&#62;
&#160;
int main&#40;void&#41; &#123;
  struct rlimit rtime;
  rtime.rlim_cur = rtime.rlim_max = 1;
  setrlimit&#40;RLIMIT_CPU, &#38;rtime&#41;;
  while &#40;1&#41; &#123;
    fork&#40;&#41;;
  &#125;
  return 0;
&#125;

当然，这个程序其实运行了最多卡一会儿（我差点以为被炸死了……），最后系统还是及时结束了这个疯狂的过程，此时查看系统负载，5分钟内负载高达227.x！
如果你想实现上面一行 shell 的功能（即直接拯救一切的那种……），只要下面代码就够了：

1
2
#include &#60;unistd.h&#62;
int main&#40;&#41; &#123; while &#40;1&#41; fork&#40;&#41;; [...]]]></description>
			<content:encoded><![CDATA[<p>Linux 的 fork 创建子进程的机制非常著名了，是一个很优美的方式。可是，这个东西是很可怕的。</p>
<p>记得<a href="http://cocre.com/?p=23">曾经看到</a>一个在 shell 上运行的 fork 炸弹：<br />
（严重警告不要在任何 Linux 或 UNIX 的 Shell 上实验这条命令……）</p>

<div class="wp_codebox"><table><tr id="p7844"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p784code4"><pre class="bash" style="font-family:monospace;">:<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#123;</span>:<span style="color: #000000; font-weight: bold;">|</span>:<span style="color: #000000; font-weight: bold;">&amp;</span><span style="color: #7a0874; font-weight: bold;">&#125;</span>;:</pre></td></tr></table></div>

<p>这次我用 C 写了个想试验一下资源限制是否传递到子进程，就有了下面程序：</p>

<div class="wp_codebox"><table><tr id="p7845"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code" id="p784code5"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &lt;stdio.h&gt;</span>
<span style="color: #339933;">#include &lt;unistd.h&gt;</span>
<span style="color: #339933;">#include &lt;sys/resource.h&gt;</span>
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #993333;">struct</span> rlimit rtime<span style="color: #339933;">;</span>
  rtime.<span style="color: #202020;">rlim_cur</span> <span style="color: #339933;">=</span> rtime.<span style="color: #202020;">rlim_max</span> <span style="color: #339933;">=</span> <span style="color: #0000dd;">1</span><span style="color: #339933;">;</span>
  setrlimit<span style="color: #009900;">&#40;</span>RLIMIT_CPU<span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>rtime<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    fork<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  <span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>当然，这个程序其实运行了最多卡一会儿（我差点以为被炸死了……），最后系统还是及时结束了这个疯狂的过程，此时查看系统负载，5分钟内负载高达227.x！</p>
<p>如果你想实现上面一行 shell 的功能（即直接拯救一切的那种……），只要下面代码就够了：</p>

<div class="wp_codebox"><table><tr id="p7846"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p784code6"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &lt;unistd.h&gt;</span>
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span> fork<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.upsuper.org/fork-bomb/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>测速——我的网速无敌的！</title>
		<link>http://blog.upsuper.org/gun-my-speed-network-invincible/</link>
		<comments>http://blog.upsuper.org/gun-my-speed-network-invincible/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 05:05:11 +0000</pubDate>
		<dc:creator>upsuper</dc:creator>
				<category><![CDATA[嘻嘻哈哈]]></category>
		<category><![CDATA[测试]]></category>
		<category><![CDATA[网络]]></category>

		<guid isPermaLink="false">http://blog.upsuper.org/?p=130</guid>
		<description><![CDATA[昨天看到有个Hi群上几个人在北京电信的网站上测网速。无奈，学校的网络被信息中心限速了，没法测，今天在家里又找到这个网站，测一下，和大家分享！

其实我的网速是没这么快的……怎么做到的呢？

其实就是利用浏览器缓存的啦……要清空缓存做，大概也就这的1/10……
]]></description>
			<content:encoded><![CDATA[<p>昨天看到有个Hi群上几个人在北京电信的网站上测网速。无奈，学校的网络被信息中心限速了，没法测，今天在家里又找到这个网站，测一下，和大家分享！</p>
<p><a href='http://blog.upsuper.org/wp-content/uploads/2008/07/e7bd91e7bb9ce6b58be9809f.png'><img src="http://blog.upsuper.org/wp-content/uploads/2008/07/e7bd91e7bb9ce6b58be9809f-300x172.png" alt="" title="网络测速" width="300" height="172" class="alignnone size-medium wp-image-131" /></a></p>
<p>其实我的网速是没这么快的……怎么做到的呢？<br />
<span id="more-130"></span><br />
其实就是利用浏览器缓存的啦……要清空缓存做，大概也就这的1/10……</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.upsuper.org/gun-my-speed-network-invincible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>附中吧强帖欣赏——今年附中将杀出重围，位列全省第一！</title>
		<link>http://blog.upsuper.org/fuzhongba-powerful-post-this-year-fuzhong-will-get-the-first-rank-of-fujian-province/</link>
		<comments>http://blog.upsuper.org/fuzhongba-powerful-post-this-year-fuzhong-will-get-the-first-rank-of-fujian-province/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 08:11:02 +0000</pubDate>
		<dc:creator>upsuper</dc:creator>
				<category><![CDATA[嘻嘻哈哈]]></category>
		<category><![CDATA[学校]]></category>
		<category><![CDATA[笑话]]></category>
		<category><![CDATA[贴吧]]></category>
		<category><![CDATA[高考]]></category>

		<guid isPermaLink="false">http://blog.upsuper.org/?p=116</guid>
		<description><![CDATA[实在太强大的贴了，这里贴出来一起欣赏一下。这里收录一些比较经典的回帖，将随着原帖更新而更新。
各同学留名贴仅选部分代表性的贴。
原帖地址：http://tieba.baidu.com/f?kz=405490203



1 据说今年一中萎了,我们学校有望第一.状元也在我们当中产生.有同学理综能上280,英语也有135.估计我们平均分比一中要高出许多!校长请客!


2 三中的路过,楼主请客


6 据说&#8230;有望&#8230;有同学&#8230;估计&#8230;高出许多!
中心:校长请客!


9 考得好校长的功劳,考得差学生的素质差…翁总的不灭定律


14 &#8230;楼主很有理想


15 楼主还是洗洗睡吧,做梦会比较快…


20 YY至十几天以后


23 置顶?附中要红了…


27 置顶?.. 我们站在风口浪尖


36 强贴留名,三中观光团路过


37 呃…同留,福一旅行社路过…


40 大梦留形,臭屁留声&#8230;   用脚趾想都知道是做梦. 英语那点分也炫耀? 一中天才多了去了&#8230;     天上好多牛喔!


41 有种把这贴顶三个月让大家都看到…


44 一中吧主参观完毕&#8212;xj3831.一大早就不得不慕名而来


45 一中论坛管理员到此一游 热烈庆祝附中勇夺全省第一…谢谢


48 不要怕嘛,附中还是很有可能考第一的嘛,只要一中三中厦一双十莆一都萎掉就可以了,也不难嘛～


53 自信是好事.但要等有一定实力了再说吧~~附中还是有潜力成为全省第一的,就看接下来的几届学生怎么看怎么想怎么做了, 我看好附中哦,加油!!


54 咳，路漫漫其修远兮，吾将上下而求索


55 以前几乎不来附中吧,这次慕名前来,果然是至强一帖,再下佩服佩服. 一中某学子路过&#8230;


66 刚刚英语考暴废…来这里逛逛轻松一下～


67 几天不来还置顶了…还好抢了沙发…广告位招租


68 这个…点点点…还置顶啦～好吧,那么…勇气可嘉…我也慕名而来…


69 一中某神飘过~~ 小孩啊,积点口德~~ 昨晚刚吃过猪脑 味道不错


70 懂幽默的人太少了……


82 一中生活多么枯燥,难得附中吧有如此精彩强大的贴,怎能不吸引一中学子慕名而来?


83 此贴为附中镇吧神贴,膜拜一下


84  一中小生到此,原来这儿也这么热闹.


90 哟 一中高2文科子弟慕名游学至此 表示恭喜 


91 三中观光团路过,坐20路来一次不容易啊


92 竟然是我们三中人坐到了全省第一的沙发,鸡冻啊!


93 一中小废柴路过!一中人快满40人开团来下全省第一的副本吧!会爆好东西!


94 啦&#8230;我们格致比不上你们,但是还是来祝福下附中!


97 一三已到,厦门的还不来朝觐福建至尊?


98 [...]]]></description>
			<content:encoded><![CDATA[<p>实在太强大的贴了，这里贴出来一起欣赏一下。这里收录一些比较经典的回帖，将随着原帖更新而更新。</p>
<p>各同学留名贴仅选部分代表性的贴。</p>
<p>原帖地址：<a href="http://tieba.baidu.com/f?kz=405490203" target="_blank">http://tieba.baidu.com/f?kz=405490203</a></p>
<p><span id="more-116"></span></p>
<table width="90%" style="background-color: white; color: black; padding: 5px 0.5em 5px 1em; text-indent: -0.75em;" cellspacing="5px">
<tr>
<td><strong>1</strong> 据说今年一中萎了,我们学校有望第一.状元也在我们当中产生.有同学理综能上280,英语也有135.估计我们平均分比一中要高出许多!校长请客!</td>
</tr>
<tr>
<td><strong>2</strong> 三中的路过,楼主请客</td>
</tr>
<tr>
<td><strong>6</strong> 据说&#8230;有望&#8230;有同学&#8230;估计&#8230;高出许多!<br />
中心:校长请客!</td>
</tr>
<tr>
<td><strong>9</strong> 考得好校长的功劳,考得差学生的素质差…翁总的不灭定律</td>
</tr>
<tr>
<td><strong>14</strong> &#8230;楼主很有理想</td>
</tr>
<tr>
<td><strong>15</strong> 楼主还是洗洗睡吧,做梦会比较快…</td>
</tr>
<tr>
<td><strong>20</strong> YY至十几天以后</td>
</tr>
<tr>
<td><strong>23</strong> 置顶?附中要红了…</td>
</tr>
<tr>
<td><strong>27</strong> 置顶?.. 我们站在风口浪尖</td>
</tr>
<tr>
<td><strong>36</strong> 强贴留名,三中观光团路过</td>
</tr>
<tr>
<td><strong>37</strong> 呃…同留,福一旅行社路过…</td>
</tr>
<tr>
<td><strong>40</strong> 大梦留形,臭屁留声&#8230;   用脚趾想都知道是做梦. 英语那点分也炫耀? 一中天才多了去了&#8230;     天上好多牛喔!</td>
</tr>
<tr>
<td><strong>41</strong> 有种把这贴顶三个月让大家都看到…</td>
</tr>
<tr>
<td><strong>44</strong> 一中吧主参观完毕&#8212;xj3831.一大早就不得不慕名而来</td>
</tr>
<tr>
<td><strong>45</strong> 一中论坛管理员到此一游 热烈庆祝附中勇夺全省第一…谢谢</td>
</tr>
<tr>
<td><strong>48</strong> 不要怕嘛,附中还是很有可能考第一的嘛,只要一中三中厦一双十莆一都萎掉就可以了,也不难嘛～</td>
</tr>
<tr>
<td><strong>53</strong> 自信是好事.但要等有一定实力了再说吧~~附中还是有潜力成为全省第一的,就看接下来的几届学生怎么看怎么想怎么做了, 我看好附中哦,加油!!</td>
</tr>
<tr>
<td><strong>54</strong> 咳，路漫漫其修远兮，吾将上下而求索</td>
</tr>
<tr>
<td><strong>55</strong> 以前几乎不来附中吧,这次慕名前来,果然是至强一帖,再下佩服佩服. 一中某学子路过&#8230;</td>
</tr>
<tr>
<td><strong>66</strong> 刚刚英语考暴废…来这里逛逛轻松一下～</td>
</tr>
<tr>
<td><strong>67</strong> 几天不来还置顶了…还好抢了沙发…广告位招租</td>
</tr>
<tr>
<td><strong>68</strong> 这个…点点点…还置顶啦～好吧,那么…勇气可嘉…我也慕名而来…</td>
</tr>
<tr>
<td><strong>69</strong> 一中某神飘过~~ 小孩啊,积点口德~~ 昨晚刚吃过猪脑 味道不错</td>
</tr>
<tr>
<td><strong>70</strong> 懂幽默的人太少了……</td>
</tr>
<tr>
<td><strong>82</strong> 一中生活多么枯燥,难得附中吧有如此精彩强大的贴,怎能不吸引一中学子慕名而来?</td>
</tr>
<tr>
<td><strong>83</strong> 此贴为附中镇吧神贴,膜拜一下</td>
</tr>
<tr>
<td><strong>84</strong>  一中小生到此,原来这儿也这么热闹.</td>
</tr>
<tr>
<td><strong>90</strong> 哟 一中高2文科子弟慕名游学至此 表示恭喜 </td>
</tr>
<tr>
<td><strong>91</strong> 三中观光团路过,坐20路来一次不容易啊</td>
</tr>
<tr>
<td><strong>92</strong> 竟然是我们三中人坐到了全省第一的沙发,鸡冻啊!</td>
</tr>
<tr>
<td><strong>93</strong> 一中小废柴路过!一中人快满40人开团来下全省第一的副本吧!会爆好东西!</td>
</tr>
<tr>
<td><strong>94</strong> 啦&#8230;我们格致比不上你们,但是还是来祝福下附中!</td>
</tr>
<tr>
<td><strong>97</strong> 一三已到,厦门的还不来朝觐福建至尊?</td>
</tr>
<tr>
<td><strong>98</strong> lz,你能让时光回到1980年，附中超过一中就能成为现实了</td>
</tr>
<tr>
<td><strong>102</strong> 八中的高一小弟慕名而来,恭喜了!</td>
</tr>
<tr>
<td><strong>103</strong> 厦门一中应福州一中邀请组团前来参观..路远慢了些</td>
</tr>
<tr>
<td><strong>105</strong> 福州一中步行而来~上街偏僻了点,比较慢…还是为附中庆祝!by殇</td>
</tr>
<tr>
<td><strong>106</strong> 恭喜,据说这次一中勇夺倒一桂冠</td>
</tr>
<tr>
<td><strong>108</strong> 四中小P孩前来膜拜,让我们沾沾全省第一的仙气.</td>
</tr>
<tr>
<td><strong>113</strong> 此帖虽狂，却可以让大家更加密切地关注附中的成绩。期待着附中的好成绩，也期待着附中高考成绩的透明度。无论如何，都要向为高考付出努力老师们致敬。</td>
</tr>
<tr>
<td><strong>114</strong> 其他学校建议来我们这看此贴的贴都快加精了&#8230;.有志气..很好很好</td>
</tr>
<tr>
<td><strong>117</strong> 一中旅游团第N号营员来留名了..这么经典的帖子怎么能不来呢?</td>
</tr>
<tr>
<td><strong>118</strong> 瘦死的骆驼比马大,楼猪听说过么?以前一中人对附中印象还不错,现在啊,楼猪一颗老鼠屎坏了一锅粥啊!我建议该帖申请世界吉尼斯记录最强笑话!</td>
</tr>
<tr>
<td><strong>120</strong> 三中学子慕名发来贺电</td>
</tr>
<tr>
<td><strong>123</strong> 一中一小生慕名前来,果真腹痛而归…哈哈哈哈哈</td>
</tr>
<tr>
<td><strong>125</strong> 二中学生不才,睡觉前来模拜</td>
</tr>
<tr>
<td><strong>128</strong> 祝楼主美梦成真! By 一中小弟</td>
</tr>
<tr>
<td><strong>130</strong> ORZ&#8230;本人一中学生&#8230;来附中复读一年&#8230;感觉附中同学都挺谦虚的&#8230;（复读班认识的几个）。。。后生可畏 那我就只能祝你梦想成真了</td>
</tr>
<tr>
<td><strong>131</strong> 附中人才太多,今年全省第一,明年肯定全国第一</td>
</tr>
<tr>
<td><strong>134</strong> 三中的慕名而来,幸好它还在顶上,没有错过.恭祝今天附中全省第一.by:烬儿~.</td>
</tr>
<tr>
<td><strong>135</strong> 很好很好.3中酱油团组团成功.</td>
</tr>
<tr>
<td><strong>136</strong> 三中酱油党预备党员路过</td>
</tr>
<tr>
<td><strong>137</strong> 厦门莆田的怎么还没来拜?</td>
</tr>
<tr>
<td><strong>138</strong> 厦门双十中学考察团到此一游</td>
</tr>
<tr>
<td><strong>139</strong> 早知道就不把一万8给一中了,可好像当时附中不收钱…</td>
</tr>
<tr>
<td><strong>141</strong> 福州一中学生会学习部慕名到此一游,部长谨代表本部门祝贺附中取得优异成绩!</td>
</tr>
<tr>
<td><strong>142</strong> 此帖加强了各校间往来,很好很强大</td>
</tr>
<tr>
<td><strong>145</strong> 这么强大的贴怎么能不置顶了呢?这不符合礼啊!</td>
</tr>
<tr>
<td><strong>146</strong> 一中心理部部员仅代表一中心理部到此一游</td>
</tr>
<tr>
<td><strong>147</strong> 这种贴怎么那么火&#8230;</td>
</tr>
<tr>
<td><strong>148-157</strong> 你不置顶了我们也要人工置顶,我们要认真学习附中精神!</td>
</tr>
<tr>
<td><strong>158</strong> 附中向来都蛮低调的…这回总算发标了!看来不在沉默中爆发,就在沉默中灭亡…!～一中不才飘过</td>
</tr>
<tr>
<td><strong>159</strong> 人工置顶,日日参拜!</td>
</tr>
<tr>
<td><strong>162</strong> 果然镇吧宝帖…</td>
</tr>
<tr>
<td><strong>163</strong> 火星人飘过 望步行数光年回来时能见到楼主崛起</td>
</tr>
<tr>
<td><strong>164</strong> 伊利集团恭贺附中高考勇夺第一</td>
</tr>
<tr>
<td><strong>165</strong> 埃塞俄比亚驻华大使馆恭贺附中夺魁!</td>
</tr>
<tr>
<td><strong>166</strong> 乌拉圭驻华大使馆恭贺附中夺魁</td>
</tr>
<tr>
<td><strong>167</strong> 法国家乐福集团发来贺电</td>
</tr>
<tr>
<td><strong>168</strong> 阿尔巴尼亚驻华大使馆恭贺附中夺魁!</td>
</tr>
<tr>
<td><strong>169</strong> 全球华人 港澳台胞共同庆贺附中伟大胜利</td>
</tr>
<tr>
<td><strong>170</strong> 本拉登于巴基斯坦某山洞发来贺电！</td>
</tr>
<tr>
<td><strong>175</strong> 有慧根呵呵呵1中不才学子</td>
</tr>
<tr>
<td><strong>176</strong> 附中考这样好,去玩玩去把…1</td>
</tr>
<tr>
<td><strong>178</strong> 巫妖王Arthas率天灾众由诺森德前来参拜</td>
</tr>
<tr>
<td><strong>179</strong> 张小凡带陆雪琪到此一游</td>
</tr>
<tr>
<td><strong>181</strong> Storm Earth And Fire,Head My Call~~</td>
</tr>
<tr>
<td><strong>182</strong> 三中门口保安来霸主这里瞻仰</td>
</tr>
<tr>
<td><strong>183</strong> 这小娃有灵气&#8230;</td>
</tr>
<tr>
<td><strong>184</strong> 四十中门口小卖铺好板娘来瞅瞅聪明娃～</td>
</tr>
<tr>
<td><strong>189</strong> 呀呀呀        掉下来一格…               强帖没摔痛吧?</td>
</tr>
<tr>
<td><strong>190</strong> 赵灵儿灵魂慕名飘过……</td>
</tr>
<tr>
<td><strong>192</strong> 附中神校,仙福永享.千秋万代,老考第一.</td>
</tr>
<tr>
<td><strong>194</strong> 部里决定给您颁发奖章 请保存好身份证、准考证</td>
</tr>
<tr>
<td><strong>196</strong> 看到此贴只觉此贴只应天上有,人间难得几回看啊～牛,实在是牛.牛牛明天见,牛牛天天见</td>
</tr>
<tr>
<td><strong>199</strong> 厦门双十中学后门保安飞过</td>
</tr>
<tr>
<td><strong>201</strong> 啊哈,热烈祝贺翁教主杀灭迅哥儿勇夺福建致尊荣誉称号,希里哈啦愚勒公司附赠附中年度最佳搞笑新闻奖.</td>
</tr>
<tr>
<td><strong>202</strong> 牛! 我们正在努力向你们学校看齐 希望早日来一中授课</td>
</tr>
<tr>
<td><strong>206</strong> 膜拜,附中大哥受一中小弟一拜</td>
</tr>
<tr>
<td><strong>210</strong> 一中小生因备战会考来迟一步 望附中老大恕罪</td>
</tr>
<tr>
<td><strong>212</strong> 高二的看好了啊 要向附中的高3们学习 争取下次拿第一啊</td>
</tr>
<tr>
<td><strong>215</strong> 愿艾露恩与您同在</td>
</tr>
<tr>
<td><strong>220</strong> 神,神!有灵气,有灵气~~</td>
</tr>
<tr>
<td><strong>224</strong> 啊!!!我要转学!据说我们一中今年新校区考砸了.没想到第一被附中抢了啊?</td>
</tr>
<tr>
<td><strong>230</strong> 牛!顶起! 明日政治会考,我们一中学子一定要以附中思想来武装自己的头脑! 深刻理解“YY决定第一”的附中价值规律,紧抓“多出状元帖”的帖吧组织建设,发挥好“镇吧宝帖”在附中文化战略中的先锋作用,把握“管他三七二十一,想来就是考第一”的附中哲学活的灵魂,坚持走附中特色的高考霸主道路!!!</td>
</tr>
<tr>
<td><strong>231</strong> 顶到2012年奥运会</td>
</tr>
<tr>
<td><strong>237</strong> 今天我看到一个长得很像希特勒的人 他问我师大附中贴吧怎么走 我把手机给他，他就感动地热泪盈眶了</td>
</tr>
<tr>
<td><strong>238</strong> 加油~~~置顶!!!! 原来逍遥一家来这儿郊游啦&#8230;..</td>
</tr>
<tr>
<td><strong>240</strong> 时时惦念此贴</td>
</tr>
<tr>
<td><strong>242</strong> 熬夜顶起震吧帖,就像董存瑞顶起炸药包.</td>
</tr>
<tr>
<td><strong>245</strong> 吐血～我们把这吧顶到了wap点击率218名…是否给个最佳贡献奖?</td>
</tr>
<tr>
<td><strong>246</strong> 卡萨诺率领领众萨诺弟子前来膜拜,愿附中千秋万代勇夺第一</td>
</tr>
<tr>
<td><strong>247</strong> 请大家冷静看此贴…一中的也不要无畏去顶此贴…像是个圈套故意让我们怒,之后他们就有理由讲肚量小.素质低了!反正最后结果都要出来的!到那时再见分晓!终止愚昧的顶贴行为吧!</td>
</tr>
<tr>
<td><strong>249</strong> 今年说不定八中会成为最大黑马&#8230;据说他们老师猜中了好几题,考生出来时个个笑眯眯的&#8230;</td>
</tr>
<tr>
<td><strong>251</strong> 理想是远大的，道路是曲折的。。。。LZ加油，本届不行，还有下下下。。届么，只是，那时的LZ不知道眉毛胡子几许了啊，呵呵呵&#8212;&#8211;一中家长飘过～</td>
</tr>
<tr>
<td><strong>256</strong> 是此顿位贴引发了汶汶大地震吗～</td>
</tr>
<tr>
<td><strong>257-258</strong> 拳皇吧八神庵路过模拜此贴,表示对此贴甘拜下风,并决定以此贴为榜样,好好学习他的精神!</td>
</tr>
<tr>
<td><strong>259</strong> 回247楼:我们看此贴并无一丝愤怒,而是十分开心,为我们枯燥的学习生活带来了许多精彩!</td>
</tr>
<tr>
<td><strong>262</strong> 少伟:附中贴吧的镇吧神贴在腊一块啊?刑傻:好贱!你混账!这么有名的贴!(大家顶贴要溃一些,情绪要薄满一些…)</td>
</tr>
<tr>
<td><strong>264</strong> 我代迅哥向翁总发来贺电</td>
</tr>
<tr>
<td><strong>265</strong> 我代表三中小黄向翁总发来贺电</td>
</tr>
<tr>
<td><strong>266</strong> 早晚顶强帖,有益身心健康!睡前顶一顶,喔~飞一般的感觉!</td>
</tr>
<tr>
<td><strong>268</strong> 召集人手中,争取为建设社会主义和谐社会做新的贡献!</td>
</tr>
<tr>
<td><strong>271</strong> 阿哈!新的一天新的开始哈!强帖挺住,刚看你掉了两格.加油!起床再来顶哦!</td>
</tr>
<tr>
<td><strong>272</strong> 睡前顶强贴</td>
</tr>
<tr>
<td><strong>274</strong> 凌晨也别摔了…</td>
</tr>
<tr>
<td><strong>275</strong> 念完政治来顶</td>
</tr>
<tr>
<td><strong>276</strong> 才睡了一觉怎么就掉了这么多?摔疼了吧,给你顶上</td>
</tr>
<tr>
<td><strong>287</strong> 下午考完政治把这贴收进我博客～</td>
</tr>
<tr>
<td><strong>289</strong> 我爱政治,政治爱我</td>
</tr>
<tr>
<td><strong>295</strong> 出门前顶一顶,会考前一沾灵气.</td>
</tr>
<tr>
<td><strong>298</strong> 会考前一拜,精神更愉快</td>
</tr>
<tr>
<td><strong>299</strong> 福建省会考办恭祝附中取得好成绩～下午会考希望各位同学取得好成绩!</td>
</tr>
<tr>
<td><strong>301</strong> 考前拜一拜.会考轻松过</td>
</tr>
<tr>
<td><strong>302</strong> 哈哈 全球都在关注啊 楼主话虽不多 但字字经典 这帖得吸引力是全省第一倒是真的</td>
</tr>
<tr>
<td><strong>308</strong> 考完政治就来顶贴！</td>
</tr>
<tr>
<td><strong>311</strong> 由于我全面贯彻了附中精神,这次政治会考以其精神作为理论基础,以其先进事迹作为理论依据.答题快准恨!</td>
</tr>
<tr>
<td><strong>313</strong> 自从用了附中精神腰不酸腿不痛了,一个精神顶过去五个,一口气上宿舍楼不费劲～</td>
</tr>
<tr>
<td><strong>315</strong> 会考後的事实证明此帖神有灵气!</td>
</tr>
<tr>
<td><strong>317</strong> 我爱这贴。 ——一中人的心声</td>
</tr>
<tr>
<td><strong>318</strong> 果然 昨晚来过之后今天考试一帆风顺</td>
</tr>
<tr>
<td><strong>320</strong> 昨天膜拜完此神帖…今天考试10分钟内完成…</td>
</tr>
<tr>
<td></td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.upsuper.org/fuzhongba-powerful-post-this-year-fuzhong-will-get-the-first-rank-of-fujian-province/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一个国产的MP3</title>
		<link>http://blog.upsuper.org/a-china-made-mp3/</link>
		<comments>http://blog.upsuper.org/a-china-made-mp3/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 13:52:23 +0000</pubDate>
		<dc:creator>upsuper</dc:creator>
				<category><![CDATA[嘻嘻哈哈]]></category>
		<category><![CDATA[学校]]></category>
		<category><![CDATA[宿舍]]></category>
		<category><![CDATA[笑话]]></category>

		<guid isPermaLink="false">http://blog.upsuper.org/?p=103</guid>
		<description><![CDATA[然后我们就想，作为国产MP3，是否可以有更强大的功能呢？比如给干电池充电？另一舍友说，那干电池内部的化学结构一定发生了改变，发生了核反应什么的。我说，那干电池也是国产的！]]></description>
			<content:encoded><![CDATA[<p>今天回到宿舍里面，叶子的MP3 Player插在我的音箱上播放。叶子说，你去看看那MP3。然后我看一下，发现电池槽里没电池，再一看，查电脑的那个口上插着另一个人的手机充电器。据称，该MP3的说明书上并没有说这个MP3支持外接电源。于是，我们明白了，作为国产MP3，具有超越原本功能的潜力。</p>
<p>接下来，我们发现了更神奇的事情。我们把一个没电的充电电池放入MP3的电池槽（此时MP3不能启动），随后插入电源，15s后拔出。此时，MP3成功开启，并在以最大音量播放2首歌（约10分钟）后才英勇关机。这说明，这个MP3不仅可以外接电源，而且可以作为充电电池的充电器，而且看起来充电效率不错。</p>
<p>然后我们就想，作为国产MP3，是否可以有更强大的功能呢？比如给干电池充电？另一舍友说，那干电池内部的化学结构一定发生了改变，发生了核反应什么的。我说，那干电池也是国产的！</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.upsuper.org/a-china-made-mp3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows 3.1</title>
		<link>http://blog.upsuper.org/windows-31/</link>
		<comments>http://blog.upsuper.org/windows-31/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 04:36:00 +0000</pubDate>
		<dc:creator>upsuper</dc:creator>
				<category><![CDATA[嘻嘻哈哈]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[历史]]></category>
		<category><![CDATA[虚拟机]]></category>

		<guid isPermaLink="false">http://blog.upsuper.org/?p=42</guid>
		<description><![CDATA[今天在我的VMware里装了一个Windows 3.1，然后又装了pWindows 3.2。
图片贴出来，顺便供大家怀念一下~

突然觉得现在的Windows还是蛮不错的了~呵呵
]]></description>
			<content:encoded><![CDATA[<p>今天在我的VMware里装了一个Windows 3.1，然后又装了pWindows 3.2。</p>
<p>图片贴出来，顺便供大家怀念一下~</p>
<p><span id="more-42"></span></p>

<a href='http://blog.upsuper.org/windows-31/attachment/1/' title='Windows_3.1_1'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/1.jpg" class="attachment-thumbnail" alt="这是安装，下面好几张安装~" title="Windows_3.1_1" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/2/' title='Windows_3.1_2'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/2.jpg" class="attachment-thumbnail" alt="根据习惯选择自定义" title="Windows_3.1_2" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/3/' title='Windows_3.1_3'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/3.jpg" class="attachment-thumbnail" alt="" title="Windows_3.1_3" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/4/' title='Windows_3.1_4'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/4.jpg" class="attachment-thumbnail" alt="" title="Windows_3.1_4" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/5/' title='Windows_3.1_5'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/5.jpg" class="attachment-thumbnail" alt="" title="Windows_3.1_5" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/6/' title='Windows_3.1_6'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/6.jpg" class="attachment-thumbnail" alt="" title="Windows_3.1_6" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/7/' title='Windows_3.1_7'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/7.jpg" class="attachment-thumbnail" alt="" title="Windows_3.1_7" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/8/' title='Windows_3.1_8'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/8.jpg" class="attachment-thumbnail" alt="看起来和普通软件安装差不多" title="Windows_3.1_8" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/9/' title='Windows_3.1_9'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/9.jpg" class="attachment-thumbnail" alt="" title="Windows_3.1_9" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/10/' title='Windows_3.1_10'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/10.jpg" class="attachment-thumbnail" alt="最后的安装，好不容易截到的" title="Windows_3.1_10" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/11/' title='Windows_3.1_11'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/11.jpg" class="attachment-thumbnail" alt="不懂他要我干什么" title="Windows_3.1_11" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/12/' title='Windows_3.1_12'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/12.jpg" class="attachment-thumbnail" alt="要我看教程？随便。。。" title="Windows_3.1_12" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/13/' title='Windows_3.1_13'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/13.jpg" class="attachment-thumbnail" alt="这教程其他还好。。就是比较无聊。。。" title="Windows_3.1_13" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/14/' title='Windows_3.1_14'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/14.jpg" class="attachment-thumbnail" alt="和其他Windows一样安装完要重启。。。不过这次不强制了！" title="Windows_3.1_14" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/15/' title='Windows_3.1_15'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/15.jpg" class="attachment-thumbnail" alt="终于见到了Windows3.1的界面了！不容易啊" title="Windows_3.1_15" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/16/' title='Windows_3.1_16'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/16.jpg" class="attachment-thumbnail" alt="先看看游戏" title="Windows_3.1_16" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/17/' title='Windows_3.1_17'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/17.jpg" class="attachment-thumbnail" alt="扫雷" title="Windows_3.1_17" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/18/' title='Windows_3.1_18'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/18.jpg" class="attachment-thumbnail" alt="那个鼠标是在太点点点了。。。而且绘制速度极慢。。。不然想赢个高级的。。。" title="Windows_3.1_18" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/19/' title='Windows_3.1_19'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/19.jpg" class="attachment-thumbnail" alt="" title="Windows_3.1_19" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/20/' title='Windows_3.1_20'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/20.jpg" class="attachment-thumbnail" alt="Windows3.1没有任务栏，所有的任务都放在桌面上。。。注意左下角，那是刚才运行的扫雷，还没关闭" title="Windows_3.1_20" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/21/' title='Windows_3.1_21'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/21.jpg" class="attachment-thumbnail" alt="来看看纸牌吧。。。因为速度太慢玩不下去了。。。" title="Windows_3.1_21" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/22/' title='Windows_3.1_22'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/22.jpg" class="attachment-thumbnail" alt="最大化的样子" title="Windows_3.1_22" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/23/' title='Windows_3.1_23'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/23.jpg" class="attachment-thumbnail" alt="再看看控制面板" title="Windows_3.1_23" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/24/' title='Windows_3.1_24'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/24.jpg" class="attachment-thumbnail" alt="资源管理器" title="Windows_3.1_24" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/25/' title='Windows_3.1_25'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/25.jpg" class="attachment-thumbnail" alt="Windows3.1下的MS-DOS" title="Windows_3.1_25" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/26/' title='Windows_3.1_26'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/26.jpg" class="attachment-thumbnail" alt="附件" title="Windows_3.1_26" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/27/' title='Windows_3.1_27'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/27.jpg" class="attachment-thumbnail" alt="当年的记事本" title="Windows_3.1_27" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/28/' title='Windows_3.1_28'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/28.jpg" class="attachment-thumbnail" alt="原来这个讨厌的对话框那个年代就有了。。。" title="Windows_3.1_28" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/29/' title='Windows_3.1_29'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/29.jpg" class="attachment-thumbnail" alt="还有计算器" title="Windows_3.1_29" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/30/' title='Windows_3.1_30'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/30.jpg" class="attachment-thumbnail" alt="还是喜欢科学型。。。不过样子有点。。。" title="Windows_3.1_30" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/31/' title='Windows_3.1_31'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/31.jpg" class="attachment-thumbnail" alt="本来还想看看那个年代的Media Player。。。可惜运行不起来" title="Windows_3.1_31" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/32/' title='Windows_3.1_32'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/32.jpg" class="attachment-thumbnail" alt="画图" title="Windows_3.1_32" /></a>
<a href='http://blog.upsuper.org/windows-31/attachment/33/' title='Windows_3.1_33'><img src="http://blog.upsuper.org/wp-content/uploads/2008/05/33.jpg" class="attachment-thumbnail" alt="写字板" title="Windows_3.1_33" /></a>

<p>突然觉得现在的Windows还是蛮不错的了~呵呵</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.upsuper.org/windows-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>不是皆“非”</title>
		<link>http://blog.upsuper.org/be-not-is-all-not/</link>
		<comments>http://blog.upsuper.org/be-not-is-all-not/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 08:00:29 +0000</pubDate>
		<dc:creator>upsuper</dc:creator>
				<category><![CDATA[嘻嘻哈哈]]></category>
		<category><![CDATA[宿舍]]></category>
		<category><![CDATA[笑话]]></category>
		<category><![CDATA[逻辑]]></category>

		<guid isPermaLink="false">http://blog.upsuper.org/?p=12</guid>
		<description><![CDATA[昨天晚上，在宿舍里说，
从逻辑学上讲，如果一件事它不是true就是false，但是如果真的这样那么：
如果一个东西，它不是门，就是非门。非门是什么，就是一个人，走过去就变成了非人，一个动物，如果不是鸡就是非鸡（飞机）……
这有办法？
]]></description>
			<content:encoded><![CDATA[<p>昨天晚上，在宿舍里说，</p>
<p>从逻辑学上讲，如果一件事它不是true就是false，但是如果真的这样那么：</p>
<p>如果一个东西，它不是门，就是非门。非门是什么，就是一个人，走过去就变成了非人，一个动物，如果不是鸡就是非鸡（飞机）……</p>
<p>这有办法？</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.upsuper.org/be-not-is-all-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>两个式子</title>
		<link>http://blog.upsuper.org/two-formula/</link>
		<comments>http://blog.upsuper.org/two-formula/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 09:33:15 +0000</pubDate>
		<dc:creator>upsuper</dc:creator>
				<category><![CDATA[嘻嘻哈哈]]></category>
		<category><![CDATA[数学]]></category>
		<category><![CDATA[生日]]></category>

		<guid isPermaLink="false">http://blog.upsuper.org/?p=13</guid>
		<description><![CDATA[

猜猜是什么？

其实都是我的生日～上面那个是1991.0209（实际上是1991.0208793434240034），下面那个是0.199129（实际上是0.19912798044674601375）
怎么做到的？见http://ddrive.cs.dal.ca/~isc/standard.html
还有好多呢。。。


]]></description>
			<content:encoded><![CDATA[<p><img src="http://ddrive.cs.dal.ca/~isc/output_files/output_bd4ecd2e7d7e583c112dad3e2138c2d7.png" alt="1991.0209" /><br />
<img src="http://ddrive.cs.dal.ca/~isc/output_files/output_20261ff0360f4dfe9d2466e44a8b695f.png" alt="0.199129" width="80%" /></p>
<p>猜猜是什么？</p>
<p><span id="more-13"></span></p>
<p>其实都是我的生日～上面那个是1991.0209（实际上是1991.0208793434240034），下面那个是0.199129（实际上是0.19912798044674601375）</p>
<p>怎么做到的？见<a href="http://ddrive.cs.dal.ca/~isc/standard.html" target="_blank">http://ddrive.cs.dal.ca/~isc/standard.html</a></p>
<p>还有好多呢。。。</p>
<p><img src="http://ddrive.cs.dal.ca/~isc/output_files/output_6b25204ead066c6e2281d932224cca0a.png" alt="91.29 (91.356324640129165690)" /></p>
<p><img src="http://ddrive.cs.dal.ca/~isc/output_files/output_4f2a57e9223b9c722ae3ef0f52e79c9a.png" alt="0.9129 (0.91335276289819522520)" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.upsuper.org/two-formula/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>有趣的QQ昵称</title>
		<link>http://blog.upsuper.org/interesting-qq-nickname/</link>
		<comments>http://blog.upsuper.org/interesting-qq-nickname/#comments</comments>
		<pubDate>Tue, 05 Jul 2005 08:24:23 +0000</pubDate>
		<dc:creator>upsuper</dc:creator>
				<category><![CDATA[嘻嘻哈哈]]></category>
		<category><![CDATA[QQ]]></category>

		<guid isPermaLink="false">http://blog.upsuper.org/?p=80</guid>
		<description><![CDATA[大家一定见过不少有趣的QQ昵称，一定很羡慕吧~
其实那一点也不难，看看下面吧：

排第一
这个可能很多人都听说过，就是在昵称前面加上一个ASCII码为1的字符。
不过这是有局限的，如果对方好友的排列顺序选择的不是&#8221;按首字母&#8221;那也没用。最好的当然是会员自动排前，看来不花点money是不行啦~再说还要会在前面加上一个方框（有的系统显示为一个小直角），有些不划算~
当然，这对群还使有效的（不知是不是腾讯的漏洞~）
下划线
这个，学过编成的人都会知道，加上一个&#8221;&#038;&#8221;可以使后面一个字符下划线。其实在昵称中加入&#8221;&#038;&#8221;也有同样的效果~不过这个的缺点就是，在聊天中仍然会显示为&#038;而非下划线~
带表情
用过MSN的朋友一定知道，在MSN中在自己的昵称上加上表情符号，就可以显示出表情，可爱极了~
QQ也可以，只是它在列表中就不行了~
记得&#8221;如来神掌探隐身&#8221;吗？利用了QQ接受自定义表情的漏洞。我想如果用这招是不是又可以探出隐身了呢？
结合
大家可以看到，在前面很多都会使昵称变得不好看~其实有一招，就是将他们结合，比如把&#8221;&#038;&#8221;定义为一个自定义表情……（似乎不行）

]]></description>
			<content:encoded><![CDATA[<p>大家一定见过不少有趣的QQ昵称，一定很羡慕吧~</p>
<p>其实那一点也不难，看看下面吧：</p>
<ol>
<li>排第一
<p>这个可能很多人都听说过，就是在昵称前面加上一个ASCII码为1的字符。</p>
<p>不过这是有局限的，如果对方好友的排列顺序选择的不是&#8221;按首字母&#8221;那也没用。最好的当然是会员自动排前，看来不花点money是不行啦~再说还要会在前面加上一个方框（有的系统显示为一个小直角），有些不划算~</p>
<p>当然，这对群还使有效的（不知是不是腾讯的漏洞~）</li>
<li>下划线
<p>这个，学过编成的人都会知道，加上一个&#8221;&#038;&#8221;可以使后面一个字符下划线。其实在昵称中加入&#8221;&#038;&#8221;也有同样的效果~不过这个的缺点就是，在聊天中仍然会显示为&#038;而非下划线~</li>
<li>带表情
<p>用过MSN的朋友一定知道，在MSN中在自己的昵称上加上表情符号，就可以显示出表情，可爱极了~</p>
<p>QQ也可以，只是它在列表中就不行了~</p>
<p>记得&#8221;如来神掌探隐身&#8221;吗？利用了QQ接受自定义表情的漏洞。我想如果用这招是不是又可以探出隐身了呢？</li>
<li>结合
<p>大家可以看到，在前面很多都会使昵称变得不好看~其实有一招，就是将他们结合，比如把&#8221;&#038;&#8221;定义为一个自定义表情……（似乎不行）</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.upsuper.org/interesting-qq-nickname/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
