|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1476 ] | Professor of Computer Science Vladimir A. Fomichov |
---|---|
Name | Fomichov, Professor of Computer Science Vladimir A. |
Job Title | Professor of Computer Science |
Organisation | Dept of Information Technologies, K.E.Tsiolkovsky Russian State Technological University - |
Address | Orshanskaya street 3 |
Postal Code | 121552 |
City | Moscow |
Country | Russian Federation |
Phone | + 7-095-930-9897 |
Fax | + |
Mobile | + |
VDRFOM_(on)_AHA.RU [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | ELSNET Moscow Mathematical Society, FOLLI |
Languages | English Russian, German, French |
Specialism | Abductive Inference
Anaphora Computational Linguistics Computer Assisted Language Learning Dialogue Modelling Discourse analysis Discourse Theories e-Business e-Support Knowledge Centers Information Retrieval Internet Knowledge Management Language Modeling Language Processing Language Translation Lexical and Terminological Databases Lexical Semantics Logic Mathematical Linguistics Multimodal Dialogue Systems Multimodal Human-Machine Communication Natural Language Processing Natural Language Semantics Ontology Pragmatics Psycholinguistics Question-Answering Robust Semantic Processing Search Algorithms Search Engines Semantic Interpretation Semantics Text Generation User Interface Design Web Applications Word meaning |
Photograph | Description or CV |
| |
![]() |
Last update: 2008-09-26 20:34:39 #!/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" |