[ ID = 3069 ] | CIC |
Organisation name | Computing Research Center of the National Polytechnic Institute |
Short name or acronym | CIC |
Organisation type | Research Center |
Activity type | Computer Science |
Address | Av. Juan Dios Batiz esq. Mendizabal, Col. Zacatenco |
Postal Code | 07738 |
City | Mexico DF |
Country | Mexico |
Phone | + +52 (55) 5729-6000 ext. 56544, 56518, 56602 |
Fax | + +52 (55) 5586-2936, +1 (928) 441-1817 |
Email | gelbukh_(on)_cic.ipn.mx |
Organisation URL | http://www.cic.ipn.mx |
Logo | Description |
 |
All areas of computer science, including artificial intelligence and
computational linguistics.
|
| Contact |
Name | Prof. Dr. Alexander Gelbukh |
Function | Head of Natural Language Laboratory |
Department | Natural Language Laboratory |
Email | gelbukh_(on)_cic.ipn.mx |
Phone | + +52 (55) 5729-6000 x 56544 |
Fax | + +52 (55) 5586-2936 |
Update this profile
|
Last update: 2003-08-15 08:59:17
#!/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"
|