|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0550 ] | Haskins Laboratories |
---|---|
Organisation name | Haskins Laboratories |
Short name or acronym | Haskins Laboratories |
Organisation type | Center |
Activity type | Speech technology |
Address | 270 Crown St. |
Postal Code | 06511-6695 |
City | New Haven, CT |
Country | United States |
Phone | + +1 203 865 6163 |
Fax | + +1 203 865 8963 |
haskins_(on)_haskins.yale.edu | |
Organisation URL | http://www.haskins.yale.edu/ |
Logo | Description |
![]() |
Haskins Laboratories is an independent research institute with a primary focus on the biological bases of speech and language. The Laboratories is a private, non-profit research laboratory that was founded in 1935, and named after its founder, Dr. Caryl P. Haskins. Currently, our main areas of research include speech perception, synthesis and analysis, speech production, motor behavior, linguistics, phonetics, reading, cognitive science, ecological psychology, nonlinear dynamics and complexity. |
Contact | |
Name | Ms. Susan Galli |
Function | Administrator |
Department | |
galli_(on)_haskins.yale.edu | |
Phone | + +1 203 865 6163, ext. 223 |
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" |