|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1601 ] | Dr Costis Kompis |
---|---|
Name | Kompis, Dr Costis |
Job Title | Managing Partner |
Organisation | Vodera Ltd. |
Address | |
Postal Code | |
City | London |
Country | United Kingdom |
Phone | +44 1784456252 |
Fax | + |
Mobile | +44 |
costis.kompis_(on)_vodera.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English Greek |
Specialism | Human Factors
Information dissemination Information Retrieval Innovation Management Interactive Voice Response (IVR) Knowledge Management Management Consulting Mobile devices Multimodal Communciation Multimodal Human-Machine Communication Multimodality Pattern Recognition and Statistical Data Analysis Project Management Prosodic Studies in Spontaneous Language Analysis Prosody Prosody modelling Search Algorithms Search Engines Search Strategies Service Design Speaker Recognition Speech Recognition Speech Retrieval Speech Signal Processing Speech Summarization Speech Technologies Transcription |
Photograph | Description or CV |
![]() |
http://www.linkedin.com/in/costiskompis |
![]() |
Last update: 2008-10-19 01:49:15 #!/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" |