|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1659 ] | PIKA |
---|---|
Organisation name | PIKA Technologies Inc.(HQ) |
Short name or acronym | PIKA |
Organisation type | Manufacturer |
Activity type | Computer Telephony |
Address | 20 Cope Drive |
Postal Code | K2M 2V8 |
City | Ottawa, Ontario |
Country | Canada |
Phone | + +1 613 591 1555 |
Fax | + +1 613 591 9295 |
sales_(on)_pikatech.com | |
Organisation URL | http://www.pikatechnologies.com |
Logo | Description |
![]() |
PIKA Technologies Inc. is an innovative manufacturer of hardware and software subsystems that enable developers to build scalable, next generation voice and fax solutions. An early pioneer in computer telephony, PIKA Technologies has evolved its product lines to benefit developers in a number of solutions markets, particularly in the voice portal, audio recording, PC-PBX and conferencing markets. The company's product portfolio is based on a cost effective yet technically sophisticated architecture to offer more control, excellent time-to-market gains, and future-proofing. Headquartered in Ottawa, ON, Canada, the company was recently listed in The Branham300, the authoritative listing of Canadian IT firms. PIKA Technologies is committed to delivering high levels of customer care and satisfaction, and serves customers in the Americas, Europe, Asia and the Middle East. Visit www.pikatechnologies.com for more information or call 613-591-1555. |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2003-03-20 17:31:23 #!/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" |