|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2258 ] | Mr Manash Chaudhuri |
---|---|
Name | Chaudhuri, Mr Manash |
Job Title | CEO |
Organisation | Corelynx Inc |
Address | 39899 Balentine Drive, Suite 200 |
Postal Code | 94560 |
City | Newark |
Country | United States |
Phone | +877 2673599 |
Fax | +510 7425417 |
Mobile | +510 6816140 |
info_(on)_corelynx.com [@ replaced for spam protection] | |
Organisation URL | http://www.corelynx.com/ |
Personal URL | |
Membership | ELSNET rosattanet |
Languages | English |
Specialism | ACDs
Adaptive Speech Recognition Advertising Application Software Development Artificial Neural Networks Audio Authentication Automated Call Overflow Billing Support Systems Branding Phone Interactions Business Application of Speech Technology Call Center Automation Call Center Management Call Center Metrics Call Center Predictive Dialing Platforms Call center simulation Call Center Telephone Switching Callcenter Tuning Computer Telephony Integration Contact Center Optimisation Contact Center Strategy Contact Centre Management CTI (selection and application design) Customer Care Customer Care Process Customer Relationship Management Services Developer Tools HMM-based OCR Hosting solutions Information dissemination Information Retrieval Information Services by Telephone using Speech Technologies Interactive Voice Response (IVR) Internet Knowledge Management Principle-based Parsing Process Documentation Project Management Search Engines Search Strategies Service Level Agreements (SLAs) Service selling Software Architecture for Language Engineering Software in E Commerce Speech Enabled IVRs Technology Telecommunications Telemarketing Telephony Text-To-Speech Conversion Text-to-Speech in Telephony Vector Quantization Voice Activity Detection Voice Biometrics (Speaker Verification, Identification, VoiceXML VoIP Web Applications Wireless Communications Applications Workforce Management |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2013-06-24 22:45:33 #!/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" |