|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0597 ] | Dr. Paul Piwek |
---|---|
Name | Piwek, Dr. Paul |
Job Title | Lecturer |
Organisation | Department of Computing, Open University |
Address | Walton Hall |
Postal Code | MK7 6AA |
City | Milton Keynes |
Country | United Kingdom |
Phone | + +44 1908 27 40 66 |
Fax | + +44 1908 65 21 40 |
Mobile | + |
p.piwek_(on)_open.ac.uk [@ replaced for spam protection] | |
Organisation URL | http://mcs.open.ac.uk |
Personal URL | http://mcs.open.ac.uk/pp2464 |
Membership | ELSNET ACL SIGSEM, SIGGEN, SIGDIAL, CLUK, CONTEXT WEB |
Languages | English German Dutch |
Specialism | Computational Linguistics
Embodied Conversational Agents Dialogue Natural Language Generation Semantics and Pragmatics |
Photograph | Description or CV |
![]() |
http://mcs.open.ac.uk/pp2464 |
![]() |
Last update: 2005-08-17 17:29: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" |