|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1793 ] | Department of Computing, Hong Kong Polytechnic University |
---|---|
Organisation name | Department of Computing, Hong Kong Polytechnic University |
Short name or acronym | Department of Computing, Hong Kong Polytechnic University |
Organisation type | Center |
Activity type | Speech technology |
Address | Hung Hom |
Postal Code | |
City | Kowloon, Hong Kong |
Country | China |
Phone | + +852 2766 7300 |
Fax | + +852 2774 0842 |
Organisation URL | http://www.comp.polyu.edu.hk/ |
Logo | Description |
![]() |
Department of Computing was among the first in Hong Kong to offer education in computing. We have built up a comprehensive suite of programmes to cater for different needs, and a suitable balance between theory and application. We continually review our programmes, to ensure they evolve to cater for this fast developing field. In our full-time degree programmes there is the Sandwich option, which requires work in a company for a year. This is very popular with both students and employers, and has received strong endorsement from world-renowned IT experts. Our academic programmes include collaborative courses with other disciplines such as Business, Commerce, Accounting and Electronic and Information Systems. In this vein, we have introduced two new MSc programmes in E-commerce, one for top executives and another for the mainstream technical and next level managers. |
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" |