|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1796 ] | Department of Computer Science, Hong Kong University of Science and Technology |
---|---|
Organisation name | Department of Computer Science, Hong Kong University of Science and Technology |
Short name or acronym | Department of Computer Science, Hong Kong University of Science and Technology |
Organisation type | Center |
Activity type | Speech technology |
Address | Clear Water Bay |
Postal Code | |
City | Kowloon, Hong Kong |
Country | China |
Phone | + +852 2358 7000 |
Fax | + +852 2358 1477 |
csdept_(on)_cs.ust.hk | |
Organisation URL | http://www.cs.ust.hk/ |
Logo | Description |
![]() |
Computer science is the discipline that studies the structure and function of computers, as well as the application of computers in solving many important problems in scientific, engineering, and commercial domains. Covering a wide range of topics in the areas of foundations of computer science, artificial intelligence, computer engineering, data and knowledge base systems, software engineering and other software technologies, the Computer Science programmes at HKUST are dedicated to educate students and to advance research in computer and information technology, as well as to assist in the development and growth of the information industry in Hong Kong and in this region. The Department of Computer Science offers a full range of courses to meet the needs of its own students and students from other departments at HKUST. It has programmes that lead to the BEng, MPhil, MSc, and PhD degrees. Besides taking a number of required computer science courses, students are generally encouraged to design individual study plans that are tailored to their own interests. |
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" |