|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1012 ] | Thanos Kontonassios |
---|---|
Name | Kontonassios, Thanos |
Job Title | President |
Organisation | AIS, Inc. |
Address | 16015 CRAIGHURST DR. |
Postal Code | 77059 |
City | HOUSTON |
Country | United States |
Phone | + (281) 488-7016 |
Fax | + (281) 286-2866 |
Mobile | + |
thanos_(on)_speech-pro.com [@ replaced for spam protection] | |
Organisation URL | http://www.speech-pro.com |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Application Software Development Business Application of Speech Technology Development and Implementation of Speech Technology Applications Embedded Systems Medical Applications Speech Applications Speech Databases Speech Processing Speech Recognition Text Generation User Interface Design Voice Processing |
Photograph | Description or CV |
![]() |
http://www.elsnet.org/expertcvs/blank.html |
![]() |
Last update: 2003-08-07 13:25:29 #!/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" |