Organisation profile: ART Advanced Recognition Technologies, Inc.
[ ID = 2728 ] | ART |
Organisation name | ART Advanced Recognition Technologies, Inc. |
Short name or acronym | ART |
Organisation type | Company |
Activity type | Speech Technology |
Address | 43 Brodezky St., P.O. Box 39918 |
Postal Code | 61398 |
City | Tel Aviv |
Country | Israel |
Phone | + +972 3 642 7242 |
Fax | + +972 3 642 5887 |
Email | jennifer_(on)_artcomp.com |
Organisation URL | http://www.artcomp.com |
Logo | Description |
 |
ART Advanced Recognition Technologies, Inc., is the acknowledged pioneer and market leader in Natural Human User Interface focused on natural voice and handwriting recognition for mobile devices. ART markets superior-technology innovations for cellular phones, mobile communicators, PDAs and automotive systems.
|
| Contact |
Name | Mr. Yakov Shulman |
Function | VP Sales |
Department | |
Email | yakov_(on)_artcomp.com |
Phone | + +972 3 642 7242 |
Fax | + +972 3 642 5887 |
Update this profile
|
Last update: 2002-04-30 19:12:06
#!/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"
|
|