Organisation profile: ARCHES sarl
[ ID = 3229 ] | ARCHES |
Organisation name | ARCHES sarl |
Short name or acronym | ARCHES |
Organisation type | Consultancy |
Activity type | |
Address | Allée de la Veissière, 7 |
Postal Code | 38640 |
City | Claix |
Country | France |
Phone | + +33 608987372 |
Fax | + +33 476 99 89 83 |
Email | jplefevre_(on)_compuserve.com |
Organisation URL | |
Logo | Description |
 |
ARCHES provides management services to technology-related partnerships. As a business office, ARCHES addresses the needs of European based enterprises in the creation of national and international RTD- projects, collaborations and alliances upon a wide range of sectors in future and emerging technologies, more particularly those linked with information and communication processing (for example, human computer interfaces, signal processing,
). According to the nature of the anticipated projects, the partners can be provided with assistance in: identification of suitable participants, preparation of financial plans, project design and proposal development, project management, technical assistance and exploitation planning. Customers include large size organisations as well as SMEs and academic institutions located in most of the European Countries.
A second complementary objective of ARCHES consists in promoting transfer of state-of-the-art technology linked with speech and signal processing to the commercial marketplace. Three specific promising non-conventional market segments have been identified allowing actions to be focused on the use of speech processing in the field of computer-based teaching, the applications involving assistive speech technology for the disabled and elderly and the exploitation of speech recognition approaches for signature of non speech signals.
|
| Contact |
Name | Dr Jean-Paul Lefèvre |
Function | Managing Director |
Department | |
Email | |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2003-08-28 15:27:20
#!/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"
|
|