- 浏览: 507970 次
- 性别:
- 来自: 上海
最新评论
-
ipodao:
果然有高人翻译啊,谢了~
dom4j api 详解 -
zhuwensheng:
字符串都不用单引号引着吗?
Oracle+110个常用函数 -
宋建勇:
...
HttpClient 处理中文乱码
文章列表
<!--core plugins--><!--clean working directory--><plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version></plugin><!--java code resources--><plugin> <group ...
必须的依赖环境
1.jdk
java -version
java version "1.6.0_20"
OpenJDK Runtime Environment (IcedTea6 1.9.13) (6b20-1.9.13-0ubuntu1~10.10.1)
OpenJDK Server VM (build 19.0-b09, mixed mode)
2.maven
mvn -version
Apache Maven 3.0.4 (r1232337; 2012-01-17 16:44:56+0800)
Maven home: /opt/maven
...
使用Intellij IDEA构建maven项目
1.page
<div>
<select name="album" id="album">
<option value="1">推荐</option>
<option value="2">排行</option>
<option value="3">分类</option>
<option value=" ...
/*
* MAP对象,基于Array实现并扩展MAP功能
*
* 方法说明:
* size() 获取map元素个数
* isEmpty() 判断map是否为空
* clear() 删除map所有元素
* push(key, value) 向map中增加元素(key, value),顺序的
* remove(key) 删除指定key的元素,成功返回True,失败返回False
* get(key) 获取指定key的元素值value,失败返回NULL
* element(index) 获取指定索引的元素(使用elem ...
一、选择网页元素
jQuery的基本设计和主要用法,就是"选择某个网页元素,然后对其进行某种操作"。这是它区别于其他函数库的根本特点。
使用jQuery的第一步,往往就是将一个选择表达式,放进构造函数jQuery()(简 ...
1.编译安装git
git安装教程:http://blog.haohtml.com/archives/10093
ssh-keygen -t rsa -C "chen.qiu@1.cn"
2.安装gitosis
$ yum install python python-setuptools
$ git clone git://github.com/res0nat0r/gitosis.git
$ cd gitosis
$ python setup.py install
网址:https://github.com/res0nat0r/gitosis
3 ...
1、关于页面元素的引用
通过jquery的$()引用元素包括通过id、class、元素名以及元素的层级关系及dom或者xpath条件等方法,且返回的对象为jquery对象(集合对象),不能直接调用dom定义的方法。
2、jQuery对象与dom对象的转换
只有jquery对象才能使用jquery定义的方法。注意dom对象和jquery对象是有区别的,调用方法时要注意操作的是dom对象还是jquery对象。
普通的dom对象一般可以通过$()转换成jquery对象。
如:$(document.getElementById(”msg”))则为jquery对象,可以使用jquery ...
daemonize yes
pidfile /var/run/redis.pid
port 6379
#bind 127.0.0.1
unixsocket /var/run/redis.sock
timeout 10
loglevel notice
logfile /var/log/redis/redis-server.log
databases 16
################################ SNAPSHOTTING #################################
save ...
ubuntu 卸载redis
1. 卸载软件
apt-get remove redis
2. 清除配置
apt-get remove --purge redis
3. 删除残留文件
find / -name redis
--一般设置如下
rm -rf var/lib/redis/
rm -rf /var/log/redis
rm -rf /etc/redis/
rm -rf /usr/bin/redis-*
ubuntu 安装redis
0.0 初始化文件件
mkdir /usr/local/redis
mkdir /etc/redis
1. 下载 ...
1.编译安装git
git安装教程:http://blog.haohtml.com/archives/10093
2.安装gitosis
N1. yum install python python-setuptools
N2. git clone git://github.com/res0nat0r/gitosis.git
N3. cd gitosis
N4. python setup.py install
N5. 上传管理员公钥
N6. adduser git
N7. su git
N8. pwd -> /home/git
N9. gitosis-i ...
redis 127.0.0.1:6379[1]> hset article browser_count 1
(integer) 1
redis 127.0.0.1:6379[1]> hget article browser_count
"1"
redis 127.0.0.1:6379[1]> type article
hash
redis 127.0.0.1:6379[1]> hmset article browser_count 2 revert_count 1
OK
redis 127.0.0.1:6379[1]> hm ...
redis 127.0.0.1:6379[1]> lpush program java
(integer) 1
redis 127.0.0.1:6379[1]> lpush program javascript
(integer) 2
redis 127.0.0.1:6379[1]> lpush program javascript ruby
(integer) 4
redis 127.0.0.1:6379[1]> llen program
(integer) 4
redis 127.0.0.1:6379[1]> ltrim program 0 - ...
redis 127.0.0.1:6379[1]> keys *
1) "caches"
redis 127.0.0.1:6379[1]> get caches
"ehcache"
redis 127.0.0.1:6379[1]> set caches newCache
OK
redis 127.0.0.1:6379[1]> get caches
"newCache"
redis 127.0.0.1:6379[1]> setnx caches newCache
(integer) 0
r ...