|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2312 ] | PD Dr. Kurt Eberle |
---|---|
Name | Eberle, PD Dr. Kurt |
Job Title | Managing Director |
Organisation | Lingenio GmbH |
Address | Karlsruher Str. 10 |
Postal Code | 69126 |
City | Heidelberg |
Country | Germany |
Phone | +0049 (0)6221 189827 |
Fax | +0049 (0)6221 619766 |
Mobile | + |
k.eberle_(on)_lingenio.de [@ replaced for spam protection] | |
Organisation URL | http://www.lingenio.de/ |
Personal URL | http://www.kurt-eberle.de |
Membership | EAMT |
Languages | English French, German |
Specialism | Ambiguity
Anaphora Annotation and Exploitation Tools Application Software Development Computational Lexicography Computational Linguistics Computational Morphology Corpus Linguistics Discourse analysis Discourse Theories Dynamic Lexicon Building Evaluation Grammar Hybrid Systems Interactive Disambiguation Language Modeling Language Processing Language Translation Lexical Acquisition Lexical and Terminological Databases Lexical Semantics Lexicons Linguistics Logic Machine Translation Natural Language Processing Natural Language Semantics Ontology Parsing Pragmatics Robust Parsing and Understanding Robust Semantic Processing Semantic Interpretation Semantics Shallow Parsing Syntax Text Generation Use of Translation Tools |
Photograph | Description or CV |
![]() |
http://www.cl.uni-heidelberg.de/~eberle/ |
![]() |
Last update: 2009-05-07 17:03: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" |