<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[dragon8299的专栏]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/dragon8299</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; dragon8299]]></copyright><item><title><![CDATA[Linux Netcat command – The swiss army knife of networking]]></title><link>https://blog.csdn.net/dragon8299/article/details/19170695</link><guid>https://blog.csdn.net/dragon8299/article/details/19170695</guid><author>dragon8299</author><pubDate>Thu, 13 Feb 2014 19:10:23 +0800</pubDate><description><![CDATA[Swiss Army Knife of networking netcat is a versatile tool that is able to read and write data across TCP and UDP network . Combined with other tools and redirection it can be used in number of ways in]]></description><category></category></item><item><title><![CDATA[解决php zenddebugger 安装失败]]></title><link>https://blog.csdn.net/dragon8299/article/details/7175932</link><guid>https://blog.csdn.net/dragon8299/article/details/7175932</guid><author>dragon8299</author><pubDate>Wed, 04 Jan 2012 18:05:33 +0800</pubDate><description><![CDATA[php zenddebugger 安装失败
1.查看错误信息

$ php -m


Failed loading /usr/lib64/php/modules/ZendDebugger.so:  libssl.so.0.9.8: cannot open shared object file: No such file or directory



2. 原因：因为最新的li]]></description><category></category></item><item><title><![CDATA[Python没有switch语句的解决方法]]></title><link>https://blog.csdn.net/dragon8299/article/details/6980914</link><guid>https://blog.csdn.net/dragon8299/article/details/6980914</guid><author>dragon8299</author><pubDate>Thu, 17 Nov 2011 11:01:07 +0800</pubDate><description><![CDATA[其他语言中，switch语句大概是这样的
switch (var)
{
    case value1: do_some_stuff1();
    case value2: do_some_stuff2();
    ...
    case valueN: do_some_stuffN();
    default: do_default_stuff();
}
而python本身没有swi]]></description><category></category></item><item><title><![CDATA[你可能所不知道的python中有用的特性]]></title><link>https://blog.csdn.net/dragon8299/article/details/6947795</link><guid>https://blog.csdn.net/dragon8299/article/details/6947795</guid><author>dragon8299</author><pubDate>Tue, 08 Nov 2011 13:49:00 +0800</pubDate><description><![CDATA[来自stackoverflow中python标签下按投票数排列第一位的问题：Hidden
 features of Python 

题记：我们没有黑魔法，我们是可读的。 
Python is a dynamically and strongly typed programming language that encourages readability. 

1.链式操作符，要注意执]]></description><category></category></item><item><title><![CDATA[PHP readline 模块安装]]></title><link>https://blog.csdn.net/dragon8299/article/details/6942877</link><guid>https://blog.csdn.net/dragon8299/article/details/6942877</guid><author>dragon8299</author><pubDate>Mon, 07 Nov 2011 11:48:22 +0800</pubDate><description><![CDATA[PHP天生是web的，所以很少有人去使用php的readline模块，我也没有去碰过；今天我想先获取一下mc的状态，过一段时间，再获取一次mc状态，对感兴趣的数字做计算，但是等待未知长度的时间对php来讲就不是那么容易了，于是我就用shell来写，但是出了很多错误，就一气之下要把php的readline模块装上，readline需要几个依赖：


# ldd /usr/local/php/l]]></description><category></category></item><item><title><![CDATA[Linux上批量删除.svn目录]]></title><link>https://blog.csdn.net/dragon8299/article/details/6932461</link><guid>https://blog.csdn.net/dragon8299/article/details/6932461</guid><author>dragon8299</author><pubDate>Thu, 03 Nov 2011 15:40:32 +0800</pubDate><description><![CDATA[在上传项目到服务器的时候，有时候忘记在本地将.svn 目录删除掉了.
现在来介绍下在Linux下,利用shell命令来删除.svn目录

 

find . -type d -name ".svn"|xargs rm -rf




原文地址：http://blog.csdn.net/gumanren/article/details/4649881]]></description><category></category></item><item><title><![CDATA[python 字符串转数组]]></title><link>https://blog.csdn.net/dragon8299/article/details/6900736</link><guid>https://blog.csdn.net/dragon8299/article/details/6900736</guid><author>dragon8299</author><pubDate>Mon, 24 Oct 2011 15:05:11 +0800</pubDate><description><![CDATA[1.分割字符串

>>> string = '[1,2,3]'
>>> string = string[1:-1].split(',')

>>> print string
['1', '2', '3']
>>> 

2. eval函数
>>> string = '[1,2,3]'
>>> list = eval(string)
>>> print list
[1, 2,]]></description><category></category></item><item><title><![CDATA[ubuntu 升级后运行nginx报错]]></title><link>https://blog.csdn.net/dragon8299/article/details/6878702</link><guid>https://blog.csdn.net/dragon8299/article/details/6878702</guid><author>dragon8299</author><pubDate>Mon, 17 Oct 2011 09:52:26 +0800</pubDate><description><![CDATA[ubuntu 升级后运行nginx报错
$ /usr/local/nginx/sbin/nginx: error while loading shared libraries: libssl.so.0.9.8: cannot open shared object file: N]]></description><category></category></item><item><title><![CDATA[如何删除“应用程序”菜单里wine的多余的项？]]></title><link>https://blog.csdn.net/dragon8299/article/details/6878145</link><guid>https://blog.csdn.net/dragon8299/article/details/6878145</guid><author>dragon8299</author><pubDate>Sun, 16 Oct 2011 17:19:33 +0800</pubDate><description><![CDATA[1、卸载wine 
2、删除.config/menus目录下的相应文件 
3、删除下面三个目录下与wine和wine相关的内容（如QQ等） 


代码:

~/.local/share/applications
~/.local/share/desktop-dir]]></description><category></category></item><item><title><![CDATA[mysql水平分表和垂直分表和数据库分区]]></title><link>https://blog.csdn.net/dragon8299/article/details/6864071</link><guid>https://blog.csdn.net/dragon8299/article/details/6864071</guid><author>dragon8299</author><pubDate>Tue, 11 Oct 2011 21:07:11 +0800</pubDate><description><![CDATA[mysql水平分表和垂直分表和数据库分区。
坚信数据库的物理设计在对高级数据库的性能影响上远比其他因素重要。给大家说一下经过专家对Oracle的研究，他们解释了为什么拙劣的物理设计是数据库停机（无论是有计划的还是没计划的）背后的主要原因。但在这点上俺还是坚持DBA如果想要高性能]]></description><category></category></item><item><title><![CDATA[MongoDB性能优化之连接优化]]></title><link>https://blog.csdn.net/dragon8299/article/details/6776142</link><guid>https://blog.csdn.net/dragon8299/article/details/6776142</guid><author>dragon8299</author><pubDate>Wed, 14 Sep 2011 21:45:24 +0800</pubDate><description><![CDATA[本文是BoxedIce公司遇到的一个真实案例，如果你正在使用MongoDB的话，此文又是一个实用教材。

BoxedIce在plugin
 directory项目中添加了新的WEB机器结点后，发现其MongoDB集群的性能开始受到影响，表现在请求的高峰时期，MongoDB的]]></description><category></category></item><item><title><![CDATA[Linux下内存释放问题相关知识]]></title><link>https://blog.csdn.net/dragon8299/article/details/6772349</link><guid>https://blog.csdn.net/dragon8299/article/details/6772349</guid><author>dragon8299</author><pubDate>Tue, 13 Sep 2011 20:12:27 +0800</pubDate><description><![CDATA[细心的朋友会注意到,当你在Linux下频繁存取文件后,物理内存会很快被用光,当程序结束后,内存不会被正常释放,而是一直作为caching.这个问题,貌似有不少人在问,不过都没有看到有什么很好解决的办法.那么我来谈谈这个问题.
先来说说free命令
[root@server ~]]></description><category></category></item><item><title><![CDATA[Ubuntu 11.04 安装配置过程]]></title><link>https://blog.csdn.net/dragon8299/article/details/6696957</link><guid>https://blog.csdn.net/dragon8299/article/details/6696957</guid><author>dragon8299</author><pubDate>Thu, 18 Aug 2011 09:18:15 +0800</pubDate><description><![CDATA[已经好长时间没有更新博客啦，觉得现在Ubuntu资讯网站越来越多，而大多数还是转载文章，所以这个博客将只更新Ubuntu使用技巧和Linux相关技术资料，不再更新新闻类资讯，同时放缓更新速度，可能几天才更新一篇文章，请谅解～

    言归正转，我是4月28号晚上下载的 Ub]]></description><category></category></item><item><title><![CDATA[centos 下为PHP添加svn扩展]]></title><link>https://blog.csdn.net/dragon8299/article/details/6689685</link><guid>https://blog.csdn.net/dragon8299/article/details/6689685</guid><author>dragon8299</author><pubDate>Mon, 15 Aug 2011 21:11:00 +0800</pubDate><description><![CDATA[1.需要安装
yum install subversion subversion-devel neon-devel
如果已经安装subversion，无法安装subversion-devel，
提示
--> Missing Dependency: libsvn_ra_da]]></description><category></category></item><item><title><![CDATA[MySQL 查询后插入或更新导致表损坏解决方法]]></title><link>https://blog.csdn.net/dragon8299/article/details/6676953</link><guid>https://blog.csdn.net/dragon8299/article/details/6676953</guid><author>dragon8299</author><pubDate>Wed, 10 Aug 2011 21:03:57 +0800</pubDate><description><![CDATA[影响版本 MySQL 5.0 版本在5.0.70以下;MySQL 5.1 版本在5.1.28 以下出现过程
/*CREATE TABLE*/ 
CREATE TABLE `certuserid` ( 
`certUserID` int(11) NOT NULL auto_inc]]></description><category></category></item><item><title><![CDATA[mongodb的javascript性能]]></title><link>https://blog.csdn.net/dragon8299/article/details/6670465</link><guid>https://blog.csdn.net/dragon8299/article/details/6670465</guid><author>dragon8299</author><pubDate>Mon, 08 Aug 2011 20:23:26 +0800</pubDate><description><![CDATA[mongodb的javascript性能


mongodb的db.eval

mongodb使用javascript做shell, mongodb的db.eval可以提供给数据驱动与这种javascript
 shell类似的js接口. 这算是一种移动代码风格(Mo]]></description><category></category></item><item><title><![CDATA[php-rabbit RabbitMQ 具体使用方法]]></title><link>https://blog.csdn.net/dragon8299/article/details/6585807</link><guid>https://blog.csdn.net/dragon8299/article/details/6585807</guid><author>dragon8299</author><pubDate>Tue, 05 Jul 2011 15:23:20 +0800</pubDate><description><![CDATA[php-rabbit RabbitMQ 具体使用方法googlecode之前项目地址：code.google.com/p/php-rabbit/，现在好像没了。INSTALLATION¶Download RabbitMQ-C client library fr]]></description><category></category></item><item><title><![CDATA[RabbitMQ for Beginners]]></title><link>https://blog.csdn.net/dragon8299/article/details/6579007</link><guid>https://blog.csdn.net/dragon8299/article/details/6579007</guid><author>dragon8299</author><pubDate>Fri, 01 Jul 2011 11:10:00 +0800</pubDate><description><![CDATA[RabbitMQ is a powerful Message Queue implementing AMQP (wire-level protocol and semantic framework for high performance enterprise messaging). This is great for those of you who like buzzwords, but ]]></description><category></category></item><item><title><![CDATA[scim输入法，Eclipse代码提示之后失去焦点的问题]]></title><link>https://blog.csdn.net/dragon8299/article/details/6576004</link><guid>https://blog.csdn.net/dragon8299/article/details/6576004</guid><author>dragon8299</author><pubDate>Wed, 29 Jun 2011 22:38:00 +0800</pubDate><description><![CDATA[突然发现Eclipse，每次代码提示之后无法打字，感觉是文本域失去焦点导致。这个问题是使用了scim输入导致的，我改成了scim-bridge，问题就解决了（原来使用ibus，装google－pinyin的时候切换到了scim）。原文地址：http://fuliang.iteye.com/blog/789449]]></description><category></category></item><item><title><![CDATA[ubuntu NetBeans字体设置]]></title><link>https://blog.csdn.net/dragon8299/article/details/6575944</link><guid>https://blog.csdn.net/dragon8299/article/details/6575944</guid><author>dragon8299</author><pubDate>Wed, 29 Jun 2011 22:01:00 +0800</pubDate><description><![CDATA[修改netbeans的配置文件，情感的配置文件是： /usr/local/netbeans/etc/netbeans.conf 用VI 编辑或Gedit编辑均可以（这里必须是超级管理员root才有权限编辑）Vi命令：vi /usr/local/netbeans/etc/netbeans.confgedit命令：sudo gedit /usr/local/netbeans/etc/netbe]]></description><category></category></item></channel></rss>