|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3911 ] | Digital Sonata |
|---|---|
| Organisation name | Digital Sonata Pty Ltd |
| Short name or acronym | Digital Sonata |
| Organisation type | Private company |
| Activity type | Language or Speech Technology provider |
| Address | PO Box 803 |
| Postal Code | 3124 |
| City | Camberwell |
| Country | Australia |
| Phone | +61 03-98094461 |
| Fax | +61 03-98094461 |
| info_(on)_digitalsonata.com | |
| Organisation URL | http://www.digitalsonata.com |
| Logo | Description |
![]() |
Digital Sonata specializes in natural language processing products and services. With our flagship family of products - Carabao Language Kit - and our consulting services, we assist our customers to overcome the technological challenges of the new millenium. We provide: * Machine translation deployment & customization * Machine translation products * Text analytics products & services |
| Contact | |
| Name | Mr Vadim Berman |
| Function | CEO |
| Department | |
| vadim.berman_(on)_digitalsonata.com | |
| Phone | + |
| Fax | + |
|
|
Last update: 2008-10-01 10:47:37 #!/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" |