|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2972 ] | SPIRIT |
---|---|
Organisation name | SPIRIT |
Short name or acronym | SPIRIT |
Organisation type | Company |
Activity type | Speech technology |
Address | B.Kommunisticheskaya |
Postal Code | 109004 |
City | Moscow |
Country | Russian Federation |
Phone | + +7(095)912-7103 |
Fax | + +7-095-9127103 |
sales_(on)_spiritcorp.com | |
Organisation URL | http://www.spiritcorp.com |
Logo | Description |
![]() |
SPIRIT is a prominent supplier of high-quality DSP (Digital Signal Processing) software products, including VoIP, FoIP, sophisticated speech processing, speaker ID, telephony, GPS, Audio and Video compression, face ID, and more. With major R&D offices located in Russia, SPIRIT also provides professional services in custom DSP software development and related areas. |
Contact | |
Name | Ms Valentina Bukina |
Function | Marketing manager |
Department | marketing department |
sales_(on)_spiritcorp.com | |
Phone | + +7-095-9127103 |
Fax | + +7-095-9127103 |
![]() |
Last update: 2002-04-15 13:21:56 #!/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" |