|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0568 ] | National Institute of Standards and Technology (NIST) |
---|---|
Organisation name | National Institute of Standards and Technology (NIST) |
Short name or acronym | National Institute of Standards and Technology (NIST) |
Organisation type | Center |
Activity type | Speech technology |
Address | Technology Administration US Department of Commerce 100 Bureau Drive, Stop 3460 |
Postal Code | 20899-3460 |
City | Gaithersburg, MD |
Country | United States |
Phone | + +1 301 975 2758 |
Fax | + +1 301 926 1630 |
Organisation URL | http://www.nist.gov/ |
Logo | Description |
![]() |
The National Institute of Standards and Technology is an agency of the U.S. Department of Commerce's Technology Administration. Established in 1901, NIST strengthens the U.S. economy and improves the quality of life by working with industry to develop and apply technology, measurements, and standards. It carries out this mission through a portfolio of four major programs: Measurements and Standards Laboratories, Advanced Technology Program, Manufacturing Extension Partnership, and Baldrige National Quality Award. |
Contact | |
Name | Ms. Sharon Seide |
Function | |
Department | |
inquiries_(on)_nist.gov | |
Phone | + +1 301 975 NIST |
Fax | + +1 301 926 1630 |
![]() |
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" |