|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1870 ] | Computer Sciences Laboratory, Australian National University |
---|---|
Organisation name | Computer Sciences Laboratory, Australian National University |
Short name or acronym | Computer Sciences Laboratory, Australian National University |
Organisation type | Center |
Activity type | Speech technology |
Address | RSISE, Building 115 The Australian National University |
Postal Code | 0200 |
City | Canberra, ACT |
Country | Australia |
Phone | + +61 2 6279 8644 |
Fax | + +61 2 6279 8651 |
michelle_(on)_cslab.anu.edu.au | |
Organisation URL | http://cslab.anu.edu.au/ |
Logo | Description |
![]() |
In its present form, the Computer Sciences Laboratory was formed in December 1998 from a merger of three groups in the Research School of Information Sciences and Engineering: the Automated Reasoning Project, the Learning Systems Group from the Systems Engineering Department, and the old Computer Sciences Laboratory. The Laboratory is a Department in RSISE and currently has 10 staff members, 6 visiting fellows, 6 general staff, 1 adjunct professor, and 16 post-graduate students, as well as a number of visitors. Activities in the Laboratory come under three headings: Research, Teaching and Learning, and Outside Interactions. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |