|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3206 ] | OVGU |
---|---|
Organisation name | Otto-von-Guericke University, Cognitive Systems |
Short name or acronym | OVGU |
Organisation type | University |
Activity type | Cognitive Systems, Faculty of Electrical and Information Engineering |
Address | Universitaetsplatz 2 |
Postal Code | 39106 |
City | Magdeburg |
Country | Germany |
Phone | + +49 391 6714681 |
Fax | + +49 391 6714613 |
wendemu_(on)_iesk.et.uni-magdeburg.de | |
Organisation URL | http://iesk.et.uni-magdeburg.de/ko/ |
Logo | Description |
![]() |
OvGU (www.uni-magdeburg.de) is a public university located in Magdeburg, Federal State of Sachsen-Anhalt, Germany, and some 150km west of Berlin. It has a strong tradition in technological subject since 50 years. It comprises nine faculties, among which there six in sciences and technology. The Faculty of Electrical Engineering and Information Technology has 5 institutes and 2 associated institutes with altogether 17 chairs. The largest of these is the Institute of Electronics, Signal Processing and Communications Technology with 4 chairs in Technical Computer Science, Integrated Circuits, Communications Technology and Speech Recognition. The Speech Recognition Chair performs independent research both in fundamental and in applied topics, collaborating widely with other academic and industrial groups. |
Contact | |
Name | Prof. Dr. Andreas Wendemuth |
Function | Professor, Chairholder |
Department | FEIT IESK |
wendemu_(on)_iesk.et.uni-magdeburg.de | |
Phone | + +49 391 6714681 |
Fax | + +49 391 6714613 |
![]() |
Last update: 2003-08-06 17:23:05 #!/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" |