|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1246 ] | Mary Constance Parks |
---|---|
Name | Parks, Mary Constance |
Job Title | Speech User Interface Design Consultant |
Organisation | |
Address | 27 Liberty #2 |
Postal Code | 94110 |
City | San Francisco |
Country | United States |
Phone | + (415) 643-3364 |
Fax | + |
Mobile | + (415) 260-1098 |
mary.parks_(on)_sbcglobal.net [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | ACL LSA, BayCHI |
Languages | English |
Specialism | Branding Phone Interactions
Business Application of Speech Technology Communication Computer Assisted Language Learning Dialogue Dialogue Design Discourse analysis General linguistics Grammar Information Services by Telephone using Speech Technologies Interactive Voice Response (IVR) Intonation Language Acquisition Language Learning Linguistics Multimodal Dialogue Systems Phonetics Phonology Process Documentation Process Facilitation and Re-engineering Prosody Second Language Speech Speech Applications Speech Enabled IVRs Usability of Speech Applications User acceptance raising User Interface Design Web Applications Wireless Communications Applications Wizard-of-Oz experiments |
Photograph | Description or CV |
Update your profile | Last update: 2003-08-06 18:02:26 #!/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" |