|
|
Expert profile: Mr. Hernan Mendez
[ ID = 2015 ] |
Mr. Hernan Mendez |
Name |
Mendez, Mr. Hernan |
Job Title | Director |
Organisation |
ATZVoice |
Address | 8000 NW 31St ST STE.11 |
Postal Code | 33122 |
City | Miami, FL |
Country | United States |
Phone | +1 (305) 971-0555 |
Fax | + |
Mobile | +1 754-214-2753 |
Email |
hmendez_(on)_atzvoice.com
[@ replaced for spam protection] |
Organisation URL |
|
Personal URL |
|
Membership |
ACL
ISCA SIGDIAL, SIGNLL, ISOC, HCSNet, IEEE Computer Society |
Languages | English Spanish |
Specialism |
CTI (selection and application design)
Development and Implementation of Speech Technology Applications
Grammar
Interactive Disambiguation
Interactive Voice Response (IVR)
Multilingual Speech Recognition
Multimodal Dialogue Systems
Natural Language Processing
Speech Enabled IVRs
Speech Recognition
Speech-Enabled IVR Systems
Technology Implementation
Usability of Speech Applications
User Interface Design
Voice Biometrics (Speaker Verification, Identification,
Voice-Driven Telecommunications Applications
VoiceXML |
Photograph | Description or CV |
 |
|
Update your profile
|
Last update: 2008-08-29 21:35:41
#!/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"
|
|