|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1308 ] | Dr. Hsin-min Wang |
---|---|
Name | Wang, Dr. Hsin-min |
Job Title | Associate Research Fellow |
Organisation | Institute of Information Science, Academia Sinica, |
Address | Institute of Information Science, Academia Sinica |
Postal Code | 115 |
City | Taipei |
Country | Taiwan |
Phone | + 886-2-27883799 ext.1714 |
Fax | + 886-2-27824814 |
Mobile | + |
whm_(on)_iis.sinica.edu.tw [@ replaced for spam protection] | |
Organisation URL | http://www.iis.sinica.edu.tw |
Personal URL | http://www.iis.sinica.edu.tw/pages/whm/index_en.html |
Membership | ISCA IEEE |
Languages | English |
Specialism | Adaptive Speech Recognition
Audio Indexing Audio Signal Processing Automatic transcription of TV and radio broadcast News Chinese NLP Processing Voice Biometrics (Speaker Verification, Identification, |
Photograph | Description or CV |
![]() |
http://www.iis.sinica.edu.tw/pages/whm/vita_en.html |
![]() |
Last update: 2009-06-04 11:09:30 #!/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" |