|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1538 ] | Dr. Florian Wolf |
---|---|
Name | Wolf, Dr. Florian |
Job Title | company owner |
Organisation | FW Consulting, MergeFlow |
Address | Waterbergstr. 28 |
Postal Code | 81827 |
City | Muenchen |
Country | Germany |
Phone | +49 (0)89 18 91 24 38 |
Fax | +49 (0)89 18 91 24 39 |
Mobile | + |
wolf_(on)_f-w-consulting.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | http://www.mergeflow.com/aboutUs.aspx |
Membership | |
Languages | English German, Afrikaans |
Specialism | Anaphora
Artificial Neural Networks Bayesian Theory and Applications Cognitive Engineering Computational Lexicography Computational Linguistics Corpora Corpora and Dialogue Annotations Corpus statistics Discourse analysis Discourse Theories Dynamic Lexicon Building Dysfluency of Spontaneous Speech Evaluation Finite State Methods Graph Representation of Lexicons Information Retrieval Internet Knowledge Management Language Modeling Language Processing Machine Learning Management Consulting Natural Language Processing Neural Networks Ontology Parsing Pattern Recognition and Statistical Data Analysis Project Management Psycholinguistics Search Algorithms Search Engines Shallow Parsing Software Architecture for Language Engineering Statistical Language Modeling and Analysis Statistical Methods for Information Retrieval Statistical Pattern Recognition Usability Engineering Usability of Speech Applications User Interface Design |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2007-01-02 09:26:32 #!/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" |