|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0831 ] | M.A. Mietta Lennes |
---|---|
Name | Lennes, M.A. Mietta |
Job Title | Research Scientist |
Organisation | Department of Speech Sciences, University of Helsinki |
Address | Dept. of General Linguistics, P.O.Box 9 (Siltavuorenpenger 20 A) |
Postal Code | 00014 |
City | Helsinki |
Country | Finland |
Phone | +358 9-19129321 |
Fax | +358 9-19129307 |
Mobile | + |
mietta.lennes_(on)_helsinki.fi [@ replaced for spam protection] | |
Organisation URL | http://www.helsinki.fi/speechsciences/ |
Personal URL | http://www.helsinki.fi/~lennes/ |
Membership | ISCA IPA, ISPhS |
Languages | English Finnish |
Specialism | Speechtechnology:
Acoustic Phonetics Corpora and Dialogue Annotations Corpus statistics Data Corpus Collection Dialogue Large speech corpora Pronunciation Modelling Prosodic Studies in Spontaneous Language Analysis Psychoacoustics Speech Databases for Automatic Speech/Speaker Recognition Speech Perception Spontaneous Speech |
Photograph | Description or CV |
![]() |
http://www.helsinki.fi/~lennes/cv.html |
![]() |
Last update: 2008-09-02 10:17:57 #!/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" |