|
|
|
Expert profile: Mr. Alexander de Gier
| [ ID = 1446 ] |
Mr. Alexander de Gier |
| Name |
de Gier, Mr. Alexander |
| Job Title | Regional Director Northern & Southern Europe |
| Organisation |
Philips Speech Processing |
| Address | Kackertstrasse 10 |
| Postal Code | D-52072 |
| City | Aachen |
| Country | Germany |
| Phone | + +492418871232 |
| Fax | + +492418871149 |
| Mobile | + +31622514267 |
| Email |
lex.de.gier_(on)_philips.com
[@ replaced for spam protection] |
| Organisation URL |
http://www.speech.com |
| Personal URL |
|
| Membership |
|
| Languages | English |
| Specialism |
Information Services by Telephone using Speech Technologies
Investment in Speech Processing
Multilingual Speech Recognition
Natural Language Processing
Robust Speech Recognition
Robust Speech Understanding
Speech Applications
Speech Processing
Speech Recognition
Speech Understanding
Speech-Enabled IVR Systems
Spoken Dialogue Systems |
| Photograph | Description or CV |
 |
|
Update your profile
|
Last update: 2002-07-10 19:25:25
#!/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"
|
|