|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1780 ] | Dr. Ulrich Schaefer |
---|---|
Name | Schaefer, Dr. Ulrich |
Job Title | Senior Software Engineer |
Organisation | German Research Center for Artifical Intelligence (DFKI) |
Address | Stuhlsatzenhausweg 3 / Building D 3 1 |
Postal Code | D-66123 |
City | Saarbruecken |
Country | Germany |
Phone | +49 681 85775 5154 |
Fax | +49 681 85775 5338 |
Mobile | + |
ulrich.schaefer_(on)_dfki.de [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | ELSNET ACL |
Languages | English French German |
Specialism | Application Software Development
Computational Linguistics Computer Telephony Integration Corpora Corpus Linguistics Deep Parsing Developer Tools Digital Libraries e-Business eScience Encoding Evaluation Functional Languages in Language Processing Grammar Compilers Hybrid Systems Information Retrieval Information Extraction Knowledge Management Language Modelling Language Processing Language Resources Lexicons Lexical Semantics Machine Learning Machine Translation Management Consulting Market Research Multilinguality Named Entity Recognition Natural Language Processing Natural Language Semantics Ontology Parsing Project Management Relation Extraction Robust Semantic Processing Question-Answering Search Engines Semantic Interpretations Semantic Search Semantics Shallow Parsing Software Architecture for Language Engineering Syntax System Integration Telecommunications Telephony Text-to-Speech in Telephony Tokenisation Voice-Driven Telecommunications Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2010-05-11 17:00:33 #!/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" |