|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1110 ] | M.Sc. Robert Batusek |
---|---|
Name | Batusek, M.Sc. Robert |
Job Title | Ph.D. student |
Organisation | Masaryk University |
Address | Botanicka 68a |
Postal Code | 60200 |
City | Brno |
Country | Czech Republic |
Phone | + +420 5 41512378 |
Fax | + +420 5 41212568 |
Mobile | + |
xbatusek_(on)_fi.muni.cz [@ replaced for spam protection] | |
Organisation URL | http://www.fi.muni.cz/lsd/ |
Personal URL | http://www.fi.muni.cz/~xbatusek |
Membership | ISCA |
Languages | English Czech Italian |
Specialism | Speechtechnology:
Application Software Development Assistive Technology Automated Natural Language Speech Corpora and Dialogue Annotations Developer Tools Development and Implementation of Speech Technology Applications dialogue systems Machine Learning Algorithms Multimodal Dialogue Systems Multimodal Human-Machine Communication Multimodality Prosody Prosody modelling Prosody perception Software Architecture for Language Engineering Speech Applications speech intelligibility measurement Speech Perception Speech Processing Speech Synthesis Speech Technologies Spoken Dialogue Systems Statistical Pattern Recognition Text Generation Text to Speech in Telephony Text-to-Phonetic Representation Text-to-Speech VoiceXML |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-04-08 11:24:28 #!/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" |