|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1502 ] | Mr Angelo Dalli |
---|---|
Name | Dalli, Mr Angelo |
Job Title | Researcher |
Organisation | NLP Research Group, University of Sheffield |
Address | Regent Court, 211 Portobello Street |
Postal Code | S1 4DP |
City | Sheffield |
Country | United Kingdom |
Phone | + +44 (0) 114 22 21800 |
Fax | + +44 (0) 114 22 21810 |
Mobile | + +44 07729 730639 |
angelo_(on)_maltalinks.com [@ replaced for spam protection] | |
Organisation URL | http://www.dcs.shef.ac.uk |
Personal URL | http://www.maltalinks.com |
Membership | ELSNET Maltilex |
Languages | English Maltese, Italian |
Specialism | Arabic Natural Language Processing
Computational Lexicography Computational Linguistics Computational Morphology Confidence Measures Corpora Corpus Linguistics Corpus statistics Dialogue systems Dynamic Lexicon Building Dynamic modeling Graph Representation of Lexicons Information Retrieval Internet Language Acquisition Language Identification Language Learning Language Modeling Language Processing Language Resource Production Language Resources Learning and Adaptive Control Theory Lexical Acquisition Lexical and Terminological Databases Lexicons Mobile devices Morphology Morphology Modeling for Languages with Highly Complex Inflection Multilinguality Pattern Recognition and Statistical Data Analysis Search Algorithms Search Engines Search Strategies Software Architecture for Language Engineering Statistical Language Modeling and Analysis Statistical Methods for Information Retrieval Statistical Pattern Recognition Text-to-Phonetic Representation Tokenisation Training Web Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-11-10 18:17: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" |