|
|
Expert profile: Dr. Patti Price
[ ID = 0672 ] |
Dr. Patti Price |
Name |
Price, Dr. Patti |
Job Title | |
Organisation |
PPRICE Speech and Language Technology |
Address | 420 Shirley Way |
Postal Code | 94025 |
City | Menlo Park |
Country | United States |
Phone | +1 650-704-0728 |
Fax | +1 815 366 8264 |
Mobile | + |
Email |
pjp_(on)_pprice.com
[@ replaced for spam protection] |
Organisation URL |
http://www.pprice.com |
Personal URL |
http://www.pprice.com |
Membership |
|
Languages | English French |
Specialism |
Speechtechnology:
Speech technology in education
Language learning
Technology in reading pedagogy
Technology transition
Speech Technlogy Planning Strategies
Intellectual Property Strategies
|
Photograph | Description or CV |
 |
http://www.pprice.com
|
Update your profile
|
Last update: 2008-08-28 16:04:33
#!/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"
|
|