|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0226 ] | Dr Christian Dugast |
---|---|
Name | Dugast, Dr Christian |
Job Title | Consultant and Owner |
Organisation | Tech2Biz |
Address | Moltkestr. 11 |
Postal Code | 53604 |
City | Bad Honnef |
Country | Germany |
Phone | +49 2224 98 89 560 |
Fax | + |
Mobile | +49 160 96 22 54 30 |
christian_(on)_christian-dugast.com [@ replaced for spam protection] | |
Organisation URL | http://www.tech2biz.eu |
Personal URL | http://www.christian-dugast.com |
Membership | |
Languages | English French, German |
Specialism | Speechtechnology:
Acoustic Phonetics Corpus statistics Dynamic Lexicon Building Evaluation Hidden Markov Models Information Services by Telephone using Speech Technologies Investment in Speech Processing Speech Recognition Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Systems Spoken Language Resources and Evaluation Web Applications Business Development of new technologies Positioning Business Models Business Strategy |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-07-28 18:02: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" |