|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1703 ] | Associate Professor Thanaruk Theeramunkong |
---|---|
Name | Theeramunkong, Associate Professor Thanaruk |
Job Title | Associate Professor and Chairperson of Information Technology Program |
Organisation | Knowledge Information & Data Management Laboratory, SIIT |
Address | 131 Moo 5, Tiwanont Road, Bangkadi, Muang Pathum Thani |
Postal Code | 12000 |
City | Pathum Thani |
Country | Thailand |
Phone | + +66 2501 3505 (ext 2004) |
Fax | + +66 2501 3524 |
Mobile | + |
thanaruk_(on)_siit.tu.ac.th [@ replaced for spam protection] | |
Organisation URL | http://kind.siit.tu.ac.th/ |
Personal URL | http://www.siit.tu.ac.th/dirctory/ft_fac/thanaruk.html |
Membership | |
Languages | English Thai, Japanese |
Specialism | Computational Linguistics
Corpora Hidden Markov Models Information Retrieval Knowledge Management Machine Learning Natural Language Processing Robust Speech Recognition Search Engines Speech Processing Speech Recognition Speech Synthesis Speech Technologies Statistical Language Modeling and Analysis Statistical Methods for Information Retrieval Text-to-Speech |
Photograph | Description or CV |
![]() |
http://www.siit.tu.ac.th/dirctory/ft_fac/thanaruk.html |
![]() |
Last update: 2004-09-13 13:24:16 #!/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" |