Organisation profile: ProAce Technology Service INC
[ ID = 4385 ] | Custom Software Development Company |
Organisation name | ProAce Technology Service INC |
Short name or acronym | Custom Software Development Company |
Organisation type | Private company |
Activity type | Language or Speech Technology consultant |
Address | 300 West Sixth Street ,Suite 2200, Austin |
Postal Code | 78701 |
City | Texas |
Country | United Kingdom |
Phone | +1 512-340-0340 |
Fax | +1 512-233-5828 |
Email | |
Organisation URL | http://www.proace.com |
Logo | Description |
 |
We build software applications that help our clients meet their strategic and operational needs. Whether you are looking to build a Rich Internet Application to drive your marketing initiatives, or build a custom line of business application to streamline your internal operations, our talented team of professionals can get you there. Our domain expertise encompasses the entire software development cycle. From business requirements to user interface design, back-end engineering to deployment and post launch support and marketing.
We are headquartered in Austin, Texas and have been helping our clients develop practical technology solutions since 2004. Our clients operate at all levels of enterprise, from fortune 500 to startups, in a wide range of industries. We approach each client with a firm commitment to return on investment and a long-term partnership built on integrity and trust.
|
| Contact |
Name | Custom Software/Web Development Firm Mike Ebrahimi |
Function | |
Department | |
Email | shakiradu_(on)_gmail.com |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2011-03-07 19:14:00
#!/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"
|
|