|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1583 ] | Dr. Manuel Montes-y-Gómez |
---|---|
Name | Montes-y-Gómez, Dr. Manuel |
Job Title | Researcher |
Organisation | National Institute of Astrophysics, Optics, and Electronics |
Address | Luis Enrique Erro #1 |
Postal Code | 72760 |
City | Tonantzintla, Puebla |
Country | Mexico |
Phone | + (+52 222) 2 66 31 00 x 8218 |
Fax | + |
Mobile | + |
mmontesg_(on)_inaoep.mx [@ replaced for spam protection] | |
Organisation URL | http://www.inaoep.mx; |
Personal URL | http://ccc.inaoep.mx/~mmontesg |
Membership | |
Languages | English spanish |
Specialism | Corpus statistics
Data Corpus Collection Information Retrieval Language Modeling Language Processing Machine Learning Metadata Descriptions Natural Language Processing Pattern Recognition and Statistical Data Analysis Search Algorithms Search Engines Statistical Language Modeling and Analysis Statistical Methods for Information Retrieval Statistical Pattern Recognition |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2003-04-24 18:29:18 #!/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" |