- 浏览: 207488 次
- 性别:
- 来自: 东莞
最新评论
-
wzwahl36:
你那个链接的网页已经过期了~~~
终于找到了 Editplus 3.4 注册码 keycode -
xa_zbl:
感谢,解决了我的问题
lucene特殊字符处理
文章列表
document.body.clientWidth
网页可见区域宽
document.body.clientHeight
网页可见区域高
document.body.offsetWidth
网页可见区域宽(包括边线的宽)
document.body.offsetHeight
网页可见区域高(包括边线的宽)
document.body.scrollWidth
网页正文全文宽
document.body.scrollHeight
网页正文全文高
document.body.scrollLeft
网页被卷去的左
document.body.scrollTop
...
Unicode编码表(转)
- 博客分类:
- 常用软件
Unicode编码表
请输入生成字符表格的Unicode范围,以下是经验上的范围参照,不是标准定义。
0x0000~0x00ff ASCII
0x2460~0x24e9 序号\符号
0x3040~0x317f 日文\韩文
0x3200~0x33ff 序号\符号
0x3400~0x4dff 中文?
0x4e00~0x9fa5 中文
0x8b80~0x920f 原文缺失
0xac00~0xd7a3 韩文
0xe7c0~0xe864 中文?
0xf000~0xf8ff ?
0xf900~0xfaff 中文
0xfb00~0xfff0 阿拉伯\日文\全角\符号
http://www.san-da. ...
#include <iostream>
int main() {
std::cout << "Hello world!" << std::endl;
return 0;
}
编写curl类,进行网页内容抓取
class CurlUtil
{
private $curl;
private $timeout = 10;
/**
* 初始化curl对象
*/
public function __construct()
{
$this->curl = curl_init();
curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($this->cur ...
function getmicrotime(){
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
public function saveConfigToCookie(array $config){
setcookie("c", urlencode(serialize(($config))), time() + 9999999, "/");
}
public function loadCookieConfig() {
$configCookieVal = $_COOKIE['c'];
$configArray = ...
tar -zxvf eaccelerator-0.9.6.1.tar
./configure --with-php-config=/usr/local/php/bin/php-config
/usr/local/php/bin/phpize
./configure --enable-eaccelerator=shared --with-php-config=/usr/local/php/bin/php-config
make && make install
在/usr/local/php/etc/php.ini中添加
zend_extension="/us ...
$patT = '@<a.*?href="(?!http://www.abc)(.*?)"(.*?)>.*?</a>@is';
火气不包含 http://www.abc的 链接
myisamchk 说明及其参数
Description, check and repair of MyISAM tables.
Used without options all tables on the command will be checked for errors
Usage: myisamchk [OPTIONS] tables[.MYI]
Global options:
-H, --HELP Display this help and exit.
-?, --help Display this help and exit.
-t ...
function showVarInfo($var)
{
$logger = new Zend_Log ();
$writer = new Zend_Log_Writer_Firebug ();
$logger->addWriter($writer);
$GLOBALS ['firephp'] = $logger;
$GLOBALS ['firephp']->log($var, Zend_Log::INFO);
}
$to = 'yangyingjieok@163.com';
$subject = "=?UTF-8?B?" . base64_encode('愚人节') . "?=";
$message = " 愚人节愚人节愚人节愚人节愚人节愚人节愚人节............... ";
mail($to, $subject, $message)
加上 base64_encode进行编码转换
1.创建文件夹 /var/db
2.复制旧的mysql的数据库的文件到新的文件夹下
cp -rp /usr/local/mysql/data /var/db
3.修改mysql配置文件mysqld:
basedir=/usr/local/mysql
datadir=/var/db
pid_file=/var/db/mysqld.pid
4.修改mysql配置文件my.cnf
[client]
socket =/var/db/mysql.sock
[mysqld]
socket =/var/db/mysql.sock
5.关闭mysql
...
sudo apt-get install ia32-libs ia32-libs-gtk linux32 lib32asound2
下载最新的qq deb 后
sudo dpkg -i --force-all linuxqq_v1.0.2-beta1_i386.deb
在 Ubuntu 10.04下安装Google拼音输入法,如下:
A. 获取代码:
(没有git的先安装git:sudo apt-get install git-core)
git clone git://github.com/tchaikov/scim-googlepinyin.git
cd scim-googlepinyin
B. 编译前提:
编译必须组件:autotools-dev、libgtk2.0-dev、libscim-dev、libtool、automake
aptitude insta ...
apt-get install build-essential