|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3523 ] | Monet |
---|---|
Organisation name | Left Bank Solutions |
Short name or acronym | Monet |
Organisation type | Private company |
Activity type | Call center with specific expertise in Lang+Speech Technology |
Address | 11777 San Vicente Blvd, #790 |
Postal Code | 90049 |
City | Los Angeles |
Country | United States |
Phone | + 310-207-6800 |
Fax | + 310-207-2036 |
ysimpson_(on)_leftbanksolutions.com | |
Organisation URL | http://www.leftbanksolutions.com |
Logo | Description |
![]() |
Left Bank Solutions is developer of Monet Workforce Management Software that forecasts calls and automatically schedules agents in call center. Multi-site, multi-time zone, virtual access, RTA, multi-lingual. |
Contact | |
Name | Director of Business Development Yvette Simpson |
Function | Sales & Marketing |
Department | Sales & Marketing |
ysimpson_(on)_leftbanksolutions.com | |
Phone | + 310--207-6800 x 203 |
Fax | + 310-207-2036 |
![]() |
Last update: 2005-04-28 00:39:04 #!/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" |