|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1356 ] | Colibri |
---|---|
Organisation name | Colibri Project, Utrecht University |
Short name or acronym | Colibri |
Organisation type | Center |
Activity type | Logic/NLP/Speech technology |
Address | Trans 10 |
Postal Code | 3512 JK |
City | Utrecht |
Country | Netherlands |
Phone | + +31 30 253 60 57 |
Fax | + +31 30 253 60 00 |
colibri_(on)_let.uu.nl | |
Organisation URL | http://colibri.let.uu.nl |
Logo | Description |
![]() |
Colibri is an electronic newsletter and WWW service aimed at people interested in the fields of natural language processing, speech processing and/or logic. Colibri contains messages of general interest and ones of regional interest. As an example, there is a Dutch "sub-Colibri" covering the Netherlands and Flanders. Subscribers can choose which subsections they wish to receive. The news in each section, such as nlp/general or logic/dutch, is divided into the following three parts: (1) Workshops, conferences, talks, calls for papers, etc. (2) Jobs, including PhD and post-doc positions. (3) Miscellaneous: software, corpora, etc. Subscriptions are possible to any combination of a thematic area and a region (some combinations may not be active at the moment however, since we don't have an editor for them). A subscription to one of the regional sublists of a thematic area automatically includes a subscription to the general list for that area as well. Colibri is sent out from the Utrecht Institute of Linguistics OTS (Utrecht University) every Wednesday afternoon MET. Colibri is also available on the WorldWideWeb. For more information, please refer to the help files at http://colibri.let.uu.nl |
Contact | |
Name | Dr. Richard Moot |
Function | Colibri Editor |
Department | Linguistics |
Richard.Moot_(on)_let.uu.nl | |
Phone | + +31 30 253 60 57 |
Fax | + +31 30 253 60 00 |
![]() |
Last update: 2002-04-23 15:08:23 #!/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" |