[ ID = 3012 ] | STM |
Organisation name | SpeechTechnology Magazine |
Short name or acronym | STM |
Organisation type | publication |
Activity type | |
Address | 2628 Wilhite Ct. Suite100 |
Postal Code | 40503 |
City | Lexington |
Country | United States |
Phone | + 859-278-2223 |
Fax | + 859-278-7364 |
Email | mike_(on)_amcommpublications.com |
Organisation URL | http://www.speechtechmag.com |
Logo | Description |
 |
Speech Technology Magazine is recognized worldwide as the leading source of information on the products and technologies affecting the speech technology industry. The bi-monthly trade publication delivers essential news to developers of the technology, value added resellers, integrators, end-users, investors and other professionals interested in this ever-expanding technology and its applications. Subscription information online: http://www.speechtechmag.com or toll-free 877-993-9767.
|
| Contact |
Name | Editor Mike Terry |
Function | Editor of the publication |
Department | |
Email | mike_(on)_amcommpublications.com |
Phone | + 859-278-2223 |
Fax | + 859-278-2223 |
Update this profile
|
Last update: 2002-04-15 16:46:18
#!/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"
|