|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 2408 ] | Assist.Prof. Banu Diri |
|---|---|
| Name | Diri, Assist.Prof. Banu |
| Job Title | Assist.Prof. |
| Organisation | Yildiz Tehnical University |
| Address | Yildiz Tehnical University Computer Engineering Department |
| Postal Code | 34349 |
| City | Istanbul |
| Country | Turkey |
| Phone | +90 3832403 |
| Fax | +90 2587489 |
| Mobile | + |
| banu_(on)_ce.yildiz.edu.tr [@ replaced for spam protection] | |
| Organisation URL | http://www.ce.yildiz.edu.tr/en/index.php |
| Personal URL | http://www.ce.yildiz.edu.tr/en/myindex.php?id=9 |
| Membership | |
| Languages | English |
| Specialism | Feature Extraction for Turkish and English Texts
Construction of Turkish Commonsense Database Text Classificaiton/Clustering Author Detection Text Compression Text Summarizaiton Semantic |
| Photograph | Description or CV |
![]() |
http://www.ce.yildiz.edu.tr/en/myindex.php?id=9 |
|
|
Last update: 2010-03-02 09:58:40 #!/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" |