|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 4470 ] | UU |
---|---|
Organisation name | University of Ulster |
Short name or acronym | UU |
Organisation type | University |
Activity type | Language or Speech Technology research |
Address | University of Ulster, Jordanstown |
Postal Code | BT37 0QB |
City | Newtownabbey |
Country | United Kingdom |
Phone | +44 28 90366305 |
Fax | +44 28 9036 8229 |
compeng_(on)_ulster.ac.uk | |
Organisation URL | http://www.compeng.ulster.ac.uk/csri.php |
Logo | Description |
![]() |
The Computer Science Research Institute (CSRI) was established in 2004 as part of the University's institutional strategy to facilitate greater selectivity in research support. The Institute currently comprises over 40 research active staff from three Schools in the Faculty of Computing and Engineering: Schools of Computing and Information Engineering (at Coleraine), Computing and Intelligent Systems (at Magee), and Computing and Mathematics (at Jordanstown), together with 20 research associates and research fellows, and over 70 doctoral research students within the Research Graduate School. CSRI comprises four research groups: * Artificial Intelligence and Applications * Information and Communications Engineering * Intelligent Systems Research Centre * Smart Environments |
Member of elsnet | Contact |
Name | Professor Paul McKevitt |
Function | Professor of Digital MultiMedia |
Department | Computer Science Research Institute |
p.mckevitt_(on)_ulster.ac.uk | |
Phone | +44 28 71675433 |
Fax | +44 28 71675473 |
![]() |
Last update: 2012-04-11 15:48:32 #!/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" |