|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0925 ] | Speech Hearing and Language Research Centre |
---|---|
Organisation name | Speech Hearing and Language Research Centre |
Short name or acronym | Speech Hearing and Language Research Centre |
Organisation type | Center |
Activity type | Speech technology |
Address | Macquarie University |
Postal Code | 2109 |
City | North Ryde, NSW |
Country | Australia |
Phone | + +612 9850 7111 |
Fax | + |
Organisation URL | http://www.shlrc.mq.edu.au |
Logo | Description |
![]() |
The Speech Hearing and Language Research Centre, established at the Macquarie University, is located within the Department of Linguistics and has four basic aims: to advance pure, basic and applied research in the speech speech science field including experimental phonetics and the various aspects of speech technology; to carry out research and clinical analysis in audiology and hearing science; to carry out research and clinical analysis in communication disorders and speech pathology; to advance pure, basic, and applied research in the field of experimental linguistics and natural language processing. |
Contact | |
Name | Mr. Jonathan Harrington |
Function | Speech processing |
Department | |
jmh_(on)_srsuna.shlrc.mq.edu.au | |
Phone | + +61 2 850 8763 / 8740 |
Fax | + +61 2 9850 9199 |
![]() |
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" |