|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1167 ] | Emmett Coin |
---|---|
Name | Coin, Emmett |
Job Title | Industrial Poet |
Organisation | ejTalk |
Address | 18530 Mack Avenue, Suite 207 |
Postal Code | 48236 |
City | Grosse Pointe Farms |
Country | United States |
Phone | + 206 203 0815 |
Fax | + |
Mobile | + |
emmett_(on)_ejTalk.com [@ replaced for spam protection] | |
Organisation URL | http://www.ejtalk.com |
Personal URL | |
Membership | VoiceXML Org Tools Committees |
Languages | English |
Specialism | Speechtechnology:
Application Software Development Automated Natural Language Speech CASE tools for speech apps - developing Computational Linguistics Developer Tools Development and Implementation of Speech Technology Applications Dialog Design Dialogue Modelling Dialogue System Evaluation dialogue systems Grammar Grammar Compilers Human Factors Knowledge-based Speech Recognition Mathematical Linguistics Natural Language Semantics Oral Dialogue Parsing Recognition Technologies Recognition Tuning Robust Parsing and Understanding Robust Semantic Processing Semantics and Pragmatics in Speech Understanding Software Architecture for Language Engineering Speech Analysis speech quality measurement Speech Understanding Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Systems Télématic in transport Text Generation Topic segmentation VoiceXML |
Photograph | Description or CV |
![]() |
http://www.ejtalk.com/Top/About/People/EmmettCoin.html |
![]() |
Last update: 2004-09-30 21:49:42 #!/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" |