|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3133 ] | NeoSpeech |
|---|---|
| Organisation name | NeoSpeech, Inc. |
| Short name or acronym | NeoSpeech |
| Organisation type | Software company |
| Activity type | |
| Address | 48531 Warm Springs Blvd., Ste. 407 |
| Postal Code | |
| City | Fremont, CA |
| Country | United States |
| Phone | + +1 510 623 8808 |
| Fax | + +1 510 623 8809 |
| info_(on)_neospeech.com | |
| Organisation URL | http://www.neospeech.com |
| Logo | Description |
![]() |
NeoSpeech, Inc. is a leading provider of speech-enabled solutions based on a suite of best-of-breed core capabilities in speech recognition, speech synthesis, speaker verification, and voice animation. The company offers flexible, innovative products for the mobile, enterprise, entertainment and education markets. The privately-held company, headquartered in Fremont, California, is backed by Voiceware Co., Ltd of Korea. |
| Contact | |
| Name | Dr. Lin Chase |
| Function | CEO |
| Department | |
| lin.chase_(on)_neospeech.com | |
| Phone | + +1 510 623 8808 x202 |
| Fax | + +1 510 623 8809 |
|
|
Last update: 2003-03-21 16:58:23 #!/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" |