|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1033 ] | Staffan Larsson |
---|---|
Name | Larsson, Staffan |
Job Title | PhD, Assistant Professor |
Organisation | Dept. of linguistics, Göteborg University |
Address | Box 200 |
Postal Code | SE 405 30 |
City | Göteborg |
Country | Sweden |
Phone | + +46317734378 |
Fax | + +46317734853 |
Mobile | + |
sl_(on)_ling.gu.se [@ replaced for spam protection] | |
Organisation URL | http://www.ling.gu.se |
Personal URL | http://www.ling.gu.se/~sl |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Cognitive Engineering Computational Linguistics Corpora and Dialogue Annotations Developer Tools Development and Implementation of Speech Technology Applications Dialogmanagement Dialogue Dialogue Modelling Dialogue System Evaluation dialogue systems Dynamic modeling Natural Language Semantics Naturalistic Spoken Language Oral Dialogue Pragmatics Prosody (Linguistic Description of) Semantics and Pragmatics in Speech Understanding Software Architecture for Language Engineering Spoken Dialog Processing Spoken Dialogue Modeling Spoken Dialogue Systems Task-Oriented Dialogue Annotation VoiceXML |
Photograph | Description or CV |
![]() |
http://www.ling.gu.se/~sl/cv.html |
![]() |
Last update: 2003-08-11 13:11: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" |