|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3914 ] | MTS |
---|---|
Organisation name | My Translation Spot |
Short name or acronym | MTS |
Organisation type | Private company |
Activity type | Language or Speech Technology service provider |
Address | 13231 N. 35th ave |
Postal Code | 85086 |
City | anthem |
Country | United States |
Phone | +1 877-870-6171 |
Fax | +1 877-870-6171 |
sean.gately_(on)_mytranslationspot.com | |
Organisation URL | http://www.mytranslationspot.com |
Logo | Description |
![]() |
My Translation Spot is a leader in providing language services to individuals and corporations. Based in Anthem Arizona My Translation Spot specializes in language and interpreter services provided by select expert translation and language experts. Our areas of expertise in language translations are: certified, legal, financial, pharmaceutical, medical, dental, website, software, localization, and globalization. We provide companies with complete language services for hundreds of languages. |
Contact | |
Name | COO Sean Gately |
Function | COO |
Department | Operations |
sean.gately_(on)_mytranslationspot.com | |
Phone | +1 877-870-6171 |
Fax | +1 877-870-6171 |
![]() |
Last update: 2008-10-11 01:24:03 #!/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" |