[ ID = 1497 ] |
Dr L. Venkata Subramaniam |
Name |
Subramaniam, Dr L. Venkata |
Job Title | Research Staff Member |
Organisation |
IBM India Research Lab |
Address | Block I, IIT Delhi, Hauz Khas, |
Postal Code | 110016 |
City | New Delhi |
Country | India |
Phone | + +91 11 6861100 |
Fax | + +91 11 686 1555 |
Mobile | + |
Email |
lvsubram_(on)_in.ibm.com
[@ replaced for spam protection] |
Organisation URL |
http://www.research.ibm.com/ |
Personal URL |
http://www.research.ibm.com/people/l/lvsubram/ |
Membership |
IEEE |
Languages | English |
Specialism |
Speech Recognition
Natural Language Processing
|
Photograph | Description or CV |
 |
http://www.research.ibm.com/people/l/lvsubram/
|
Update your profile
|
Last update: 2002-10-17 09:06: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"
|