|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1416 ] | Dr. Nigel Collier |
---|---|
Name | Collier, Dr. Nigel |
Job Title | Associate Professor |
Organisation | National Institute of Informatics |
Address | 2-1-2 Hitotsubashi, Chiyoda-ku |
Postal Code | 101-8430 |
City | Tokyo |
Country | Japan |
Phone | + +81-3-4212-2536 |
Fax | + +81-3-3556-1916 |
Mobile | + |
collier_(on)_nii.ac.jp [@ replaced for spam protection] | |
Organisation URL | http://www.nii.ac.jp |
Personal URL | http://research.nii.ac.jp/~collier/ |
Membership | ACL ACM, IEEE |
Languages | English English |
Specialism | Computational Linguistics
Information Extraction Internet Language Modeling Language Processing Machine Learning Machine Translation Ontology Statistical Pattern Recognition Statistical Methods for Information Retrieval |
Photograph | Description or CV |
http://research.nii.ac.jp/~collier
| |
Update your profile | Last update: 2003-08-07 03:56:53 #!/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" |