|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2008 ] | Dr. Majid Foodeei |
---|---|
Name | Foodeei, Dr. Majid |
Job Title | Dir. of Technical and Strategic Marketing |
Organisation | Centillium Communications, Inc. |
Address | 1, place de la Coupole |
Postal Code | 92084 |
City | Paris La Defense |
Country | France |
Phone | +33 1 47 96 46 78 |
Fax | +33 1 47 96 46 88 |
Mobile | + |
mfoodeei_(on)_centillium.com [@ replaced for spam protection] | |
Organisation URL | http://www.centillium.com |
Personal URL | http://www.centillium.com |
Membership | ITU, ETSI, TIA |
Languages | English French |
Specialism | Technical Marketing
Business development Mobile communications VoIP 3G systems Video signal processing Speech signal processing Information theory Channel coding Telecommunications Chief Technical Consultant Communication Computer Telephony system System-on-a-chip and DSP Silicon DSP Coding Embedded Systems Technology |
Photograph | Description or CV |
![]() |
http://www.centillium.com |
![]() |
Last update: 2007-01-19 10:33:19 #!/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" |