|
|
Organisation profile: Accipio Consulting
[ ID = 3416 ] | Accipio Consulting |
Organisation name | Accipio Consulting |
Short name or acronym | Accipio Consulting |
Organisation type | Private company |
Activity type | Lang+Speech Technology consultant |
Address | Roermonder Str. 216 |
Postal Code | 52072 |
City | Aachen |
Country | Germany |
Phone | + +49 700 02224746 |
Fax | + +49 1212 511008146 |
Email | mail_(on)_accipio-consulting.com |
Organisation URL | http://www.accipio-consulting.com |
Logo | Description |
|
Accipio Consulting supports enterprises that intend to grow their business by exploiting improved human-machine interaction, specifically speech recognition and spoken dialogue technology. Accipio Consulting supports their clients to effectively leverage the enormous economic potential while professionally managing the risks.
Accipio Consulting also consults companies that aim at improving their competitive edge with technological innovation. Apart from the classical field of incremental improvement, the main focus of consulting lies in the area of disruptive technology change. In the market, disruptive technologies typically start from niche positions and, while becoming more mature, create totally new products or services and sometimes even new categories and new industries.
|
| Contact |
Name | Dr. Volker Steinbiss |
Function | Geschäftsleiter (CEO) |
Department | |
Email | volker.steinbiss_(on)_accipio-consulting.com |
Phone | + +49 700 02224746 |
Fax | + +49 1212 511008146 |
Update this profile
|
Last update: 2004-09-15 17:50:28
#!/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"
|
|