|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0716 ] | Dr. Andrew Cameron Morris |
---|---|
Name | Morris, Dr. Andrew Cameron |
Job Title | Speech recognition engineer |
Organisation | Spinvox |
Address | Wethered House, Pound Lane |
Postal Code | SL7 2AF |
City | Marlow |
Country | Switzerland |
Phone | + 44 20 7965 2000 |
Fax | + 44 20 7965 2001 |
Mobile | + 44 7825 064 634 |
andrew.morris_(on)_spinvox.com [@ replaced for spam protection] | |
Organisation URL | http://www.spinvox.com/ |
Personal URL | |
Membership | ISCA |
Languages | English French, Spanish |
Specialism | Speechtechnology:
Acoustic Modeling Auditory Modelling Hidden Markov Models Hybrid Systems Information Services by Telephone using Speech Technologies Neural Networks Robust Speech Recognition Statistical Pattern Recognition |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2007-10-01 00:28:09 #!/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" |