|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2971 ] | XtraMind Technologies GmbH | 
|---|---|
| Organisation name | XtraMind Technologies GmbH | 
| Short name or acronym | XtraMind Technologies GmbH | 
| Organisation type | Center | 
| Activity type | Speech technology | 
| Address | Stuhlsatzenhausweg 3 | 
| Postal Code | 66123 | 
| City | Saarbrücken | 
| Country | Germany | 
| Phone | + +49 (681) 302-5100 | 
| Fax | + +49 (681) 302-5109 | 
| info_(on)_xtramind.com | |
| Organisation URL | http://www.xtramind.com | 
| Logo | Description | 
![]()  | 
XtraMind Technologies GmbH was formed August 28, 2000 by partners from the areas of natural language technology, software engineering, IT and organizational consulting. Along with the founding partners Dipl.-Inform. Abdel Kader Diagne, Dipl.-Inform./Dipl.-Kaufm. Erik Landwehr, Dr. Klaus Netter and Prof. Dr. Hans Uszkoreit, the German Research Center for Artificial Intelligence (DFKI GmbH) also took a share for the first time in another company. This union resulted in a company with an almost unique spectrum of competence in the areas of natural language technology and artificial intelligence combined with experience in business processes and application development.  | 
| Contact | |
| Name | |
| Function | |
| Department | |
| info_(on)_xtramind.com | |
| Phone | + +49 (681) 302-5100 | 
| Fax | + +49 (681) 302-5109 | 
| 
 
 | 
Last update: 2002-04-10 12:32:58 #!/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" |