|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0562 ] | President Martin Markoe |
---|---|
Name | Markoe, President Martin |
Job Title | |
Organisation | eMicrophones, Inc. |
Address | 1500 Front Street - Suite B2 |
Postal Code | 10598 |
City | Yorktown Heights, New York |
Country | United States |
Phone | + 914 556-8286 |
Fax | + |
Mobile | + |
mmarkoe_(on)_emicrophones.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | ELSNET |
Languages | English |
Specialism | Adaptive Speech Recognition
Business Application of Speech Technology Call Center Automation Computer Assisted Language Learning Computer Telephony Integration e-Business e-Support Microphones Noise Reduction Recognition Technologies Speech Acoustics Speech Applications Speech Recognition Training Training - Value Selling, Negotiating, Pricing, Marketing Transcription Universal Authoring Voice Recording Web Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-28 15:26:13 #!/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" |