[ ID = 1699 ] |
Rajat Kumar Mohanty |
Name |
Mohanty, Rajat Kumar |
Job Title | Research Linguist |
Organisation |
Indian Institute of Technology Bombay |
Address | TCS Laboratory for Intelligent Internet Research, Dept. of Computer Science &Engineering, IITB, Powai |
Postal Code | 400076 |
City | Mumbai |
Country | India |
Phone | + +91 22 25764728 / 25764729 |
Fax | + +91 22 25720290 / 25723480 |
Mobile | + +91 9323184886 |
Email |
rkm_(on)_cse.iitb.ac.in
[@ replaced for spam protection] |
Organisation URL |
http://www.iitb.ac.in |
Personal URL |
http://www.cse.iitb.ac.in/~rkm |
Membership |
ELSNET
|
Languages | English , Oriya, Hindi |
Specialism |
Computational Linguistics
Natural Language Syntax and Semantics
|
Photograph | Description or CV |
 |
http://www.elsnet.org/expertcvs/blank.html
|
Update your profile
|
Last update: 2005-01-16 21:42:15
#!/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"
|