|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1230 ] | Doc. Ing. CSc. Petr Pollak |
---|---|
Name | Pollak, Doc. Ing. CSc. Petr |
Job Title | Associate professor |
Organisation | Czech Technical University in Prague |
Address | Technicka 2 |
Postal Code | 16627 |
City | Praha 6 |
Country | Czech Republic |
Phone | +420 2 2435 2049 |
Fax | +420 2 3333 9805 |
Mobile | + |
pollak_(on)_fel.cvut.cz [@ replaced for spam protection] | |
Organisation URL | http://www.fel.cvut.cz |
Personal URL | http://noel.feld.cvut.cz/~pollak/eng |
Membership | ELSNET |
Languages | English |
Specialism | Speech technology:
Annotation and Exploitation Tools Background Noise Suppression Corpora Data Corpus Collection detecting speech in noise Endpoint Detection Noise Reduction Robust Speech Recognition |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-10-07 15:57:30 #!/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" |