|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0984 ] | Mr Duncan Henry |
---|---|
Name | Henry, Mr Duncan |
Job Title | Speech Technology and IN Specialist |
Organisation | Tangent Telecom |
Address | |
Postal Code | |
City | Cambridge |
Country | United Kingdom |
Phone | + +44 1223 290162 |
Fax | + |
Mobile | + +44 7732 667140 |
duncan.henry_(on)_tangent-telecom.com [@ replaced for spam protection] | |
Organisation URL | http://www.tangent-telecom.com |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Adaptive Speech Recognition Application Software Development Automated Natural Language Speech Business Application of Speech Technology CASE tools for speech apps - developing CASE tools for speech apps - using Data Corpus Collection Developer Tools Development and Implementation of Speech Technology Applications Dialogmanagement Dialogue Dialogue Modelling Dialogue System Evaluation dialogue systems Human Factors Human Factors Engineering Information Services by Telephone using Speech Technologies Multimodal Communciation Multimodal Dialogue Systems Multimodal Human-Machine Communication Multimodality Prosody Speech Applications Speech Databases Speech Databases for Automatic Speech/Speaker Recognition Speech Recognition Speech Synthesis Speech Technologies Speech-Enabled IVR Systems Spoken Dialog Processing Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Spoken Dialogue Systems Text to Speech in Telephony Text-to-Speech Usability Engineering User acceptance raising User Interface Design VoiceXML |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-10-08 16:49:55 #!/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" |