|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0842 ] | Michael Carey |
---|---|
Name | Carey, Michael |
Job Title | English language/pronunciation teacher and PhD candidate |
Organisation | Speech, Hearing and Language Research Centre and the |
Address | 12/35 Fontenoy rd, |
Postal Code | 2113 |
City | North Ryde |
Country | Australia |
Phone | + (+612)9888 3638 |
Fax | + (+612)9888 3638 |
Mobile | + |
michael_(on)_shlrc.mq.edu.au [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Acoustic Phonetics Audio Signal Processing Audiovisual Speech Processing Bilingual Speech Production/Perception Causes of Listeners' Mishearing Computer Assisted Language Learning Development and Implementation of Speech Technology Applications Digital Speech Processing general linguistics Grammar Intonation Language Learning Linguistics Phonology Pronunciation Modelling Prosody Prosody (Linguistic Description of) Second Language Speech Signal Analysis Signal Processing Speech Acoustics Speech Analysis Speech Applications Speech Evaluation Speech Perception Speech Production |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-04-09 16:50:23 #!/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" |