|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0076 ] | Dr. Roger Moore |
---|---|
Name | Moore, Dr. Roger |
Job Title | Chief Scientific Officer |
Organisation | 20/20 Speech Ltd. |
Address | Science Park, Geraldine Road |
Postal Code | WR14 3SZ |
City | Malvern, Worcs. |
Country | United Kingdom |
Phone | + +44 1 684 585111 |
Fax | + +44 1 684 585151 |
Mobile | + +44 1 7720 555733 |
r.moore_(on)_2020speech.com [@ replaced for spam protection] | |
Organisation URL | http://www.2020speech.com |
Personal URL | |
Membership | ELSNET ISCA Fellow UK Institute of Acoustics, Member IEEE |
Languages | English |
Specialism | Speechtechnology:
Acoustic Phonetics Evaluation Speaker Recognition Speech Applications Speech Coding Speech Processing Speech Recognition Speech Summarization Speech Synthesis Spoken Dialogue Systems Statistical Pattern Recognition Voice Biometrics (Speaker Verification, Identification, Lie-detection, etc) |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2003-08-19 12:14:30 #!/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" |