|
|
Expert profile: Dr.Sc.(Linguistics), Prof. Igor Boguslavsky
[ ID = 1817 ] |
Dr.Sc.(Linguistics), Prof. Igor Boguslavsky |
Name |
Boguslavsky, Dr.Sc.(Linguistics), Prof. Igor |
Job Title | Head of the computational linguistics laboratory |
Organisation |
Computational linguistics laboratory, Institute for Information Transmission Problems, Russian Academy of Sciences |
Address | 19, Bolshoj Karetnyj |
Postal Code | GSP-4 |
City | Moscow |
Country | Russian Federation |
Phone | + +7 095 299 49 27 |
Fax | + +7 095 2090579 |
Mobile | + |
Email |
bogus_(on)_iitp.ru
[@ replaced for spam protection] |
Organisation URL |
http://proling.iitp.ru |
Personal URL |
|
Membership |
ELSNET
ICCL |
Languages | English Russian, German, French, Spanish |
Specialism |
Computational linguistics
Lexical semantics
Machine translation
Multilinguality
Syntactically-annotated corpora
General linguistics
Grammar
Interactive disambiguation |
Photograph | Description or CV |
 |
|
Update your profile
|
Last update: 2004-10-09 16:08: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"
|
|