|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0352 ] | Rodmonga Potapova |
---|---|
Name | Potapova, Rodmonga |
Job Title | Head of Department |
Organisation | Moscow Linguistic University |
Address | Russia 119837,Ostozenca,38 |
Postal Code | 119837 |
City | Moscow |
Country | Russian Federation |
Phone | + (095) 201-5697 |
Fax | + (095) 246-2807 |
Mobile | + |
potapova_(on)_linguanet.ru [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Acoustic Phonetics Audiovisual Speech Processing Automated Natural Language Speech Computational Lexicography Computational Linguistics Computer Assisted Language Learning Corpora and Dialogue Annotations Corpus statistics Discourse analysis Emotion in Speech Forensic Phonetics general linguistics Human Voice Understanding Knowledge-based Speech Recognition Language Identification Language Learning Language Modeling Language Processing Lexical and Terminological Databases Multilinguality Multimodal Human-Machine Communication Natural Language Semantics Oral Dialogue Parsing Phonology Pragmatics Pronunciation Modelling Prosodic Studies in Spontaneous Language Analysis Prosody Provision and integration of voice verification using phones and internet Psycholinguistics of Phonology Speaker Recognition Speech Production Speech Reading (Lipreading) Speech Recognition Speech Synthesis Speech Technologies Spoken Dialogue Systems Spoken Translation Spontaneous Speech Voice Identification Voice Processing Voice to Text Conversion for the Hearing Impaired |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-04-17 22:10:30 #!/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" |