|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1646 ] | BravoBrava! |
---|---|
Organisation name | BravoBrava! |
Short name or acronym | BravoBrava! |
Organisation type | Specialty society |
Activity type | Speech technology |
Address | 32980 Alvarado-Niles Road - Suite 856 |
Postal Code | CA 94587-3186 |
City | Union City |
Country | United States |
Phone | + |
Fax | + |
Organisation URL | http://bravobrava.com |
Logo | Description |
![]() |
BravoBrava! is a privately funded company that develops and integrates information technologies for applications in education and training. Headquartered in Silicon Valley, the company's goal is to revolutionize education and training through improvements in the way people create, access and manage information. BravoBrava! spins out companies. We created multimedia software for reading instruction and formed SUP Inc. to commericialize it. BravoBrava! performs joint development. We used speech technology to boost productivity and cut learning time for 3D designers who use tools from think3. BravoBrava! creates new product concepts. We have created prototypes to help new companies attract seed funding. Some of the prototypes are for consumer electronics, but that's all we can say right now! |
Contact | |
Name | Dr. Luc JULIA |
Function | Director |
Department | R&D |
julia_(on)_bravobrava.com | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/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" |