<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="http://feeds.qzone.qq.com/rss.xsl" version="1.0"?>
<rss version="2.0" xmlns:qz="http://qzone.qq.com">
<channel>
<title><![CDATA[追風〓〓無痕]]></title>
<description><![CDATA[追風^ō^無痕★技术空间站★]]></description>
<link>http://271284919.qzone.qq.com</link>
<lastBuildDate>Sun, 29 Nov 2009 07:22:24 GMT</lastBuildDate>
<generator>Qzone</generator>
<language>zh-cn</language>
<copyright>Copyright (C), 2005-2008, Tencent Tech. Co., Ltd.</copyright>
<pubDate>Sun, 26 Jul 2009 10:19:22 GMT</pubDate>

<item>
<title><![CDATA[批处理实现定时关机.注销,打开任务(讯雷)]]></title>
<link>http://271284919.qzone.qq.com/blog/1248603562</link>
<description><![CDATA[好久没有写日记了,放假在家,10点多了想去挂讯雷睡觉... <br>可隔壁老王说11:30才睡觉..我和他一条宽带的,开了讯雷,他就不用玩了...<br>于是写了一个定时启动讯雷的批处理. <br>实现定时开机,关机,注销...顺便把强制聊天器也加上了. <br>个人觉得也就这有点用哦...懒了.到要用时才会去学.老鸟莫＾○＾! <br>代码如下:把以下以下代码COPY到TXT文档里,再把文件后辍改成BAT(CMD)就好了. <br>==================================================================== <br><br><span style="line-height:1.8em;">@ECHO off </span><wbr /><br><span style="line-height:1.8em;">TITLE WUHEN-实现定时关机、注销、重启、锁定.打开任务(讯雷)等功能。</span><wbr /> <br><br><span style="line-height:1.8em;">:start </span><wbr /><br><span style="line-height:1.8em;">CLS </span><wbr /><br><span style="line-height:1.8em;">COLOR 1f </span><wbr /><br><span style="line-height:1.8em;">rem 使用COLOR命令对控制台输出颜色进行更改 </span><wbr /><br><span style="line-height:1.8em;">MODE con: COLS=58 LINES=30 </span><wbr /><br><span style="line-height:1.8em;">rem MODE语句为设定窗体的宽和高 </span><wbr /><br><span style="line-height:1.8em;">set tm1=%time:~0,2% </span><wbr /><br><span style="line-height:1.8em;">set tm2=%time:~3,2% </span><wbr /><br><span style="line-height:1.8em;">set tm3=%time:~6,2% </span><wbr /><br><span style="line-height:1.8em;">ECHO. </span><wbr /><br><span style="line-height:1.8em;">ECHO %date% %tm1%点%tm2%分%tm3%秒 QQ:271284919 </span><wbr /><br><span style="line-height:1.8em;">ECHO. </span><wbr /><br><span style="line-height:1.8em;">ECHO ===================無痕幸福的分割线======================= </span><wbr /><br><span style="line-height:1.8em;">ECHO. </span><wbr /><br><span style="line-height:1.8em;">ECHO 请选择要进行的操作，然后按回车 </span><wbr /><br><span style="line-height:1.8em;">ECHO ─────────────── </span><wbr /><br><span style="line-height:1.8em;">ECHO. </span><wbr /><br><span style="line-height:1.8em;">ECHO 1. 定时关机 </span><wbr /><br><span style="line-height:1.8em;">ECHO 2. 重新启动 </span><wbr /><br><span style="line-height:1.8em;">ECHO 3. 锁定计算机 </span><wbr /><br><span style="line-height:1.8em;">ECHO 4. 注销计算机 </span><wbr /><br><span style="line-height:1.8em;">ECHO 5. 定时打开任务(讯雷) </span><wbr /><br><span style="line-height:1.8em;">ECHO 6. 与任何人强制聊天 </span><wbr /><br><span style="line-height:1.8em;">ECHO 7. 联系作者:無痕 QQ:271284919 </span><wbr /><br><span style="line-height:1.8em;">ECHO 8. 退出 </span><wbr /><br><span style="line-height:1.8em;">ECHO. </span><wbr /><br><span style="line-height:1.8em;">:cho </span><wbr /><br><span style="line-height:1.8em;">SET /P Choice=选择: </span><wbr /><br><span style="line-height:1.8em;">SET /a &quot;a&quot;=&quot;Choice&quot; </span><wbr /><br><span style="line-height:1.8em;">rem 设定变量&quot;Choice&quot;为用户输入的字符 </span><wbr /><br><span style="line-height:1.8em;">ECHO. </span><wbr /><br><span style="line-height:1.8em;">IF /I &quot;%Choice%&quot;==&quot;1&quot; GOTO SetHour </span><wbr /><br><span style="line-height:1.8em;">IF /I &quot;%Choice%&quot;==&quot;2&quot; GOTO restart </span><wbr /><br><span style="line-height:1.8em;">IF /I &quot;%Choice%&quot;==&quot;3&quot; GOTO lock </span><wbr /><br><span style="line-height:1.8em;">IF /I &quot;%Choice%&quot;==&quot;4&quot; GOTO logoff </span><wbr /><br><span style="line-height:1.8em;">IF /I &quot;%Choice%&quot;==&quot;5&quot; GOTO xiazai </span><wbr /><br><span style="line-height:1.8em;">IF /I &quot;%Choice%&quot;==&quot;6&quot; GOTO qiangzhi </span><wbr /><br><span style="line-height:1.8em;">IF /I &quot;%Choice%&quot;==&quot;7&quot; GOTO wuhen </span><wbr /><br><span style="line-height:1.8em;">IF /I &quot;%Choice%&quot;==&quot;8&quot; GOTO exit </span><wbr /><br><span style="line-height:1.8em;">rem 为避免出现返回值为空或含空格而导致程序异常,需在变量外另加双引号 </span><wbr /><br><span style="line-height:1.8em;">rem 注意,IF语句需要双等于号 </span><wbr /><br><span style="line-height:1.8em;">rem 如果输入的字符不是以上数字,将返回重新输入 </span><wbr /><br><span style="line-height:1.8em;">ECHO 选择无效，请重新输入 </span><wbr /><br><span style="line-height:1.8em;">ECHO. </span><wbr /><br><span style="line-height:1.8em;">goto  cho </span><wbr /><br><br><span style="line-height:1.8em;">:SetHour </span><wbr /><br><span style="line-height:1.8em;">set M=SetHour </span><wbr /><br><span style="line-height:1.8em;">echo.  當前時間: %time:~0,-3% </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.时间格式为24小时制:小时:分种:秒 如: 21:06:07 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">set /p a=请输入时间: </span><wbr /><br><span style="line-height:1.8em;">if &quot;%a:~6,1%&quot;==&quot;&quot; goto fail </span><wbr /><br><span style="line-height:1.8em;">if  not &quot;%a:~8,1%&quot;==&quot;&quot; goto fail </span><wbr /><br><span style="line-height:1.8em;">if &quot;%a:~7,1%&quot;==&quot;&quot; goto 007 </span><wbr /><br><span style="line-height:1.8em;">set  b=%a:~0,2% </span><wbr /><br><span style="line-height:1.8em;">set  c=%a:~3,1% </span><wbr /><br><span style="line-height:1.8em;">set  d=%a:~4,1% </span><wbr /><br><span style="line-height:1.8em;">set  e=%a:~6,1% </span><wbr /><br><span style="line-height:1.8em;">set   f=%a:~7,1% </span><wbr /><br><span style="line-height:1.8em;">set  g=%a:~2,1% </span><wbr /><br><span style="line-height:1.8em;">set  h=%a:~5,1% </span><wbr /><br><span style="line-height:1.8em;">if  not  %b% GEQ 24 GOTO next </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next </span><wbr /><br><span style="line-height:1.8em;">if   not %c% GEQ  6  GOTO next1 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next1 </span><wbr /><br><span style="line-height:1.8em;">if   not %d% GEQ 10 goto next2 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next2 </span><wbr /><br><span style="line-height:1.8em;">if   not %e% GEQ  6  goto next3 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next3 </span><wbr /><br><span style="line-height:1.8em;">if  not %f%  GEQ  10  goto next4 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next4 </span><wbr /><br><span style="line-height:1.8em;">if   &quot;%g%&quot; ==&quot;:&quot; goto next5 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next5 </span><wbr /><br><span style="line-height:1.8em;">if &quot;%h%&quot;==&quot;:&quot; goto 001 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:007 </span><wbr /><br><span style="line-height:1.8em;">set  b=%a:~0,1% </span><wbr /><br><span style="line-height:1.8em;">set  c=%a:~2,1% </span><wbr /><br><span style="line-height:1.8em;">set  d=%a:~3,1% </span><wbr /><br><span style="line-height:1.8em;">set  e=%a:~5,1% </span><wbr /><br><span style="line-height:1.8em;">set   f=%a:~6,1% </span><wbr /><br><span style="line-height:1.8em;">set  g=%a:~1,1% </span><wbr /><br><span style="line-height:1.8em;">set  h=%a:~4,1% </span><wbr /><br><span style="line-height:1.8em;">if  not  %b% GEQ 10 GOTO next </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next </span><wbr /><br><span style="line-height:1.8em;">if   not %c% GEQ  6  GOTO next1 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next1 </span><wbr /><br><span style="line-height:1.8em;">if   not %d% GEQ 10 goto next2 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next2 </span><wbr /><br><span style="line-height:1.8em;">if   not %e% GEQ  6  goto next3 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next3 </span><wbr /><br><span style="line-height:1.8em;">if  not %f%  GEQ  10  goto next4 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next4 </span><wbr /><br><span style="line-height:1.8em;">if   &quot;%g%&quot; ==&quot;:&quot; goto next5 </span><wbr /><br><span style="line-height:1.8em;">fail </span><wbr /><br><span style="line-height:1.8em;">:next5 </span><wbr /><br><span style="line-height:1.8em;">if &quot;%h%&quot;==&quot;:&quot; goto 001 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:001 </span><wbr /><br><span style="line-height:1.8em;">cls </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.当前时间:%time:~0,-2% 系统将于 %a% 执行关闭. </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">for /d %%a in ( 等待中...) do set /p b=%%a&lt;nul&amp;ping -n  2 127.1&gt;nu </span><wbr /><br><span style="line-height:1.8em;">if not  %a%==%time:~0,-3% goto  001 </span><wbr /><br><span style="line-height:1.8em;">cd\ </span><wbr /><br><span style="line-height:1.8em;">shutdown -s -t  00</span><wbr /> <br><br><span style="line-height:1.8em;">:restart </span><wbr /><br><span style="line-height:1.8em;">set M=restart </span><wbr /><br><span style="line-height:1.8em;">echo.   當前時間: %time:~0,-3% </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.时间格式为24小时制:小时:分种:秒 如: 21:06:07 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">set /p a=请输入时间: </span><wbr /><br><span style="line-height:1.8em;">if &quot;%a:~6,1%&quot;==&quot;&quot; goto fail </span><wbr /><br><span style="line-height:1.8em;">if  not &quot;%a:~8,1%&quot;==&quot;&quot; goto fail </span><wbr /><br><span style="line-height:1.8em;">if &quot;%a:~7,1%&quot;==&quot;&quot; goto 007 </span><wbr /><br><span style="line-height:1.8em;">set  b=%a:~0,2% </span><wbr /><br><span style="line-height:1.8em;">set  c=%a:~3,1% </span><wbr /><br><span style="line-height:1.8em;">set  d=%a:~4,1% </span><wbr /><br><span style="line-height:1.8em;">set  e=%a:~6,1% </span><wbr /><br><span style="line-height:1.8em;">set   f=%a:~7,1% </span><wbr /><br><span style="line-height:1.8em;">set  g=%a:~2,1% </span><wbr /><br><span style="line-height:1.8em;">set  h=%a:~5,1% </span><wbr /><br><span style="line-height:1.8em;">if  not  %b% GEQ 24 GOTO next </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next </span><wbr /><br><span style="line-height:1.8em;">if   not %c% GEQ  6  GOTO next1 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next1 </span><wbr /><br><span style="line-height:1.8em;">if   not %d% GEQ 10 goto next2 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next2 </span><wbr /><br><span style="line-height:1.8em;">if   not %e% GEQ  6  goto next3 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next3 </span><wbr /><br><span style="line-height:1.8em;">if  not %f%  GEQ  10  goto next4 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next4 </span><wbr /><br><span style="line-height:1.8em;">if   &quot;%g%&quot; ==&quot;:&quot; goto next5 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next5 </span><wbr /><br><span style="line-height:1.8em;">if &quot;%h%&quot;==&quot;:&quot; goto 002 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:007 </span><wbr /><br><span style="line-height:1.8em;">set  b=%a:~0,1% </span><wbr /><br><span style="line-height:1.8em;">set  c=%a:~2,1% </span><wbr /><br><span style="line-height:1.8em;">set  d=%a:~3,1% </span><wbr /><br><span style="line-height:1.8em;">set  e=%a:~5,1% </span><wbr /><br><span style="line-height:1.8em;">set   f=%a:~6,1% </span><wbr /><br><span style="line-height:1.8em;">set  g=%a:~1,1% </span><wbr /><br><span style="line-height:1.8em;">set  h=%a:~4,1% </span><wbr /><br><span style="line-height:1.8em;">if  not  %b% GEQ 10 GOTO next </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next </span><wbr /><br><span style="line-height:1.8em;">if   not %c% GEQ  6  GOTO next1 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next1 </span><wbr /><br><span style="line-height:1.8em;">if   not %d% GEQ 10 goto next2 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next2 </span><wbr /><br><span style="line-height:1.8em;">if   not %e% GEQ  6  goto next3 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next3 </span><wbr /><br><span style="line-height:1.8em;">if  not %f%  GEQ  10  goto next4 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next4 </span><wbr /><br><span style="line-height:1.8em;">if   &quot;%g%&quot; ==&quot;:&quot; goto next5 </span><wbr /><br><span style="line-height:1.8em;">fail </span><wbr /><br><span style="line-height:1.8em;">:next5 </span><wbr /><br><span style="line-height:1.8em;">if &quot;%h%&quot;==&quot;:&quot; goto 002 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:002 </span><wbr /><br><span style="line-height:1.8em;">cls </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.当前时间:%time:~0,-2% 系统将于 %a% 执行重启 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">for /d %%a in ( 等待中...) do set /p b=%%a&lt;nul&amp;ping -n  2 127.1&gt;nu </span><wbr /><br><span style="line-height:1.8em;">if not  %a%==%time:~0,-3% goto  002 </span><wbr /><br><span style="line-height:1.8em;">cd\ </span><wbr /><br><span style="line-height:1.8em;">shutdown -r -t  00</span><wbr /> <br><br><span style="line-height:1.8em;">:lock </span><wbr /><br><span style="line-height:1.8em;">set M=lock </span><wbr /><br><span style="line-height:1.8em;">echo.  當前時間: %time:~0,-3% </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.时间格式为24小时制:小时:分种:秒 如: 21:06:07 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">set /p a=请输入时间: </span><wbr /><br><span style="line-height:1.8em;">if &quot;%a:~6,1%&quot;==&quot;&quot; goto fail </span><wbr /><br><span style="line-height:1.8em;">if  not &quot;%a:~8,1%&quot;==&quot;&quot; goto fail </span><wbr /><br><span style="line-height:1.8em;">if &quot;%a:~7,1%&quot;==&quot;&quot; goto 007 </span><wbr /><br><span style="line-height:1.8em;">set  b=%a:~0,2% </span><wbr /><br><span style="line-height:1.8em;">set  c=%a:~3,1% </span><wbr /><br><span style="line-height:1.8em;">set  d=%a:~4,1% </span><wbr /><br><span style="line-height:1.8em;">set  e=%a:~6,1% </span><wbr /><br><span style="line-height:1.8em;">set   f=%a:~7,1% </span><wbr /><br><span style="line-height:1.8em;">set  g=%a:~2,1% </span><wbr /><br><span style="line-height:1.8em;">set  h=%a:~5,1% </span><wbr /><br><span style="line-height:1.8em;">if  not  %b% GEQ 24 GOTO next </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next </span><wbr /><br><span style="line-height:1.8em;">if   not %c% GEQ  6  GOTO next1 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next1 </span><wbr /><br><span style="line-height:1.8em;">if   not %d% GEQ 10 goto next2 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next2 </span><wbr /><br><span style="line-height:1.8em;">if   not %e% GEQ  6  goto next3 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next3 </span><wbr /><br><span style="line-height:1.8em;">if  not %f%  GEQ  10  goto next4 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next4 </span><wbr /><br><span style="line-height:1.8em;">if   &quot;%g%&quot; ==&quot;:&quot; goto next5 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next5 </span><wbr /><br><span style="line-height:1.8em;">if &quot;%h%&quot;==&quot;:&quot; goto 003 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:003 </span><wbr /><br><span style="line-height:1.8em;">cls </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.当前时间:%time:~0,-2% 系统将于 %a% 锁定计算机 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">for /d %%a in ( 等待中...) do set /p b=%%a&lt;nul&amp;ping -n  2 127.1&gt;nu </span><wbr /><br><span style="line-height:1.8em;">if not  %a%==%time:~0,-3% goto  003 </span><wbr /><br><span style="line-height:1.8em;">cd\ </span><wbr /><br><span style="line-height:1.8em;">c: </span><wbr /><br><span style="line-height:1.8em;">rundll32.exe user32.dll,LockWorkStation </span><wbr /><br><span style="line-height:1.8em;">goto start</span><wbr /> <br><br><span style="line-height:1.8em;">:logoff </span><wbr /><br><span style="line-height:1.8em;">set M=logoff </span><wbr /><br><span style="line-height:1.8em;">echo.   當前時間: %time:~0,-3% </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.时间格式为24小时制:小时:分种:秒 如: 21:06:07 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">set /p a=请输入时间: </span><wbr /><br><span style="line-height:1.8em;">if &quot;%a:~6,1%&quot;==&quot;&quot; goto fail </span><wbr /><br><span style="line-height:1.8em;">if  not &quot;%a:~8,1%&quot;==&quot;&quot; goto fail </span><wbr /><br><span style="line-height:1.8em;">if &quot;%a:~7,1%&quot;==&quot;&quot; goto 007 </span><wbr /><br><span style="line-height:1.8em;">set  b=%a:~0,2% </span><wbr /><br><span style="line-height:1.8em;">set  c=%a:~3,1% </span><wbr /><br><span style="line-height:1.8em;">set  d=%a:~4,1% </span><wbr /><br><span style="line-height:1.8em;">set  e=%a:~6,1% </span><wbr /><br><span style="line-height:1.8em;">set   f=%a:~7,1% </span><wbr /><br><span style="line-height:1.8em;">set  g=%a:~2,1% </span><wbr /><br><span style="line-height:1.8em;">set  h=%a:~5,1% </span><wbr /><br><span style="line-height:1.8em;">if  not  %b% GEQ 24 GOTO next </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next </span><wbr /><br><span style="line-height:1.8em;">if   not %c% GEQ  6  GOTO next1 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next1 </span><wbr /><br><span style="line-height:1.8em;">if   not %d% GEQ 10 goto next2 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next2 </span><wbr /><br><span style="line-height:1.8em;">if   not %e% GEQ  6  goto next3 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next3 </span><wbr /><br><span style="line-height:1.8em;">if  not %f%  GEQ  10  goto next4 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next4 </span><wbr /><br><span style="line-height:1.8em;">if   &quot;%g%&quot; ==&quot;:&quot; goto next5 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next5 </span><wbr /><br><span style="line-height:1.8em;">if &quot;%h%&quot;==&quot;:&quot; goto 004 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:007 </span><wbr /><br><span style="line-height:1.8em;">set  b=%a:~0,1% </span><wbr /><br><span style="line-height:1.8em;">set  c=%a:~2,1% </span><wbr /><br><span style="line-height:1.8em;">set  d=%a:~3,1% </span><wbr /><br><span style="line-height:1.8em;">set  e=%a:~5,1% </span><wbr /><br><span style="line-height:1.8em;">set   f=%a:~6,1% </span><wbr /><br><span style="line-height:1.8em;">set  g=%a:~1,1% </span><wbr /><br><span style="line-height:1.8em;">set  h=%a:~4,1% </span><wbr /><br><span style="line-height:1.8em;">if  not  %b% GEQ 10 GOTO next </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next </span><wbr /><br><span style="line-height:1.8em;">if   not %c% GEQ  6  GOTO next1 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next1 </span><wbr /><br><span style="line-height:1.8em;">if   not %d% GEQ 10 goto next2 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next2 </span><wbr /><br><span style="line-height:1.8em;">if   not %e% GEQ  6  goto next3 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next3 </span><wbr /><br><span style="line-height:1.8em;">if  not %f%  GEQ  10  goto next4 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next4 </span><wbr /><br><span style="line-height:1.8em;">if   &quot;%g%&quot; ==&quot;:&quot; goto next5 </span><wbr /><br><span style="line-height:1.8em;">fail </span><wbr /><br><span style="line-height:1.8em;">:next5 </span><wbr /><br><span style="line-height:1.8em;">if &quot;%h%&quot;==&quot;:&quot; goto 004 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:004 </span><wbr /><br><span style="line-height:1.8em;">cls </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.当前时间:%time:~0,-2% 系统将于 %a% 注销计算机 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">for /d %%a in ( 等待中...) do set /p b=%%a&lt;nul&amp;ping -n  2 127.1&gt;nu </span><wbr /><br><span style="line-height:1.8em;">if not  %a%==%time:~0,-3% goto  004 </span><wbr /><br><span style="line-height:1.8em;">cd\ </span><wbr /><br><span style="line-height:1.8em;">c: </span><wbr /><br><span style="line-height:1.8em;">shutdown -l</span><wbr /> <br><br><br><span style="line-height:1.8em;">:xiazai </span><wbr /><br><span style="line-height:1.8em;">set M=xiazai </span><wbr /><br><span style="line-height:1.8em;">echo.   當前時間: %time:~0,-3% </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.时间格式为24小时制:小时:分种:秒 如: 21:06:07 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">set /p a=请输入时间: </span><wbr /><br><span style="line-height:1.8em;">if &quot;%a:~6,1%&quot;==&quot;&quot; goto fail </span><wbr /><br><span style="line-height:1.8em;">if  not &quot;%a:~8,1%&quot;==&quot;&quot; goto fail </span><wbr /><br><span style="line-height:1.8em;">if &quot;%a:~7,1%&quot;==&quot;&quot; goto 007 </span><wbr /><br><span style="line-height:1.8em;">set  b=%a:~0,2% </span><wbr /><br><span style="line-height:1.8em;">set  c=%a:~3,1% </span><wbr /><br><span style="line-height:1.8em;">set  d=%a:~4,1% </span><wbr /><br><span style="line-height:1.8em;">set  e=%a:~6,1% </span><wbr /><br><span style="line-height:1.8em;">set   f=%a:~7,1% </span><wbr /><br><span style="line-height:1.8em;">set  g=%a:~2,1% </span><wbr /><br><span style="line-height:1.8em;">set  h=%a:~5,1% </span><wbr /><br><span style="line-height:1.8em;">if  not  %b% GEQ 24 GOTO next </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next </span><wbr /><br><span style="line-height:1.8em;">if   not %c% GEQ  6  GOTO next1 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next1 </span><wbr /><br><span style="line-height:1.8em;">if   not %d% GEQ 10 goto next2 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next2 </span><wbr /><br><span style="line-height:1.8em;">if   not %e% GEQ  6  goto next3 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next3 </span><wbr /><br><span style="line-height:1.8em;">if  not %f%  GEQ  10  goto next4 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next4 </span><wbr /><br><span style="line-height:1.8em;">if   &quot;%g%&quot; ==&quot;:&quot; goto next5 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next5 </span><wbr /><br><span style="line-height:1.8em;">if &quot;%h%&quot;==&quot;:&quot; goto 005 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:007 </span><wbr /><br><span style="line-height:1.8em;">set  b=%a:~0,1% </span><wbr /><br><span style="line-height:1.8em;">set  c=%a:~2,1% </span><wbr /><br><span style="line-height:1.8em;">set  d=%a:~3,1% </span><wbr /><br><span style="line-height:1.8em;">set  e=%a:~5,1% </span><wbr /><br><span style="line-height:1.8em;">set   f=%a:~6,1% </span><wbr /><br><span style="line-height:1.8em;">set  g=%a:~1,1% </span><wbr /><br><span style="line-height:1.8em;">set  h=%a:~4,1% </span><wbr /><br><span style="line-height:1.8em;">if  not  %b% GEQ 10 GOTO next </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next </span><wbr /><br><span style="line-height:1.8em;">if   not %c% GEQ  6  GOTO next1 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next1 </span><wbr /><br><span style="line-height:1.8em;">if   not %d% GEQ 10 goto next2 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next2 </span><wbr /><br><span style="line-height:1.8em;">if   not %e% GEQ  6  goto next3 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next3 </span><wbr /><br><span style="line-height:1.8em;">if  not %f%  GEQ  10  goto next4 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:next4 </span><wbr /><br><span style="line-height:1.8em;">if   &quot;%g%&quot; ==&quot;:&quot; goto next5 </span><wbr /><br><span style="line-height:1.8em;">fail </span><wbr /><br><span style="line-height:1.8em;">:next5 </span><wbr /><br><span style="line-height:1.8em;">if &quot;%h%&quot;==&quot;:&quot; goto 005 </span><wbr /><br><span style="line-height:1.8em;">goto fail </span><wbr /><br><span style="line-height:1.8em;">:005 </span><wbr /><br><span style="line-height:1.8em;">cls </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.当前时间:%time:~0,-2% 系统将于 %a% 打开讯雷 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.========================================================== </span><wbr /><br><span style="line-height:1.8em;">echo.                     追風^ō^無痕                                             </span><wbr /><br><span style="line-height:1.8em;">echo.    風虽然从不被了解,但始终认为我就是那颗&quot;天煞孤星&quot;!   </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.            心曾遗失在某处,何时找回------------               </span><wbr /><br><span style="line-height:1.8em;">echo.        待我心清如水时       </span><wbr /><br><span style="line-height:1.8em;">echo.                     水中倒影扔是你   </span><wbr /><br><span style="line-height:1.8em;">echo.                   </span><wbr /><br><span style="line-height:1.8em;">echo.                   QQ:271284919                                           </span><wbr /><br><span style="line-height:1.8em;">echo.========================================================== </span><wbr /><br><span style="line-height:1.8em;">for /d %%a in ( 等待中...) do set /p b=%%a&lt;nul&amp;ping -n  2 127.1&gt;nul</span><wbr /> <br><span style="line-height:1.8em;">if not  %a%==%time:~0,-3% goto  005 </span><wbr /><br><span style="line-height:1.8em;">echo.讯雷打开OK </span><wbr /><br><span style="line-height:1.8em;">rem 根据自己电脑讯雷的路径写.......</span><wbr /> <br><span style="line-height:1.8em;">cd\ </span><wbr /><br><span style="line-height:1.8em;">d: </span><wbr /><br><span style="line-height:1.8em;">cd  Thunder\Program </span><wbr /><br><span style="line-height:1.8em;">Thunder.exe</span><wbr /> <br><span style="color:#000033;line-height:1.8em;">goto start</span><wbr /> <br><br><span style="line-height:1.8em;">:exit </span><wbr /><br><span style="line-height:1.8em;">set M=exit </span><wbr /><br><span style="line-height:1.8em;">for /d %%a in ( 欢迎 来到 無痕 魔幻 桌面 . .  .) do set /p b=%%a&lt;nul&amp;ping -n  1 127.1&gt;nu </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">for /d %%a in ( 3 2 1... ) do set /p b=%%a&lt;nul&amp;ping -n 3 127.1&gt;nul </span><wbr /><br><span style="line-height:1.8em;">exit</span><wbr /> <br><br><span style="line-height:1.8em;">:fail </span><wbr /><br><span style="line-height:1.8em;">cls </span><wbr /><br><span style="line-height:1.8em;">echo.请输入正确的24小时制时間! 如:19:25:26 </span><wbr /><br><span style="line-height:1.8em;">echo.=============================================== </span><wbr /><br><span style="line-height:1.8em;">goto %M%</span><wbr /> <br><br><span style="line-height:1.8em;">:qiangzhi </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.本程序应用于与任意号码聊天，也可以用于骚扰把你加入黑名单的Q友…… </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.有空欢迎到無痕的QQ空间看看 </span><wbr /><br><a href="http://271284919.qzone.qq.com/" target="_blank"><span style="color:#000033;line-height:1.8em;">http://271284919.qzone.qq.com/</span><wbr /></a><wbr /> <br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.QQ、QQ空间、QQ音乐、flv播放器制作，还有一些常用的网页工具.网页技巧。 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.请先打开QQ！！否则本程序无效！！！ </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.有时间先去無痕空间看看吧....不要开QQ只和MM聊哦！ </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">pause </span><wbr /><br><span style="line-height:1.8em;">&quot;C:\Program Files\Internet Explorer\IEXPLORE.EXE&quot; </span><wbr /><br><a href="http://271284919.qzone.qq.com/" target="_blank"><span style="color:#000033;line-height:1.8em;">http://271284919.qzone.qq.com</span><wbr /></a><wbr /> <br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.好了你可以和别的MM聊了...無痕不打扰你了... </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">:a </span><wbr /><br><span style="line-height:1.8em;">Set /p num=请输入你想要强制聊天的人的QQ号码: </span><wbr /><br><span style="line-height:1.8em;">If /I &quot;%num%&quot;==&quot;n&quot; Exit </span><wbr /><br><span style="line-height:1.8em;">start tencent://Message/?Uin=%num% </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.点击任意键选择另一个人。 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">pause </span><wbr /><br><span style="line-height:1.8em;">cls </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.怎么样还不错吧....泡到MM要请风哥吃饭哦。 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.有空欢迎到無痕的QQ空间看看 </span><wbr /><br><a href="http://271284919.qzone.qq.com/" target="_blank"><span style="color:#000033;line-height:1.8em;">http://271284919.qzone.qq.com/</span><wbr /></a><wbr /> <br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo.QQ,QQ空间 ,QQ音乐.flv播放器制作，还有一些常用的网页工具.网页技巧。 </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">echo. </span><wbr /><br><span style="line-height:1.8em;">Goto a </span><wbr /><br><br><span style="line-height:1.8em;">:wuhen </span><wbr /><br><span style="line-height:1.8em;">start tencent://Message/?Uin=271284919 </span><wbr /><br><br>============================================================== <br>欢迎提交BUG,有兴趣的可以一起交流...网上也有这样的代码,不过要开一个服务才能实现. <br>这个不需要开启后台服务..判断输入的时间是否正确有点麻烦... <br><br>效果如下: <br>                       <br><div style="text-align:center;"><wbr /><a href="http://b17.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc3effda14564f389582c17c5dab31c2965ec4d7adcba80ed6a07b0b43b1d97462a1ff0cd3a36db10738c09befe4b971b2ffa35452eaab1e652984ec4a12485fcd28a9e48c" target="_blank"><img style="border:0;" src="http://b17.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc3effda14564f389582c17c5dab31c2965ec4d7adcba80ed6a07b0b43b1d97462a1ff0cd3a36db10738c09befe4b971b2ffa35452eaab1e652984ec4a12485fcd28a9e48c" /></a><wbr /> </div><br><div style="text-align:center;"><wbr /><a href="http://b8.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fcad1ef08212ef25cbec35693cca9ab1981ef7151ebbfd778f288266dc7899edd3a0f991f90a53c55457ad6d571683614e1dc2db2b2792d5219d2dc19efcaed9ae65b4ff45" target="_blank"><img style="border:0;" src="http://b8.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fcad1ef08212ef25cbec35693cca9ab1981ef7151ebbfd778f288266dc7899edd3a0f991f90a53c55457ad6d571683614e1dc2db2b2792d5219d2dc19efcaed9ae65b4ff45" /></a><wbr /></div>批处理写好后,我们也可以把它转化成EXE文件,再换个图标呵呵.<wbr /><a href="http://b16.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc036cf8207bb67026a1b171a997ad6d399deeb768c207eb46c278bb8c3faa1ffa650a3f7ba0c630cdabf2ab8a2ab673066c5d6da0faeb503a1bb1e62d453afaeb7b0c621d" target="_blank"><img style="border:0;" src="http://b16.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc036cf8207bb67026a1b171a997ad6d399deeb768c207eb46c278bb8c3faa1ffa650a3f7ba0c630cdabf2ab8a2ab673066c5d6da0faeb503a1bb1e62d453afaeb7b0c621d" /></a><wbr />可爱的貓貓.. <br><br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[271284919@qq.com(追風〓〓無痕)]]></author>
<comments>http://271284919.qzone.qq.com/blog/1248603562#comment</comments>
<qz:effect>142606865</qz:effect>
<pubDate>Sun, 26 Jul 2009 10:19:22 GMT</pubDate>
<guid>http://271284919.qzone.qq.com/blog/1248603562</guid>
</item>

<item>
<title><![CDATA[此心不渝.契--血之契约]]></title>
<link>http://271284919.qzone.qq.com/blog/1241362213</link>
<description><![CDATA[<div style="text-align:center;">在很古老的时候，传说有一个咒语，如果能在月光下完成这个咒语的话，一对有情人将得到上天的庇佑，永不变心，······<br>皎洁的月光下，相继印出两个身影，长发在月光下显得特别好看。<br>在天地万物的见证之下，以鲜血为引，以灵魂为媒，以山海为根，就此盟誓。我愿与眼前此人，结下亿万年不变的情缘，直到缘尽之时。此心不渝。契····<br>他们将彼此的食指咬破贴在一起，顿时食指之间亮起一点点金光，金光中间是他们彼此的两地鲜血，鲜血在光芒之中不断缠绕，最后结为一体，渐渐的，一分为二，两点光芒分别飞入他们彼此的额心处，<br>此心不渝，此心不渝，此心不渝·········</div> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[271284919@qq.com(追風〓〓無痕)]]></author>
<comments>http://271284919.qzone.qq.com/blog/1241362213#comment</comments>
<qz:effect>142606864</qz:effect>
<pubDate>Sun, 03 May 2009 14:50:13 GMT</pubDate>
<guid>http://271284919.qzone.qq.com/blog/1241362213</guid>
</item>

<item>
<title><![CDATA[有一種说不出的感觉]]></title>
<link>http://271284919.qzone.qq.com/blog/1236159259</link>
<description><![CDATA[<br><div style="text-align:center;">有一種說不出的感覺,唯有時間來證明!....... </div><div style="text-align:center;">私はあなたを忘れてはならない。あなたは、過去のが好き！</div><div style="text-align:center;">我只要简单的幸福...</div><div style="text-align:center;">Only one day I can do what I want to do..</div><div style="text-align:center;">sometimes,I was aways thinking..</div><div style="text-align:center;">what I can do?</div><div style="text-align:center;">how to do ..</div><div style="text-align:center;">如果哪一天你看不到我在线了..</div><div style="text-align:center;">可能我就去..追疯..</div><div style="text-align:center;">可能我已从这世界消失..無痕</div><div style="text-align:center;">one day I  disappeared you will Remember me?</div><div style="text-align:center;">------------------------------------------------------------------------------</div><div style="text-align:center;">什麽是忘記,是腦海裏一片空白,對於她於同茫茫大海</div><div style="text-align:center;">一滴水珠,找不到她的位置,分不清它的樣子,如此陌生..</div><div style="text-align:center;">什麽是心血來潮,心血來潮是心裏突然想起她的樣子</div><div style="text-align:center;">說過的話....如此熟悉..</div><div style="text-align:center;">什麽是累,累眼睛不想再看這個世界,</div><div style="text-align:center;">腦子卻仍然處於滿載狀態.難以入睡.</div><div style="text-align:center;">マインドの必要性を強く投げる。</div><div style="text-align:center;">where am i..</div><div style="text-align:center;">who am i..</div><div style="text-align:center;">goto end</div><div style="text-align:center;">:end</div><div style="text-align:center;">pause</div><div style="text-align:center;">--------------------------------------------------------------</div><div style="text-align:center;">来不及享受现有的生活,却要开始另一段生活....</div><div style="text-align:center;">没事OC一下Q6600(400*8)..</div><div style="text-align:center;">1333的内存800的用哎..黄金比1:1..没办法.</div><div style="text-align:center;"><wbr /><a href="http://b16.photo.store.qq.com/http_imgload.cgi?/rurl4_b=7c1bff1d4ec5db181149e85327dc061f38fe98f5d9e9a63b573cd82d5f53cfd8e3205cdf03e0b50f6c498a700fe6607cedc6422b8e1e7edd61d85f31b8b5fa7c2ac5063235977f9816513cf91eff3ebbee7c36da" target="_blank"><img style="border:0;" src="http://b16.photo.store.qq.com/http_imgload.cgi?/rurl4_b=7c1bff1d4ec5db181149e85327dc061f38fe98f5d9e9a63b573cd82d5f53cfd8e3205cdf03e0b50f6c498a700fe6607cedc6422b8e1e7edd61d85f31b8b5fa7c2ac5063235977f9816513cf91eff3ebbee7c36da" /></a><wbr /></div><div style="text-align:right">-------09/05/11 </div><div style="text-align:center;">----------------------------------------------------------------</div><div style="text-align:center;">欲望是如此難以满足... 就这样一次次的放纵自己的欲望.</div><div style="text-align:center;">终于HD4850 交火了,没有想像的那么强大,不过还可以.</div><div style="text-align:center;"><wbr /><a href="http://b19.photo.store.qq.com/http_imgload.cgi?/rurl4_b=7c1bff1d4ec5db181149e85327dc061fb1ef9f76bd6efed44d74395b3c42afc23b51ad5c40f348629729a9582defd7ea61bca89dec76c4eeef341c26f8446e52a0e8d7308a42d1d65879147878019cb7bdc33c15" target="_blank"><img style="border:0;" src="http://b19.photo.store.qq.com/http_imgload.cgi?/rurl4_b=7c1bff1d4ec5db181149e85327dc061fb1ef9f76bd6efed44d74395b3c42afc23b51ad5c40f348629729a9582defd7ea61bca89dec76c4eeef341c26f8446e52a0e8d7308a42d1d65879147878019cb7bdc33c15" /></a><wbr /> </div> <br><div style="text-align:center;">3DMARK 06分数</div><div style="text-align:center;"><wbr /><a href="http://b19.photo.store.qq.com/http_imgload.cgi?/rurl4_b=7c1bff1d4ec5db181149e85327dc061fe89025ea026bff24ec3ede8c9f392dd30b55c0b9b96c3d427e14f84babc1ec5a89906a0ed07d005c843c7af2147b31de2e45c3ece93f7d29dff0e2897fae87144ea26844" target="_blank"><img style="border:0;" src="http://b19.photo.store.qq.com/http_imgload.cgi?/rurl4_b=7c1bff1d4ec5db181149e85327dc061fe89025ea026bff24ec3ede8c9f392dd30b55c0b9b96c3d427e14f84babc1ec5a89906a0ed07d005c843c7af2147b31de2e45c3ece93f7d29dff0e2897fae87144ea26844" /></a><wbr /> </div><div style="text-align:center;">3DMARK 03分数</div><div style="text-align:center;">似乎CPU是系统性能的颈贫..有钱再上Q9550..</div><div style="text-align:right">                                                              --09/05/13</div><div style="text-align:center;"> </div><div style="text-align:center;"> </div><div style="text-align:center;">=====================================================</div><div style="text-align:center;">There's no friend as there's no Enemy......</div><div style="text-align:center;">what's friend ?</div><div style="text-align:center;">I  will  be Crazy</div><div style="text-align:center;">but I want to be Understanded </div><div style="text-align:center;">GOD  please help me !</div><div style="text-align:center;">pause </div><div style="text-align:center;"> </div><div style="text-align:center;"> 《寂静岭4：房间》主题曲</div><div style="text-align:center;">Room of Angel</div><div style="text-align:center;">You lie, silent there before me .  你静静地躺在那里<br>Your tears, they mean nothing to me.  你的眼泪  对我没有意义<br>The wind, howling at the window  风在窗外哭啼<br>The love you never gave,  爱 你从未给过我的<br>I give to you -really don't deserve it -  我给了你 你确实不值得<br>but now, there's nothing you can do  但是现在 你已无能为力<br>So sleep in your only memory  所以睡吧 在你唯一的记忆里<br>And weep, my dearest mother  并且哭泣吧 我最爱的母亲<br>Here's a lullaby to close your eyes, (goodbye)  一首摇篮曲阖上你的眼睛 再见<br>It was always you that I despised  我对你 只有鄙夷<br>I don't feel enough for you to cry, (oh my)  我不值得为你哭泣 我的爱人<br>Here's a lullaby to close your eyes, (goodbye goodbye)...  一首摇篮曲阖上你的眼睛 再见</div><div style="text-align:center;">So insignificant  多么微不足道<br>Sleeping dormant deep inside of me  静静地沉睡在我身体里<br>Are you hiding away, lost Under the sewers  你藏起来了吗  走丢了吧  在下水道里<br>Maybe flying high In the clouds  又或许在云里飞翔<br>Perhaps you're happy without me  或许没有我 你会快乐<br>So many seeds have been sown on the field  那么多种子已经被播种在田野里<br>And who could sprout up so blessedly if I had died  只要我死了 它们将幸福地发芽<br>I would have never felt sad at all  我一点都不该感到悲伤<br>You will not hear me say I'm sorry  即使你听不见我说 对不起<br>Where is the light Wonder if it's weeping somewhere  光在哪里？想知道它是不是在哪里哭泣<br>Here's a lullaby to close your eyes, goodbye  一首摇篮曲阖上你的眼睛 再见<br>It was always you that I despised  我对你 只有鄙夷<br>I don't feel enough for you to cry, oh my  我不值得为你哭泣 我的爱人<br>Here's a lullaby to close your eyes, goodbye goodbye... 一首摇篮曲阖上你的眼睛 再见 再见</div><div style="text-align:center;">Here's a lullaby to close your eyes, goodbye  一首摇篮曲阖上你的眼睛 再见<br>It was always you that I despised  我对你 只有鄙夷<br>I don't feel enough for you to cry, oh my  我不值得为你哭泣 我的爱人<br>Here's a lullaby to close your eyes, goodbye goodbye... 一首摇篮曲阖上你的眼睛 再见 再见</div><div style="text-align:center;">Here's a lullaby to close your eyes, goodbye  一首摇篮曲阖上你的眼睛 再见<br>It was always you that I despised  我对你 只有鄙夷<br>I don't feel enough for you to cry, oh my  我不值得为你哭泣 我的爱人<br>Here's a lullaby to close your eyes, goodbye goodbye... 一首摇篮曲阖上你的眼睛 再见 再见</div><div style="text-align:center;">Here's a lullaby to close your eyes, goodbye  一首摇篮曲阖上你的眼睛 再见<br>It was always you that I despised  我对你 只有鄙夷<br>I don't feel enough for you to cry, oh my  我不值得为你哭泣 我的爱人<br>Here's a lullaby to close your eyes, goodbye goodbye... 一首摇篮曲阖上你的眼睛 再见 再见<br>END</div><br><object codeBase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab#version=8,0,0,0" height="100" width="410" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="musicFlash**" id="musicFlash0" src="http://imgcache.qq.com/music/musicbox_v2_1/img/MusicFlash.swf" ubb="894507321|1|http&amp;#58;//playjc&amp;#46;gupiaobaba&amp;#46;com/591b/SID&amp;#45;H777/SID77777/RID&amp;#45;TT8/RID&amp;#45;H70/7777700076921ymgv&amp;#46;MP3|122|0|12222"><param value="http://imgcache.qq.com/music/musicbox_v2_1/img/MusicFlash.swf" name="movie" /><param value="#ffffff" name="bgColor" /><param value="showall" name="scale" /><param value="transparent" name="wmode" /><param value="true" name="menu" /><param value="always" name="allowScriptAccess" /></object><wbr /><div style="text-align:center;">                                                                                                                                ---8/6/09</div><div style="text-align:center;">===================================================</div><div style="text-align:center;">夜深没事做,极限OC一下,当然主板和内存的问题,目前只能到这个频率.</div><div style="text-align:center;"><br><wbr /><a href="http://b16.photo.store.qq.com/http_imgload.cgi?/rurl4_b=7c1bff1d4ec5db181149e85327dc061fa6ab867e3fc60b966eaa0386e2f73b8e2efb56c32b9d788fdb9e2dffaea3d29230b38be238de3390c3cbdce836597a380a89e864c9161dd1f93fdce567185bb1faa81e2f" target="_blank"><img style="width:670px;height:434px;border:0;" src="http://b16.photo.store.qq.com/http_imgload.cgi?/rurl4_b=7c1bff1d4ec5db181149e85327dc061fa6ab867e3fc60b966eaa0386e2f73b8e2efb56c32b9d788fdb9e2dffaea3d29230b38be238de3390c3cbdce836597a380a89e864c9161dd1f93fdce567185bb1faa81e2f" /></a><wbr /></div><div style="text-align:center;">HD4850 CrossFireX+Q6600 OC 3.4 CPU仍是颈贫.</div><div style="text-align:center;"> </div><div style="text-align:center;"><wbr /><a href="http://b24.photo.store.qq.com/http_imgload.cgi?/rurl4_b=7c1bff1d4ec5db181149e85327dc061f9c461dcd1fb83f95e13f84f48151da5cf28009d48657b16ae48588b3cd4ec96c3d9b97efbe3221eee2e0587cb881267e12bf118005a9a75dbbd0b5dc8a693605b796c723" target="_blank"><img style="width:670px;height:300px;border:0;" src="http://b24.photo.store.qq.com/http_imgload.cgi?/rurl4_b=7c1bff1d4ec5db181149e85327dc061f9c461dcd1fb83f95e13f84f48151da5cf28009d48657b16ae48588b3cd4ec96c3d9b97efbe3221eee2e0587cb881267e12bf118005a9a75dbbd0b5dc8a693605b796c723" /></a><wbr /><br></div><div style="text-align:center;"> </div><div style="text-align:center;">HD4850 CrossFirreX+Q6600 OC 3.3  分数有点夸张,三张4850交火的水准..CPU仍是颈贫.</div><div style="text-align:center;">                                                                                                                                  --------8/02/09</div><div style="text-align:center;"> </div><div style="text-align:center;">================================孤寂的分割线===============================<br></div><div style="text-align:center;"> </div><div style="text-align:center;">当你晚上睡不着的时候，你会找谁-----说话，聊天。</div><div style="text-align:center;"> </div><div style="text-align:center;"> 杨柳岸，晓風残月，此去径年。便纵有千种风情，更与何人说！</div><div style="text-align:center;"><br>                                                                                                                                           ------09/10/25</div><div style="text-align:center;">                                                                                                                                           </div><br> <br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[271284919@qq.com(追風〓〓無痕)]]></author>
<comments>http://271284919.qzone.qq.com/blog/1236159259#comment</comments>
<qz:effect>142623249</qz:effect>
<pubDate>Wed, 04 Mar 2009 09:34:19 GMT</pubDate>
<guid>http://271284919.qzone.qq.com/blog/1236159259</guid>
</item>

<item>
<title><![CDATA[09年男人的梦幻装备]]></title>
<link>http://271284919.qzone.qq.com/blog/1234929075</link>
<description><![CDATA[<br><br>今天写个最“牛”的吧，哈哈，下面就给大家带来一套最、最、最贵的配置，价格高达10万！！！ <br><br><span style="font-weight:bold"><wbr />CPU：Intel Core i7 965</span><wbr /> <br><br><div style="text-align:center;"><wbr /><a href="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc3c80d9f25946d887ec1cf1f43bc03cba79e56c8122ef2b0d7b8524353369d900fd164614b06d4167398f8fd389c63a53062051e4fe962b7fbe387f592561585585d21a04" target="_blank"><img style="border:0;" src="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc3c80d9f25946d887ec1cf1f43bc03cba79e56c8122ef2b0d7b8524353369d900fd164614b06d4167398f8fd389c63a53062051e4fe962b7fbe387f592561585585d21a04" /></a><wbr /></div><br><br>i7 965至尊版，具备3.2G超高主频，并且不锁倍频，性能超强，是Intel目前最强的处理器。作为一款至尊版的Core i7处理器，Intel Core i7 965 Extreme Edition包装上都与众不同，为少见的黑盒包装，表明它的高贵身份。Intel Core i7 965 Extreme Edition采用原生4核Nehalem架构，主频达到3.2G，外频133，倍频24X，QPI总线为6.4GT/S。采用了全新的LGA1366接口，集成8M（4*2）三级缓存，电压为1.148V，功耗为130W。 <br>点评：Intel Core i7 965是i7系列中的顶级产品，具有高达3.2G主频，四核心以及8M三级缓存等特点。它目前的市场价也是最贵的，一般在<span style="font-weight:bold"><wbr /><span style="color:blue;line-height:1.8em;">8999</span><wbr /></span><wbr />元左右，而且需要订货。 <br><br><span style="font-weight:bold"><wbr />主板：华硕 Rampage II Extreme</span><wbr /> <br><br><div style="text-align:center;"><wbr /><a href="http://b13.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc2846c537c7137f665e07ad0303609bea1e9f6770b680fd2d12f2fc5b375e51275e07670d1b4961cd0ab859ccc6679cbeccf5e18f4d22cf1d095b47ac0cc6a6c32142d72e" target="_blank"><img style="border:0;" src="http://b13.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc2846c537c7137f665e07ad0303609bea1e9f6770b680fd2d12f2fc5b375e51275e07670d1b4961cd0ab859ccc6679cbeccf5e18f4d22cf1d095b47ac0cc6a6c32142d72e" /></a><wbr /></div><br><br>华硕 Rampage II Extreme主板使用了黑色的PCB版，表示了华硕对这款主板的设计上的强大的自信，芯片组使用的是X58+ICH10R，这是目前Intel平台做强大的芯片组了。这款主板使用了大板型设计，所有应该有的接口都一应俱全，特别是3条PCI-E 2.0 16X插槽非常显眼，整体热管散热也是非常豪华。在内存接口方面，华硕 Rampage II Extreme主板提供了六条DDR3内存插槽，完全可以满足玩家们的使用需求。 <br>华硕 Rampage II Extreme主板的CPU供电部分使用了8相供电，每相都配备了两个并联的封闭电感，并且在电容的使用上都是使用了高品质的富士通电容，即便是超频的情况下也能提供非常稳定的电流供应。 <br>华硕 Rampage II Extreme主板上的3条PCI-E 2.0 16X插槽，可以实现三路SLI，确实是非常豪华的设计，此外，还提供了两条PCI-E 2.0 1X插槽和1条PCI插槽。 <br>华硕 Rampage II Extreme还提供了7个SATA接口和一个IDE接口，并且在背部I/O接口部分还有一个E-SATA接口。 <br>点评：华硕这款顶级的X58主板，属于玩家国度系列，具备一系列专为玩家设计的功能以及技术，均为普通产品可比。就连它<span style="color:blue;line-height:1.8em;"><span style="font-weight:bold"><wbr />3888</span><wbr /></span><wbr />元的价格，也肯定令人咋舌吧！ <br><br><span style="font-weight:bold"><wbr />内存：芝奇 DDR3 1333 6G套装(F3-10666CL9T-6GBNQ)</span><wbr /> <br><br><div style="text-align:center;"><wbr /><a href="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc7f7e79ce75cb6f58d482b75c34aa4901e66a7ffbe59f9dd131b80b76b3e22b79c7e6b3bdc55c69011f2c4d7d9f41f01a9613527c2cdaffd1d5b4ed906b7009fcdbe3758a" target="_blank"><img style="border:0;" src="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc7f7e79ce75cb6f58d482b75c34aa4901e66a7ffbe59f9dd131b80b76b3e22b79c7e6b3bdc55c69011f2c4d7d9f41f01a9613527c2cdaffd1d5b4ed906b7009fcdbe3758a" /></a><wbr /></div><br><br>芝奇 DDR3 1333 6G套装(F3-10666CL9T-6GBNQ)是首款由3条内存组成的6GB套装，正好符合i7处理器的需求。包装方面，仍然为塑料透明包装，简洁明了。 <br>这款内存的型号为F3-10666CL9T-6GBNQ，规格为DDR3 1333，3条2G组成双通道包装。CL参数为9-9-9-24，电压为1.5V。 <br>点评：芝奇的这款6G DDR3 1333套装，虽然规格并不算太高，但正是为了Intel i7处理器而来，寓意明显。对于最先想尝试一下i7平台的玩家来说，不妨可以考虑一下。对了，它上市的售价为<span style="color:blue;line-height:1.8em;"><span style="font-weight:bold"><wbr />1799</span><wbr /></span><wbr />元，也不便宜哦！ <br><br><span style="font-weight:bold"><wbr />显卡：讯景 GTX295(GX-295N-HHF)</span><wbr /> <br><br><div style="text-align:center;"><wbr /><a href="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fcf4a423ee480ccd82e5fbab84c2211c0ef87227c7cc3908e42cf68a8f8f82308b5df63860f0d202de314f0ede2fd20f6a9dd36d3eed918b0817bfad2a74086fec08b2ac6f" target="_blank"><img style="border:0;" src="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fcf4a423ee480ccd82e5fbab84c2211c0ef87227c7cc3908e42cf68a8f8f82308b5df63860f0d202de314f0ede2fd20f6a9dd36d3eed918b0817bfad2a74086fec08b2ac6f" /></a><wbr /></div><br><br>GeForce GTX 295作为NVIDIA新一代的旗舰显卡，拥有两个55nm GT200核心，在设计仍沿用9800GX2的风格，采用双PCB板，每块PCB板上有独立的核心和显存。每个核心均有完整的240个流处理器，两个核心加起来总数达到了480个；每块PCB上设有896MB/448bit的存显规格，显存总容量为1792MB。从GTX 280的性能表现来看，双核的GTX 295绝对是一款怪兽级显卡，其性能相当值得期待。 <br>讯景 GTX295(GX-295N-HHF)采用NV公版设计，上下两块10层P656PCB基板，厚重的散热器将显卡完全包裹。内建两颗GT200 GPU。它支持第二代PureVideo HD功能、PCIE-2.0、256bit的显存位宽以及提供了对DirectX 10的完美支持。 <br>显卡采用的磨砂质感的护壳封装，并采用几乎遍布整个外壳的网状散热孔设计，从风道上提升散热效能，散热方面，它采用了两块PCB板面对面、中间放置散热器的三明治式结构，散热器的主体是铸铝框架，内部固定了对应两个GPU的铜底板、散热鳍片、贯穿其中的热管和位于末端的大型离心风扇。 <br>供电方面，显卡提供了两个外接电源接口，由 6pin+8pin 组成，而且显卡还预留了一个SLI 接口，能支持更强大的 Quad SLi 互联技术，难以想象两块GTX295互联起来的威力会有多大。 <br>点评：作为NV新一代卡皇，GTX295显卡性能完全超越老一代的GTX280显卡，同样在测评中也压倒AMD最顶级的4870 X2，可以说是现在最强的显卡了，试想用两块组SLI的话......同样它上市的价格也不便宜，为<span style="color:blue;line-height:1.8em;"><span style="font-weight:bold"><wbr />4499</span><wbr /></span><wbr />元，感兴趣的朋友不妨去卖场看看。 <br><br><span style="font-weight:bold"><wbr />光驱：先锋 BDR-202BK</span><wbr /> <br>先锋推出的第二款蓝光刻录机，能够以4X刻录容量高达25GB的高清影音及数据资料，并同时支持DVD±R/RW、DVD±R DL、CD-R/RW等市售所有DVD/CD格式光盘的刻录及读取。 <br>点评：虽然蓝光已经战胜了HD DVD，但目前仍然未到普及的地步，价格依旧高达<span style="color:blue;line-height:1.8em;"><span style="font-weight:bold"><wbr />2999</span><wbr /></span><wbr />元。不过蓝光仍旧是趋势，我们只能希望蓝光技术尽快成熟，早日降价咯！ <br><br><span style="font-weight:bold"><wbr />机箱：酷冷至尊 CSX Celtic</span><wbr /> <br>Celtic一词源于欧洲远古的凯尔特。其得名与一种类似斧、锛的史前砍凿工具有关，其精湛的手工艺术成为凯尔特族有别于其他族群的象征和标志。酷冷融会和吸纳了这一跨世纪的艺术特点，利用原始文明与现代文明之间的冲撞，绘制了这款<span style="font-weight:bold"><wbr />纯手工</span><wbr />的机箱艺术品。 <br>作为CSX系列主题机箱，Celtic自然在做工方面同样精细，让人无可挑剔。其独特的创作来源及绘画工艺是其一大亮点，胜过以往产品的美感和力度。其次，机箱的雕刻图案以莲花花瓣为状，烘托着一个十字架，将凯尔特时期的历史宗教文化展现的淋漓尽致，给人一种庄严而又神圣的感觉。 <br>在功能上，它支持最新Raptor X硬盘，加长电源安置空间,使之额外支持EPS电源；机箱底座配备四个滚轮，方便机箱随时移动；侧面可安装多达4个12CM 静音风扇，以及采用冲孔网设计，从而达到最强悍的散热效能和超静音效果。另外，在超厚的铝合金机箱上，它的前方门板还可以依实际需求来调整左右开门，多处体现了人性化设计。 <br>点评：小编看到这款机箱也无语了，<span style="font-weight:bold"><wbr /><span style="color:blue;line-height:1.8em;">9999</span><wbr /></span><wbr />元的价格绝对让人佩服，不过内部价格和雷神塔差不多，看来只有喜欢外观的朋友才会购买了吧。对了，它还有不同外观哦，感兴趣的朋友不妨自己也DIY一个。 <br><br><wbr /><a href="http://b13.photo.store.qq.com/http_imgload.cgi?/rurl4_b=002e16ad84086bbb34303f4ac6b98fa34e167835ff4bdb37639a257fbdbcb2db219880c01e9d1e51e0d56a1df90916a67614ba82b318d5991033f15339117cc516d829a268e58c055aa4ed0e1579e139fc1e9071" target="_blank"><img style="width:669px;height:347px;border:0;" src="http://b13.photo.store.qq.com/http_imgload.cgi?/rurl4_b=002e16ad84086bbb34303f4ac6b98fa34e167835ff4bdb37639a257fbdbcb2db219880c01e9d1e51e0d56a1df90916a67614ba82b318d5991033f15339117cc516d829a268e58c055aa4ed0e1579e139fc1e9071" /></a><wbr /> <br><br>PS:這只是現在比較好的配置了,過一兩年估計只是中高端的了... <br>   其实也不是一辈子买不起的东 西哦,在我们身边可能就有人在用了. <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[271284919@qq.com(追風〓〓無痕)]]></author>
<comments>http://271284919.qzone.qq.com/blog/1234929075#comment</comments>
<qz:effect>142606865</qz:effect>
<pubDate>Wed, 18 Feb 2009 03:51:15 GMT</pubDate>
<guid>http://271284919.qzone.qq.com/blog/1234929075</guid>
</item>

<item>
<title><![CDATA[半夜十二点，准时来到网吧，搞劲舞团]]></title>
<link>http://271284919.qzone.qq.com/blog/1234881353</link>
<description><![CDATA[<span style="font-weight:bold"><wbr /><span style="color:#000099;line-height:1.8em;">半夜十二点，准时来到网吧， <br><span style="line-height:1.8em;">掏出六张一块的纸币，潇洒的告诉网管，通宵，谢谢。</span><wbr /> <br><span style="line-height:1.8em;">找了一个最靠近空调的位置，享受着冷气吹过时的舒坦。</span><wbr /> <br><br><br><span style="line-height:1.8em;">　登陆劲舞，我就是一个完全不同的存在，</span><wbr /> <br><span style="line-height:1.8em;">好好的打量了下自己，</span><wbr /> <br><span style="line-height:1.8em;">上上个月泡到的那个前前任老婆还不错，送了个永久的发型给我，</span><wbr /> <br><span style="line-height:1.8em;">还有上个月找的那个情人也不差，送了双鞋.</span><wbr /> <br><span style="line-height:1.8em;">附带送上一句温情的话，你穿这双鞋跳舞没那么累。</span><wbr /> <br><span style="line-height:1.8em;">衣服和裤子搭配还不错，那是我认的爹地妈咪送滴。</span><wbr /> <br><span style="line-height:1.8em;">穿得一身光鲜，可以开动了。</span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-size:13px;line-height:1.8em;">　别以为我说的开动是跳舞，现在什么年代了，</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">机械的游戏早已经让我厌倦，</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">开了个房间，精神男子点泡XX服MM!</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">这个名字够直接了吧？</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">不多会儿，房间人满为患，</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">拿着DJ，我没有F1的想法，</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">我相信进来的那些人也没有。</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">直接一句蛮有气概的话，</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">X少点泡此服美女，接泡的留下，不接的自己闪。</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">虽然是对着屏幕，我好象已经看到房间里的那些MM双眼已经变成了桃心状</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">（哇，好有男子气概哦，我喜欢~~）。</span><wbr /></span><wbr /> <br><br><br><span style="line-height:1.8em;"><span style="font-size:13px;line-height:1.8em;">　不对，人怎么走了一半了`~掩饰着心里的失望，</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">看看留下来的两个MM，说什么今天也要留一个下来。</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">直接开了个188，简单的一句话，F1，谢谢。</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">当我按下F1的时候才发现大事不妙，我我我居然忘了开WG。</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">现在有点后悔，怎么刚才不说点话了，说得越多卡得越久嘛，</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">找这个借口下台就可以出去开WG啦。</span><wbr /></span><wbr /> <br><span style="line-height:1.8em;"><span style="line-height:1.8em;">没办法，反正还记得服务器和房间，三十六计，ALT+F4先。</span><wbr /></span><wbr /> <br><br></span><wbr /><br><span style="line-height:1.8em;"><span style="font-size:13px;line-height:1.8em;">　<span style="color:#000099;line-height:1.8em;">终于做好准备工作，再回来，MM又走了一个。</span><wbr /></span><wbr /></span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">哎，只有一个那就是别无选择了。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">进到房间先大骂一通，什么难听就拣什么骂，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">总之要让MM看到我的愤怒，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">我是被卡掉的~~~绝对不是因为没开WG自己闪的。</span><wbr /></span><wbr /> </span><wbr /><br><br></span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="font-size:13px;line-height:1.8em;">　这MM还比较开朗，就在问我的情况了。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">吸一口气，我21岁了，在XX大学上学，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">问我为什么这么晚上还上网？明天不用上课？</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">不是啦，那个破大学有什么好上的，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">我父母都是做生意的，毕业了混到文凭我就去家里的公司上班了。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">不怕影响到同学休息？</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">哦，没事啦，我家人怕我住学校宿舍不习惯，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">给我买了房子，请了保姆照顾我。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">我一个人住这么大房子还真觉得冷清。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">我女朋友？</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">哎，不提也罢，跟我兄弟搞上了，才分手。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">想不到我对她是百分之百，她对我是点都没得，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">我对她千分之千，她连我手都不牵。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">我还给她买了钻戒，钻石项链，她却背着我。。。真是往事不堪回首啊。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">叫我别难过？我已经不难过了，放弃我是她的损失。</span><wbr /></span><wbr /> </span><wbr /><br><br></span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="font-size:13px;line-height:1.8em;">　MM，你问我这么多，说说你的事吧？我不想跳舞了，好累的。。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">哎，想不到你也和男朋友分手，你人这么好他怎么就不懂得珍惜呢？</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">如果我是你男朋友我一定会象爱我的生命一样爱你~~~~MM，做我老婆吧！！</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">想看看我？</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">现在看不了啦，我早上在家里发脾气把显示器都砸了，摄象头也砸坏了，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">这显示器还是下午我才去买的，摄象头忘了买啦。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">不过我有张照片存着呢</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">（打开百度搜索张图片出来，明星图片肯定不行的，找个模仿秀的图片好了）</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">你说我很象XXX？</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">呵呵，好多人都这么说啦，不过我觉得我比他帅点啦。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">MM，你有视频啊，让我看看哦。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">也？怎么老低着头呢，不要对着屏幕傻笑啦，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">是看着我的照片在笑？做我老婆行不？我等下就刷999个喇叭跟你求婚。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">啊，你觉得太浪费了？这才多少钱啊，我吃顿早饭都不够啦。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">不过老婆也是为我好，不刷就不刷吧。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">老婆只要知道我爱你就行了。</span><wbr /></span><wbr /> </span><wbr /><br><br></span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="font-size:13px;line-height:1.8em;">　再进游戏，结婚。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">这个可有点难度了，一直靠WG装牛B，那个NND情侣模式我我我，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">搞不定~~跳了好长时间，终于碰运气碰了五个心，搞定。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">毫不留情的把那两个配合结婚滴T出房间，打算跟老婆玩下温情，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">虽然是摸不到碰不着，不过言语非礼一下，YY一番也不错啦。</span><wbr /></span><wbr /> </span><wbr /><br><br></span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="font-size:13px;line-height:1.8em;">　啊哦，刚被T出去的是哪个牛B人物？还喇叭骂我？</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">NND，还让老婆看见了，多没面子。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">口袋里还有三十块，想了又想，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">这个场子怎么都要找回来，未来一个礼拜的生活费等未来再说吧。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">咬咬牙，忍着那割肉般的痛，冲了30块的M币。</span><wbr /></span><wbr /> </span><wbr /><br><br></span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="font-size:13px;line-height:1.8em;">　TMD，跪↓，喝XX，添XX，一阵乱喊。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">这世道就是善的怕恶的，恶的怕横的，横的怕不要命的~</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">~劳资生活费都不要了，还怕毛啊。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">看着M币慢慢的越来越少，新老婆总算是说了句话了，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">算了啊，老公，表跟他们这些没素质的人计较啦。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">吓我一身冷汗，总算找到个台阶下，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">恩恩，听老婆大人的话，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">好歹我也是个文明人~~~~跟这些垃圾计较还真是有失身份。</span><wbr /></span><wbr /> </span><wbr /><br><br></span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="font-size:13px;line-height:1.8em;">　想不到，MM下一句是，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">老公，我想买套衣服，我穿成这样好给你丢人哦。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">思考，大脑开始飞速运转，在四又二分之一秒内，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">我决定说一个漂亮的谎言，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">而我新找的这个女人，将会彻底的爱上我。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">老婆我这就去给选衣服（对着屏幕发呆30秒），</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">老婆，我刚刷喇叭把号里的点都刷没了，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">啊，可以用网上银行冲？</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">哎，我这人花钱象流水一样，银行卡我不喜欢，我都是用现金的。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">这样吧，虽然我们这里的电梯坏掉了，外面下着暴雨，</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">我还是跑下十八楼去看看外面有没有卖卡的。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">啊，不要我去，怕我淋雨会生病？</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">也是哦，要是我生病了就不能陪老婆了，那明天再买好了。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">老婆么么，老公么么，继续YY。</span><wbr /></span><wbr /> </span><wbr /><br><br></span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="font-size:13px;line-height:1.8em;">　一不小心，快八点了，通宵时间快到了。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">老婆，你累不？</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">不累？都一整夜了，你这样可不行，女人熬夜好容易老的，听老公的话，去睡吧。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">舍不得我？不怕不怕，我们要在一起天长地久，一起去天涯海角，环游世界的。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">我可不想我的老婆熬坏了身体，去睡吧。</span><wbr /></span><wbr /> </span><wbr /><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">我家的保姆也给我做好早饭了，老婆么么，拜拜。</span><wbr /></span><wbr /> </span><wbr /><br><br><span style="color:#000099;line-height:1.8em;"><span style="line-height:1.8em;"><span style="line-height:1.8em;">看看时间，刚好7点50，下线，回工地的工棚里好好的睡上一觉，明天早上还得去砌砖头。</span><wbr /></span><wbr /> </span><wbr /><br><br><span style="color:#000099;line-height:1.8em;">------------------------------------------------------------------------- </span><wbr /><br><span style="color:#000099;line-height:1.8em;">网上看到的一篇帖子，发到空间给大家欣赏一下</span><wbr />！<img src="http://imgcache.qq.com/qzone/em/e143.gif"><wbr /> <wbr /><a href="http://cnc.imgcache.qq.com/ac/b.gif" target="_blank"><img style="border:0;" src="http://cnc.imgcache.qq.com/ac/b.gif" /></a><wbr /></span><wbr /> </span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[271284919@qq.com(追風〓〓無痕)]]></author>
<comments>http://271284919.qzone.qq.com/blog/1234881353#comment</comments>
<qz:effect>142606849</qz:effect>
<pubDate>Tue, 17 Feb 2009 14:35:53 GMT</pubDate>
<guid>http://271284919.qzone.qq.com/blog/1234881353</guid>
</item>

<item>
<title><![CDATA[天煞孤星々風之傷]]></title>
<link>http://271284919.qzone.qq.com/blog/1234821358</link>
<description><![CDATA[<div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">最近总是为一些小的事情不开心,不知道为什么..</span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">今天年情人还是一个人的情人节...</span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">没想到却会发生一件不开心的事情</span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">不知道哪个無聊的人搞木馬害得我硬盤全盤格式化.</span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">不幾個月的東西一下都沒有了,也許不屬於自己的東西</span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">終究会失去..經過一天的努力總算找回了那些東西,</span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">其實也不是很珍貴的東西,我只知道把它變成以前的樣子,</span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000066,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">為什麽要這樣,我也不知道......TMD上個網也讓人感到恐慌.</span><wbr /></div></span><wbr /><br>==================================================================<br><span style="color:#00cc33;line-height:1.8em;">無聊写了一个批处理强制聊天器,無聊的朋友可以玩玩.......</span><wbr /> <br><br><span style="color:#00cc33;line-height:1.8em;">首先新建一个文档(無痕强制聊天器.txt)将下面代码放进去再将</span><wbr /> <br><br><span style="color:#00cc33;line-height:1.8em;">文件扩展名改为&quot;bat&quot;就好了哦! 如:無痕强制聊天器.bat</span><wbr /> <br><br><span style="color:#00cc33;line-height:1.8em;">代码如下:</span><wbr /> <br><span style="color:#00cc33;line-height:1.8em;">----------------------------------------------------------------------------------</span><wbr /> <br><span style="color:#00cc33;line-height:1.8em;">@echo off </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">title QQ强制聊天工具 <br>color 0b <br>echo.</span><wbr /> <br><span style="color:#00cc33;line-height:1.8em;">color 0a <br>echo. <br>echo.本程序应用于与任意号码聊天，也可以用于骚扰把你加入黑名单的Q友……</span><wbr /> <br><span style="color:#00cc33;line-height:1.8em;">echo.有空欢迎到無痕的QQ空间看看 </span><wbr /><a href="http://271284919.qzone.qq.com/" target="_blank"><span style="color:#00cc33;line-height:1.8em;">http://271284919.qzone.qq.com/</span><wbr /></a><wbr /> <br><span style="color:#00cc33;line-height:1.8em;">echo.QQ、QQ空间、QQ音乐、flv播放器制作，还有一些常用的网页工具.网页技巧。 <br>echo. <br>echo. <br>echo. <br>echo.请先打开QQ！！否则本程序无效！！！ </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">echo. </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">echo.有时间先去無痕空间看看吧....不要开QQ只和MM聊哦！</span><wbr /> <br><span style="color:#00cc33;line-height:1.8em;">echo. <br>pause </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">start </span><wbr /><a href="http://271284919.qzone.qq.com/" target="_blank"><span style="color:#00cc33;line-height:1.8em;">http://271284919.qzone.qq.com/</span><wbr /></a><wbr /> <br><span style="color:#00cc33;line-height:1.8em;">echo. </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">echo. </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">echo.好了你可以和别的MM聊了...無痕不打扰你了... <br>echo. </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">:a <br>Set /p num=请输入你想要强制聊天的人的QQ号码: </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">If /I &quot;%num%&quot;==&quot;n&quot; Exit </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">start tencent://Message/?Uin=%num% </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">echo. </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">echo. </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">echo.点击任意键选择另一个人。 <br>echo. <br>pause <br>cls <br>echo. <br>echo. <br>echo.怎么样还不错吧....泡到MM要请风歌吃饭哦。 <br>echo. <br>echo.有空欢迎到無痕的QQ空间看看 </span><wbr /><a href="http://271284919.qzone.qq.com/" target="_blank"><span style="color:#00cc33;line-height:1.8em;">http://271284919.qzone.qq.com/</span><wbr /></a><wbr /> <br><span style="color:#00cc33;line-height:1.8em;">echo.QQ、QQ空间、QQ音乐、flv播放器制作，还有一些常用的网页工具.网页技巧。</span><wbr /> <br><span style="color:#00cc33;line-height:1.8em;">echo. </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">echo. </span><wbr /><br><span style="color:#00cc33;line-height:1.8em;">Goto a </span><wbr /><br><div style="text-align:center;"><span style="color:#00cc33;line-height:1.8em;">現在還可以用哦:</span><wbr /></div><div style="text-align:center;"><wbr /><a href="http://b6.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc71d21ec49c6335f30240242842e75a28867dbeb14e18f007cf97816411326bd8bb4475d0992dfdb811582d6d96bde5874dd7ab41c82ed7dd8f0ca5f74e757bc82d026f83" target="_blank"><img style="border:0;" src="http://b6.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc71d21ec49c6335f30240242842e75a28867dbeb14e18f007cf97816411326bd8bb4475d0992dfdb811582d6d96bde5874dd7ab41c82ed7dd8f0ca5f74e757bc82d026f83" /></a><wbr /> </div><br><wbr /><a href="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc64cead43b980bb5048741de869b8f886b6f56cd685135b34465cdfbc4e7d342d972d1e44d3b0081266efa98a8147e21a9420314a80be11d1afdb1a23161d71689f966b09" target="_blank"><img style="border:0;" src="http://b5.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fc64cead43b980bb5048741de869b8f886b6f56cd685135b34465cdfbc4e7d342d972d1e44d3b0081266efa98a8147e21a9420314a80be11d1afdb1a23161d71689f966b09" /></a><wbr /> <br><br><wbr /><a href="http://b6.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fcfdeb1bcf07291a42ffd91e34fc1155596fb56e26c89c20b75daeb393c44949a780576c40dc804f4c64e722b9fd12c261d3c24b88ca6568f0d94fd0f90662b18e060258d8" target="_blank"><img style="border:0;" src="http://b6.photo.store.qq.com/http_imgload.cgi?/rurl4_b=cb459d0b1f220f698a826e13fee533fcfdeb1bcf07291a42ffd91e34fc1155596fb56e26c89c20b75daeb393c44949a780576c40dc804f4c64e722b9fd12c261d3c24b88ca6568f0d94fd0f90662b18e060258d8" /></a><wbr /> <br><div style="text-align:center;"><span style="color:#0033cc;line-height:1.8em;">夜深了,难以入睡........</span><wbr /></div><div style="text-align:center;"> </div><div style="text-align:center;"><span style="color:#0033cc;line-height:1.8em;">Yesterday's lover, such as today is somebody else's lover</span><wbr /></div><div style="text-align:center;"> </div><div style="text-align:center;"><span style="color:#0033cc;line-height:1.8em;">How do you sleep tonight?</span><wbr /></div><div style="text-align:center;"> </div><div style="text-align:center;"><span style="color:#0033cc;line-height:1.8em;">昨天的情人,如今已作他人妇..有什么不好呢?</span><wbr /></div><div style="text-align:center;"> </div><div style="text-align:center;"><span style="color:#0033cc;line-height:1.8em;">I hope you can happy for ever.</span><wbr /></div> <!--v:3.2--> ]]></description>
<category><![CDATA[風中追瘋]]></category>
<author><![CDATA[271284919@qq.com(追風〓〓無痕)]]></author>
<comments>http://271284919.qzone.qq.com/blog/1234821358#comment</comments>
<qz:effect>142606865</qz:effect>
<pubDate>Mon, 16 Feb 2009 21:55:58 GMT</pubDate>
<guid>http://271284919.qzone.qq.com/blog/1234821358</guid>
</item>

<item>
<title><![CDATA[【Q-ZONE風云人物】]]></title>
<link>http://271284919.qzone.qq.com/blog/1216343764</link>
<description><![CDATA[<br><wbr /><a href="http://imgcache.qq.com/ac/qzone_v4/b.gif" target="_blank"><img style="border:0;" src="http://imgcache.qq.com/ac/qzone_v4/b.gif" /></a><wbr /> <br><div style="text-align:center;"><span style="font-size:18px;line-height:1.8em;"><wbr /><a href="http://imgcache.qq.com/ac/qzone_v4/b.gif" target="_blank"><img style="border:0;" src="http://imgcache.qq.com/ac/qzone_v4/b.gif" /></a><wbr /> <span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">代碼可謂是空間愛好者的大多&quot;樂趣&quot;所在吧,然而&quot;代碼&quot;也許也只是某公司&quot;拋磚引玉&quot;計罷了! </span><wbr /></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"><span style="font-size:18px;line-height:1.8em;">怎樣也好,空間也給一部分用戶帶來了難以忘懷的過去, </span><wbr /></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">說真的,代碼真的好好玩!嘻嘻嘻... </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">說點正經的,其實锋芒只是怀念一些過去&quot;空間代碼&quot;的出色人物. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">請看下面.謝謝.以下排名不分先后. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">№1 可見零度 </span><wbr /></div><div style="text-align:center;"><a href="http://234063585.qzone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://234063585.qzone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">99.9%空間用戶公認的代碼第一人. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">背景皮膚.掛件.導航移位等代碼的創始人   </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">瓶子   </span><wbr /></div><div style="text-align:center;"><a href="http://1453407.qzone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://1453407.qzone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">空間本來就是網頁. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">而他的網頁做的好.可以想象空間做得怎么樣. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">不過上面說的不重要. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">最重要的是&quot;刷人氣代碼&quot;就是他的杰作. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">每天10000人氣.在排行榜上稳居4個月   </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">稻草人 </span><wbr /></div><div style="text-align:center;"><a href="http://324181.q-zone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://324181.q-zone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">txt文本代碼的創始人. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">代表作:&lt;莫林老人&gt;.&lt;神燈&gt;.&lt;彈出提示框&gt;等. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">這個也是他使lan-long關閉的一個大原因   </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">我心依舊(別名:幸福)   </span><wbr /></div><div style="text-align:center;"><a href="http://29661727.q-zone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://29661727.q-zone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">代碼推廣的第一人.成為一帶人的偶像 </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">代表作:&lt;時鐘&gt;&lt;mv&gt;等 </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">為大家認識代碼帶出了第一步     </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">魚魚   </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">酷酷家族的老大. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">也是最早給大家分享代碼的人之一   </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">人氣很旺   </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">總排名11的實力選手   </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">被早期刷人氣的人郁悶. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">云武   </span><wbr /></div><div style="text-align:center;"><a href="http://8018652.q-zone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://8018652.q-zone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">JavaSctipt(簡稱JS)高手. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">其實JS是代碼發展必然的趨勢. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">個人認為代碼不用JS就等于只作表面. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">gn幻想 </span><wbr /></div><div style="text-align:center;"><a href="http://22871560.q-zone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://22871560.q-zone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">全能人物. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">圖形.flash.代碼.幾乎都很牛 </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">2.0空間后期代碼的創始人之一 </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">代表作:&lt;隨機皮膚&gt;.&lt;皮膚導航&gt;.&lt;5級花&gt;等. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">魔法能量.鬼   </span><wbr /></div><div style="text-align:center;"><a href="http://1545437.q-zone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://1545437.q-zone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">引領大皮膚和flash效果的人之一 </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">3.0最期空間樣板模式幾乎都是這樣樣子(就是現在TX所謂的&quot;自定義代碼&quot;的效果.看來TX得謝謝他啰!) </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">代表作:&lt;全屏FLASH&gt;等. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">流年的拉罐   </span><wbr /></div><div style="text-align:center;"><a href="http://8590562.q-zone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://8590562.q-zone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">比較平淡的一個人.不喜歡張揚. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">代表作:&lt;随機的5級花&gt;.&lt;嵌入式空間播放器&gt;等. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">→ 吆兒   </span><wbr /></div><div style="text-align:center;"><a href="http://8460082.q-zone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://8460082.q-zone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">2.0版空間FLASH導航的引領者.本人最欣賞的一個女空間人物. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">代表作:&lt;筆記本FLASH導航&gt;等. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">&quot;血染℡ΝΒ」 </span><wbr /></div><div style="text-align:center;"><a href="http://2299493.q-zone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://2299493.q-zone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">第一時間公布自己的代碼.值得學習. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">2.0后期代碼解封者.功勞挺大的. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">團長 </span><wbr /></div><div style="text-align:center;"><a href="http://5116973.q-zone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://5116973.q-zone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">呵呵.這個不用我說了吧. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">先說他的代表作: </span><wbr /></div><div style="text-align:center;"><span style="font-size:18px;line-height:1.8em;">&lt;百變花房&gt;.&lt;火眼金睛&gt;.&lt;免費黃鉆&gt;.&lt;疾速互踩&gt;.&lt;免費騰訊音樂&gt;.&lt;虛擬人氣&gt;... </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">說到敬佩.只有他一個! </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">知道為什么現在留言跟日志評論要加&quot;驗證碼&quot;嗎? </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">就是團長&lt;疾速互踩&gt;的后遺癥. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">Kim HyunJung (多數人叫她K姐) </span><wbr /></div><div style="text-align:center;"><a href="http://407765896.qzone.qq.com/" target="_blank"><span style="font-size:18px;line-height:1.8em;">http://407765896.qzone.qq.com/</span><wbr /></a><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">3.0版空間代碼創始人. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">相信他的JS水平跟團長相差無幾, </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">但是有一點你要知道.她是女的! </span><wbr /></div><div style="text-align:center;"><span style="font-size:18px;line-height:1.8em;"><span style="color:#000000;line-height:1.8em;">代表作:&lt;在線代碼生成器&gt;.&lt;隨機整站效果&gt;(就是3.0版空間最早的一個全站代碼.后來好多人拿去自己改版了)等</span><wbr /> </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"></span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">今天先寫這些.晚了.明天看下有沒漏. </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;">如果你知道其他人物請在下面告知哦! </span><wbr /></div><div style="text-align:center;"><span style="filter: glow(color=#000000,strength=3);color:#FFFFFF;display:inline-block;line-height:1.8em;"><span style="font-size:18px;line-height:1.8em;">晚安!    </span><wbr />   </span><wbr /></div> <!--v:3.2--> ]]></description>
<category><![CDATA[休闲搞笑]]></category>
<author><![CDATA[271284919@qq.com(追風〓〓無痕)]]></author>
<comments>http://271284919.qzone.qq.com/blog/1216343764#comment</comments>
<qz:effect>8389121</qz:effect>
<pubDate>Fri, 18 Jul 2008 01:16:04 GMT</pubDate>
<guid>http://271284919.qzone.qq.com/blog/1216343764</guid>
</item>

<item>
<title><![CDATA[孤寂的浪漫]]></title>
<link>http://271284919.qzone.qq.com/blog/1215924724</link>
<description><![CDATA[写给单身好男孩！<br><br>十岁以前，就不说了，无非是淘气和不懂事。 <br>　　　　<br>　　　　 十三、四岁的时候，开始对女孩有好感，但是那时候他离女孩远远的，并且以讨厌女孩自居，生怕被同伴嘲笑。 <br>　　　　<br>　　　　 十五岁的时候，听到大人们说某某男人好花，把女朋友甩了，女孩****了。他觉得这人真狠毒，自己将来一定要做个痴情的男人，一定要一生只爱一个人。 <br>　　　　<br>　　　　 十六岁的时候，他喜欢上了一个女孩，但是他不敢和她说。仍然和往常一样，脏兮兮的在灰土飞扬的操场上踢球。只在女孩走出校门的时候，躲在二层的窗户上看她的背影,他觉得她一定是个天使。 <br>　　　　<br>　　　　 十七岁的时候，有个女孩喜欢上了他，但是他离她很远，他心里面只有自己那个女孩，他觉得看别的女孩都是对她的不忠。 <br>　　　　<br>　　　　 十八岁的时候，看了一个MTV，感动得想哭，他想，如果自己的女孩失去了双眼，他一定男主角会毫不犹豫的把自己的眼睛给她，让她能看到光明。 <br>　　　　<br>　　　　 十九岁的时候，高考了。终于和自己暗恋的女孩分别，坐火车去学校的时候，感觉自己离她越来越远，心像被掏空了一样。还在想自己一定不会忘记她，等到自己成功以后一定要去找她。 <br>　　　　<br>　　　　 二十岁的时候，听到有人讲黄色笑话，觉得这人真可耻。 <br>　　　　<br>　　　　 二十一岁的时候，她的回信中告诉他，自己有了男朋友。偷偷的哭了一个晚上。 <br>　　　　<br>　　　　 二十二岁的时候，他向一个女孩表白，女孩说“你是个好人，可是我还小。” 他想，我的确是个好人，他说“没关系，我可以等你。”心想，我不会像那些花心的人一样，三年五年我也能等。 <br>　　　　<br>　　　　 二十三岁的时候，说自己还小的女孩和一个帅哥恋爱了。他很纳闷，长大原来可以这快。<br>　　　　<br>　　　　<br>　　　　 二十四岁的时候，他又向一个女孩表白，女孩说“你是个好人，可是我并不适合你。”他纳闷很久，我是好人你怎么还不适合我呢？ <br>　　　　<br>　　　　 二十五岁的时候，他又追求一个女孩，女孩接受了他。他开始很幸福的为未来拼搏，他想，一时的开心只是暂时的，只有努力拼搏，他和她才能有快乐的未来，但是，半年以后，女孩和他分手了。只是因为另外一个男孩会说让她开心的话。女孩说“你是个好人，是我对不起你。” 他似乎明白了问题所在，他是个好人。 <br>　　　　<br>　　　　 二十六岁的时候，他开始堕落，交网友。打扮得时尚而酷，而且渐渐的学习着讨好女孩的话。不久，他有了个女朋友，虽然他对她也很好，可是，他心里知道，自己并不爱她。 <br>　　　　<br>　　　　 二十七岁的时候，他和女孩分手了。他对女孩说“你是个好女孩，是我对不起你。” <br>　　　　<br>　　　　 二十八岁的时候，他尝试了一夜情，发现别人能做的，自己也一样。 <br>　　　　<br>　　　　 二十九岁的时候，他学会了讲黄色笑话，并且以看旁边的女孩子脸红为乐趣。 <br>　　　　<br>　　　　 三十岁的时候，他忽然发现自己变得很有能力追求到女孩，但是却没有了爱的能力。其实每个男孩，本来都是想做一个感情专一的好男人的。其实每个男孩，本来看女孩子都是看脸而不是胸部的。其实每个男孩，本来都是不会讲黄色笑话的。其实每个男孩，本来都是渴望爱一个人直到永远的。<br>　　　　 <br>　　　　 只是，没有任何女孩爱这样的男孩，她们觉得这样的男孩太幼稚，太古板，没有情趣。<br>　　　　<br>　　　　 于是男孩开始改变，变成女孩喜欢的那种嘴角挂着坏坏的笑,玩世不恭或者幽默开始学会说甜言蜜语而不是心里想说的话开始学会假装关心，学会给女孩送小饰物讨好她学会如何追求，如何把握爱情。或者看破红尘，游戏情场，成为女人恨恨的那种男人他们可以很容易俘获女孩子的心但是他们也会在黑的夜里恶心着烟流泪。<br>　　　　<br>　　　　 心里有爱的时候，没有女孩.有了女孩，却永远没有了爱的感觉在听到女人抱怨世上没有一个好男人时候他们不会再去努力做个好男人，只是微笑着擦肩而过... <br>　　　　<br>　　　　 男人要懂得什么是爱，怎样去爱，没资本怎么让自己爱的人幸福..... 是的，有句话说的好：男人不坏，女人不爱。琼瑶，去他吗的琼瑶，你只会写些破言情小说。多少人为了追求你小说中的那种浪漫，那种洒脱而伤心的.无助的哭泣... 爱情的伤，不是短暂的，是永远，可能是一辈子.....<br> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[271284919@qq.com(追風〓〓無痕)]]></author>
<comments>http://271284919.qzone.qq.com/blog/1215924724#comment</comments>
<qz:effect>8389136</qz:effect>
<pubDate>Sun, 13 Jul 2008 04:52:04 GMT</pubDate>
<guid>http://271284919.qzone.qq.com/blog/1215924724</guid>
</item>

<item>
<title><![CDATA[哥特（gothic）式文学]]></title>
<link>http://271284919.qzone.qq.com/blog/1196664210</link>
<description><![CDATA[<br><a href="http://hi.baidu.com/wangduyi" target="_blank">Silence</a><wbr /> <br>我不能悲伤地坐在你身旁 <br><br><a href="http://hi.baidu.com/wangduyi" target="_blank">主页</a><wbr /><a href="http://hi.baidu.com/wangduyi/blog" target="_blank">博客</a><wbr /><a href="http://hi.baidu.com/wangduyi/album" target="_blank">相册</a><wbr />|<a href="http://hi.baidu.com/wangduyi/profile" target="_blank">个人档案</a><wbr /> |<a href="http://hi.baidu.com/wangduyi/friends" target="_blank">好友</a><wbr /> <br><span style="color:#000000;line-height:1.8em;">查看文章 </span><wbr /><br><span style="color:#000000;line-height:1.8em;">哥特式文学 </span><wbr /><br><span style="color:#000000;line-height:1.8em;">2007-07-23 09:35 P.M. </span><wbr /><br><span style="color:#000000;line-height:1.8em;">哥特（gothic）这个特定的字汇原先的意思是西欧的日耳曼部族。在18世纪到19世纪的建筑文化与书写层面，所谓「哥特复兴」（GothicRevival）将中古世纪的阴暗情调从历史脉络的墓穴中挖掘出来。同时，从18世纪末以来的一些文学作品，因为具有共同的基调与文体而被归类于「哥特小说」。例如：华尔普（Walpole）的《奥蓝托城堡》（TheCastleofOtranto）、安.拉得克里夫（AnnRadcliff）的《奥多芙的神秘》（TheMysteriesofUdolpho）、路易斯（Lewis）的《僧侣》（TheMonk），当然还有玛丽.雪莱的《科学怪人》。 </span><wbr /><br><span style="color:#000000;line-height:1.8em;">哥特文学作为一种独立的文学风格进入人们的视线是在1764年Horace Walpole发表他的小说《The Castle of Ortanto》。对于小说所产生的轰动效应、戏剧性的情节以及超自然的神秘感觉论，当时的众多文学评论家给予了猛烈的批评。从墓地诗人Gray和Thompson那描写阴郁的乡间风景和废墟中的恐怖古堡的诗中这种文学风格给人留下了深刻而神秘的影象。诗中常常能读到这样的场景，幽灵般的魔鬼和鲜血直流的修女在黑暗寻找着幸存着，用神秘的力量将他们杀死。哥特文学那伤感而理想化的气质建立在它那浪漫式的唯心论中，作为一场文学运动它始终不能超越现实。尽管哥特文学也影响了不少后来的文学风格，但哥特文学所流露出的阴郁的，黑暗的，伤感的，神秘的文学风格始终不能为大众所接受,1815年Charles Maturin的哥特小说《Melmoth the Wanderer》也是乎预示着这种文学风格的渐渐退去。     </span><wbr /><br><span style="color:#000000;line-height:1.8em;">经过短暂的辉煌后，哥特文学又回到了原地。从与传统文学的对抗中，哥特文学变得更加不可琢磨，那种神秘的，超越自然的，阴郁而恐怖的力量潜伏在它那坚固的外壳中，并慢慢的释放着迷惑的能量。这种对现代文学的影象我们依然可以从一些描写死亡和黑暗孤欲的爱情与千年仇恨的小说和诗词中看到。今天的哥特文学依然保持着那种难以琢磨的风格，文学评论家至今也不愿意承认它是一种有价值的文学风格。其实在哥特文学中对中世纪历史和人性本身的崇尚和探讨远远超过了对恐怖和血腥的描写。那种对生命的轮回和死亡的精神意义的探索一直贯穿在这种文学风格中，用浪漫式文学表现手法去触击和探讨那些令人深思的永恒的精神主题显然是极富魅力的，这也是为什么这种古老的文学风格直到今天还一直影响着现代人的思考包括音乐和艺术。典型的哥特式小说包括： </span><wbr /><br><span style="color:#000000;line-height:1.8em;">Horace Walpole 的《The Castle of Otranto》     </span><wbr /><br><span style="color:#000000;line-height:1.8em;">Tobias Smollett 的《The Adventures of Ferdinand Count Fathom 》     </span><wbr /><br><span style="color:#000000;line-height:1.8em;">Thomas Leland 的 《Longsword, Earl of Salisbury》     </span><wbr /><br><span style="color:#000000;line-height:1.8em;">Clara Reeve 的 《The Old English Baron: A Gothic Story》   </span><wbr /><br><span style="color:#000000;line-height:1.8em;">以及William Beckford具有柯尔律治风格的舞台剧《vathek: An Arabian Tale》，当然还有拜伦的《Manfred》。   </span><wbr /><br><span style="color:#000000;line-height:1.8em;">如今哥特文学依然影响着从Joyce Carol Oats 到Ann Rice的现代文学。这种由Horace Walpole所开创的独特文学风格最终将消散并融入到现代文学中。 </span><wbr /><br><span style="color:#000000;line-height:1.8em;">在英汉字典中Gothic的解释如下：   </span><wbr /><br><span style="color:#6600cc;line-height:1.8em;"><span style="color:#000000;line-height:1.8em;">　　（a）1歌特人的；歌特语的2（建）歌特式的3中世纪的；野蛮的，粗野的4（印）歌特体的；（英）黑体的5歌特式小说体的（以恐怖，凄凉，衰败为特征）（n）1歌特语2歌特式建筑，尖拱式建筑。</span><wbr /> </span><wbr /><br><br>                                                                         <br><div style="text-align:center;"><embed invokeURLs="false" allowNetworking="internal" loop="true" autostart="false" showstatusbar="1" src="http://musicurl.hainet.cn/wma3494/silenthill4/21.wma" /><wbr /></div><br><br><a href="http://q271284919.go1.icpcn.com/QCC/bofangqi/index.htm" target="_blank"><span style="color:#6600ff;line-height:1.8em;">http://q271284919.go1.icpcn.com/QCC/bofangqi/index.htm</span><wbr /></a><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[271284919@qq.com(追風〓〓無痕)]]></author>
<comments>http://271284919.qzone.qq.com/blog/1196664210#comment</comments>
<qz:effect>8405504</qz:effect>
<pubDate>Mon, 03 Dec 2007 06:43:30 GMT</pubDate>
<guid>http://271284919.qzone.qq.com/blog/1196664210</guid>
</item>

<item>
<title><![CDATA[论非主流]]></title>
<link>http://271284919.qzone.qq.com/blog/1196624636</link>
<description><![CDATA[<a href="http://l4ever.cn/archives/category/article" target="_blank"><span style="font-size:13px;line-height:1.8em;">文章 | Article</span><wbr /></a><wbr /><span style="font-size:13px;line-height:1.8em;"> // Written on Dec 01, 2007 </span><wbr /><span style="color:#6699cc;line-height:1.8em;">所谓的非主流。。 <br><span style="color:#330099;line-height:1.8em;">其实你们就是农民进城装高调. </span><wbr /><br><span style="color:#330099;line-height:1.8em;">我们同样是80年代的人, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">咋个思想区别就那么大? </span><wbr /><br><span style="color:#330099;line-height:1.8em;">我不否认你们是时尚, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">你们走在前沿, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">你们席卷潮流... </span><wbr /><br><span style="color:#330099;line-height:1.8em;">但是看看你们都做了些啥子? </span><wbr /><br><span style="color:#330099;line-height:1.8em;">带给我们这些同龄人啥子影响.. </span><wbr /><br><span style="color:#330099;line-height:1.8em;">或许你们不会承认, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">也觉得是我的不可理喻!... </span><wbr /><br></span><wbr /><span style="color:#330099;line-height:1.8em;">(一) </span><wbr /><br><span style="color:#330099;line-height:1.8em;">那些模仿非主流的男男女女, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">都学了一套挨求的站姿-内八字。 </span><wbr /><br><span style="color:#330099;line-height:1.8em;">他们选择走路时候盘起盘起脚走, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">给人一种漂浮又弹性的感觉, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">从后面看以为是大腿内侧有痔疮, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">从正面看以为臀部夹了点不干净的东西. </span><wbr /><br><span style="color:#330099;line-height:1.8em;">其实你们可以好好走路的, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">比如有精神的把脚甩直,打称. </span><wbr /><br><span style="color:#330099;line-height:1.8em;">何必要故意做出一副病态呢? </span><wbr /><br><span style="color:#330099;line-height:1.8em;">带着一些懒惰和不合群的步伐, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">盘脚盘手的在路上潜行... </span><wbr /><br><span style="color:#330099;line-height:1.8em;">(二) </span><wbr /><br><span style="color:#330099;line-height:1.8em;">163相册里面, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">诸多的少男少女们都选择拿PS, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">和制作图片的软件开发自己的相貌. </span><wbr /><br><span style="color:#330099;line-height:1.8em;">比如整点花花儿在脑壳上顶起, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">自己做些奇怪的表情, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">傍边写着奇怪的话, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">什么&quot;我的寂寞是因为你的离开&quot;, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">&quot;这个女子妩媚得让我心疼&quot;… </span><wbr /><br><span style="color:#330099;line-height:1.8em;">滚你妈吧! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">有意思吗? </span><wbr /><br><span style="color:#330099;line-height:1.8em;">你们的目的是什么? </span><wbr /><br><span style="color:#330099;line-height:1.8em;">很港台?很明星,或者有封面效果???? </span><wbr /><br><span style="color:#330099;line-height:1.8em;">女娃娃就把眼睫毛整得多长, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">上面放一盒火柴都不得事! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">男的就把眼镜儿带起,嘴巴嘟起, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">镜头从上面打下来, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">头发整来长一截,少一截! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">让我看到就想一个巴掌盖过去！ </span><wbr /><br><span style="color:#330099;line-height:1.8em;">这些图片和颜色,让我想起了动乱年代, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">那些要翻身的农伯伯在公社门口贴的那些惨案受害者的大字报. </span><wbr /><br><span style="color:#330099;line-height:1.8em;">请不要那么做作,其实还原它们的本色! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">才是你们自己,或者那样还会更吸引人,? </span><wbr /><br><span style="color:#330099;line-height:1.8em;">（三） </span><wbr /><br><span style="color:#330099;line-height:1.8em;">裤子上大下小， </span><wbr /><br><span style="color:#330099;line-height:1.8em;">向我们展示了虽属阳痿但依然想重振雄风的痿难男下半身形象 </span><wbr /><br><span style="color:#330099;line-height:1.8em;">似乎要淫遍天下壮女 </span><wbr /><br><span style="color:#330099;line-height:1.8em;">却又似乎连芙蓉姐姐也敌不过！ </span><wbr /><br><span style="color:#330099;line-height:1.8em;">装B人士的典范！ </span><wbr /><br><span style="color:#330099;line-height:1.8em;">真正楷模！ </span><wbr /><br><span style="color:#330099;line-height:1.8em;">(四) </span><wbr /><br><span style="color:#330099;line-height:1.8em;">穿衣服也是个怪现象! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">穿了骷髅服就觉得牛叉 </span><wbr /><br><span style="color:#330099;line-height:1.8em;">地摊上的甩货也觉得时尚 </span><wbr /><br><span style="color:#330099;line-height:1.8em;">社会允许你们穿得五颜六色, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">也允许你们斤斤掉掉, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">也允许你们露背敞胸怀, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">但是那也是形式上的允许! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">其实好多时候你们都太牵强了. </span><wbr /><br><span style="color:#330099;line-height:1.8em;">路桥和南大街是你们常常光顾的地方, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">我们不能说在那买穿的就是档次不够或者不好看! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">我没有那个意思,只是你们都太过于了, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">进店里就按到用布料最少, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">颜色最高调的买, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">太阳帽要带那种漏风又不防晒的, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">眼镜颜色是比太阳还刺眼的色彩, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">你们戴雷朋太阳镜我也就不说了！ </span><wbr /><br><span style="color:#330099;line-height:1.8em;">有多少太阳镜是不满100人民币的垃圾货！ </span><wbr /><br><span style="color:#330099;line-height:1.8em;">皮带是又有针又有刺的皮制产物, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">手上的佩饰越多越好! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">平时走哪,妈老汉喊你多提个包包你们都说重! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">这下遇到非主流了, </span><wbr /><br><span style="color:#330099;line-height:1.8em;">身上可以戴的地方都一次性整满! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">手镯8个8个的戴起,这个都不够! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">还要在手上缠些绳绳带带 </span><wbr /><br><span style="color:#330099;line-height:1.8em;">耳朵上面穿的孔比自己5官的7孔都还要多几个眼眼出来! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">袜子颜色一样一只,夏天非热,袜子提到**那! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">穿的短裤儿里面又露片布出来搭到前面! </span><wbr /><br><span style="color:#330099;line-height:1.8em;">亲爱的朋友们,你们不长痱子? </span><wbr /><br><span style="color:#330099;line-height:1.8em;">身体都是国防级别的哦...</span><wbr /> <!--v:3.2--> ]]></description>
<category><![CDATA[个人日记]]></category>
<author><![CDATA[271284919@qq.com(追風〓〓無痕)]]></author>
<comments>http://271284919.qzone.qq.com/blog/1196624636#comment</comments>
<qz:effect>8389120</qz:effect>
<pubDate>Sun, 02 Dec 2007 19:43:56 GMT</pubDate>
<guid>http://271284919.qzone.qq.com/blog/1196624636</guid>
</item>

</channel>
</rss>

