|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2220 ] | CCS, CogSci |
---|---|
Organisation name | Center for Cognitive Science - State University of New York atBuffalo |
Short name or acronym | CCS, CogSci |
Organisation type | Center |
Activity type | Speech technology |
Address | 652 Baldy Hall |
Postal Code | 14260 |
City | Buffalo, NY |
Country | United States |
Phone | + +1 716 645 3794 |
Fax | + +1 716 645 3825 |
ccs-cogsci-contact_(on)_buffalo.edu | |
Organisation URL | http://wings.buffalo.edu/cogsci |
Logo | Description |
![]() |
The Center for Cognitive Science is the representation on the University at Buffalo campus of an academic and private-sector movement, named "cognitive science", that has been expanding over the last two decades both in the U.S. and abroad. The aim of this development is to investigate the nature of cognition, i.e., of intellective processes as exhibited either by the human mind or by computer. Most centrally, cognitive science is the study of how the mind works, both in its conceptual organization and in its computational and neural infrastructure. Accordingly, cognitive science has brought together researchers from a number of traditionally separate disciplines -- primarily, computer science, psychology, linguistics, philosophy, anthropology, and neuroscience -- in order to build a new and unified understanding of cognition that is compounded from the different disciplinary perspectives and that moves beyond them. |
Contact | |
Name | Professor Leonard Talmy |
Function | Director |
Department | Center for Cognitive Science, Department of Linguistics |
ccs-cogsci-contact_(on)_buffalo.edu | |
Phone | + +1 716 645 3794 |
Fax | + +1 716 645 3825 |
![]() |
Last update: 2002-04-15 18:34:19 #!/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" |