« links for 2009-05-21 |
Main
| links for 2009-05-23 »
-
run 'gem server' then point a browser at locahost:8808 to see the documentation for all installed Ruby Gems
-
The Cygwin FAQ explains how to automatically install Cygwin from the shell. But just running setup.exe -q -L -l path\to\package-tree, will ONLY install the Cygwin base packages, regardless of what is in your .ini file. To get everything in your .ini file to install, you need to process the .ini file with sed as follows:
cp setup.ini setup.ini-backup ;
sed "s/[cC]ategory:.*/Category: Base/" < setup.ini > setup.temp ;
cp setup.temp setup.ini
-
when specifying the URL of the Selenium Grid hub, the argument must include the port number, that is, it must be of the format: -DhubURL=http://129.158.229.128:4444