|
|
Organisation profile: Dynamic Instruments, Inc.
[ ID = 0627 ] | DI |
Organisation name | Dynamic Instruments, Inc. |
Short name or acronym | DI |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 3860 Calle Fortunada |
Postal Code | 92123-1825 |
City | San Diego, CA |
Country | United States |
Phone | + +1 858 278 4900 |
Fax | + +1 858 278 6700 |
Email | info_(on)_dynamicinst.com |
Organisation URL | http://www.dynamicinst.com |
Logo | Description |
|
Voice logger manufacturer specializing in data integration, T1/E1, ISDN,
digital and analog audio interfaces, remote clients, web clients, mobile and
ruggedized audio recorders
|
| Contact |
Name | Mr. Donald C Gillis |
Function | Business Development and Sales Manager |
Department | Marketing & Sales |
Email | dgillis_(on)_dynamicinst.com |
Phone | + +1 858 278 4900 ext. 1104 |
Fax | + |
Update this profile
|
Last update: 2005-01-04 22:22:30
#!/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"
|
|