Adobe CS5.5官方下载链接

 

Adobe CS5.5目前在官方服务器上可以下载CS5.5的试用版本。Adobe CS5.5包含各种平面设计,视频编辑,多媒体制作和网站开发应用程序。


本文提供Adobe CS5.5系列下载汇总。



注:如以下下载地址无法下载,请访问官方网站下载:


http://www.adobe.com/downloads/

以下为LS数字的语言代码,如下载简体中文版,请下载LS3最后的文件名

LS1 – en-US / en-UK / en-GB 


LS2 – ja-JP 


LS3 – ko-KR / zh-CN / zh-TW 


LS4 – da-DK / de-DE / es-ES / es-MX / fi-FI / fr-FR / fr-CA / it-IT / nb-NO / nl-NL / pt-BR / sv-SE 


LS6 – cs-CZ / hu-HU / pl-PL / ro-RO / ru-RU / tr-TR / uk-UA

 

Continue reading

httping网页响应时间测试windows版

    httping 是一个用来测试 HTTP 请求的连接、发送请求、等待回应的时间。有点像 ping 这个网络工具,只不过它是针对 HTTP 服务器的。httping本来是在类unix平台的,我通过cygwin编译出了win平台下的版本。因为在老家,所以只在windows xp 32位上测试过。

    

根据http://www.vanheusden.com/httping/的httping-1.5.1版本编译。

httping for win点击下载

Centos6安装mysql后首次启动的提示信息

Initializing MySQL database:  Installing MySQL system tables...
OK
Filling help tables...
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h yard.iday.me password 'new-password'

Alternatively you can run:
/usr/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:
cd /usr ; /usr/bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl
cd /usr/mysql-test ; perl mysql-test-run.pl

Please report any problems with the /usr/bin/mysqlbug script!

centos6下编译php5.3参数

./configure \
--sysconfdir=/etc/php-fpm   \
--localstatedir=/var    \
--enable-fpm         \
--disable-cgi        \
--with-openssl       \
--with-kerberos     \
 --with-zlib      \
 --enable-bcmath         \
 --with-bz2   \
 --enable-calendar    \
 --with-curl      \
--enable-exif   \
--enable-ftp   \
--with-gd     \
--with-gettext    \
--with-mhash    \
--enable-mbstring  \
--with-mcrypt \
--with-mysql   \
--with-mysql-sock     \
--with-mysqli   \
--with-pdo-mysql   \
--without-pdo-sqlite   \
--enable-soap    \
--enable-sockets    \
--enable-sqlite-utf8    \
--enable-zip

cp sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm

cgi.fix_pathinfo=0

设置pm.max_requests 防治内存泄漏
作为备忘