|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2845 ] | Special Interest Group on Integrating Speech Technology in (Language) Learning (SIGInSTIL) |
---|---|
Organisation name | Special Interest Group on Integrating Speech Technology in (Language) Learning (SIGInSTIL) |
Short name or acronym | Special Interest Group on Integrating Speech Technology in (Language) Learning (SIGInSTIL) |
Organisation type | Specialty society |
Activity type | Speech technology |
Address | University of Abertay Dundee, Bell Street |
Postal Code | DD1 1HG |
City | Dundee |
Country | United Kingdom |
Phone | + +44 1382 308000 |
Fax | + +44 1382 308877 |
Organisation URL | http://dbs.tay.ac.uk/instil |
Logo | Description |
![]() |
InSTIL is a group of researchers and practitioners interested in using computers in speech-enabled CALL and in the domain of pronunciation in the widest sense of the word. To join the group, individuals or institutions must be members of one of the parent organizations: CALICO, EUROCALL or ISCA. Please disseminate the information about this SIG as widely as possible to reach potential interested parties. Please see the aims of the group which have now been achieved gradually. See also a description of potential members' interests. Scholars may be interested in joining the group who are not current members of CALICO, EUROCALL or ISCA. They may still make enquiries about membership and receive details of the group's planned activities. Our seminars, workshops and symposia are naturally open to non-members. By the end of the year 2000, the group will also release its first publications. |
Contact | |
Name | Mr. Philippe Delcloque |
Function | |
Department | |
p.delcloque_(on)_tay.ac.uk | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |