elsnet |
Organisation profile: Speech Solutions, Inc. |
[ ID = 0653 ] | Speech Solutions, Inc. |
---|---|
Organisation name | Speech Solutions, Inc. |
Short name or acronym | Speech Solutions, Inc. |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | 2240 Woolbright Rd., Suite 305 |
Postal Code | 33426 |
City | Boynton Beach, FL |
Country | United States |
Phone | + +1 561 742 9150 |
Fax | + +1 561 742 9160 |
getinfo_(on)_SpeechSolutions.com | |
Organisation URL | http://www.speechsolutions.com |
Logo | Description |
![]() |
Speech Solutions, Inc. has been developing speech recognition software since 1993. Over the past six years we have become a recognized leader in our field. Our Voice Tools enable developers to rapidly integrate speech recognition technology into new or existing software programs in a variety of software development environments, and our SPOTw (SPeech-On-The-web) product brings conversational voice recognition to the Internet. In addition, we build custom speech-enabled applications and provide training and support for companies looking to integrate speech into their native applications. Speech Solutions is headquartered in Boynton Beach, FL. |
Contact | |
Name | Mr. Andy Apter |
Function | Marketing manager |
Department | |
andya_(on)_speechsolutions.com | |
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" |