|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3926 ] | TDI |
---|---|
Organisation name | TDI Inc. |
Short name or acronym | TDI |
Organisation type | Private company |
Activity type | Language or Speech Technology integrator |
Address | 17255 N. 82nd Street |
Postal Code | 85255 |
City | Scottsdale |
Country | United States |
Phone | +480 585-6464 |
Fax | +480 585-3373 |
marketing_(on)_tdiinc.com | |
Organisation URL | http://www.tdiinc.com |
Logo | Description |
![]() |
TDI offers Liberation® and Encore, a proven technology platform that helps companies increase revenues and develop their workforce. Our Encpore call recording suite generates recordings that can be analyzed by speech analytics software. We have integrated with several of the leading speech analytics products. |
Contact | |
Name | Product Marketing Rick Reiman |
Function | Product Marketing |
Department | Marketing |
rreiman_(on)_tdiinc.com | |
Phone | +480 538-7745 |
Fax | + |
![]() |
Last update: 2008-11-18 05:12:59 #!/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" |