|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3026 ] | Amikai, Inc. |
---|---|
Organisation name | Amikai, Inc. |
Short name or acronym | Amikai, Inc. |
Organisation type | Company |
Activity type | Machine Translation |
Address | 343 Vermont Street |
Postal Code | 94103 |
City | San Francisco, California |
Country | United States |
Phone | + 415-863-8534 |
Fax | + 415-863-4365 |
info_(on)_amikai.com | |
Organisation URL | http://www.amikai.com |
Logo | Description |
![]() |
Amikai is the leading provider of real-time language translation solutions for global enterprises. Amikai solutions eliminate language barriers to yield accurate, efficient and immediate access to information, regardless of language or location. By integrating the highest quality translation engines with proprietary linguistic processing, custom developed lexicons and professional services, Amikai delivers the most comprehensive translation solution to Global 1000 companies and governments. |
Contact | |
Name | Dr. Raymond Flournoy |
Function | Director of Computational Linguistics |
Department | Computational Linguistics |
rflournoy_(on)_amikai.com | |
Phone | + 415-863-8534 x208 |
Fax | + 415-863-4365 |
![]() |
Last update: 2002-08-28 20:09:35 #!/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" |