|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 1541 ] | Ao.Prof. Dr. Harald Trost |
|---|---|
| Name | Trost, Ao.Prof. Dr. Harald |
| Job Title | Associate Professor |
| Organisation | Dept. of Med. Cyb. and Artificial Intelligence |
| Address | Freyung 6 |
| Postal Code | A-1010 |
| City | Vienna |
| Country | Austria |
| Phone | + +43 1 4277 63121 |
| Fax | + +43 1 4277 9631 |
| Mobile | + |
| harald_(on)_ai.univie.ac.at [@ replaced for spam protection] | |
| Organisation URL | http://www.ai.univie.ac.at |
| Personal URL | http://www.ai.univie.ac.at/~harald |
| Membership | ELSNET ACL OEGAI |
| Languages | English German |
| Specialism | Computational Linguistics
Computational Morphology Dialogue Modelling Information Retrieval Multilinguality Multimodal Dialogue Systems Prosody modelling Robust Parsing and Understanding Text-to-Speech |
| Photograph | Description or CV |
![]() |
http://www.elsnet.org/expertcvs/blank.html |
|
|
Last update: 2003-02-04 12:52:15 #!/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" |