<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[加菲爬网 Green-power!]]></title> 
<link>http://www.bbscool.com.cn/index.php</link> 
<description><![CDATA[一只橘色肥猫的“新生记” *_^]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[加菲爬网 Green-power!]]></copyright>
<item>
<link>http://www.bbscool.com.cn/alias/alchemy-database-under-macosx-lion/</link>
<title><![CDATA[MacOS 狮子下编译使用Alchemy-Database （基于REDIS）]]></title> 
<author>bbscool &lt;admin@yourname.com&gt;</author>
<category><![CDATA[原创文稿]]></category>
<pubDate>Thu, 03 May 2012 14:25:24 +0000</pubDate> 
<guid>http://www.bbscool.com.cn/alias/alchemy-database-under-macosx-lion/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: 18px;">0 吐槽：</span><br/><br/>如果你发现编写软件的屌丝声称他的软件可以在MacOS下使用，而又没有证据证明他使用MacOS来开发这套软件，那千万不要以为这玩意真能简单编译过去……估计连普通的BSD系统都过不去…<br/><br/><span style="font-size: 18px;">1 最先的准备：</span><br/><br/>既然是Lion的系统，你大概安装了XCode 4.3+吧？那么，请你把XCode Commandline Tools也安装好哦！<br/><br/><span style="font-size: 18px;">2 神奇的GCC：</span><br/><br/>回到引言里阐述的问题…<br/>这软件肯定不是在MacOS下开发的吧…… 基于llvm的gcc编译完全无法通过。由于XCode4之后不再附带gnu版的gcc，于是，还要蛋疼的先编译正常版的gcc。<br/><br/>先把源代码搞下来<br/>$ curl -O <a href="http://opensource.apple.com/tarballs/gcc/gcc-5666.3.tar.gz" target="_blank">http://openso...5666.3.tar.gz</a><br/>$ tar zxf gcc-5666.3.tar.gz<br/>$ cd gcc-5666.3<br/><br/>准备好相应的输出目录<br/>$ mkdir -p build/obj build/dst build/sym<br/><br/>然后使用gunmake编译（建议在中午吃饭前做，然后一顿午饭的时间基本上可以编译完成了）<br/><br/>$ gnumake install RC_OS=macos RC_ARCHS='i386 x86_64' TARGETS='i386 x86_64' SRCROOT=`pwd` OBJROOT=`pwd`/build/obj DSTROOT=`pwd`/build/dst SYMROOT=`pwd`/build/sym<br/><br/>编译完成后，相应的bin各就各位<br/>$ sudo ditto build/dst /<br/><br/>随后输入which gcc-4.2 && gcc-4.2 --version，提示：<br/><br/>$ which gcc-4.2 && gcc-4.2 --version<br/>/usr/bin/gcc-4.2<br/>i686-apple-darwin11-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3)<br/>Copyright (C) 2007 Free Software Foundation, Inc.<br/>This is free software; see the source for copying conditions.&nbsp;&nbsp;There is NO<br/>warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.<br/><br/>看到了么？已经没有llvm字样了。然后咱就可以准备干正事了。<br/><br/><span style="font-size: 18px;">3 编译坑爹的Alchemy-Database</span><br/><br/>这东西其实蛮有创意的，能对一个K-V数据库加入SQL的支持，最适合我这种不想学新东西但是想快速开发出产品的同志了。但是呢，在狮子下的编译却是相当坑爹。首先按照官方README：<br/><br/>QUICK HOW TO<br/>BUILD:<br/>1,) git clone git://github.com/JakSprats/Alchemy-Database.git<br/>2.) cd Alchemy-Database<br/>3.) make<br/><br/>反正呢，进行到第三步就各种坑爹了。<br/><br/>首先，要定义gnu-gcc的路径。<br/><br/>export CC="/usr/bin/gcc-4.2"<br/>export CXX="/usr/bin/g++-4.2"<br/>export LD="/usr/bin/gcc-4.2"<br/><br/>随后记得在make的时候加上TARGET_CC的flag（否则luajit编译过不去）<br/><br/>make TARGET_CC="gcc-4.2"<br/><br/>随后在编译pluto的时候又碰到麻烦。原始的Makefile居然就直接调用makefile.linux了。不管他。<br/>首先编辑makefile.linux修改LIBTOOL的路径为glibtool<br/>然后把mv ./libpluto.so.0.0.0这行删除<br/>然后继续make的过程，最后出来一个pluto.o，将他做一个副本，取名叫pluto.so（反正也没用，要返工重来的）<br/>继续make，发现pluto这一关算是过去了。<br/><br/>接下来准备好XCode，我们要改代码了。<br/><br/>首先， db_hooks.c:76: error: conflicting types for ‘usleep’。修改DB/db_hooks.c文件，把相应的重定义注释掉。<br/>然后， xdb_common.h:22:20: error: endian.h: No such file or directory。打开redis/src/xdb_common.h，去掉对endian.h的include，改为：<br/><br/><div class="code"><br/>#include &lt;sys/types.h&gt;<br/>#include &lt;sys/param.h&gt;<br/></div><br/><br/>保存，继续make。卧槽终于通过了。<br/><br/><span style="font-size: 18px;">4 返工pluto</span><br/><br/>于是你兴冲冲地想去执行alchemy-server，于是马上一碰冷水。<br/><br/>$ ./alchemy-server ../redis.conf <br/>loadLuaHelperFile: ././core/internal.lua err: error loading module 'pluto' from file './pluto.so':<br/>&nbsp;&nbsp;dlopen(./pluto.so, 2): no suitable image found.&nbsp;&nbsp;Did find:<br/>&nbsp;&nbsp;./pluto.so: mach-o, but wrong filetype<br/><br/>于是，使用makefile.linux的后果便出现了。随后只要进入redis/deps/pluto/目录下，make macosx，随后目录下会声称pluto.dylib，将他复制到redis/src/目录下并覆盖pluto.so即可。<br/><br/><span style="font-size: 18px;">5 卧槽终于能用了……</span><br/><br/>有一个问题，如果你运行起来出现Bus Error: 10的提示，则可能jemalloc不正常。修改DB目录下的makefile，将相应的开关关闭即可<br/>哎…………睡觉睡觉…………<br/>Tags - <a href="http://www.bbscool.com.cn/tags/redis/" rel="tag">redis</a> , <a href="http://www.bbscool.com.cn/tags/alchemy-database/" rel="tag">alchemy-database</a> , <a href="http://www.bbscool.com.cn/tags/macosx/" rel="tag">macosx</a> , <a href="http://www.bbscool.com.cn/tags/lion/" rel="tag">lion</a>
]]>
</description>
</item><item>
<link>http://www.bbscool.com.cn/alias/real-ipv6-via-openvpn/</link>
<title><![CDATA[2012-06-06大限将至！你还在使用ipv4么？教你怎么通过OpenVPN原生接入IPV6环境！]]></title> 
<author>bbscool &lt;admin@yourname.com&gt;</author>
<category><![CDATA[原创文稿]]></category>
<pubDate>Sat, 17 Mar 2012 09:58:21 +0000</pubDate> 
<guid>http://www.bbscool.com.cn/alias/real-ipv6-via-openvpn/</guid> 
<description>
<![CDATA[ 
	当年家里没有装锅的时候，只得跑到大学里cernet2覆盖的教学楼里，上211工程大学的ipv6站观看bbc、discovery的直播。cernet2在我大学里是双栈接入的，无需配置就可以获取ipv6地址。后来在家也尝试了6to4,Teredo等多种方式尝鲜 ipv6，但是由于种种的原因（大家懂的）使用电信宽带的碰友们再也不能通过上述几种方法接入ipv6了。<br/><br/>前几天linode日本机房完成了ipv6改造，于是就蛋疼的去开通了一个，又果断地厚着脸皮申请了一个/56的pool。于是好玩的事情开始了：准备分给家里所有的设备一个ipv6地址~~>_<<br/><br/>申请ipv6地址池需要向管理员打报告。经过一番交流之后获得以下的地址池：<br/><div class="code"><br/>Public IPs&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2400:8900:*:da16/64<br/><br/>Public IP Pools&nbsp;&nbsp; 2400:8900:*:*00::/56 routed to 2400:8900:*:da16<br/></div><br/>在服务器内我已经配置了基于tap的openvpn虚拟专用网络，于是下一步是将ipv6地址通告给接入openvpn的用户。这里就要用到radvd这个东西。自己装的ubuntu可以通过apt-get install radvd顺利安装radvd。不过，在我想要service radvd start的时候，他告知我“必须开通ipv6转发才可以继续”。<br/><br/>于是这下问题就来了，我按照提示开启了ipv6转发。<br/><div class="code"><br/>echo 1 &gt; /proc/sys/net/ipv6/conf/all/forwarding<br/></div><br/>但是捏，开启转发后，服务器无法再连入ipv6网络了。此时ping6 ipv6.google.com提示network unreachable.<br/><br/>这下就蛋疼了，如果不开启转发，就无法进行下去了啊。经过与 linode客服人员的交谈（linode不愧是被列入Inc top500的企业！服务就是好！客服一叫就应），了解到无状态ipv6 autoconf是不能在开启了ipv6转发的状态下完成的。于是自然地想到编辑/etc/network/interfaces进行手动配置。在ipv4配置下加入：<br/><div class="code"><br/>up ip route add default via fe80::1 dev eth0<br/>up /sbin/ip -6 addr add 2400:8900:*:da16/64 dev eth0<br/></div><br/>shutdown -r now之后，重新开启ipv6转发，一切正常了。随后开始配置radvd。我们从分配到的/56的ip池中划分一个/64的subnet（多么蛋疼的事情啊，ipv6了还划分子网）供给经由openvpn连入的计算机。定义这个ip池为：2400:8900:*:*ff::/64<br/><br/>果断编辑/etc/radvd.conf (如果没有则创建)，写入：<br/><div class="code"><br/>interface tap0<br/>&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AdvSendAdvert on;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MinRtrAdvInterval 30;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MaxRtrAdvInterval 100;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;prefix 2400:8900:*:*ff::/64<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AdvOnLink on;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AdvAutonomous on;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AdvRouterAddr off;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#125;;<br/><br/>&#125;;<br/></div><br/>:w+:q之后，重启radvd服务。此时如果你链接openvpn，已经发现能获取 ipv6地址了。<br/><a href="http://www.bbscool.com.cn/attachment.php?fid=68" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=68" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>但是这个时候，openvpn客户端还是无法在ipv6的internet上冲浪。此时需要自己将subnet路由出去。这里需要一个叫zebra的东西（今天都是跟动物有关呢……），他是一个路由软件包，操作上跟cisco系列路由器很相像（有考过CCNP的孩子们终于觉得自己所学的东西有用武之地了呢！比如在下）。在ubuntu里，zebra被归类到了一个叫quagga的软件包中。果断apt-get install quagga.<br/><br/>安装后编辑/etc/quagga/daemon，将zebra=no改成 zebra=yes<br/><br/>随后新建/etc/quagga/zebra.conf ,输入以下内容<br/><div class="code"><br/>hostname r-ipv6.bbscool.com.cn<br/>password 我喜欢用钉宫教主的名字做密码<br/>enable password 你喜欢吗？<br/>log file /var/log/zebra.log<br/>interface tap0<br/>&nbsp;&nbsp;ipv6 address 2400:8900:*:*ff::1/64<br/>ip forwarding<br/>ipv6 forwarding<br/></div><br/>保存后，service quagga restart即可。<br/><br/>喜欢回顾以下CCNP学习历程的孩子们也可以登录telnet手动配置。<br/><div class="code"><br/># telnet<br/>&gt; open 127.0.0.1 2601<br/><br/>....<br/><br/>&gt; en<br/># conf term<br/># interface tap0<br/># ipv6 address 2400:8900:*:*ff::1/64<br/># exit<br/># ip forwarding<br/># ipv6 forwarding<br/># exit<br/></div><br/>不过这样的配置不会被保存哦>_<<br/><br/>OK 这下你就可以冲浪ipv6了！不借助任何v4-to-v6的过渡手段，而是真正原生接入 ipv6 网络哦！<br/><a href="http://www.bbscool.com.cn/attachment.php?fid=69" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=69" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>只可惜家里刷了 dd-wrt 的路由器不支持ipv6。哪一天找一个能支持v6的固件，这样就可以免拨openvpn直接获取ipv6地址冲浪了！<br/><br/>Tags - <a href="http://www.bbscool.com.cn/tags/ipv6/" rel="tag">ipv6</a> , <a href="http://www.bbscool.com.cn/tags/%25E5%258E%259F%25E7%2594%259F%25E6%258E%25A5%25E5%2585%25A5/" rel="tag">原生接入</a> , <a href="http://www.bbscool.com.cn/tags/linode/" rel="tag">linode</a> , <a href="http://www.bbscool.com.cn/tags/vps/" rel="tag">vps</a>
]]>
</description>
</item><item>
<link>http://www.bbscool.com.cn/alias/linode-japan-facility/</link>
<title><![CDATA[啊哈……换到11区机房了]]></title> 
<author>bbscool &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统公告]]></category>
<pubDate>Mon, 03 Oct 2011 14:06:04 +0000</pubDate> 
<guid>http://www.bbscool.com.cn/alias/linode-japan-facility/</guid> 
<description>
<![CDATA[ 
	<a href="http://www.bbscool.com.cn/attachment.php?fid=67" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=67" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>经过几番周折，最终还是投靠了昂贵的Linode日本机房。不过机器连电信速度确实可以（电信连到北美的线路几乎全线满负荷，thanks to those&nbsp;&nbsp;seedbox fuckers）。今后就维持联通、移动走yardvps电信走Linode的格局~<br/><br/>呵呵，不要ping本blog的网址以求获得我在日本的IP，我在前面加了一个webluker以应对流量和南北互通问题~~Linode对流量控制的很严伤不起的~<br/>Tags - <a href="http://www.bbscool.com.cn/tags/linode/" rel="tag">linode</a> , <a href="http://www.bbscool.com.cn/tags/vps/" rel="tag">vps</a> , <a href="http://www.bbscool.com.cn/tags/%25E4%25B8%25BB%25E6%259C%25BA/" rel="tag">主机</a>
]]>
</description>
</item><item>
<link>http://www.bbscool.com.cn/alias/2011-new-start-lol/</link>
<title><![CDATA[博客重开…]]></title> 
<author>bbscool &lt;admin@yourname.com&gt;</author>
<category><![CDATA[心情故事]]></category>
<pubDate>Sun, 07 Aug 2011 04:23:05 +0000</pubDate> 
<guid>http://www.bbscool.com.cn/alias/2011-new-start-lol/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: 14px;"><br/>　　卧槽！Chrome我恨死你了！刚才写了一大段东西都被清空了一刚！奶奶的！！<br/><br/>　　哎 也不想重写了。宣告一下自己的blog在受工信部持续1年的迫害之后，重新在美国加州的服务器上开放了…嗯，这次在加州购买了自己的服务器，不想给别人添麻烦了，也好写一点尺度更大的东西。<br/><br/>　　翻一翻这05年开的“博客”，总能让我的思绪飞回到高中的那段青涩岁月里。现在的我，和大学的朋友合伙开了公司，还有了心仪的妹子，觉得自己已经是蛮幸福的了。常言道，人不能被过去绊住前进的脚步，我想现在的自己已经能够看开一些东西了，也应该是给自己一真正的新开始了。于是，2011年生日那一天，我把blog中某一个板块下的文章全部删除了…<br/><br/>　　好吧，这就算1年之后的新开始了。下一篇日志都不知道神马时候回去写……<br/></span>
]]>
</description>
</item><item>
<link>http://www.bbscool.com.cn/alias/i-have-a-dream/</link>
<title><![CDATA[I have a dream... from the time of EVE]]></title> 
<author>bbscool &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统公告]]></category>
<pubDate>Sat, 07 Aug 2010 12:27:38 +0000</pubDate> 
<guid>http://www.bbscool.com.cn/alias/i-have-a-dream/</guid> 
<description>
<![CDATA[ 
	<strong><span style="color: #4169E1;"><span style="font-size: 18px;">「I have a dream」</span></span></strong> <br/><span style="color: #FF1493;">推荐指数：★★★★★</span><br/><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=64" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=64" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>试听下载：<br/><a href="http://u.115.com/file/f0a3b71750" target="_blank">http://u.115....le/f0a3b71750</a><br/><br/>歌词大意：<br/><span style="color: #2E8B57;"><br/>夏日 清晨<br/>草地 绿色夺目耀眼<br/>你坐在公园的石凳上 笑了<br/><br/>我想要知道<br/>映在你眼里的天空 是什么颜色<br/>即便你 无法用眼睛去感知世界…<br/><br/>I have a dream<br/>它太微不足道<br/>让我不敢向你转达<br/><br/>太阳升起 睁开眼眸<br/>迈步溶入 人群之中<br/>我在如此往复的每一天里<br/>探寻着 小小的梦想…<br/><br/>虽然 在我身上找不到“心”<br/>即便如此<br/>依旧有难以名状的事物 造就了我们<br/><br/>你的脸颊 映在夜行列车的窗户上<br/>相信 灯光笼罩的街巷 将会苏醒<br/><br/>I have a dream<br/>在那无眠的夜里…<br/>在了却几段心愿之后…<br/><br/>春天来临 微风吹拂<br/>我们并肩而行<br/>你我怀抱这小小的心愿<br/>只为这不曾改变的每一天<br/><br/>岁月匆匆 你我曾擦肩而过<br/>熬过冰冷的冬日 我们又几度重逢<br/>太阳升起 微风吹拂<br/>迈步溶入 人群之中<br/>为了你 为了我<br/>这世界 不断地编织着美好的梦…</span><br/>Tags - <a href="http://www.bbscool.com.cn/tags/%25E9%259F%25B3%25E4%25B9%2590/" rel="tag">音乐</a> , <a href="http://www.bbscool.com.cn/tags/eve%25E7%259A%2584%25E6%2597%25B6%25E9%2597%25B4/" rel="tag">eve的时间</a>
]]>
</description>
</item><item>
<link>http://www.bbscool.com.cn/alias/bbscool-video-blog-001/</link>
<title><![CDATA[【视频博客・第一弹】 6.12 日本馆馆日 暴走湿勃！！]]></title> 
<author>bbscool &lt;admin@yourname.com&gt;</author>
<category><![CDATA[原创文稿]]></category>
<pubDate>Wed, 16 Jun 2010 07:37:27 +0000</pubDate> 
<guid>http://www.bbscool.com.cn/alias/bbscool-video-blog-001/</guid> 
<description>
<![CDATA[ 
	<span style="font-size: 18px;">这是本人第一篇正式的视频博客。 高中的时候，经常喜欢在屏幕前记文字版流水账。现在，家里有了设备，也经常出门拍片子，硬盘里已经积累的一大堆没制作过的素材。 本人就想不妨将他们整合起来，做视频流水账发布~ 也算是让键盘歇息歇息吧~也希望大家能够喜欢！<br/><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=63" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=63" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>优酷视频：<br/><br/><a href="http://v.youku.com/v_show/id_XMTgxODI5MTg4.html" target="_blank">http://v.youk...ODI5MTg4.html</a><br/><br/><br/>注：本人所有的视频博客的720p高清版，将在华盟G.独家发布！详情可以登录华盟官方论坛获取！</span><br/>Tags - <a href="http://www.bbscool.com.cn/tags/%25E8%25A7%2586%25E9%25A2%2591/" rel="tag">视频</a> , <a href="http://www.bbscool.com.cn/tags/%25E5%258D%259A%25E5%25AE%25A2/" rel="tag">博客</a> , <a href="http://www.bbscool.com.cn/tags/%25E4%25B8%2596%25E5%258D%259A/" rel="tag">世博</a> , <a href="http://www.bbscool.com.cn/tags/arashi/" rel="tag">arashi</a> , <a href="http://www.bbscool.com.cn/tags/cofesta/" rel="tag">cofesta</a> , <a href="http://www.bbscool.com.cn/tags/%25E8%2584%2591%25E6%25AE%258B%25E6%2598%259F/" rel="tag">脑残星</a> , <a href="http://www.bbscool.com.cn/tags/luckystar/" rel="tag">luckystar</a>
]]>
</description>
</item><item>
<link>http://www.bbscool.com.cn/alias/sid-rain/</link>
<title><![CDATA[雨…]]></title> 
<author>bbscool &lt;admin@yourname.com&gt;</author>
<category><![CDATA[音乐天堂]]></category>
<pubDate>Sun, 06 Jun 2010 12:47:21 +0000</pubDate> 
<guid>http://www.bbscool.com.cn/alias/sid-rain/</guid> 
<description>
<![CDATA[ 
	<strong><span style="color: #4169E1;"><span style="font-size: 18px;">「レイン」</span></span></strong> <br/><span style="color: #FF1493;">推荐指数：★★★★★</span><br/><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=62" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=62" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>试听下载：<a href="http://u.115.com/file/f09a741576" target="_blank">http://u.115....le/f09a741576</a><br/><br/>歌词大意：<br/><span style="color: #FF1493;"><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/></span><br/><br/>Tags - <a href="http://www.bbscool.com.cn/tags/sid/" rel="tag">sid</a> , <a href="http://www.bbscool.com.cn/tags/%25E3%2583%25AC%25E3%2582%25A4%25E3%2583%25B3/" rel="tag">レイン</a> , <a href="http://www.bbscool.com.cn/tags/%25E9%259F%25B3%25E4%25B9%2590/" rel="tag">音乐</a> , <a href="http://www.bbscool.com.cn/tags/%25E5%25BF%25A7%25E4%25BC%25A4/" rel="tag">忧伤</a>
]]>
</description>
</item><item>
<link>http://www.bbscool.com.cn/alias/my-i7-first-night/</link>
<title><![CDATA[我和爱妻的SM日记 第一弹]]></title> 
<author>bbscool &lt;admin@yourname.com&gt;</author>
<category><![CDATA[系统公告]]></category>
<pubDate>Wed, 17 Mar 2010 06:26:41 +0000</pubDate> 
<guid>http://www.bbscool.com.cn/alias/my-i7-first-night/</guid> 
<description>
<![CDATA[ 
	2180大羊娶了一老婆,又花7000置办嫁妆. 花了整整一个下午+晚上把新娘接进门~今晚是第一夜,马上拿起泪烛和皮鞭准备SM之.<br/><br/>首先很不自量力地用200BLCK 21倍频,默认电压上. 结果还没有登陆win7就一个蓝屏炸了回去<br/><br/>随后详调. 先用20倍频,CPU 给1.26v,QPI给1.28V,DRAM给1.5v. 成功开机. 温度42. 运行prime95后死机失败.<br/><br/>于是再降倍频到19...已经是我的底限了. CPU还是给1.26, QPI 1.35v, DRAM调时序9-9-9-24 指令率2T,上电压1.65v. 开机一切顺利,温度40. 跑prime95, 居然顺利地进行了`` 不过给老婆配的风扇很差,不是纯铜,效果不佳,满载时核心温度达72度.<br/><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=61" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=61" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>随后持续用素数之鞭抽打爱妻4小时, 貌似比较稳定,只呻吟不罢工.高潮一波接一波~`<br/><br/>不错... 接下来几天考虑用更恶劣的环境进行调教.<br/>Tags - <a href="http://www.bbscool.com.cn/tags/core/" rel="tag">core</a> , <a href="http://www.bbscool.com.cn/tags/i7/" rel="tag">i7</a> , <a href="http://www.bbscool.com.cn/tags/930/" rel="tag">930</a> , <a href="http://www.bbscool.com.cn/tags/%25E8%25B0%2583%25E6%2595%2599/" rel="tag">调教</a>
]]>
</description>
</item><item>
<link>http://www.bbscool.com.cn/alias/kimi-no-shiranai-monogatari/</link>
<title><![CDATA[化物语 ED 你所不知道的秘密(君の知らない物語) 泪目啊!! 我果然是少女...]]></title> 
<author>bbscool &lt;admin@yourname.com&gt;</author>
<category><![CDATA[音乐天堂]]></category>
<pubDate>Sun, 16 Aug 2009 07:05:08 +0000</pubDate> 
<guid>http://www.bbscool.com.cn/alias/kimi-no-shiranai-monogatari/</guid> 
<description>
<![CDATA[ 
	<strong><span style="color: #4169E1;"><span style="font-size: 18px;">「君の知らない物語」</span></span></strong> <br/><span style="color: #FF1493;">推荐指数：★★★★★</span><br/><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=60" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=60" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>试听下载：<a href="http://www.91files.com/?S8CXQWM92G9HR1MA2J0B" target="_blank">http://www.91...92G9HR1MA2J0B</a><br/><br/><br/>歌词大意：<br/><span style="color: #FF1493;"><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/>逞强任性的我 其实是胆小鬼<br/>装作对你的一切毫无兴趣<br/>可是 心灵的刺痛一天比一天强烈<br/>啊 “喜欢一个人” 原来就是这样<br/><br/>“怎么了？说给我听听？”<br/>心中回响着一个声音<br/>我想要待在你的身旁<br/>可现实是那样的残酷<br/><br/>没有说出来<br/>说不出口<br/>和你在一起的时刻 永远无法重现<br/><br/>到现在 我依旧能依稀想起<br/>那个夏日 闪烁的繁星<br/>开心的那张脸 生气的那张脸<br/>都曾是我的最爱<br/>很奇怪吧 你明明是知道的…<br/>穿越无垠的夜空<br/>那个深埋于我回忆里的"你"<br/>手指着夜空 用天真无邪的声音<br/>道出了那一个…<br/>…你所不知道的 只属于我的秘密<br/></span><br/><br/>Tags - <a href="http://www.bbscool.com.cn/tags/%25E9%259F%25B3%25E4%25B9%2590/" rel="tag">音乐</a> , <a href="http://www.bbscool.com.cn/tags/%25E5%258C%2596%25E7%2589%25A9%25E8%25AF%25AD/" rel="tag">化物语</a>
]]>
</description>
</item><item>
<link>http://www.bbscool.com.cn/alias/east-of-the-eden-vol-01/</link>
<title><![CDATA[东伊 Vol01 初回限定]]></title> 
<author>bbscool &lt;admin@yourname.com&gt;</author>
<category><![CDATA[动漫观感]]></category>
<pubDate>Thu, 30 Jul 2009 04:56:19 +0000</pubDate> 
<guid>http://www.bbscool.com.cn/alias/east-of-the-eden-vol-01/</guid> 
<description>
<![CDATA[ 
	<a href="http://www.bbscool.com.cn/attachment.php?fid=46" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=46" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=47" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=47" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=48" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=48" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=49" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=49" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=50" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=50" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=51" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=51" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=52" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=52" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=53" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=53" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=54" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=54" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=55" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=55" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=56" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=56" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=57" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=57" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=58" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=58" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><a href="http://www.bbscool.com.cn/attachment.php?fid=59" class="highslide" onclick="return hs.expand(this)"><img src="http://www.bbscool.com.cn/attachment.php?fid=59" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/>Tags - <a href="http://www.bbscool.com.cn/tags/%25E4%25B8%259C%25E4%25B9%258B%25E4%25BC%258A%25E7%2594%25B8/" rel="tag">东之伊甸</a> , <a href="http://www.bbscool.com.cn/tags/%25E5%258A%25A8%25E6%25BC%25AB/" rel="tag">动漫</a>
]]>
</description>
</item>
</channel>
</rss>
