|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3271 ] | CSTI |
---|---|
Organisation name | CSTI Acoustics |
Short name or acronym | CSTI |
Organisation type | Consulting Engineers |
Activity type | |
Address | 15835 Park Ten Place, Suite 105 |
Postal Code | 77084-5131 |
City | Houston |
Country | United States |
Phone | + 281.492.2784 |
Fax | + 281.492.1434 |
csti_(on)_cstiacoustics.com | |
Organisation URL | http://www.cstiacoustics.com |
Logo | Description |
![]() |
CSTI Acoustics offers consulting services in acoustics, noise, and vibration. During the past 15 years, we have worked on more than 700 projects for over 350 clients. Our projects range in size from a few hours of consulting to projects involving more than 10 man-years of effort. |
Contact | |
Name | P.E., Bd.Cert.INCE, FASA Robert D. Bruce |
Function | Principal Consultant |
Department | |
bob_(on)_cstiacoustics.com | |
Phone | + 281.492,2784 |
Fax | + 281.492.1434 |
![]() |
Last update: 2003-12-04 20:08:06 #!/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" |