|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 1729 ] | José Ramom Pichel Campos |
|---|---|
| Name | Pichel Campos, José Ramom |
| Job Title | Computational Engineer |
| Organisation | imaxin | software |
| Address | Rua Entremuralhas 5-2º |
| Postal Code | 15702 |
| City | Santiago de Compostela - GALIZA |
| Country | Spain |
| Phone | + +34981554068 |
| Fax | + +34981554988 |
| Mobile | + +34647671325 |
| jramompichel_(on)_imaxin.com [@ replaced for spam protection] | |
| Organisation URL | http://www.imaxin.com |
| Personal URL | http://www.imaxin.com |
| Membership | SEPLN |
| Languages | English Portuguese (Portugal or Galiza), |
| Specialism | Ambiguity
Computational Lexicography Computational Linguistics Corpora Corpus Linguistics Dynamic Lexicon Building Developer Tools Internet Lexical and Terminological Databases Lexicons Linguistics NLP Statistical Language Modeling and Analysis Word meaning |
| Photograph | Description or CV |
![]() |
http://www.imaxin.com |
|
|
Last update: 2004-05-11 17:36:36 #!/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" |