|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 0348 ] | Dr. Eleni Miltsakaki |
|---|---|
| Name | Miltsakaki, Dr. Eleni |
| Job Title | Research Associate |
| Organisation | Institute of Research in Cognitive Science, University of Pennsylvania |
| Address | 3401 Walnut, Suite 400A |
| Postal Code | PA 19104-6228 |
| City | Philadelphia |
| Country | United States |
| Phone | +1 215 573 6285 |
| Fax | +1 215 573 9247 |
| Mobile | + |
| elenimi_(on)_linc.cis.upenn.edu [@ replaced for spam protection] | |
| Organisation URL | |
| Personal URL | http://http;//www.cis.upenn.edu/~elenimi |
| Membership | ACL LSA |
| Languages | English Greek |
| Specialism | Corpora
Corpora and Dialogue Annotations Discourse Theories Language Processing Linguistics Natural Language Processing Psycholinguistics |
| Photograph | Description or CV |
![]() |
http://www.cis.upenn.edu/~elenimi/ |
|
|
Last update: 2005-07-27 17:31:10 #!/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" |