|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0561 ] | Dr. George Mikros |
---|---|
Name | Mikros, Dr. George |
Job Title | Associate Professor |
Organisation | University of Athens |
Address | Univ. of Athens, School of Philosophy, Department of Italian Language and Literature |
Postal Code | 15784 |
City | Athens |
Country | Greece |
Phone | +30 210 6511344 |
Fax | +30 210 7277491 |
Mobile | +30 6976111742 |
gmikros_(on)_isll.uoa.gr [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | ACL ISCA ACM SIGIR |
Languages | English Greek, Italian, Spanish |
Specialism | Acoustic Phonetics
Artificial Neural Networks Computational Lexicography Computational Linguistics Computational Morphology Computer Assisted Language Learning Corpora Corpus Linguistics Corpus statistics Data Corpus Collection Experimental Phonetics General and Applied Phonetics General linguistics Information Retrieval Language Resources Lexical and Terminological Databases Linguistics Machine Learning Mathematical Linguistics Natural Language Processing Phonetics Phonology Second Language Speech Spanish Phonetics/Phonology Speech Analysis Statistical Methods for Information Retrieval Topic segmentation |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2010-09-07 18:23:29 #!/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" |