|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2514 ] | Dr. Francesca Carota |
---|---|
Name | Carota, Dr. Francesca |
Job Title | Research Associate |
Organisation | University of Cambridge, UK |
Address | Downing Street |
Postal Code | CB2 3EB |
City | Cambridge |
Country | United Kingdom |
Phone | +44 (0)122 37 65 245 |
Fax | + |
Mobile | + |
fc360_(on)_cam.ac.uk [@ replaced for spam protection] | |
Organisation URL | http://www.cam.ac.uk/ |
Personal URL | http://www.neuroscience.cam.ac.uk/directory/profile.php?fc360 |
Membership | |
Languages | English Italian, French |
Specialism | Computational Linguistics
Computational Morphology Corpus Linguistics Corpus statistics Dialogue Management Dysfluency of Spontaneous Speech Experimental Phonetics Finite State Methods Hand Gestures and Speech Kinematics Lexical Semantics Morphology Morphology Modeling for Languages with Highly Complex Inflection Multimodal Communciation Natural Language Semantics Neural Networks Pattern Recognition and Statistical Data Analysis Psycholinguistics Semantics and Pragmatics in Speech Understanding Wordnets |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2015-11-18 02:05:44 #!/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" |