|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3676 ] | Sysemo |
---|---|
Organisation name | Sysemo |
Short name or acronym | Sysemo |
Organisation type | Private company |
Activity type | Language or Speech Technology consultant |
Address | 1, rue Boyer |
Postal Code | 75020 |
City | Paris |
Country | France |
Phone | +33 (0)1 47 97 12 57 |
Fax | + |
info_(on)_sysemo.com | |
Organisation URL | http://www.sysemo.com |
Logo | Description |
![]() |
Sysemo provide consulting and technical assistance for services by phone that take advantage of voice recognition and VXML. Customers are companies such as Electricité de France, France Telecom, DBScape, Communication et Systemes, etc... Expertise is 15 years of technical and marketing projects in mobile phone (GSM), customer relation ship management, call centers, and since 2000 voice recognition systems. French is the main language for voice recognition systems and dialogs. |
Contact | |
Name | Antoine Herzog |
Function | Consultant and manager |
Department | |
antoine_(on)_sysemo.com | |
Phone | +33 (0)1 47 97 12 57 |
Fax | + |
![]() |
Last update: 2006-06-06 12:59: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" |