Organisation profile: 20/20 Speech, Ltd.
[ ID = 1676 ] | 20/20 Speech, Ltd. |
Organisation name | 20/20 Speech, Ltd. |
Short name or acronym | 20/20 Speech, Ltd. |
Organisation type | Company |
Activity type | Speech technology |
Address | Malvern Hills Science Park, Geraldine Road |
Postal Code | WR14 3SZ |
City | Malvern, Worcestershire |
Country | United Kingdom |
Phone | + +44 1684 585101 |
Fax | + +44 1684 585151 |
Email | enquiries_(on)_2020speech.com |
Organisation URL | http://www.2020speech.com |
Logo | Description |
 |
20/20 Speech develops and supplies proprietary speech recognition and text to speech software products and solutions for portable devices and media management applications.
|
| Contact |
Name | Brigadier Anthony Stevens |
Function | Managing Director |
Department | |
Email | enquiries_(on)_2020speech.com |
Phone | + +44 (0)1684 585101 |
Fax | + |
Update this profile
|
Last update: 2002-04-15 12:03:41
#!/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"
|
|