|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2405 ] | Mr John Rye |
---|---|
Name | Rye, Mr John |
Job Title | Consultant |
Organisation | Meridian One Consulting |
Address | 9, Bronsil Drive |
Postal Code | WR14 1LR |
City | Malvern |
Country | United Kingdom |
Phone | +44 01684 560900 |
Fax | + |
Mobile | +44 07900 257723 |
john.rye_(on)_meridian-one.co.uk [@ replaced for spam protection] | |
Organisation URL | http://www.meridian-one.co.uk |
Personal URL | http://www.meridian-one.co.uk/johnrye.html |
Membership | IET |
Languages | English German |
Specialism | Audio Signal Processing
DSP Coding Prosody modelling Signal Analysis Signal Processing Speech Coding Speech Signal Processing Speech Synthesis Text-to-Phonetic Representation Text-to-Speech Text-to-speech (Indic) Text-To-Speech Conversion Web Applications |
Photograph | Description or CV |
![]() |
http://meridian-one.co.uk/johnrye.html |
![]() |
Last update: 2010-01-07 13:52:05 #!/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" |