|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2197 ] | Lic. J.A.M. Van Sas |
---|---|
Name | Van Sas, Lic. J.A.M. |
Job Title | CEO / Lecturer |
Organisation | The LingWareHouse / Karel de Grote-Hogeschool |
Address | Harten 1 |
Postal Code | B-2300 |
City | Turnhout |
Country | Belgium |
Phone | + |
Fax | + |
Mobile | + |
jan.van.sas_(on)_lingwarehouse.com [@ replaced for spam protection] | |
Organisation URL | http://www.lingwarehouse.com |
Personal URL | http://www.linkedin.com/in/janvansas |
Membership | |
Languages | English |
Specialism | Multilingual Language Technology
Knowledge Extraction & Management Information Retrieval Computational Linguistics Artificial Intelligence Electronic Dictionaries Morphology Parsing Grammar Checking Style Checking Spell Checking Writing Tools Document Summarization Natural Language Search Document Classification Entity Recognition and Fact Extraction Text Mining Language Teaching Translation and Localization |
Photograph | Description or CV |
| |
Update your profile | Last update: 2008-05-10 19:43:43 #!/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" |