|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1344 ] | Dr Mark Huckvale |
---|---|
Name | Huckvale, Dr Mark |
Job Title | Senior Lecturer |
Organisation | Speech, Hearing and Phonetic Sciences, UCL |
Address | Gower Street |
Postal Code | WC1E 6BT |
City | London |
Country | United Kingdom |
Phone | + 44 (0) 20 7679 7401 |
Fax | + |
Mobile | + |
M.Huckvale_(on)_ucl.ac.uk [@ replaced for spam protection] | |
Organisation URL | http://www.phon.ucl.ac.uk/ |
Personal URL | http://www.phon.ucl.ac.uk/home/mark/ |
Membership | ELSNET ISCA |
Languages | English |
Specialism | Acoustic Modeling
Acoustic Phonetics Artificial Neural Networks Dialogue Experimental Phonetics Language Modeling Neural network Neural Networks Speech Acoustics Speech Processing Speech Recognition Speech Synthesis Speech Technologies Statistical Language Modeling and Analysis Statistical Language Modelling for Speech Recognition Text-to-Phonetic Representation Text-to-Speech |
Photograph | Description or CV |
![]() |
http://www.phon.ucl.ac.uk/home/mark/ |
![]() |
Last update: 2008-08-28 22:19:44 #!/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" |