Organisation profile: Sensory, Incorporated
[ ID = 0265 ] | Sensory, Inc. |
Organisation name | Sensory, Incorporated |
Short name or acronym | Sensory, Inc. |
Organisation type | Private company |
Activity type | Language or Speech Technology research |
Address | 575 N. Pastoria Ave. |
Postal Code | 94085 |
City | Sunnyvale, CA |
Country | United States |
Phone | +1 408 625-3300 |
Fax | +1 408 625-3350 |
Email | |
Organisation URL | http://www.sensoryinc.com |
Logo | Description |
 |
Sensory develops and markets technologies and applications
that enhance communications with products. Sensory offers the
Interactive Speech product line - a complete offering of integrated
circuits and software-only solutions for speech recognition in
consumer electronics and telephony handsets. Sensory's low-cost ICs
include the award-winning RSC-Series general-purpose microcontrollers
featuring a comprehensive suite of speech input and output
technologies. Sensory's software speech recognition technology runs on
a range of microcontrollers and DSPs.
|
| Contact |
Name | Product Marketing Manager Tom Tolbert |
Function | Web Master |
Department | Marketing |
Email | marcom_(on)_sensoryinc.com |
Phone | +1 408 625-3340 |
Fax | +1 408 625-3350 |
Update this profile
|
Last update: 2008-04-11 22:19:48
#!/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"
|
|