|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3052 ] | TILDE |
---|---|
Organisation name | TILDE SIA |
Short name or acronym | TILDE |
Organisation type | Company |
Activity type | language technologies, localization |
Address | Vienibas gatve 75a |
Postal Code | LV-1004 |
City | Riga |
Country | Latvia |
Phone | + +371 760 5001 |
Fax | + +371 760 5750 |
andrejs_(on)_tilde.lv | |
Organisation URL | http://www.tilde.lv |
Logo | Description |
![]() |
Established in 1991, Tilde is a leading Baltic IT company specializing in localization, multilingual and Internet software. Tilde operates from the three Baltic offices in Riga, Tallinn, and Vilnius, respectively, with the head office situated in Riga, Latvia. Tildes goal is to be the leading provider of top-quality IT products for users in the Baltic countries, considering the local language, culture and legislation specifics, as well as to provide the best translation and ocalization services in the Baltics. In language technologies the aim of Tilde is to provide language technologies for the languages of the Baltic countries that would be equivalent to the support for the major languages of the world. Tildes experience in language technologies has condensed in software for Latvian and Lithuanian languages. Our software includes proofing tools, multilingual electronic dictionaries, thesauruses, localized fonts and templates. Tildes proofing tools are licensed to software vendors, such as Microsoft, for inclusion in their products. |
Member of elsnet | Contact |
Name | Andrejs Vasiljevs |
Function | Director of products and services |
Department | |
andrejs_(on)_tilde.lv | |
Phone | + +371 760 5001 |
Fax | + +371 760 5750 |
![]() |
Last update: 2002-04-23 12:45:25 #!/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" |