|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1666 ] | Dr. Richard Hull |
---|---|
Name | Hull, Dr. Richard |
Job Title | CEO |
Organisation | Axontologic, Inc. |
Address | 12565 Research Parkway, Suite 300 |
Postal Code | 32826 |
City | Orlando, FL |
Country | United States |
Phone | + +1 407 737 7772 |
Fax | + |
Mobile | + |
info_(on)_axontologic.com [@ replaced for spam protection] | |
Organisation URL | http://www.axontologic.com |
Personal URL | |
Membership | ACL ACM, IEEE |
Languages | English |
Specialism | 24/7 support
Ambiguity Anaphora Computational Linguistics Corpus statistics Dynamic Lexicon Building Finite State Methods Information Retrieval Lexical Semantics Natural Language Processing Natural Language Semantics Ontology Parsing Question-Answering Robust Semantic Processing Search Engines Semantic Interpretation Semantics Shallow Parsing Syntax Tokenisation Verb Subcategorization Word meaning |
Photograph | Description or CV |
Update your profile | Last update: 2003-11-25 04:30:26 #!/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" |