|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1911 ] | Dr. Tibor Fabian |
---|---|
Name | Fabian, Dr. Tibor |
Job Title | |
Organisation | Volt Delta International GmbH |
Address | Landsberger Str. 110 |
Postal Code | 80339 |
City | München |
Country | Germany |
Phone | +49 89 45566321 |
Fax | + |
Mobile | +49 179 5416200 |
tif_(on)_voltdelta.net [@ replaced for spam protection] | |
Organisation URL | http://www.voltdelta.net |
Personal URL | |
Membership | ISCA |
Languages | English German, Hungarian |
Specialism | Acoustic Modeling
Adaptive Speech Recognition Audio Signal Processing Bayesian Theory and Applications Call Center Automation Confidence Measures Dialogue Design Dialogue Management Dialogue Modelling Dialogue System Evaluation Dialogue systems Digital Speech Processing Dynamic Lexicon Building Hidden Markov Models Interactive Voice Response (IVR) Psychoacoustics Recognition Technologies Robust Speech Recognition Search Algorithms Service Design Speech Applications Speech Recognition Speech-Enabled IVR Systems Spoken Dialogue Systems Telephony Testing of Dialogue Systems VoiceXML |
Photograph | Description or CV |
![]() |
http://www.elsnet.org/expertcvs/blank.html |
![]() |
Last update: 2008-08-29 10:52:45 #!/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" |