|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0474 ] | International Society for Performance Improvement (ISPI) |
---|---|
Organisation name | International Society for Performance Improvement (ISPI) |
Short name or acronym | International Society for Performance Improvement (ISPI) |
Organisation type | Specialty society |
Activity type | Call centers |
Address | 1300 L Street, N.W., suite 1250 |
Postal Code | 20005 |
City | Washington, DC |
Country | United States |
Phone | + +1 202 408 7969 |
Fax | + +1 202 408 7972 |
info_(on)_ispi.org | |
Organisation URL | http://www.ispi.org |
Logo | Description |
![]() |
The International Society for Performance Improvement (ISPI) is the leading international association dedicated to improving productivity and performance in the workplace. ISPI represents more than 10,000 international and chapter members throughout the United States, Canada, and 40 other countries. ISPI's mission is to improve the performance of individuals and organizations through the application of Human Performance Technology. Assembling an Annual Conference & Expo and other educational events like the Institutes, publishing books and periodicals, and supporting research, and recognizing outstanding achievements through the Awards of Excellence program are some of the ways ISPI works toward achieving this mission. |
Contact | |
Name | |
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" |