<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[传说中的部落格]]></title> 
<link>http://www.oslog.com/index.php</link> 
<description><![CDATA[自己方便,与人方便!]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[传说中的部落格]]></copyright>
<item>
<link>http://www.oslog.com/read.php/281.htm</link>
<title><![CDATA[推荐一个在线小说阅读器(没有弹窗哦)]]></title> 
<author>oslog &lt;admin@oslog.com&gt;</author>
<category><![CDATA[互联网IT]]></category>
<pubDate>Mon, 30 Aug 2010 15:55:30 +0000</pubDate> 
<guid>http://www.oslog.com/read.php/281.htm</guid> 
<description>
<![CDATA[ 
	<p>&nbsp;&nbsp;首先:我承认我是为了赚点Q币,但是这个小说阅读器确实还不错哈!!!</p><p>&nbsp;&nbsp;喜欢看网络小说的朋友不妨试试,不要钱的,看盗贴小说也不花钱,嘿嘿</p><p>&nbsp;&nbsp;感兴趣的朋友点击下面广告就能<a href="http://www.novelreader.net/downfile.asp?id=9726"><span style="color: #f00">下载</span></a>了^^</p><p>&nbsp;&nbsp;<a href="http://www.novelreader.net/downfile.asp?id=9726"><img alt="" src="attachment/300-300.gif" style="width: 300px; height: 300px" /></a></p><br/>Tags - <a href="http://www.oslog.com/go.php/tags/%25E6%2597%25A0%25E5%25BC%25B9%25E7%25AA%2597%25E5%25B0%258F%25E8%25AF%25B4%25E7%25BD%2591%25E7%25AB%2599/" rel="tag">无弹窗小说网站</a> , <a href="http://www.oslog.com/go.php/tags/%25E6%2597%25A0%25E5%25BC%25B9%25E7%25AA%2597%25E5%25B0%258F%25E8%25AF%25B4%25E9%2598%2585%25E8%25AF%25BB%25E5%2599%25A8/" rel="tag">无弹窗小说阅读器</a>
]]>
</description>
</item><item>
<link>http://www.oslog.com/read.php/280.htm</link>
<title><![CDATA[朝鲜队真要回去挖煤了吗?]]></title> 
<author>oslog &lt;admin@oslog.com&gt;</author>
<category><![CDATA[新闻杂事]]></category>
<pubDate>Mon, 21 Jun 2010 14:53:53 +0000</pubDate> 
<guid>http://www.oslog.com/read.php/280.htm</guid> 
<description>
<![CDATA[ 
	<p>&nbsp;&nbsp;7:0大败,不晓得回去是不是真要挖煤了,这比分戏言也得成真啊</p><p>&nbsp;&nbsp;<img alt="" src="attachment.php?fid=248" /></p><br/>Tags - <a href="http://www.oslog.com/go.php/tags/%25E6%259C%259D%25E9%25B2%259C%25E6%258C%2596%25E7%2585%25A4/" rel="tag">朝鲜挖煤</a>
]]>
</description>
</item><item>
<link>http://www.oslog.com/read.php/279.htm</link>
<title><![CDATA[世界杯部分球队战术图解（有图有真相）]]></title> 
<author>oslog &lt;admin@oslog.com&gt;</author>
<category><![CDATA[摸爬滚打]]></category>
<pubDate>Mon, 14 Jun 2010 05:09:48 +0000</pubDate> 
<guid>http://www.oslog.com/read.php/279.htm</guid> 
<description>
<![CDATA[ 
	<blockquote>&nbsp;&nbsp;如图所示</blockquote><blockquote>&nbsp;&nbsp;<img alt="" src="attachment.php?fid=247" /></blockquote><br/>Tags - <a href="http://www.oslog.com/go.php/tags/%25E4%25B8%2596%25E7%2595%258C%25E6%259D%25AF/" rel="tag">世界杯</a> , <a href="http://www.oslog.com/go.php/tags/%25E7%2590%2583%25E9%2598%259F%25E6%2588%2598%25E6%259C%25AF/" rel="tag">球队战术</a> , <a href="http://www.oslog.com/go.php/tags/%25E6%259C%2589%25E5%259B%25BE%25E6%259C%2589%25E7%259C%259F%25E7%259B%25B8/" rel="tag">有图有真相</a>
]]>
</description>
</item><item>
<link>http://www.oslog.com/read.php/278.htm</link>
<title><![CDATA[查看修改mysql连接数，打印进程]]></title> 
<author>oslog &lt;admin@oslog.com&gt;</author>
<category><![CDATA[互联网IT]]></category>
<pubDate>Thu, 03 Jun 2010 06:24:35 +0000</pubDate> 
<guid>http://www.oslog.com/read.php/278.htm</guid> 
<description>
<![CDATA[ 
	<p>&nbsp;&nbsp;今天有一台mysql服务器突然连接数暴增，并且等待进程全部被锁...因为问题解决不当，导致被骂...OTL</p><p>&nbsp;&nbsp;总结：以后要快速定位错误，布置解决方案</p><p>&nbsp;&nbsp;登录到mysql客户端后，使用status命令也能获得thread连接数以及当前连接的id</p><p>&nbsp;&nbsp;或者用</p><p>&nbsp;&nbsp;show full processlist</p><p>&nbsp;&nbsp;看一下所有连接进程，注意查看进程等待时间以及所处状态 是否locked</p><p>&nbsp;&nbsp;如果进程过多，就把进程打印下来，然后查看</p><p>&nbsp;&nbsp;mysql -e &#39;show full processlist;&#39; &gt; 111</p><p>&nbsp;&nbsp;查找非locked的进程，一般就是当前执行中卡死，导致后面的进程排队的原因。</p><p>&nbsp;&nbsp;另外，修改mysql最大连接数的方法：</p><p>&nbsp;&nbsp;编辑MySQL(和PHP搭配之最佳组合)配置文件　<br />&nbsp;&nbsp;my.cnf 或者是 my.ini</p><p>&nbsp;&nbsp;在[MySQL(和PHP搭配之最佳组合)d]配置段添加：<br />&nbsp;&nbsp;max_connections = 1000</p><p>&nbsp;&nbsp;保存，重启MySQL(和PHP搭配之最佳组合)服务。</p><p>&nbsp;&nbsp;然后用命令：<br />&nbsp;&nbsp;MySQL(和PHP搭配之最佳组合)admin -uroot -p variables<br />&nbsp;&nbsp;输入root数据库账号的密码后可看到<br />&nbsp;&nbsp;&#124; max_connections &#124; 1000 &#124;<br />&nbsp;&nbsp;&nbsp;</p><br/>Tags - <a href="http://www.oslog.com/go.php/tags/%25E4%25BF%25AE%25E6%2594%25B9mysql%25E6%259C%2580%25E5%25A4%25A7%25E8%25BF%259E%25E6%258E%25A5%25E6%2595%25B0%25E7%259A%2584%25E6%2596%25B9%25E6%25B3%2595/" rel="tag">修改mysql最大连接数的方法</a>
]]>
</description>
</item><item>
<link>http://www.oslog.com/read.php/273.htm</link>
<title><![CDATA[驯龙高手还有点儿好看呢]]></title> 
<author>oslog &lt;admin@oslog.com&gt;</author>
<category><![CDATA[摸爬滚打]]></category>
<pubDate>Thu, 20 May 2010 15:32:46 +0000</pubDate> 
<guid>http://www.oslog.com/read.php/273.htm</guid> 
<description>
<![CDATA[ 
	<p>&nbsp;&nbsp;刚在上影看了回来,真的很不错,先还以为不咋地,不过完了确实感叹梦工厂的制作技术,相当棒,推荐没看过的朋友看下</p><p>&nbsp;&nbsp;另外推荐戴眼镜的朋友看3D的时候把眼睛戴在3D眼镜外面,效果好得多,而且还轻松些,我今天第一次尝试,个人感觉很棒,嘿嘿,有兴趣的朋友可以尝试哦!</p><br/>Tags - <a href="http://www.oslog.com/go.php/tags/%25E9%25A9%25AF%25E9%25BE%2599%25E9%25AB%2598%25E6%2589%258B/" rel="tag">驯龙高手</a> , <a href="http://www.oslog.com/go.php/tags/%25E9%25A9%25AF%25E9%25BE%2599%25E8%25AE%25B0/" rel="tag">驯龙记</a> , <a href="http://www.oslog.com/go.php/tags/%25E6%2588%25B4%25E7%259C%25BC%25E9%2595%259C%25E7%259C%258B3d%25E7%259A%2584%25E6%25AD%25A3%25E7%25A1%25AE%25E6%2596%25B9%25E6%25B3%2595/" rel="tag">戴眼镜看3d的正确方法</a>
]]>
</description>
</item><item>
<link>http://www.oslog.com/read.php/272.htm</link>
<title><![CDATA[淘宝真是越来越垃圾了]]></title> 
<author>oslog &lt;admin@oslog.com&gt;</author>
<category><![CDATA[互联网IT]]></category>
<pubDate>Wed, 05 May 2010 06:06:22 +0000</pubDate> 
<guid>http://www.oslog.com/read.php/272.htm</guid> 
<description>
<![CDATA[ 
	<p>&nbsp;&nbsp;乱封号,一个来自于淘宝网的&ldquo;炒作信用度一级&rdquo;永久封号处理通知,啥也不解释就封号了,客服电话没人接,只会响音乐,拿用户的电话费不当钱,在线提问等N天才回复,而且全是复制粘贴的回复,根本就是打官腔的废话,我也算第一批用淘宝的人了,淘宝一开始就在支持他,现在店大欺人了,这种不拿用户当回事的企业,希望早点垮掉</p><p>&nbsp;&nbsp;腾讯的服务就好多了,电话好打,客服一般也不会超过一天回复,能实际解决问题,虽然价格比淘宝稍微贵了点,不贵无所谓了,以后卖家多了竞争出来了价格应该就下来了</p><br/>Tags - <a href="http://www.oslog.com/go.php/tags/%25E6%25B7%2598%25E5%25AE%259D%25E5%25BA%2597%25E5%25A4%25A7%25E6%25AC%25BA%25E4%25BA%25BA/" rel="tag">淘宝店大欺人</a> , <a href="http://www.oslog.com/go.php/tags/%25E6%25B7%2598%25E5%25AE%259D%25E5%259E%2583%25E5%259C%25BE/" rel="tag">淘宝垃圾</a>
]]>
</description>
</item><item>
<link>http://www.oslog.com/read.php/271.htm</link>
<title><![CDATA[好压抑]]></title> 
<author>oslog &lt;admin@oslog.com&gt;</author>
<category><![CDATA[摸爬滚打]]></category>
<pubDate>Wed, 28 Apr 2010 01:14:42 +0000</pubDate> 
<guid>http://www.oslog.com/read.php/271.htm</guid> 
<description>
<![CDATA[ 
	<p>&nbsp;&nbsp;一天感觉压抑的恼火.哎</p>
]]>
</description>
</item><item>
<link>http://www.oslog.com/read.php/270.htm</link>
<title><![CDATA[荐18个网站:【不花钱学日语】]]></title> 
<author>oslog &lt;admin@oslog.com&gt;</author>
<category><![CDATA[摸爬滚打]]></category>
<pubDate>Fri, 16 Apr 2010 05:45:30 +0000</pubDate> 
<guid>http://www.oslog.com/read.php/270.htm</guid> 
<description>
<![CDATA[ 
	<p>&nbsp;&nbsp;逛书城时发现一本书,叫做&lt;不花钱学日语:零成本日文：快学DIY方案&gt;,解说利用各个网站达到学习目的.<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;这本书真的是挺生动的,完全让读者不认为学日语是那么苦闷,该书围绕18个网站进行了解说(包括如何利用网站内各种功能,图文详细),该书原价：24.80,我在此把网站给大家了^_^.接下来就靠自己努力了</p><p>&nbsp;&nbsp;激发启蒙力 3个免费快学方案，帮你学习启程<br />&nbsp;&nbsp;方案1 从五十音开始学习<a href="http://study.u-biq.org/" target="_blank"><a href="http://study.u-biq.org" target="_blank">http://study.u-biq.org</a></a><br />&nbsp;&nbsp;方案2 边听边学&ldquo;生活对话&rdquo;<a href="http://www.nhk.or.jp/lesson/chinese/" target="_blank"><a href="http://www.nhk.or.jp/lesson/chinese/" target="_blank">http://www.nhk.or.jp/lesson/chinese/</a></a><br />&nbsp;&nbsp;方案3 和大家一起学日文<a href="http://jp.hjenglish.com/chuji/" target="_blank"><a href="http://jp.hjenglish.com/chuji/" target="_blank">http://jp.hjenglish.com/chuji/</a></a><br />&nbsp;&nbsp;<br />&nbsp;&nbsp;锻炼听说力 3 个免费快学方案，帮你朗朗上口<br />&nbsp;&nbsp;方案1 上线听歌，唱流行日文<a href="http://www.playtable.jp/" target="_blank"><a href="http://www.playtable.jp/" target="_blank">http://www.playtable.jp/</a></a><br />&nbsp;&nbsp;方案2 耳听口说，练商用日文<a href="http://www.ajalt.org/rwj/" target="_blank"><a href="http://www.ajalt.org/rwj/" target="_blank">http://www.ajalt.org/rwj/</a></a><br />&nbsp;&nbsp;方案3 看报道，听懂新闻日文<a href="http://www.nhk.or.jp/" target="_blank"><a href="http://www.nhk.or.jp/" target="_blank">http://www.nhk.or.jp/</a></a><br />&nbsp;&nbsp;<br />&nbsp;&nbsp;提升阅读力 3个免费快学方案，帮你越看越快<br />&nbsp;&nbsp;方案1 从童话养成阅读习惯<a href="http://www.hukumusume.com/douwa/" target="_blank"><a href="http://www.hukumusume.com/douwa/" target="_blank">http://www.hukumusume.com/douwa/</a></a><br />&nbsp;&nbsp;方案2 跟日本学生一起读报<a href="http://www.yomiuri.co.jp/nie/note/" target="_blank"><a href="http://www.yomiuri.co.jp/nie/note/" target="_blank">http://www.yomiuri.co.jp/nie/note/</a></a><br />&nbsp;&nbsp;方案3 省力阅读帮手<a href="http://www.rikai.com/perl/Home.pl" target="_blank"><a href="http://www.rikai.com/perl/Home.pl" target="_blank">http://www.rikai.com/perl/Home.pl</a></a><br />&nbsp;&nbsp;<br />&nbsp;&nbsp;实战写作力 3个免费快学方案，帮你下笔神速<br />&nbsp;&nbsp;方案1 用日文写日记<a href="http://lang-8.com/" target="_blank"><a href="http://lang-8.com/" target="_blank">http://lang-8.com/</a></a><br />&nbsp;&nbsp;方案2 用日文写书信<a href="http://www.teglet.co.jp/naoko/" target="_blank"><a href="http://www.teglet.co.jp/naoko/" target="_blank">http://www.teglet.co.jp/naoko/</a></a><br />&nbsp;&nbsp;方案3 迈向时事写作<a href="http://www.daiichi-g.co.jp/ron-net" target="_blank"><a href="http://www.daiichi-g.co.jp/ron-net" target="_blank">http://www.daiichi-g.co.jp/ron-net</a></a><br />&nbsp;&nbsp;<br />&nbsp;&nbsp;强化应试力 3个免费快学方案，帮你快速过级<br />&nbsp;&nbsp;方案1 轻松搞定&ldquo;文字&middot;语汇&rdquo;<a href="http://www.tango-cho.com/" target="_blank"><a href="http://www.tango-cho.com/" target="_blank">http://www.tango-cho.com/</a></a><br />&nbsp;&nbsp;方案2 轻松搞定&ldquo;読解&middot;文法&rdquo;<a href="http://language.tiu.ac.jp/" target="_blank"><a href="http://language.tiu.ac.jp/" target="_blank">http://language.tiu.ac.jp/</a></a><br />&nbsp;&nbsp;方案3 轻松搞定&ldquo;聴解&rdquo;<a href="http://www.jlpt.biz/" target="_blank"><a href="http://www.jlpt.biz" target="_blank">http://www.jlpt.biz</a></a><br />&nbsp;&nbsp;<br />&nbsp;&nbsp;悠游兴趣力 3个免费快学方案，让你乐此不疲<br />&nbsp;&nbsp;方案1 一边下厨一边学日文<a href="http://www.s-recipe.com/" target="_blank"><a href="http://www.s-recipe.com/" target="_blank">http://www.s-recipe.com/</a></a><br />&nbsp;&nbsp;方案2 日系美妆采购最强指南<a href="http://www.cosme.net/" target="_blank"><a href="http://www.cosme.net/" target="_blank">http://www.cosme.net/</a></a><br />&nbsp;&nbsp;方案3 带你游200年前的东京<a href="http://www.viva-edo.com/" target="_blank"><a href="http://www.viva-edo.com/" target="_blank">http://www.viva-edo.com/</a></a></p><br/>Tags - <a href="http://www.oslog.com/go.php/tags/%25E4%25B8%258D%25E8%258A%25B1%25E9%2592%25B1%25E5%25AD%25A6%25E6%2597%25A5%25E6%2596%2587/" rel="tag">不花钱学日文</a>
]]>
</description>
</item><item>
<link>http://www.oslog.com/read.php/268.htm</link>
<title><![CDATA[韩服龙之谷汉化补丁 V3.1]]></title> 
<author>oslog &lt;admin@oslog.com&gt;</author>
<category><![CDATA[互联网IT]]></category>
<pubDate>Fri, 26 Mar 2010 13:20:30 +0000</pubDate> 
<guid>http://www.oslog.com/read.php/268.htm</guid> 
<description>
<![CDATA[ 
	<p>&nbsp;&nbsp;<font color="#ff0000" size="5"><strong>3.1版本汉化补丁更新说明：(紧跟4月29日韩服更新)<br />&nbsp;&nbsp;</strong></font></p><div class="showhide">&nbsp;&nbsp;<h4>&nbsp;&nbsp;&nbsp;&nbsp;<font size="5"><font color="#ff0000">本帖隐藏的内容需要回复才可以浏览</font></font></h4>&nbsp;&nbsp;<br />&nbsp;&nbsp;<font color="#000000" size="3">解决3.0黑屏问题。<br />&nbsp;&nbsp;修正3.0存在的部分BUG。<br />&nbsp;&nbsp;跟随韩服更新，增加新内容支持。(新时装等道具内容汉化)<br />&nbsp;&nbsp;解决以前补丁版本卸载不干净的问题。<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;3.1补丁完整安装包下载：<br />&nbsp;&nbsp;</font><a href="http://game.1dos.com/51mmo_3.1.rar" target="_blank"><font color="#0000ff" size="3"><a href="http://game.1dos.com/51mmo_3.1.rar" target="_blank">http://game.1dos.com/51mmo_3.1.rar</a></font></a><br />&nbsp;&nbsp;<font color="#000000" size="3">Ps:<br />&nbsp;&nbsp;</font><font size="3"><strong><font color="red">3.x系列补丁都是需要卸载补丁后安装新补丁，不能在线更新。因为每次更新文件都比较大，在线更新太慢。<br />&nbsp;&nbsp;大概10号以后，51的VPN出来后同时更新第四版，合理优化在线更新功能，使每次更新控制在1M以下。</font></strong><br />&nbsp;&nbsp;<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;<strong><font color="red">【重要】游戏更新操作说明：</font></strong><br />&nbsp;&nbsp;</font><strong><font color="red" size="3">当启动游戏发现游戏有更新，请关闭游戏，关闭汉化补丁界面，执行51mmo_dn_cn-V3.1.exe，卸载汉化补丁；<br />&nbsp;&nbsp;然后重新登陆游戏，更新完毕并正常进入韩文游戏之后，再执行安装补丁即可。</font></strong></div><br/>Tags - <a href="http://www.oslog.com/go.php/tags/%25E9%259F%25A9%25E6%259C%258D%25E9%25BE%2599%25E4%25B9%258B%25E8%25B0%25B7%25E6%25B1%2589%25E5%258C%2596%25E8%25A1%25A5%25E4%25B8%2581/" rel="tag">韩服龙之谷汉化补丁</a> , <a href="http://www.oslog.com/go.php/tags/v3/" rel="tag">v3</a>
]]>
</description>
</item><item>
<link>http://www.oslog.com/read.php/267.htm</link>
<title><![CDATA[新鲜的蜂蜜啊。。。]]></title> 
<author>oslog &lt;admin@oslog.com&gt;</author>
<category><![CDATA[摸爬滚打]]></category>
<pubDate>Fri, 19 Mar 2010 10:22:28 +0000</pubDate> 
<guid>http://www.oslog.com/read.php/267.htm</guid> 
<description>
<![CDATA[ 
	<!--StartFragment --><div>&nbsp;&nbsp;今天回家，看到油菜田里花开的好好哦，还有养蜂人现做蜂蜜卖的，就买了一罐</div><div>&nbsp;&nbsp;结果在刚上车一会儿提着把手，蜂蜜太重直接脱离了盖子<br />&nbsp;&nbsp;蜂蜜倒了一大半在身上。。。油菜花蜜整成槐花蜜的价了。</div><div>&nbsp;&nbsp;路上又没水，找了条河将就河水打整了下，还好河水还比较清凉，不脏，不然粘的要难受死</div><div>&nbsp;&nbsp;回到成都，蜂蜜干了，结果还是一大滩蜜渍，估计别人看到还以为尿尿到裤子里了呢，靠</div><br/>Tags - <a href="http://www.oslog.com/go.php/tags/%25E8%259C%2582%25E8%259C%259C/" rel="tag">蜂蜜</a> , <a href="http://www.oslog.com/go.php/tags/%25E7%258E%25B0%25E5%2588%25B6%25E8%259C%2582%25E8%259C%259C/" rel="tag">现制蜂蜜</a>
]]>
</description>
</item>
</channel>
</rss>