|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2809 ] | Dept. of Computer Science - University College Dublin |
---|---|
Organisation name | Dept. of Computer Science - University College Dublin |
Short name or acronym | Dept. of Computer Science - University College Dublin |
Organisation type | Center |
Activity type | Speech technology |
Address | Belfield |
Postal Code | |
City | Dublin 4 |
Country | Ireland |
Phone | + +353 1 716 2483 |
Fax | + +353 1 269 7262 |
Cs.secretary_(on)_ucd.ie | |
Organisation URL | http://cs-www.ucd.ie |
Logo | Description |
![]() |
Intelligent Computing This theme subsumes activity in artificial intelligence and cognitive science. Current active research areas include natural language processing, speech and handwritten recognition, case-based reasoning, machine learning, cognitive models of creativity, connectionist models of natural language, agent architecutres, navigation tools for hypertext. |
Contact | |
Name | Prof. Mark Keane |
Function | Chair of Computer Science |
Department | |
mark.keane_(on)_ucd.ie | |
Phone | + +353 1 716 2470 |
Fax | + +353 1 269 7262 |
![]() |
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" |