|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3524 ] | Rhombus |
---|---|
Organisation name | Rhombus Technologies |
Short name or acronym | Rhombus |
Organisation type | Private company |
Activity type | Call center without specific expertise in Lang+Speech Technology |
Address | Marol, Andheri East |
Postal Code | 400059 |
City | Mumbai |
Country | India |
Phone | +91 9821036889 |
Fax | +91 2256926600 |
contact_(on)_rhombustech.net | |
Organisation URL | http://www.rhombustechnologies.com |
Logo | Description |
![]() |
We are a 60 seater call center based in Mumbai, India. We offer our services at US$6 per hour for customer support, Surveys, Appointment setting, TeleSales, etc. More can be found at www.rhombustechnologies.com/main.asp?page=overviewbpo. |
Contact | |
Name | CEO Umesh Ranglani |
Function | Management |
Department | |
umesh_(on)_rhombustech.net | |
Phone | + |
Fax | + |
![]() |
Last update: 2005-04-28 21:52:30 #!/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" |