|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 0130 ] | Dr. Hamish Cunningham |
|---|---|
| Name | Cunningham, Dr. Hamish |
| Job Title | Senior Research Scientist in Computer Science |
| Organisation | Dept. of Computer Science, University of Sheffield |
| Address | Regent Court, 211 Portobello Street |
| Postal Code | S1 4DP |
| City | Sheffield |
| Country | United Kingdom |
| Phone | + +44 114 22 21891 |
| Fax | + +44 114 22 21810 |
| Mobile | + |
| hamish_(on)_dcs.shef.ac.uk [@ replaced for spam protection] | |
| Organisation URL | http://www.dcs.shef.ac.uk/ |
| Personal URL | http://gate.ac.uk/hamish |
| Membership | ELSNET ACL |
| Languages | English |
| Specialism | Information Extraction
Software Architecture for Language Engineering Infrastructure for Language Processing Natural Language Processing Natural Language Engineering |
| Photograph | Description or CV |
![]() |
http://www.dcs.shef.ac.uk/~hamish/cv.html |
|
|
Last update: 2002-04-08 18:01: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" |