|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1942 ] | Dr Goran Nenadic |
---|---|
Name | Nenadic, Dr Goran |
Job Title | Assistant Professor |
Organisation | University of Manchester |
Address | School of Computer Science |
Postal Code | M13 9PL |
City | Manchester |
Country | United Kingdom |
Phone | +44 1613065936 |
Fax | +44 1613061281 |
Mobile | + |
g.nenadic_(on)_manchester.ac.uk [@ replaced for spam protection] | |
Organisation URL | http://www.cs.manchester.ac.uk |
Personal URL | http://personalpages.manchester.ac.uk/staff/G.Nenadic/ |
Membership | |
Languages | English Serbian |
Specialism | Computational Lexicography
Computational Morphology Corpus Linguistics Corpus statistics Finite State Methods Language Resources Lexical and Terminological Databases Machine Learning Medical Applications Metadata Descriptions Morphology Modeling for Languages with Highly Complex Inflection Multilinguality Natural Language Processing Ontology Software in E Commerce Statistical Language Modeling and Analysis Wordnets |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-29 11:20:34 #!/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" |