- 浏览: 227077 次
- 性别:
- 来自: 北京
最新评论
-
Virtoway:
说到Angular JS刚读到一片美国构架师的文章关于使用An ...
angular js: angular.bind example -
08284008:
该毛线啊,一点解释的都没有,怎么看
Thread join() 用法 -
Rex86lxw:
在eclipse中我一直用Navigator查看编写代码的,可 ...
eclipse不能自动编译,不报错 -
mistake:
..............
Angular js scope: the child scope would inherit from the parent scope -
sparrow1314:
very good! thanks!
IE下JS调试工具
文章列表
1. selenium可用于浏览器兼容测试及系统功能测试:
Browser compatibility testing.
Test your application to see if it works correctly on different
browsers and operating systems. The same script can run on any Selenium
platform.
System functional testing.
Create regression tests to verify application functionality and ...
- 2008-10-20 14:39
- 浏览 962
- 评论(0)
http://www.51testing.com/?action_tag_tagname_selenium.html
- 2008-10-17 15:38
- 浏览 767
- 评论(0)
现有版本的selenium
不能支持火狐3,需要加入一个补丁程序。
selenium已经有了补丁,相关论坛在这里:
http://jira.openqa.org/browse/SIDE-171
补丁程序可以在这里下载:http://jira.openqa.org/secure/attachment/11491/ff3_patch.tar
这个论坛里面没有说明如何安装,其实也很简单。只要更新在selenium-server.jar里面的两个子目录就可以了。这两个子目录是:
customProfileDirCUSTFF
customProfileDirCUSTFFCHROME
更新的命 ...
- 2008-10-17 15:18
- 浏览 1146
- 评论(0)
http://www.it-eye.nl/weblog/2005/12/13/ajax-in-struts-implementing-dependend-select-boxes/
script
script:
<script language="javascript">
var req;
/*
* Get the second options by calling a Struts action
*/
function retrieveProjectOptions(){
firstBox = document.getEle ...
- 2008-09-07 21:11
- 浏览 1287
- 评论(0)
http://www.80x86.cn/article.asp?id=1556
- 2008-09-07 21:07
- 浏览 681
- 评论(0)
http://infrarecorder.sourceforge.net/
- 2008-08-25 22:03
- 浏览 688
- 评论(0)
http://www.w3school.com.cn/php/php_file.asp
fopen() 函数用于在 PHP 中打开文件。
打开文件
fopen() 函数用于在 PHP 中打开文件。
此函数的第一个参数含有要打开的文件的名称,第二个参数规定了使用哪种模式来打开文件:
<html>
<body>
<?php
$file=fopen("welcome.txt","r");
?>
</body>
</html>
文件可能通过下列模式来打开:
模式
描述
r
只 ...
- 2008-08-21 10:58
- 浏览 760
- 评论(0)
http://gztw.com/2005/12/total_commander.html
- 2008-08-20 16:05
- 浏览 1058
- 评论(0)
1. set default OS in launch
sudo gedit /boot/grub/menu.lst
look for
"default 5", set the number to the index of your default OS.
/boot/grub/grub.cfg "replaces" Grub Legacy's /boot/grub/menu.lst since ununtu9.10
2. SCIM
sudo apt-get install scim
sudo apt-get ins ...
转自 http://blog.chinaunix.net/u/24023/showart_303934.html
#!/bin/sh
myPath="/var/log/httpd/"
myFile="/var /log/httpd/access.log"
#这里的-x 参数判断$myPath是否存在并且是否具有可执行权限
if [ ! -x "$myPath"]; then
mkdir "$myPath"
fi
#这里的-d 参数判断$myPath是否存在
if [ ! -d "$myPa ...
- 2008-08-18 10:47
- 浏览 1661
- 评论(0)
php5默认是不能直接连接mysql的。需要进行以下一些配置。
php安装目录为D:\php5.2.6
在环境变量Path中添加D:\php5.2.6
修改D:\php5.2.6下的php.ini。extension_dir改为
extension_dir = "D:/php5.2.6/ext/"
以下两行注释去掉
extension=php_mysql.dll
extension=php_mysqli.dll
重新启动apache.
之后phpinfo有以下相关信息表示配置成功
mysql
mysqli
- 2008-08-11 14:43
- 浏览 1714
- 评论(0)
http://cn.php.net/manual/en/install.windows.apache2.php
- 2008-07-18 17:12
- 浏览 597
- 评论(0)
Both JBoss and Oracle RDBMS are using the port 8080. HTTP Server for JBoss, XDB listener for Oracle RDBMS.
So I thin you are hitting this issue, which error do you have when you start JBoss after Oracle? Something like:
"java.net.BindException: Address already in use: JVM_Bind:8080"
So yo ...
- 2008-06-03 19:11
- 浏览 1186
- 评论(0)
安装Oracle XE or 企业版。
需要安装client. 如果是远程连接,要配置client里的远程服务。
安装PL/SQL
如果是本地的xe服务,
用sys和安装Oracle XE时设置的密码进入PL/SQL,新建用户。role privilege: dba
外地的用前面的配置。
安装oracle client居然在path里加了个1.4 jre的路径,弄得我的jre由1.5变成1.4了。真晕
- 2007-11-07 10:59
- 浏览 2697
- 评论(0)
先自己学习,再求助于人
- 博客分类:
- blog
近段发现自己一个缺点,很多事情明明自己可以在网上搜索搞定,看着人家会,就去找人家帮忙做。这其实是个很不好的习惯。一次人家帮做了,也许为我节省了点时间。但从长远来看,这使自己养成了一种惰性。最后自己很多最常识的计算机知识都不会。
不是说请教别人有什么不对。只是一定要培养独立解决问题的能力。先自己想办法解决,实在遇到困难时才去求助于人。
- 2007-11-06 21:29
- 浏览 721
- 评论(0)