|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0999 ] | McK |
---|---|
Organisation name | McK Consulting Inc. |
Short name or acronym | McK |
Organisation type | Private company |
Activity type | Language or Speech Technology training |
Address | 2815 Radisson Ave. |
Postal Code | N9E 1Y2 |
City | Windsor, Ontario |
Country | Canada |
Phone | + 1-416-848-0326 |
Fax | + |
mail_(on)_mckconsultinginc.com | |
Organisation URL | http://www.mckconsultinginc.com |
Logo | Description |
![]() |
McK Consulting Inc. provides training and support for IBM ViaVoice speech recognition software. McK is an Advanced IBM Speech Business Partner certified in ViaVoice. McK has produced the first of its kind TALKING TO VIAVOICE 60 minute basic training video available in DVD Region 1 format. There is also a two hour audio CDs to train users of ViaVoice software. Serving governments, legal, judicial, medical and corporate markets in Canada and the US since 1994. |
Contact | |
Name | Director of Training Grant Fairley |
Function | |
Department | |
mail_(on)_mckconsultinginc.com | |
Phone | + 1-313-586-8323 |
Fax | + |
![]() |
Last update: 2005-12-05 15:02:19 #!/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" |