|
|||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||
| [ ID = 0828 ] | Vytautas Zinkevicius |
|---|---|
| Name | Zinkevicius, Vytautas |
| Job Title | Programmer |
| Organisation | Institute of Lithuanian Language |
| Address | P. Vileisio g. 5 |
| Postal Code | LT-10308 |
| City | Vilnius |
| Country | Lithuania |
| Phone | +370 5 2637341 |
| Fax | +370 5 2347200 |
| Mobile | +370 69239023 |
| vytaut.zinkevicius_(on)_gmail.com [@ replaced for spam protection] | |
| Organisation URL | http://www.lki.lt/LKI_EN/ |
| Personal URL | |
| Membership | |
| Languages | English Lithuanian, Russian |
| Specialism | Speechtechnology:
Application Software Development Computational Lexicography Computational Morphology Lexicons Morphological Analysis and Synthesis (Generation) Morphology Modeling for Languages with Highly Complex Inflection and Derivation NLP |
| Photograph | Description or CV |
![]() |
|
|
|
Last update: 2016-02-04 13:22:31 #!/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" |