|
|
Expert profile: Dr. Nicolas Moreau
[ ID = 2180 ] |
Dr. Nicolas Moreau |
Name |
Moreau, Dr. Nicolas |
Job Title | Project manager |
Organisation |
ELDA |
Address | 55-57, rue Brillat-Savarin |
Postal Code | 75013 |
City | Paris |
Country | France |
Phone | + |
Fax | + |
Mobile | +33 (0)6 17 91 81 92 |
Email |
moreau_(on)_elda.org
[@ replaced for spam protection] |
Organisation URL |
http://www.elda.org |
Personal URL |
|
Membership |
|
Languages | English German, French |
Specialism |
Audio Signal Processing
Speech Recognition
Confidence Measures
Audio Indexing
Spoken Document Retrieval
Data Corpus Collection
Evaluation of Language Technologies |
Photograph | Description or CV |
 |
|
Update your profile
|
Last update: 2008-01-08 11:51:10
#!/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"
|
|