|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0419 ] | Dr Steve Beet |
---|---|
Name | Beet, Dr Steve |
Job Title | Principal R&D Engineer |
Organisation | Aculab plc |
Address | Lakeside, Bramley Road |
Postal Code | MK1 1PT |
City | Milton Keynes |
Country | United Kingdom |
Phone | +44 1908 273963 |
Fax | +44 1908 273801 |
Mobile | + |
steve.beet_(on)_aculab.com [@ replaced for spam protection] | |
Organisation URL | http://www.aculab.com/ |
Personal URL | http://stevebeet.supanet.com/ |
Membership | ISCA IEEE, IEE |
Languages | English |
Specialism | Speechtechnology:
Adaptive Filters Artificial Neural Networks Audiovisual Speech Processing Auditory Modelling Diver Communication DSP Coding Filter Design Hidden Markov Models Language Modeling Robust Speech Recognition Signal Processing Speaker Adaptation Speaker Recognition Speech Coding Speech Processing Speech Production Speech Recognition Speech Synthesis Speech Technologies Telephony Text to Speech in Telephony Speaker Verification and Identification |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-09-01 11:23:14 #!/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" |