Organisation profile: Gios Voice Professionals BV
| [ ID = 3064 ] | Gios |
| Organisation name | Gios Voice Professionals BV |
| Short name or acronym | Gios |
| Organisation type | Speech Technology in call centers |
| Activity type | Speech Technology call centers |
| Address | Koornstraat 10b |
| Postal Code | 5341 BR |
| City | Oss |
| Country | Netherlands |
| Phone | + +31 (0) 412 465200 |
| Fax | + +31 (0) 412 652 000 |
| Email | gvp_(on)_gios.nl |
| Organisation URL | http://www.twintalk.nl |
| Logo | Description |
 |
Gios heeft TwinTalk gemaakt. Met TwinTalk is het mogelijk om op een snelle en efficiente manier spraakapplicaties te ontwikkelen. Meer informatie op http://www.twintalk.nl.
|
|
| Contact |
| Name | drs Dirk Jan Dokman |
| Function | Commercieel Directeur |
| Department | |
| Email | dirkjan_(on)_gios.nl |
| Phone | + 06 51123999 |
| Fax | + |
Update this profile
|
Last update: 2002-05-22 16:05:57
#!/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"
|
|