|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 0798 ] | Dr.-Ing. Steffen Werner |
|---|---|
| Name | Werner, Dr.-Ing. Steffen |
| Job Title | Research & Development (HMI Development Voice Control) |
| Organisation | Mercedes-Benz Cars Development -- Daimler AG |
| Address | Benz-Str. (HPC X904) |
| Postal Code | D-71059 |
| City | Sindelfingen |
| Country | Germany |
| Phone | +49 1608639085 |
| Fax | +49 7113052196016 |
| Mobile | +49 1608639085 |
| steffen.s.werner_(on)_daimler.com [@ replaced for spam protection] | |
| Organisation URL | |
| Personal URL | http://www.steffenwerner.net |
| Membership | ELSNET ISCA IEEE |
| Languages | English German, Russian, Bulgarian, French |
| Specialism | Automotive Applications
Voice User Interface Speech Dialogue Systems Speech Dialogue Design Dialogue System Evaluation Testing of Dialogue Systems Usability of Speech Application Multilingual Systems Multimodal Dialogue Systems Multimodal Human-Machine Interaction Speech Recognition Technologies Speech Synthesis Text-To-Speech Project Management |
| Photograph | Description or CV |
![]() |
|
|
|
Last update: 2010-03-24 07:32:58 #!/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" |