|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0646 ] | Jérôme Farinas |
---|---|
Name | Farinas, Jérôme |
Job Title | Dr |
Organisation | Institut de Recherche en Informatique de Toulouse (IRIT) |
Address | 118, route de Narbonne |
Postal Code | 31062 |
City | Toulouse Cedex 9 |
Country | France |
Phone | + +33 561557434 |
Fax | + +33 561556258 |
Mobile | + |
jerome.farinas_(on)_irit.fr [@ replaced for spam protection] | |
Organisation URL | http://www.irit.fr/~Jerome.Farinas/ |
Personal URL | |
Membership | ISCA AFCP |
Languages | English |
Specialism | Speechtechnology:
Acoustic Modeling Acoustic Phonetics Audio Indexing Audio Signal Processing Audiovisual Speech Processing Dynamic Programming in Speech Recognition Hidden Markov Models Information Retrieval Information Services by Telephone using Speech Technologies Language Identification Language Modeling Multilinguality Multimodal Human-Machine Communication Prosody Signal Analysis Signal Processing Speech Processing Speech Recognition Spontaneous Speech VoiceXML |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-28 09:01:47 #!/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" |