|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3737 ] | CROSSMINDER |
---|---|
Organisation name | Crossminder BVBA |
Short name or acronym | CROSSMINDER |
Organisation type | Private company |
Activity type | Language or Speech Technology provider |
Address | Médard-Jules van den Weghestraat 3 |
Postal Code | 1500 |
City | Halle |
Country | Belgium |
Phone | +0032 27352947 |
Fax | + |
crossminder_(on)_crossminder.com | |
Organisation URL | http://www.crossminder.com |
Logo | Description |
Crossminder is a Belgium company specializing in text data mining and semantic engineering founded in 2006. It provides products and services in the area of cross- and mono-lingual text data mining, semantic tagging, human- crosslingual text data mining, human-machine communication and software internationalization. We believe the best results in the area of automatic language understanding can be reached by combining linguistic, statistical and semantically based approaches. Our main office is located in Brussels. | |
Contact | |
Name | Dr. Andres Dominguez Burgos |
Function | CEO, researcher |
Department | Research and Development |
a.dominguez_(on)_crossminder.com | |
Phone | +0032 472472945 |
Fax | + |
Update this profile | Last update: 2010-07-01 21:31:14 #!/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" |