|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0934 ] | Allard Jongman |
---|---|
Name | Jongman, Allard |
Job Title | Professor |
Organisation | University of Kansas |
Address | 422 Blake Hall |
Postal Code | 66044 |
City | Lawrence KS |
Country | United States |
Phone | + 785/864-2384 |
Fax | + 785/864-5724 |
Mobile | + |
jongman_(on)_ku.edu [@ replaced for spam protection] | |
Organisation URL | http://www.linguistics.ku.edu/ |
Personal URL | http://www2.ku.edu/~kuppl/allardcv.html |
Membership | ISCA ASA, AAAS, IPA, Psychonomic Society |
Languages | English |
Specialism | Speechtechnology:
Acoustic Phonetics Bilingual Speech Production/Perception general linguistics Language Learning Language Processing Lexical Acquisition Linguistics Phonology Prosody (Linguistic Description of) Prosody perception Psycholinguistics of Phonology Second Language Speech Speech Acoustics Speech Analysis Speech Perception Speech Processing |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-28 16:21:23 #!/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" |