|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3092 ] | Tangent Telecom Ltd |
|---|---|
| Organisation name | Tangent Telecom Ltd - Speech and Project Management Consulting |
| Short name or acronym | Tangent Telecom Ltd |
| Organisation type | Consulting |
| Activity type | Cambridge |
| Address | |
| Postal Code | |
| City | Cambridge |
| Country | United Kingdom |
| Phone | + +44 1223 290162 |
| Fax | + |
| info_(on)_tangent-telecom.com | |
| Organisation URL | http://www.tangent-telecom.com |
| Logo | Description |
![]() |
Consultant specialists in all aspects of speech technology. Including, but not limited to: -- Speech Recognition -- Text to Speech -- Call Centre Automation -- Speaker Verification -- Voice Switching Technologies such as ISDN, SS7 and IN -- Voice over packet networks (VOIP and others) -- IVR and more complex interactive systems -- Real-World deployment of Speech Technologies UK Based World-wide consulting with clients and former clients in UK, USA, Europe, Asia, Latin America and Australasia. |
| Contact | |
| Name | Mr. Duncan Henry |
| Function | Director |
| Department | |
| duncan.henry_(on)_tangent-telecom.com | |
| Phone | + |
| Fax | + |
|
|
Last update: 2003-05-08 17:36:13 #!/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" |