the pre-populated renewal form (128 char code sent to a member via email)
an event with race results.
pre event page - with reg page
the events page (tabs per year)
Friday, 18 December 2009
Tuesday, 8 December 2009
Friday, 4 December 2009
Preforce, Intellij & Ubuntu
If your running intellij on ubuntu, you make need to make sure this preforce settings are configured within the root user setup scripts, add them to /etc/profile.d/global.sh
user@foundry:~$ more /etc/profile.d/global.sh
export P4USER=$USER
export P4CHARSET=utf8
export P4CLIENT=`hostname`
export P4PORT=perforce.newbay.com:1666
user@foundry:~$ more /etc/profile.d/global.sh
export P4USER=$USER
export P4CHARSET=utf8
export P4CLIENT=`hostname`
export P4PORT=perforce.newbay.com:1666
Tuesday, 17 November 2009
reconfigure oracle-xe on ubuntu
To reconfigure an instance of oracle-xe on ubuntu, first edit this file
/etc/default$ more oracle-xe
change the CONFIGURE_RUN value to false
# ORACLE_DBENABLED:'true' means to load the Database at system boot.
ORACLE_DBENABLED=true
# LISTENER_PORT: Database listener
LISTENER_PORT=1521
# HTTP_PORT : HTTP port for Oracle Application Express
HTTP_PORT=8080
# Configuration : Check whether configure has been done or not
CONFIGURE_RUN=true
and then execute
/etc/initi.d/oracle-xe configure
/etc/default$ more oracle-xe
change the CONFIGURE_RUN value to false
# ORACLE_DBENABLED:'true' means to load the Database at system boot.
ORACLE_DBENABLED=true
# LISTENER_PORT: Database listener
LISTENER_PORT=1521
# HTTP_PORT : HTTP port for Oracle Application Express
HTTP_PORT=8080
# Configuration : Check whether configure has been done or not
CONFIGURE_RUN=true
and then execute
/etc/initi.d/oracle-xe configure
Oracle XE and Ubuntu
Edit /etc/apt/sources.list, and add following:
deb http://oss.oracle.com/debian unstable main non-free
then execute
aptitude install oracle-xe oracle-xe-client
to install oracle. finally run
/etc/init.d/oracle-xe configure
The DB by default will be accessed via port 1521. Administration is performed through localhost:8080/apex.
deb http://oss.oracle.com/debian unstable main non-free
then execute
aptitude install oracle-xe oracle-xe-client
to install oracle. finally run
/etc/init.d/oracle-xe configure
The DB by default will be accessed via port 1521. Administration is performed through localhost:8080/apex.