|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 1686 ] | Dr. Rupal Patel |
|---|---|
| Name | Patel, Dr. Rupal |
| Job Title | Associate Professor |
| Organisation | Northeastern University |
| Address | 360 Huntington Ave. Rm 102 Forsyth |
| Postal Code | 02115 |
| City | Boston |
| Country | United States |
| Phone | + 1 617-373-5842 |
| Fax | + 1 617-373-2239 |
| Mobile | + |
| r.patel_(on)_neu.edu [@ replaced for spam protection] | |
| Organisation URL | http://www.cadlab.neu.edu |
| Personal URL | |
| Membership | ISAAC, AAAI, ESCA, ASHA, ASA |
| Languages | English |
| Specialism | Acoustic Phonetics
Prosody Assistive Technology Adaptive Speech Recognition Human Voice Understanding Speech intelligibility measurement Speech Synthesis Speech Pathology Systems for Older and Disabled People |
| Photograph | Description or CV |
![]() |
|
|
|
Last update: 2008-08-29 03:29:21 #!/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" |