|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1359 ] | Mr Dharmendra Kanejiya |
---|---|
Name | Kanejiya, Mr Dharmendra |
Job Title | PhD Candidate |
Organisation | Indian Institute of Technology Delhi |
Address | Signal and Information Processing Lab, Department of Electrical Engineering, IIT Delhi |
Postal Code | 110016 |
City | New Delhi |
Country | India |
Phone | + 91-11-26596138 |
Fax | + |
Mobile | + 91-11-35376354 |
kanejiya_(on)_hotmail.com [@ replaced for spam protection] | |
Organisation URL | http://www.iitd.ernet.in |
Personal URL | http://www.cse.iitd.ernet.in/~eer99010 |
Membership | ACL IEEE |
Languages | English Hindi, Gujarati |
Specialism | Speechtechnology:
Robust Speech Recognition Statistical Language modeling Joint syntactic-semantic analysis Cognitive modeling |
Photograph | Description or CV |
![]() |
http://www.cse.iitd.ernet.in/~eer99010/cv/cv.html |
![]() |
Last update: 2003-08-07 00:41:34 #!/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" |