You and Me ,He and She ,EveryOne Is Angel. EveryOne Has His Angel.

自动表格和密码管理工具RoboForm

July 22nd, 2008 admin

Roboform是被公认的优秀密码管理网上填表软件,它能自动为您填写注册表格,并管理您在网上的账号和密码。
RoboForm曾获得美国《PC Magazine》杂志编辑选择奖, 和 CNET的下载站 download.com年度最佳软件称号.    RoboForm:
. 自动记忆 你的浏览器密码信息并且能自动登录
. 自动填写 冗长的注册表格,只需要鼠标一点
. 自动加密 你的密码资料,保证您的账户十分安全
. 智能生成 黑客无法猜透的安全密码。
. 抵制欺诈 网站。该软件能自动识别和记录您常登陆的网站,抵御陌生欺诈网站的伪装。
. 虚拟键盘 使你不需要使用键盘录入密码,只需通过鼠标点击即可,有效的防止别人通过键盘来获取您的隐私。
. 强大备份 能把你的密码和重要信息,备份到你其他的电脑上。
. 实现同步 不同电脑之间的密码信息,这都依托GoodSync技术。
. 强力搜索 能通过关键词在你的密码,笔记和互联网上搜索到你需要的信息。
. 随身而行: RoboForm2Go RF 可以安装在U盘上,当你在不同电脑上使用时,不需要再重复安装。
. PDA伴侣: 实现您的密码与掌上电脑移动终端之间的同步。
. 卓越性能: 完全支持Internet Explorer, AOL/MSN, Firefox等主流浏览器。

robform

单个WP多域名绑定的办法[Wordpress Multi-domain]

July 22nd, 2008 admin

Wordpress Multi-domain

注意,不是WPMU版,而是Wordpress个人版,怎么绑定到多个域名上去呢?当然你需要对php有一点了解才行。
首先,把wordpress所有文件上传到你的空间,然后把所有的域名指向到你的空间目录。
然后,打开wp-config.php,并进行如下编辑。为了简单一点,我提供几个例子,比如你有3个域名需要绑定,domain1.com,domain2.com,domain3.com,那么wp-config.php就会如下:

// ** MySQL settings ** //
define('DB_NAME', 'dbname'); // The name of the database
define('DB_USER', 'user'); // Your MySQL username
define('DB_PASSWORD', 'password'); // ...and password
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');

// You can have multiple installations in one database if you give each a unique prefix

$current_sitename= $_SERVER[’HTTP_HOST’];

if (($current_sitename == “domain1.com”) || ($current_sitename == “www.domain1.com”)){
$table_prefix = ‘domain1_’; // Only numbers, letters, and underscores please!
}elseif (($current_sitename == “domain2.com”) || ($current_sitename == “www.domain2.com”)){
$table_prefix = ‘domain2_’; // Only numbers, letters, and underscores please!
}elseif (($current_sitename == “domain3.com”) || ($current_sitename == “www.domain3.com”)){
$table_prefix = ‘domain3_’; // Only numbers, letters, and underscores please!
}

This is not Wordpress MU, but normal wordpress.
In order to make it multi domain you must have a bit knowledge of PHP.

First of all, just upload all wordpress files to your host as just normal. Then, point all wordpress domains to the installation directory.

Now, open wp-config.php and do some setting for all wordpress domains.
To make it easy, I’ll give you an example… assume I have 3 domain, domain1.com domain2.com and domain3.com, so part of my wp-config.php will look like this.

// ** MySQL settings ** //
define('DB_NAME', 'dbname'); // The name of the database
define('DB_USER', 'user'); // Your MySQL username
define('DB_PASSWORD', 'password'); // ...and password
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');

// You can have multiple installations in one database if you give each a unique prefix

$current_sitename= $_SERVER[’HTTP_HOST’];

if (($current_sitename == “domain1.com”) || ($current_sitename == “www.domain1.com”)){
$table_prefix = ‘domain1_’; // Only numbers, letters, and underscores please!
}elseif (($current_sitename == “domain2.com”) || ($current_sitename == “www.domain2.com”)){
$table_prefix = ‘domain2_’; // Only numbers, letters, and underscores please!
}elseif (($current_sitename == “domain3.com”) || ($current_sitename == “www.domain3.com”)){
$table_prefix = ‘domain3_’; // Only numbers, letters, and underscores please!
}

Now, save and upload wp-config.php , the setting is finished. Now, you can do the installation process as normal.

好了,保存它并上传,现在,你可以像正常安装的办法来进行了

当点名进入死循环?

July 22nd, 2008 admin

点名过程(最开始的那个人进来)
{
循环条件(永远真)
{
回答20个问题。
然后点名5个人[ABCDE]
ABCDE[分别进行点名过程]
如果A是我
break;//循环中止,跳出世代轮回
}//不断循环
}