|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1482 ] | Antoine Herzog |
---|---|
Name | Herzog, Antoine |
Job Title | Consultant |
Organisation | Sysemo |
Address | 1, rue Boyer |
Postal Code | 75020 |
City | Paris |
Country | France |
Phone | +33 1 47 97 12 57 |
Fax | + |
Mobile | + |
ahgs_(on)_sysemo.com [@ replaced for spam protection] | |
Organisation URL | http://www.sysemo.com |
Personal URL | http://www.communication-langages-et-systemes.com/Consultan.29.0.html |
Membership | |
Languages | English French |
Specialism |
Application Software Development Business Application of Speech Technology Communication Computational Linguistics Consulting for Services Sales and Marketing Corpus Linguistics Customer Relationship Management Services Developer Tools Development and Implementation of Speech Technology Applications Dialogue Design Dialogue Management Dialogue Modelling Dialogue System Evaluation e-Support Knowledge Centers Flexible Database Integration General linguistics Grammar Human Factors Human Voice Understanding Information Retrieval Knowledge Management Linguistics Natural Language Processing Natural Language Semantics Search Engines Search Strategies Semantics Semantics and Pragmatics in Speech Understanding Service Design System Integration VoiceXML Text-to-Speech Speech Synthesis |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-10-13 01:48:46 #!/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" |