|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0757 ] | Acoustical Society of the Netherlands |
---|---|
Organisation name | Acoustical Society of the Netherlands |
Short name or acronym | Acoustical Society of the Netherlands |
Organisation type | Specialty society |
Activity type | Speech technology |
Address | P.O. Box 480 |
Postal Code | 6200 AD |
City | Maastricht |
Country | Netherlands |
Phone | + +31 43 3470956 |
Fax | + +31 43 3438781 |
nag_(on)_C-Hri.nl | |
Organisation URL | http://eaa.essex.ac.uk/eaa/members/netherla/netherla.html |
Logo | Description |
![]() |
NAGs main objective is to encourage the development and the applications of the science of acoustics and acoustical techniques. The NAG tries to achieve its objectives, by organizing meetings, approximately every 3 months, publication of issues covering contributions to these scientific meetings and publication of the NAG-almanac. |
Contact | |
Name | Mrs. Yvonne van der Pas |
Function | |
Department | |
Phone | + |
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" |