|  
 |||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||
| [ ID = 1556 ] | Mr Davide Turcato | 
|---|---|
| Name | Turcato, Mr Davide | 
| Job Title | Language Engineering Consultant | 
| Organisation | |
| Address | |
| Postal Code | |
| City | Vancouver, BC | 
| Country | Canada | 
| Phone | + | 
| Fax | + | 
| Mobile | + | 
| davide_turcato_(on)_sfu.ca [@ replaced for spam protection] | |
| Organisation URL | |
| Personal URL | |
| Membership | ACL | 
| Languages | English , Italian, Esperanto, Spanish, Portuguese, French, Greek | 
| Specialism | Computational Grammars
 Computational Lexicon Acquisition Computational Linguistics Computer Assisted Language Learning Cross-Lingual NLP Applications Information Extraction Information Retrieval Lexical and Terminological Databases Machine Translation Multilingual NLP Applications NLP System Design Natural Language Processing Semi-Structured Document Parsing Translation Lexicon Acquisitions Wordnet  | 
| Photograph | Description or CV | 
![]()  | 
    |
| 
 | 
Last update: 2010-02-18 18:03:16 #!/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" |