|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3900 ] | Reco Technologies |
|---|---|
| Organisation name | Recognition Technologies, Inc. |
| Short name or acronym | Reco Technologies |
| Organisation type | Private company |
| Activity type | Language or Speech Technology research |
| Address | 3616 Edgehill Road |
| Postal Code | 10598-1104 |
| City | Yorktown Heights |
| Country | United States |
| Phone | +1 9149975676 |
| Fax | + |
| info_(on)_RecognitionTechnologies.com | |
| Organisation URL | http://www.RecognitionTechnologies.com |
| Logo | Description |
![]() |
- Speaker Recognition Research and Development (Speaker Identification, Speaker Verification, Speaker Segmentation, Speaker Detection, Speaker Tracking, and Speaker Classification) - Interactive Voice Response (IVR) Engine and System Developer - Signature Compression and Recognition Research |
| Contact | |
| Name | Dr. Homayoon Beigi |
| Function | President |
| Department | Research and Development |
| beigi_(on)_recognitiontechnologies.com | |
| Phone | +1 9975676 |
| Fax | + |
|
|
Last update: 2008-08-28 16:08:44 #!/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" |