|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0506 ] | Professor Cheolwoo Jo |
---|---|
Name | Jo, Professor Cheolwoo |
Job Title | Professor |
Organisation | Changwon National University |
Address | #9 Sarimdong |
Postal Code | 641-773 |
City | Changwon Kyeongnam |
Country | Korea (South) |
Phone | +82 55-213-3662 |
Fax | +82 55-262-5064 |
Mobile | +82 10-3580-7552 |
cwjo_(on)_changwon.ac.kr [@ replaced for spam protection] | |
Organisation URL | http://www.changwon.ac.kr |
Personal URL | http://saspl.changwon.ac.kr/profile1.htm |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Artificial Neural Networks Audiovisual Speech Processing Databases of Emotional Speech Emotion in Speech Multimodal Human-Machine Communication Speech Analysis Systems for Older and Disabled People Voice Processing Voice to Text Conversion for the Hearing Impaired |
Photograph | Description or CV |
![]() |
http://saspl.changwon.ac.kr/profile1.htm |
![]() |
Last update: 2013-03-30 10:20:38 #!/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" |