|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0252 ] | Dr. Ahmed Yamani |
---|---|
Name | Yamani, Dr. Ahmed |
Job Title | IT Advisor & Director |
Organisation | STC |
Address | P. O. Box 286376 |
Postal Code | 11323 |
City | Riyadh |
Country | Saudi Arabia |
Phone | + (+) 966 1 4431 443 |
Fax | + (+) 966 1 443 2083 |
Mobile | + (+) 966 5044 10 373 |
ayamani_(on)_stc.com.sa [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | ITU, SCS, BCS. |
Languages | English |
Specialism | Ambiguity
Application Software Development Arabic Natural Language Processing Billing Support Systems Biomechanical modeling Business Application of Speech Technology Communication Computation Computational Lexicography Computational Linguistics Computational Morphology Computer Assisted Language Learning Computer Telephony Integration Corpora and Dialogue Annotations Corpus Linguistics Development and Implementation of Speech Technology Applications Dialogue Dialogue Design Dialogue Management Dialogue Modelling Dialogue System Evaluation Dialogue systems e-Business Financial application Functional Languages in Language Processing General linguistics Grammar Information Retrieval Information Services by Telephone using Speech Technologies Internet Knowledge Management Knowledge-based Speech Recognition Language Learning Language Processing Language Translation Large speech corpora Lexical and Terminological Databases Lexical Semantics Linguistics Logic Machine Learning Machine Translation Mathematical Linguistics Morphological Analysis and Synthesis (Generation) Morphology Multilingual Authoring Multilingual Speech Recognition Natural Language Processing Natural Language Semantics Parsing Pattern Recognition and Statistical Data Analysis Pragmatics Project Management Question-Answering Recognition Technologies Robust Parsing and Understanding Robust Semantic Processing Search Engines Search Strategies Semantic Interpretation Semantics Service Level Agreements (SLAs) Software in E Commerce Speech Analysis Speech Applications Syntax System Integration Technology Technology Implementation Telecommunications Telephony Training VoIP Web Applications Wireless Communications Applications |
Photograph | Description or CV |
| |
Update your profile | Last update: 2008-09-02 12:16:10 #!/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" |