|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2959 ] | ejTalk |
---|---|
Organisation name | ejTalk |
Short name or acronym | ejTalk |
Organisation type | Company |
Activity type | Speech technology |
Address | |
Postal Code | |
City | |
Country | United States |
Phone | + +1 313 873 2081 |
Fax | + + 313 873 2083 |
info_(on)_ejtalk.com | |
Organisation URL | http://www.ejtalk.com |
Logo | Description |
![]() |
Imagine, forge and hone the cutting ej (say "edge") of human-computer conversation. We develop methodology, tools, components and engines that allow us to create and incrementally improve automated conversation. We simplify, fortify and codify the vital layer between raw speech recognition/synthesis and the ultimate function of the application -- order a movie, check the weather somewhere, play a game, ... We make the experience into a conversation instead of a voice prompt and menu experience. Our Mission: Capture the natural and seemingly effortless communication that happens between people. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |