|
|
Expert profile: Frederik Durant, MBA
[ ID = 1146 ] |
Frederik Durant, MBA |
Name |
Durant, MBA, Frederik |
Job Title | Managing Director |
Organisation |
Prompt! Speech Applications |
Address | Moortebeekstraat 16 |
Postal Code | B-1700 |
City | Dilbeek |
Country | Belgium |
Phone | + |
Fax | + |
Mobile | + ++32-474-55.58.55 |
Email |
frederik_(on)_prompt-speechapps.com
[@ replaced for spam protection] |
Organisation URL |
http://www.prompt-speechapps.com/ |
Personal URL |
|
Membership |
|
Languages | English Dutch, French, German |
Specialism |
Call Avoidance Technology
Call Center Automation
Contact Center Strategy
Information Services by Telephone using Speech Technologies
Interactive Voice Response (IVR)
Speech-Enabled IVR Systems
Spoken Dialogue Systems
VoiceXML |
Photograph | Description or CV |
 |
http://www.prompt-speechapps.com/index.php?page=aboutus&sec=index&lang=en
|
Update your profile
|
Last update: 2005-01-14 10:00:36
#!/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"
|
|