|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0810 ] | Hernan Emilio Perez |
---|---|
Name | Perez, Hernan Emilio |
Job Title | Researcher |
Organisation | Laboratorio de Fonetica - Univ. de Concepcion |
Address | Casilla 160-C, Correo 3 |
Postal Code | |
City | Concepcion |
Country | Chile |
Phone | + +56-9-8208220 |
Fax | + |
Mobile | + |
heperez_(on)_udec.cl [@ replaced for spam protection] | |
Organisation URL | http://www.udec.cl/~heperez/fonetica.html |
Personal URL | http://www.udec.cl/~heperez/ |
Membership | |
Languages | English Spanish |
Specialism | Acoustic Phonetics
Computer Assisted Language Learning Dialogue System Evaluation Experimental Phonetics General and Applied Phonetics General linguistics Grammar Grammar Compilers Internet Language Acquisition Language Learning Linguistics Oral Dialogue Phonetics Phonology Recognition Tuning Signal Analysis Spanish Phonetics/Phonology Speech Acoustics Speech Analysis Speech Evaluation Speech Production Speech Synthesis Spontaneous Speech Text-to-Phonetic Representation Text-to-Speech Text-To-Speech Conversion Transcription Web Applications |
Photograph | Description or CV |
![]() |
http://www.udec.cl/~heperez/CV-hpm.htm |
![]() |
Last update: 2003-08-06 18:08:14 #!/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" |