|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1795 ] | Department of Computer Science Information Systems (CSIS), University of Hong Kong |
---|---|
Organisation name | Department of Computer Science Information Systems (CSIS), University of Hong Kong |
Short name or acronym | Department of Computer Science Information Systems (CSIS), University of Hong Kong |
Organisation type | Center |
Activity type | Speech technology |
Address | Room 301, Chow Yei Ching Building, Pokfulam Road |
Postal Code | |
City | Hong Kong |
Country | China |
Phone | + +852 2859 2180 |
Fax | + +852 2559 8447 |
enquiry_(on)_csis.hku.hk | |
Organisation URL | http://www.csis.hku.hk/ |
Logo | Description |
![]() |
The Department of Computer Science and Information Systems (CSIS) at The University of Hong Kong is committed to high-quality education and training of computing professionals at both the undergraduate and postgraduate level. The Department is active in research and development in a variety of areas including Internet and e-commerce, databases, parallel and distributed computing, pattern recognition, algorithms and complexity, computer graphics, multimedia, software engineering, statistical computing, and legal aspects of computing. Some of our research results have been applied to the development of real software and systems. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |