|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1921 ] | MSc/MPhil El Ouazizi,N |
---|---|
Name | El Ouazizi,N, MSc/MPhil |
Job Title | Researcher Assistant |
Organisation | ULCL, Leiden University |
Address | P.O. Box 9515 |
Postal Code | 2300 RA |
City | Leiden |
Country | Netherlands |
Phone | +31 715272106 |
Fax | + |
Mobile | + |
n.elouazizi_(on)_let.leidenuniv.nl [@ replaced for spam protection] | |
Organisation URL | http://www.ulcl.leidenuniv.nl/index.php3?m=1&c=3&garb=0.9601051131369571&session= |
Personal URL | http://www.ulcl.leidenuniv.nl/index.php3?m=8&c=120 |
Membership | ELSNET IEEE, SIMILAR;Web-Ontologies |
Languages | English |
Specialism | Cognitive relevance and interfaces in multimodal systems
Anaphora and referential resolution in dialogue systems Linguistic engineering for multimodality in interfaces design Knowledge representation of referential relations in multimodal systems Referential dependencies and syntax of [pro]-nominals in natural language The syntax of Ambiguity and underspecification Cognitive engineering Computational Linguitics E-support knowledge Human factors engineering Multimodal Human-Machine communication Multimodal Reference Ontology |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2005-07-09 13:53:42 #!/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" |