|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0922 ] | Remko Ten Donkelaar |
---|---|
Name | Donkelaar, Remko Ten |
Job Title | Account Manager |
Organisation | Group 2000 Nederland B.V. |
Address | P.O.Box 333 |
Postal Code | 7600 AH |
City | Almelo |
Country | Netherlands |
Phone | + +31 (0)546 482 400 |
Fax | + +31 (0)546 482 401 |
Mobile | + |
remko.ten.donkelaar_(on)_group2000.nl [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
24/7 support Application Software Development Automated Natural Language Speech Communication Development and Implementation of Speech Technology Applications Dialogmanagement Dialogue Dialogue Modelling Hosting solutions Human Factors Information Services by Telephone using Speech Technologies Multimodality Provision and integration of voice verification using phones and internet Robust Speech Recognition Speaker Recognition Speech Applications Speech Processing Speech Recognition Speech Technologies Speech-Enabled IVR Systems Spoken Dialogue and Robust Speech Understanding Text to Speech in Telephony Text-to-Speech User acceptance raising User Interface Design Voice Processing Voice-Driven Telecommunications Applications VoiceXML VoIP |
Photograph | Description or CV |
| |
Update your profile | Last update: 2002-04-05 12:00:00 #!/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" |