|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2221 ] | Cognitive Science Society, Inc. |
---|---|
Organisation name | Cognitive Science Society, Inc. |
Short name or acronym | Cognitive Science Society, Inc. |
Organisation type | Specialty society |
Activity type | Speech technology |
Address | P.O. Box 711012 |
Postal Code | 45271-1012 |
City | Cincinnati, OH |
Country | United States |
Phone | + |
Fax | + +1 512 471 3053 |
cogsci_(on)_psy.utexas.edu | |
Organisation URL | http://www.cognitivesciencesociety.org |
Logo | Description |
![]() |
The Cognitive Science Society, Inc. brings together researchers from many fields who hold a common goal: understanding the nature of the human mind. The Society promotes scientific interchange among researchers in disciplines comprising the field of Cognitive Science, including Artificial Intelligence, Linguistics, Anthropology, Psychology, Neuroscience, Philosophy, and Education. |
Contact | |
Name | Mr. Tanikqua Young |
Function | Business Manager |
Department | |
Phone | + +1 512 471 2030 |
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" |