|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3090 ] | RACAI |
---|---|
Organisation name | Romanian Academy Institute for Artificial Intelligence |
Short name or acronym | RACAI |
Organisation type | research |
Activity type | language technology |
Address | Street "13 Septembrie", no. 13, sector 5 |
Postal Code | 74311 |
City | Bucharest |
Country | Romania |
Phone | + +(4021) 4102953 |
Fax | + +(4021) 4113916 |
tufis_(on)_racai.ro | |
Organisation URL | http://www.racai.ro |
Logo | Description |
|
RACAI is a research institute of the Romanian Academy and is mainly concerned with language technology. Other domains of activity are machine learning, wen-enabled technologies, intelligent tutoring, conceptual modelling and cooperative research |
Member of elsnet | Contact |
Name | Corresponding Member of the Romanian Academy Dan Tufis |
Function | Director |
Department | RACAI |
tufis_(on)_racai.ro | |
Phone | + +(4021) 4102953 |
Fax | + +(4021) 4113916 |
![]() |
Last update: 2002-10-01 12:58:49 #!/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" |