|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3074 ] | NRC |
---|---|
Organisation name | Nokia Research Center |
Short name or acronym | NRC |
Organisation type | research & development |
Activity type | Speech & Audio Systems |
Address | P.O. Box 407 |
Postal Code | FIN-00045 NOKIA GROUP |
City | Helsinki |
Country | Finland |
Phone | + +358-718008000 |
Fax | + |
Organisation URL | http://www.nokia.com/inbrief/units/nrc.html |
Logo | Description |
![]() |
Nokia Research Center, the corporate R&D unit of Nokia, explores and develops new technologies and concepts required for paving the way towards the mobile information society, where the Internet and mobile communications are fully combined. Nokia Research Center has R&D teams with world-class competencies and outputs in areas of mobile and fixed communications, Internet technologies and audio-visual signal processing, as well as in electronics and software. These teams boost Nokia's R&D by serving the R&D centers of Nokia business units with activities mainly beyond current product development. Understanding of market and user requirements is assured by participation in R&D supporting today's businesses as well. Nokia has a long tradition in international university cooperation. Nokia is also an active partner in a variety of multilateral R&D projects and programs in Europe, Asia, and the Americas. In many cases, this cooperation is realized with Nokia Research Center as the gateway. |
Member of elsnet | Contact |
Name | Mr. Péter Pál Boda |
Function | Assistant Research Manager |
Department | Language Technology & Applications |
peter.boda_(on)_nokia.com | |
Phone | + +358-718008000 |
Fax | + +358-7180 37135 |
![]() |
Last update: 2002-07-05 10:21:43 #!/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" |