|
|
Expert profile: Diana Maria de Sousa Marques Pinto dos Santos
[ ID = 1470 ] |
Diana Maria de Sousa Marques Pinto dos Santos |
Name |
de Sousa Marques Pinto dos Santos, Diana Maria |
Job Title | Researcher |
Organisation |
SINTEF |
Address | Pb 124, Blindern |
Postal Code | NO-0314 |
City | Oslo |
Country | Norway |
Phone | +47 22067312 |
Fax | +47 22067350 |
Mobile | + |
Email |
Diana.Santos_(on)_sintef.no
[@ replaced for spam protection] |
Organisation URL |
http://www.sintef.no |
Personal URL |
http://www.linguateca.pt/Diana/ |
Membership |
|
Languages | English Portuguese Norwegian French Spanish |
Specialism |
Machine translation
Parsing
Corpus processing and annotation
Corpus-based contrastive studies
Evaluation
Web NLP services
Portuguese processing
Information retrieval
Information extraction
Named entity recognition |
Photograph | Description or CV |
|
http://www.linguateca.pt/Diana/diana.html
|
Update your profile
|
Last update: 2008-08-29 09:41:23
#!/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"
|
|