|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 4398 ] | Lingua-Systems | 
|---|---|
| Organisation name | Lingua-Systems Software GmbH | 
| Short name or acronym | Lingua-Systems | 
| Organisation type | Private company | 
| Activity type | Language or Speech Technology provider | 
| Address | Gerichtsstr. 42 | 
| Postal Code | 44649 | 
| City | Herne | 
| Country | Germany | 
| Phone | +49 2325 / 961 9922 | 
| Fax | + | 
| info_(on)_lingua-systems.com | |
| Organisation URL | http://www.lingua-systems.com/ | 
| Logo | Description | 
![]()  | 
Lingua-Systems is a software company that is specialized in developing language technologies. In particular, Lingua-Systems focuses on the development of basic modules for natural language processing and provide software that a variety of applications can be based on. Every single module is developed and provided separately - engaged they allow to build the foundation of complex applications. Our modules currently include a text classifier, a language identifier and a tool to convert text between writing systems (transliteration) and a Unicode converter.  | 
| Contact | |
| Name | your title Rona Linke | 
| Function | Customer Care | 
| Department | Sales Departement | 
| info_(on)_lingua-systems.com | |
| Phone | + | 
| Fax | + | 
| 
 
 | 
Last update: 2014-06-16 14:24:31 #!/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" |