elsnet |
Organisation profile: Sestek |
[ ID = 3112 ] | Sestek |
---|---|
Organisation name | Sestek |
Short name or acronym | Sestek |
Organisation type | Inc. |
Activity type | |
Address | Konaklar Mah. Selvili Sk. 13/C Blok. No:8. D:2 |
Postal Code | 80620 |
City | Istanbul |
Country | Turkey |
Phone | + +90 212 284 32 06 |
Fax | + +90 212 284 44 92 |
info_(on)_sestek.com.tr | |
Organisation URL | http://www.sestek.com.tr |
Logo | Description |
![]() |
Sestek Inc. is an R&D company focusing on speech technologies. The major fields of research include design of Interactive Voice Response(IVR) and Voice Conversion Systems. |
Contact | |
Name | Mr. Oytun Turk |
Function | Research Engineer |
Department | R&D |
oytun_(on)_sestek.com.tr | |
Phone | + +90 212 284 32 06 |
Fax | + +90 212 284 44 92 |
![]() |
Last update: 2002-12-11 16:23:54 #!/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" |