|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1826 ] | Dr. Damir Cavar |
---|---|
Name | Cavar, Dr. Damir |
Job Title | Assistant Professor of Computational Linguistics |
Organisation | Eastern Michigan University, ILIT |
Address | 2000 Huron River Drive, Suite 104 |
Postal Code | 48197 |
City | Ypsilanti |
Country | United States |
Phone | +1 734 709-6039 |
Fax | + |
Mobile | +1 734 709-6039 |
damir_(on)_linguistlist.org [@ replaced for spam protection] | |
Organisation URL | http://www.emich.edu/ |
Personal URL | http://cavar.me/damir/ |
Membership | ACL LSA, ACM, IEEE, DGfS |
Languages | English Croatian, German, Polish, Japanese |
Specialism | Cognitive Engineering
Computation Computational Lexicography Computational Linguistics Computational Morphology Corpora Corpus Linguistics Corpus statistics Dynamic Lexicon Building Dynamic modeling Finite State Methods General linguistics Grammar Information Retrieval Knowledge Management Language Acquisition Language Identification Language Learning Language Modeling Language Processing Language Resources Lexical Acquisition Linguistics Machine Learning Morphology Morphology Modeling for Languages with Highly Complex Inflection Natural Language Processing Parsing Pattern Recognition and Statistical Data Analysis Project Management Prosody Psycholinguistics Robust Parsing and Understanding Shallow Parsing Statistical Language Modeling and Analysis Statistical Methods for Information Retrieval Statistical Pattern Recognition Syntax |
Photograph | Description or CV |
![]() |
http://www.elsnet.org/expertcvs/blank.html |
![]() |
Last update: 2013-02-08 05:06:00 #!/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" |