| [ ID = 4691 ] | Professional Language Translation Services |
| Organisation name | CCJK Technologies |
| Short name or acronym | Professional Language Translation Services |
| Organisation type | Private company |
| Activity type | Translation or Localisation center with specific expertise in Language or Speech Technology |
| Address | PO Box 640632 Oakland Gardens, NY 11364, New York |
| Postal Code | 11364 |
| City | Oakland Gardens |
| Country | United States |
| Phone | +646 535-7236 |
| Fax | + |
| Email | info_(on)_ccjk.com |
| Organisation URL | http://www.ccjk.com |
| Logo | Description |
 |
CCJK provides high-quality language translation and I.T services .we have the
experience, the professional staff.
Mission Statement: The services we provide include:
Language translation
Interpretation
Transcription
Website localization
Software localization
Mobile App localization
Multilingual Desktop Publishing (DTP)
Search Engine Optimization (SEO) for Chinese and foreign search engines
|
|
| Contact |
| Name | Senior Language Translator Kristine Peterson |
| Function | Translation and Interpretation |
| Department | Translation Services |
| Email | kristinepetersone198_(on)_gmail.com |
| Phone | +646 535-7236 |
| Fax | + |
Update this profile
|
Last update: 2014-09-26 13:52:28
#!/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"
|