|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1082 ] | President John SMART |
---|---|
Name | SMART, President John |
Job Title | President |
Organisation | Smart Communications, Inc |
Address | 909 Third Avenue, 5th Floor, |
Postal Code | 10022 |
City | New York |
Country | United States |
Phone | + +1 (212) 486-1894 |
Fax | + +1 212 826-9775 |
Mobile | + +1 (646)) 495-3146 |
jsmart_(on)_smartny.com [@ replaced for spam protection] | |
Organisation URL | http://www.smartny.com |
Personal URL | http://www.smartny.com |
Membership | Society of Technical Communicators, GALA |
Languages | English French. Spanish, Portuguese, Greek and Arabic |
Specialism | Aircraft Accidents
Annotation and Exploitation Tools Arabic Natural Language Processing Artificial Neural Networks Automated Natural Language Speech Billing Support Systems Call Avoidance Technology Call Center Automation Chief Technical Consultant Chinese NLP Processing Cognitive Engineering Computational Lexicography Computational Linguistics Computational Morphology Computer Assisted Language Learning Corpus Linguistics Corpus statistics Customer Relationship Management Services Development and Implementation of Speech Technology Applications Dynamic Lexicon Building e-Business e-Support e-Support Knowledge Centers Functional Languages in Language Processing General linguistics Grammar Grammar Compilers Human Factors Human Factors Engineering Information Retrieval Innovation Management Knowledge Management Knowledge-based Speech Recognition Language Acquisition Language Processing Lexical Acquisition Lexical Semantics Linguistics Machine Learning Machine Translation Mathematical Linguistics Multilingual Authoring Natural Language Processing Natural Language Semantics Semantic Interpretation Semantics and Pragmatics in Speech Understanding Syntax System Integration Telephony Text Generation Text-to-speech (Indic) Training Universal Authoring Use of Translation Tools VoiceXML VoIP Web Applications Wireless Communications Applications Word meaning Wordnets Workforce Management |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2003-08-07 14:53: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" |