|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0270 ] | American Voice Input/Ouput Society (AVIOS) |
---|---|
Organisation name | American Voice Input/Ouput Society (AVIOS) |
Short name or acronym | American Voice Input/Ouput Society (AVIOS) |
Organisation type | Center |
Activity type | Speech technology |
Address | P.O. Box 20817 |
Postal Code | 95160 |
City | San Jose, CA |
Country | United States |
Phone | + +1 408 323 1783 |
Fax | + +1 408 323 1782 |
avios1_(on)_aol.com | |
Organisation URL | http://www.avios.com |
Logo | Description |
![]() |
AVIOS is the oldest user oriented organization in the world dedicated to the progress of voice technologies within the commercial arena. Since its inception in 1981, AVIOS has enjoyed a wide range of International participation - in attendees, presenters and sponsors. More than any other voice conference or show, AVIOS concentrates on providing a well grounded and diverse range of papers that emphasize actual application related results. The perspective of the actual end-users is emphasized in order to provide educational value as opposed to general marketing presentations. AVIOS truly endeavors to "build a communication bridge" between all parties involved with the successful deployment of interactive, voice driven technologies. |
Contact | |
Name | Ms. Peggie Johnson |
Function | Administrative Assistant |
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" |