|
|
|
Expert profile: Prof. Hideki Kasuya
| [ ID = 0820 ] |
Prof. Hideki Kasuya |
| Name |
Kasuya, Prof. Hideki |
| Job Title | Professor |
| Organisation |
Faculty of Engineering, Utsunomiya University |
| Address | 7-1-2, Yoto |
| Postal Code | 321-8585 |
| City | Utsunomiya |
| Country | Japan |
| Phone | + +81 28 689 6120 |
| Fax | + +81 28 689 6119 |
| Mobile | + |
| Email |
kasuya_(on)_klab.jp
[@ replaced for spam protection] |
| Organisation URL |
http://www.utsunomiya-u.ac.jp |
| Personal URL |
http://www.klab.jp |
| Membership |
ISCA ASA, ASJ, IEEE, IEICE |
| Languages | English |
| Specialism |
Speechtechnology:
Acoustic Phonetics
Para- and Extralinguistic Aspects of Speech
Speech Analysis
Speech Synthesis
Voice Disorders |
| Photograph | Description or CV |
 |
http://www.klab.jp/~kasuya/
|
Update your profile
|
Last update: 2003-08-07 12:00:00
#!/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"
|
|