<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[willorfang的学习专栏]]></title><description><![CDATA[天地之大，愚公移山]]></description><link>https://blog.csdn.net/fangwei1235</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; fangwei1235]]></copyright><item><title><![CDATA[Doxygen的使用]]></title><link>https://blog.csdn.net/fangwei1235/article/details/41309773</link><guid>https://blog.csdn.net/fangwei1235/article/details/41309773</guid><author>fangwei1235</author><pubDate>Thu, 20 Nov 2014 11:28:04 +0800</pubDate><description><![CDATA[原文：
http://www-utheal.phys.s.u-tokyo.ac.jp/~yuasa/wiki/index.php/Doxygen%E3%81%AE%E4%BD%BF%E3%81%84%E6%96%B9



qian'ti]]></description><category></category></item><item><title><![CDATA[在 Mac OS X 终端里使用 Solarized 配色方案]]></title><link>https://blog.csdn.net/fangwei1235/article/details/39616981</link><guid>https://blog.csdn.net/fangwei1235/article/details/39616981</guid><author>fangwei1235</author><pubDate>Sat, 27 Sep 2014 20:31:38 +0800</pubDate><description><![CDATA[http://www.vpsee.com/2013/09/use-the-solarized-color-theme-on-mac-os-x-terminal/






相信长期浸泡在终端和代码的小伙伴们都有一套自己喜爱的配色方案。以前一直在用简单、适合阅读的 Terminal.app 配色方案，换到
 MacBook Pro with Retina display 后发现这个]]></description><category></category></item><item><title><![CDATA[Android JNI 点滴]]></title><link>https://blog.csdn.net/fangwei1235/article/details/30485635</link><guid>https://blog.csdn.net/fangwei1235/article/details/30485635</guid><author>fangwei1235</author><pubDate>Fri, 13 Jun 2014 14:40:46 +0800</pubDate><description><![CDATA[JNI Tips

IN THIS DOCUMENT



JavaVM and JNIEnv


Threads


jclass, jmethodID, and jfieldID


Local and Global References


UTF-8 and UTF-16 Strings


Primitive Arrays


Region]]></description><category></category></item><item><title><![CDATA[Perl的特殊符号]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8632537</link><guid>https://blog.csdn.net/fangwei1235/article/details/8632537</guid><author>fangwei1235</author><pubDate>Mon, 04 Mar 2013 10:07:51 +0800</pubDate><description><![CDATA[@       数组                           

$x{}   x名字前面是美元符号($),后面是花括号({}),则其为 hash 元素
%       要引用整个 hash,使用百分号(“ )作为前缀。前面几页中使用的 hash 的名字为%family_name。
$!      系统产生的一些可读的信息,也可能是出错的信息
$_     子函数参数变量自己]]></description><category></category></item><item><title><![CDATA[MySQL事务隔离级别]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8625653</link><guid>https://blog.csdn.net/fangwei1235/article/details/8625653</guid><author>fangwei1235</author><pubDate>Fri, 01 Mar 2013 13:18:51 +0800</pubDate><description><![CDATA[SQL标准定义了4类隔离级别，包括了一些具体规则，用来限定事务内外的哪些改变是可见的，哪些是不可见的。低级别的隔离级一般支持更高的并发处理，并拥有更低的系统开销。
Read Uncommitted（读取未提交内容）

       在该隔离级别，所有事务都可以看到其他未提交事务的执行结果。本隔离级别很少用于实际应用，因为它的性能也不比其他级别好多少。读取未提交的数据，也被称之为脏读（Dirt]]></description><category></category></item><item><title><![CDATA[mysql的limit优化]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8621655</link><guid>https://blog.csdn.net/fangwei1235/article/details/8621655</guid><author>fangwei1235</author><pubDate>Fri, 01 Mar 2013 12:06:10 +0800</pubDate><description><![CDATA[limit

http://www.zhenhua.org/article.asp?id=200



select * from table LIMIT 5,10; #返回第6-15行数据 
select * from table LIMIT 5; #返回前5行 
select * from table LIMIT 0,5; #返回前5行

性能优化：

基于MySQL5]]></description><category></category></item><item><title><![CDATA[vimrc中的encoding，fileencoding，fileencodings，termencoding]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8598764</link><guid>https://blog.csdn.net/fangwei1235/article/details/8598764</guid><author>fangwei1235</author><pubDate>Thu, 21 Feb 2013 15:21:03 +0800</pubDate><description><![CDATA[在 Vim 中，

有四个与编码有关的选项，

它们是：

fileencodings、

fileencoding、

encoding 和 termencoding。

在实际使用中，

任何一个选项出现错误，

都会导致出现乱码。

因此，

每一个 Vim 用户都应该明确这四个选项的含义。


encoding

encoding是 Vim]]></description><category></category></item><item><title><![CDATA[perl map函数]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8576556</link><guid>https://blog.csdn.net/fangwei1235/article/details/8576556</guid><author>fangwei1235</author><pubDate>Fri, 08 Feb 2013 09:42:41 +0800</pubDate><description><![CDATA[Perl里面的map, 是一种道具，可以让你的函数或者表达式，很方便地施用到一系列对象上去。

1. 让我们先看map的语法

map BLOCK LIST
map EXPR, LIST

BLOCK是一个用{}包围的代码块。EXPR可以是子函数名、正则表达式等。LIST是输入列表。

简单地说，map就是起了一个替代foreach循环的作用，map会把数组LIST中的元素挨个取]]></description><category></category></item><item><title><![CDATA[由浅入深探究mysql索引结构原理、性能分析与优化]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8574391</link><guid>https://blog.csdn.net/fangwei1235/article/details/8574391</guid><author>fangwei1235</author><pubDate>Wed, 06 Feb 2013 16:49:42 +0800</pubDate><description><![CDATA[转自：http://www.phpben.com/?post=74




摘要：




第一部分：基础知识
第二部分：MYISAM和INNODB索引结构
1、 简单介绍B-tree B+ tree树
2、 MyisAM索引结构
3、 Annode索引结构
4、 MyisAM索引与InnoDB索引相比较
第三部分：MYSQL优化
1、表数据类型选择
2、sql]]></description><category></category></item><item><title><![CDATA[Perl中定时器alarm的die与kill]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8574143</link><guid>https://blog.csdn.net/fangwei1235/article/details/8574143</guid><author>fangwei1235</author><pubDate>Wed, 06 Feb 2013 15:31:01 +0800</pubDate><description><![CDATA[在perl中运行一些独立的程序时可能会挂起会处理较长时间，这种情况下可以使用alarm





#!/usr/bin/perl -W 
$timeout=5;
eval {
        local $SIG{ALRM} = sub { die "$timeout second,run alarm\n" };#定义alarm运行的程序，这里设定为die并打印信息。]]></description><category></category></item><item><title><![CDATA[MySQL数据库设计需要注意的点]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8571274</link><guid>https://blog.csdn.net/fangwei1235/article/details/8571274</guid><author>fangwei1235</author><pubDate>Tue, 05 Feb 2013 12:14:17 +0800</pubDate><description><![CDATA[1.为什么字段尽可能用NOT NULL，而不是NULL

Mysql官网文档：
“NULL columns require additional space in the row to record whether their values are NULL. For MyISAM tables, each NULL column takes one bit extra, rounded u]]></description><category></category></item><item><title><![CDATA[perl 引用（数组和hash引用）]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8570886</link><guid>https://blog.csdn.net/fangwei1235/article/details/8570886</guid><author>fangwei1235</author><pubDate>Tue, 05 Feb 2013 10:23:24 +0800</pubDate><description><![CDATA[转自：http://www.chinaunix.net/old_jh/25/504623.html


为推广perl尽一点力，特将perl引用的一篇文章翻译了一下，没有仔细查错，有问题请和我联系。本文可以从下面地址获得英文版本： 
http://search.cpan.org/~nwclark/perl-5.8.6/pod/perlreftut.pod 



 perlreft]]></description><category></category></item><item><title><![CDATA[perl正则表达式匹配]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8570618</link><guid>https://blog.csdn.net/fangwei1235/article/details/8570618</guid><author>fangwei1235</author><pubDate>Tue, 05 Feb 2013 09:13:27 +0800</pubDate><description><![CDATA[1.Perl正则表达式语法

所谓Perl正则表达式，就是一串特别设计过的字符串，可以按照你的意图用匹配操作寻找你要求的目标。我这里不是Perl手册，也不是教科书，所以我从例子开始，具体的完整说明还请查手册。

1.1转义符号\

前面说过缺省情况下Perl正则表达式要用/包起来，那么现在要寻找一个字符串里面有没有/怎么办？不是有歧义了么那个表达式。换你设计Perl语言该咋办？玩过C语]]></description><category></category></item><item><title><![CDATA[变换用户身份为root的方法su 与 sudo]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8563995</link><guid>https://blog.csdn.net/fangwei1235/article/details/8563995</guid><author>fangwei1235</author><pubDate>Fri, 01 Feb 2013 18:11:32 +0800</pubDate><description><![CDATA[su切换不同的用户身份：

使用su命令，我们可以切换不同的用户身份，相当于有多个面具，一会儿当好人，一会儿当坏人，呵。当su后面没有加上用户账号时，默认切换的就是root账号。并且使用这个命令最常见的情况就是让我们切换至root账号，来充当一会儿系统管理员。咱也当一把老大。



参数
意义


-
执行此操作表示该用户想戴上root的面具，且使用root的环境设置参数文件]]></description><category></category></item><item><title><![CDATA[memo]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8561912</link><guid>https://blog.csdn.net/fangwei1235/article/details/8561912</guid><author>fangwei1235</author><pubDate>Fri, 01 Feb 2013 09:49:15 +0800</pubDate><description><![CDATA[http://firemobilesimulator.org/
FireMobileSimulatorは、主要３キャリア（DoCoMo/Au/SoftBank）の携帯端末ブラウザをシミュレートして、モバイルサイト開発を容易にするために作成されたGoogle
 Chrome/Firefoxの拡張機能です。携帯端末のHTTPリクエスト、絵文字表示、位置情報送信機能などの動作をシミュレートすることが]]></description><category></category></item><item><title><![CDATA[Quora的技术探索]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8314972</link><guid>https://blog.csdn.net/fangwei1235/article/details/8314972</guid><author>fangwei1235</author><pubDate>Tue, 18 Dec 2012 16:11:11 +0800</pubDate><description><![CDATA[Quora因为其流畅的系统已经给IT创业界掀起了一场风暴。Quora为什么这么给力呢，除了有大量聪明的提问者和回答者的支持外，更因为其来自FaceBook的联合创始人精心设计的后端系统；

所有的聪明人都在使用这个智能的工具，这一点不足为奇。但是有很多人都在思考，Quora为什么能运行的如此流畅呢。NoSQL 的研究者们挠着头问道“为什么
 Quora 使用 MySQL作为其数据存储，而不是]]></description><category></category></item><item><title><![CDATA[由浅入深探究mysql索引结构原理、性能分析与优化]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8290411</link><guid>https://blog.csdn.net/fangwei1235/article/details/8290411</guid><author>fangwei1235</author><pubDate>Thu, 13 Dec 2012 13:47:33 +0800</pubDate><description><![CDATA[第一部分：基础知识
第二部分：MYISAM和INNODB索引结构
1、 简单介绍B-tree B+ tree树
2、 MyisAM索引结构
3、 Annode索引结构
4、 MyisAM索引与InnoDB索引相比较
第三部分：MYSQL优化
1、表数据类型选择
2、sql语句优化
(1)     最左前缀原则
(1.1)  能正确的利用索引
(1.2)  不能正确的利用索引]]></description><category></category></item><item><title><![CDATA[perl DBI使用详解]]></title><link>https://blog.csdn.net/fangwei1235/article/details/8068206</link><guid>https://blog.csdn.net/fangwei1235/article/details/8068206</guid><author>fangwei1235</author><pubDate>Sat, 13 Oct 2012 20:25:02 +0800</pubDate><description><![CDATA[使用DBI的方法：
---------------------------------------------------------------------
use DBI;
---------------------------------------------------------------------
注意：特定的DBD 级的模块不需要包括use 行，因为在与服务器进行连接时]]></description><category></category></item><item><title><![CDATA[HBase 的Java API]]></title><link>https://blog.csdn.net/fangwei1235/article/details/7333577</link><guid>https://blog.csdn.net/fangwei1235/article/details/7333577</guid><author>fangwei1235</author><pubDate>Thu, 08 Mar 2012 17:03:24 +0800</pubDate><description><![CDATA[1.Configuration
在使用Java API时，Client端需要知道HBase的配置环境，如存储地址，zookeeper等信息。这些信息通过Configuration对象来封装，可通过如下代码构建该对象
        Configuration config=HBaseConfiguration.create();
在调用HBaseConfiguration.create()方]]></description><category></category></item><item><title><![CDATA[hadoop常见错误及处理方法]]></title><link>https://blog.csdn.net/fangwei1235/article/details/7331952</link><guid>https://blog.csdn.net/fangwei1235/article/details/7331952</guid><author>fangwei1235</author><pubDate>Thu, 08 Mar 2012 11:06:31 +0800</pubDate><description><![CDATA[1、hadoop-root-datanode-master.log 中有如下错误：
ERROR org.apache.hadoop.hdfs.server.datanode.DataNode: java.io.IOException: Incompatible namespaceIDs in
导致datanode启动不了。

原因:每次namenode format会重新创建一个namen]]></description><category></category></item></channel></rss>