|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4193 ] | Yumasoft |
---|---|
Organisation name | YUMA-Development Ltd. |
Short name or acronym | Yumasoft |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | 6-ya Liniya V.O., 59, building 1, 3-rd floor |
Postal Code | 199048 |
City | St. Petersburg |
Country | Russian Federation |
Phone | +7 8123340805 |
Fax | +7 8123340805 |
sales_(on)_yumasoft.com | |
Organisation URL | http://www.yumasoft.com |
Logo | Description |
![]() |
Yumasoft have developed software product - YumaSearch, as additional tool to increase speed and quality of translation and work with a lot of large documents at the same time. YumaSearch lets the user conduct multilevel concurrent and extremely quick productive search across various documents and files for necessary words, parts of words, sentences and symbols based on user driven criteria. It is currently in use by a lot of professional translators, analyst, writers, etc. Yumasoft company has been founded in 2003 and now we have about 40 developers who form our in-house staff. Our office is located in St. Petersburg, Russia. We deliver qualified and reliable custom software development services and provide best Offshore Development Center services in Russia for respected IT companies from USA and Europe. |
Contact | |
Name | VP Sales Nikolay Rogozhnikov |
Function | Yumasoft's software products and services sellings |
Department | marketing/sales department |
sales_(on)_yumasoft.com | |
Phone | +7 8123340805 |
Fax | +7 8123340805 |
![]() |
Last update: 2009-09-28 11:57:46 #!/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" |