Expert profile: Dr. Susan Powers
[ ID = 2220 ] |
Dr. Susan Powers |
Name |
Powers, Dr. Susan |
Job Title | Computational Linguist |
Organisation |
Lyrix, Inc. |
Address | 900 Chelmsford Street, Tower 3, 4th Floor |
Postal Code | 01851 |
City | Lowell |
Country | United States |
Phone | +01 978-442-3000 |
Fax | +01 978-442-3099 |
Mobile | + |
Email |
spowers_(on)_lyrix.com
[@ replaced for spam protection] |
Organisation URL |
http://www.lyrix.com |
Personal URL |
http://www.linkedin.com/pub/4/a0a/b63 |
Membership |
ELSNET
IASCL, NAFE |
Languages | English German |
Specialism |
Voice-Driven Telecommunications Applications |
Photograph | Description or CV |
 |
|
Update your profile
|
Last update: 2008-07-10 19:11:04
#!/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"
|
|