|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2725 ] | CRL |
---|---|
Organisation name | Center for Research in Language - University of California, San Diego |
Short name or acronym | CRL |
Organisation type | Center |
Activity type | Speech technology |
Address | 9500 Gilman Dr., Dept. 0526 |
Postal Code | 92093-0526 |
City | La Jolla, CA |
Country | United States |
Phone | + +1 858 534 1148 |
Fax | + +1 858 534 6788 |
info_(on)_crl.ucsd.edu | |
Organisation URL | http://crl.ucsd.edu/ |
Logo | Description |
![]() |
The Center for Research in Language (CRL) brings together faculty, students and research associates who share an interest in the nature of language, the processes by which it is acquired and used, and the mediation of language in the human brain. CRL is housed in the Cognitive Science Building on the Thurgood Marshall Campus at the University of California, San Diego, with an interdisciplinary academic staff comprising specialists in cognitive science, computer science, communication disorders, developmental psychology, linguistics, neurosciences, communication, pediatrics and psycholinguistics. |
Contact | |
Name | Mrs. Elizabeth Bates |
Function | Director |
Department | |
bates_(on)_crl.ucsd.edu | |
Phone | + +1 858 534 3007 |
Fax | + +1 858 534 6788 |
![]() |
Last update: 2003-05-07 02:15:16 #!/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" |