|
|
Expert profile: Dr. Stephen Grimes
[ ID = 2475 ] |
Dr. Stephen Grimes |
Name |
Grimes, Dr. Stephen |
Job Title | Programmer Analyst |
Organisation |
Linguistic Data Consortium |
Address | 3600 Market St Ste 810 |
Postal Code | 19104 |
City | Philadelphai |
Country | United States |
Phone | +1 215-898-0497 |
Fax | +1 215-573-2175 |
Mobile | + |
Email |
sgrimes_(on)_ldc.upenn.edu
[@ replaced for spam protection] |
Organisation URL |
http://www.ldc.upenn.edu |
Personal URL |
http://www.ldc.upenn.edu/~sgrimes/index.html |
Membership |
ELSNET
ACL
LSA |
Languages | English Hungarian German |
Specialism |
Acoustic Modeling
Annotation and Exploitation Tools
Application Software Development
Arabic Natural Language Processing
Bayesian Theory and Applications
Computational Linguistics
Computational Morphology
Corpora
Developer Tools
Language Modeling
Machine Translation
Mathematical Linguistics
Natural Language Processing
Pronunciation Modelling
Speech Recognition |
Photograph | Description or CV |
|
http://www.ldc.upenn.edu/~sgrimes/ling.html
|
Update your profile
|
Last update: 2011-07-01 17:13:01
#!/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"
|
|