|
|
Organisation profile: SpeechStudio Inc
[ ID = 2757 ] | SpeechStudio Inc |
Organisation name | SpeechStudio Inc |
Short name or acronym | SpeechStudio Inc |
Organisation type | Private company |
Activity type | Lang+Speech Technology provider |
Address | 3104 nw 123rd Place |
Postal Code | 97229 |
City | Portland, OR |
Country | United States |
Phone | + +1 503 520 9664 |
Fax | + +1 503 210 0324 |
Email | info_(on)_speechstudio.com |
Organisation URL | http://www.speechstudio.com |
Logo | Description |
 |
SpeechStudio Incorporated was formed in 1998 by an
experienced software development team with the goal of creating the
leading provider of software development tools for the speech
recognition application market. In January of this year the company
introduced its first products, SpeechStudio Suite. SpeechStudio
Corporation is the first vendor to field an integrated voice interface
development tool suite. It is now positioned to achieve its founding
objective of becoming the market leader in this industry. SpeechStudio
Suite has received very positive initial reviews.
|
| Contact |
Name | Stephen Zeigler |
Function | |
Department | |
Email | sfz_(on)_speechstudio.com |
Phone | + +1 503 520 9664 |
Fax | + |
Update this profile
|
Last update: 2005-01-10 17:21:45
#!/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"
|
|