|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1409 ] | Dr. Gerhard Hanrieder |
---|---|
Name | Hanrieder, Dr. Gerhard |
Job Title | Senior Manager Speech Services |
Organisation | Harman/Becker Automotive Systems |
Address | Soeflingerstr. 100 |
Postal Code | D-89077 |
City | Ulm |
Country | Germany |
Phone | + 49 (0) 731 3994 115 |
Fax | + 49 (0) 731 3994 250 |
Mobile | + |
GHanrieder_(on)_harmanbecker.com [@ replaced for spam protection] | |
Organisation URL | http://www.harmanbecker.de |
Personal URL | |
Membership | |
Languages | English German |
Specialism | Computational Linguistics
Developer Tools Dialogue Dialogue Design Dialogue Management Dialogue Modelling Dialogue System Evaluation Dialogue systems Grammar Grammar Compilers Information Services by Telephone using Speech Technologies Multimodal Dialogue Systems Multimodal Human-Machine Communication Natural Language Processing Natural Language Semantics Parsing Robust Parsing and Understanding Robust Parsing of Spontaneous Speech Robust Semantic Processing Semantic Interpretation Speech Applications Speech Understanding Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Spoken Dialogue Processing Spoken Dialogue Systems Testing of Dialogue Systems |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-29 14:39:07 #!/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" |