|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 0062 ] | Dr. Ion Androutsopoulos |
|---|---|
| Name | Androutsopoulos, Dr. Ion |
| Job Title | Lecturer |
| Organisation | Athens University of Economics and Business |
| Address | Patission 76 |
| Postal Code | 104 34 |
| City | Athens |
| Country | Greece |
| Phone | + +30-210-8203571 |
| Fax | + +30-210-8226105 |
| Mobile | + |
| ion_(on)_aueb.gr [@ replaced for spam protection] | |
| Organisation URL | http://www.cs.aueb.gr/ |
| Personal URL | http://www.aueb.gr/users/ion/ |
| Membership | ACL |
| Languages | English English, Greek, Italian |
| Specialism | Question answering
Natural language generation Document classification Information extraction Machine learning in natural language processing |
| Photograph | Description or CV |
![]() |
http://www.aueb.gr/users/ion/ |
|
|
Last update: 2003-12-23 17:43: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" |