|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0876 ] | Australian Speech Science and Technology Association (ASSTA) |
---|---|
Organisation name | Australian Speech Science and Technology Association (ASSTA) |
Short name or acronym | Australian Speech Science and Technology Association (ASSTA) |
Organisation type | Association |
Activity type | Speech technology |
Address | P.O.Box 143 |
Postal Code | 2601 |
City | Canberra, ACT |
Country | Australia |
Phone | + |
Fax | + |
assta_(on)_cslab.anu.edu.au | |
Organisation URL | http://cslab.anu.edu.au/assta/ |
Logo | Description |
![]() |
The Australian Speech Science and Technology Association (ASSTA) is a scientific association which aims to advance the understanding of speech science and its application to speech technology in a way that is appropriate for Australia. In order to fulfil these aims the Association seeks to provide significant exchange between those actively involved in speech science and technology research and practice, between this multidisciplinary body of professionals and the community in general as well as other national and international bodies having related aims. The Association is incorporated in the Australian Capital Territory as a non-profit scientific association with specific objectives designed to promote these aims. |
Contact | |
Name | Dr. Bruce Millar |
Function | President |
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" |