|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1749 ] | Professor Cédrick Fairon |
---|---|
Name | Fairon, Professor Cédrick |
Job Title | Director |
Organisation | Center for natural language processing |
Address | Place Blaise Pascal, 1 |
Postal Code | 1348 |
City | Louvain-la-Neuve |
Country | Belgium |
Phone | + +32 10 473788 |
Fax | + +32 10 472606 |
Mobile | + |
fairon_(on)_tedm.ucl.ac.be [@ replaced for spam protection] | |
Organisation URL | http://cental.fltr.ucl.ac.be |
Personal URL | http://cental.fltr.ucl.ac.be |
Membership | ACL ATALA ASSTRIL |
Languages | English English, French, Portuguese, Dutch |
Specialism | Annotation and Exploitation Tools
Application Software Development Computational Lexicography Computational Linguistics Computational Morphology Corpora Corpus Linguistics Corpus statistics Finite State Methods Grammar Graph Representation of Lexicons Language Processing Lexicons Natural Language Processing Parsing Text Generation Web Applications Word meaning |
Photograph | Description or CV |
![]() |
http://cental.fltr.ucl.ac.be/fairon_CV.html |
![]() |
Last update: 2004-06-18 01:12:26 #!/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" |