|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3006 ] | SOFTSpeech |
---|---|
Organisation name | SOFTSpeech- Computers By Voice |
Short name or acronym | SOFTSpeech |
Organisation type | Private company |
Activity type | Lang+Speech Technology training |
Address | 1131 Lake Street, #285 |
Postal Code | 60301 |
City | Oak Park |
Country | United States |
Phone | + 708-383-8660 |
Fax | + 708-383-8663 |
elsnet_(on)_softspeech.com | |
Organisation URL | http://www.softspeech.com |
Logo | Description |
![]() |
SOFTSpeech helps people with disabilities operate their computers by voice as an alternative to the keyboard and mouse. SOFTSpeech provides assistive technology evaluations to help people select the appropriate devices for use at work or school. SOFTSpeech builds its solutions on the award-winning Dragon NaturallySpeaking program (Professional, Medical & legal Solutions). One-on-one and group training classes are available in English and in French. |
Contact | |
Name | President Ed Yala |
Function | |
Department | |
elsnet_(on)_softspeech.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2005-05-12 05:53:24 #!/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" |