|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0709 ] | Xybernaut GmbH |
---|---|
Organisation name | Xybernaut GmbH |
Short name or acronym | Xybernaut GmbH |
Organisation type | Company |
Activity type | Call centers Speech technology |
Address | Otto-Lilienthal Str. 36 |
Postal Code | 71034 |
City | Böblingen |
Country | Germany |
Phone | + +49 7031 714 850 |
Fax | + +49 7031 714 849 |
info_(on)_xybernaut.de | |
Organisation URL | http://www.xybernaut.com |
Logo | Description |
![]() |
Since its founding in 1990, Xybernaut has pioneered the research, development and commercialization of computer technology, hardware, and related software for wearable systems. Designed for the worker who needs maximum mobility, portability and hands-free operation, the Xybernaut product line features wearability, voice activation and full WINTEL compatibility systems. Content is delivered before the wearer's eyes, where and when it's needed, without interfering with the full range of vision. The Xybernaut Mobile Assistant® Series increases productivity, performance, and safety by providing critical data while the worker performs hands-on activities. Full-power PCs, the units also serve as desktop computers, comparable with high speed state-of-the-art desktop and notebook systems that have bulky CPUs, monitors and keyboards. |
Contact | |
Name | |
Function | |
Department | |
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" |