In the partime, a simle program attracted my attention whose content is to change number to english by reading rule of money.It took about one hour to deal with this question. Now the source was shar...
分类:
其他好文 时间:
2014-07-24 23:15:23
阅读次数:
280
# See README.txt..PHONY: all cpp java python cleanall: cpp #java pythoncpp: add_person_cpp list_people_cpp temp_cppjava: add_person_java lis...
分类:
其他好文 时间:
2014-07-24 22:01:12
阅读次数:
290
1. 传参方式使用 insert 为 map 插值时,insert 的传参包含以下几种可能:make_pair 生成对象pair(key_type, value_type) 生成对象pair(const key_type, value_type) 生成对象map::value_type 生成对象不同...
分类:
编程语言 时间:
2014-07-24 12:10:05
阅读次数:
377
GIT在Linux上的安装和使用简介解压后切换到其目录$ tar xvfj git-1.7.6.tar.bz2$ cd git-1.7.6 使用默认配置进行安装,如果想修改配置,可以使用 ./configure --help 来获取帮助 $ ./configure$ make$ make insta...
分类:
系统相关 时间:
2014-07-24 10:15:53
阅读次数:
256
本文编译方法所支持的hadoop环境是Hadoop-2.2.0,YARN是2.2.0,JAVA版本为1.8.0_11,操作系统Ubuntu14.04Spark1.0.0 源码下载地址:http://mirror.bit.edu.cn/apache/spark/spark-1.0.0/spark-1....
分类:
其他好文 时间:
2014-07-24 09:59:23
阅读次数:
448
该Makefile适用于最后生成若干个可执行文件的小型C/C++工程,只要将该Makefile放在源码根目录下make,它会自动查找该目录下(包括子目录)的所有源码文件(支持.cpp .c .h格式)并自动生成正确的依赖关系,并且为了不污染源码文件夹,源码和编译过程中的中间文件会分开(Debug模式...
分类:
其他好文 时间:
2014-07-24 09:47:23
阅读次数:
418
# Loads mkmf which is used to make makefiles for Ruby extensions
require 'mkmf'
# Give it a name
extension_name = 'fsnet'
dirs = ["/usr/local/lib"]
$libs += "-levent "
$libs += "-levent_e...
分类:
其他好文 时间:
2014-07-23 21:05:54
阅读次数:
165
laravel 默认用的登录密码加密方式是: $password?=?Hash::make(‘password‘); 而我平时用的密码加密方式是: $password?=?md5(‘password‘.‘salt‘);?//其中的salt是一个随机串 那么怎么把默认的改成自己想要的...
分类:
其他好文 时间:
2014-07-23 17:37:51
阅读次数:
262
第一步,先安装lib-event
下载lib-event 的包http://libevent.org/
下载完之后,解压安装
./configure –prefix=/usr (或 ./configure --program-prefix=/usr)
make
make install
第二步,安装memcached
下载memcached的包...
分类:
其他好文 时间:
2014-07-23 17:19:31
阅读次数:
291
办法1:
wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gz
tar -zxvf libiconv-1.13.1.tar.gz cd libiconv- 1.13.1 ./configure
make
make install
办法2:
wget http://down.wdlinux....
分类:
其他好文 时间:
2014-07-23 13:33:46
阅读次数:
167