|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0468 ] | Dr. Erik Harborg |
---|---|
Name | Harborg, Dr. Erik |
Job Title | Research Scientist |
Organisation | SINTEF ICT |
Address | O.S. Bragstads plass |
Postal Code | N-7465 |
City | Trondheim |
Country | Norway |
Phone | +47 73 59 31 39 |
Fax | +47 73 59 27 30 |
Mobile | + |
Erik.Harborg_(on)_hist.no [@ replaced for spam protection] | |
Organisation URL | http://www.sintef.no |
Personal URL | |
Membership | ISCA IEEE, NORSIG, NIF |
Languages | English Norwegian |
Specialism | Speech technology:
Acoustic Modeling Dialog management Digital Speech Processing Hidden Markov Models Information Services by Telephone using Speech Technologies Language Modeling Lexicons Robust Speech Recognition Speaker Adaptation Speech Coding Speech Processing Speech Recognition Speech Technologies Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Systems Spontaneous Speech |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2011-09-26 11:07:45 #!/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" |