|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1090 ] | Amnon Meyers |
---|---|
Name | Meyers, Amnon |
Job Title | Chief Technology Officer |
Organisation | Text Analysis International, Inc. |
Address | 4159 Old Adobe Road |
Postal Code | 94306 |
City | Palo Alto, California |
Country | United States |
Phone | + 1-949-376-8507 |
Fax | + |
Mobile | + |
amnon.meyers_(on)_textanalysis.com [@ replaced for spam protection] | |
Organisation URL | http://www.textanalysis.com |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Anaphora Annotation Confidence Based Analysis Chunking Developer Tools Entity Identification Event Extraction Evidence Based Analysis Grammar Compilers Information Extraction Integrated Development Environment Knowledge Base Management System Natural Language Processing NLP Ontologies Ontology Parsing Part of Speech Tagging Robust Parsing and Understanding Robust Semantic Analysis Self Scoring Shallow Parsing Syntactic Analysis Syntax Text Analytics Text Mining |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-28 19:02:46 #!/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" |