|
|
|
Expert profile: Dr. David McDonald
| [ ID = 1880 ] |
Dr. David McDonald |
| Name |
McDonald, Dr. David |
| Job Title | Senior Researcher |
| Organisation |
Smart Information Flow Technologies (SIFT) |
| Address | 14 Brantwood Road |
| Postal Code | 02476-8004 |
| City | Arlington |
| Country | United States |
| Phone | + |
| Fax | +1 612-339-7437 |
| Mobile | +1 001-781-718-1964 |
| Email |
davidmcdonald_(on)_alum.mit.edu
[@ replaced for spam protection] |
| Organisation URL |
http://www.sift.info |
| Personal URL |
|
| Membership |
ACL
LSA AAAI |
| Languages | English |
| Specialism |
Text Generation
Computational Linguistics
Grammar
Lexical Semantics
Natural Language Semantics
Ontology
Robust Parsing and Understanding
Semantic Interpretation |
| Photograph | Description or CV |
 |
http://mysite.verizon.net/ddmcdonald/McDonald-resume.pdf
|
Update your profile
|
Last update: 2010-10-20 21:51:57
#!/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"
|
|