Friday, April 29, 2011

0

royal wedding pictures william and kate royal wedding between prince williams and Catherine Middleton royal wedding live pictures

  • Friday, April 29, 2011
  • Noufel Backer
  • Here are some of the snaps from the much awaited royal wedding between Prince Williams and Catherine Middleton




    tags:royal wedding william and katie royal wedding 2011 royal wedding live coverage
    Read more...

    Thursday, April 28, 2011

    0

    My Prof1les Vis1torz Counts : 61584 Now y0u can see wh0 are your t0p prof1le sta1kers @ http://www.facebook.com/pages/Proviews-v5-See-your-peekers/170171439703942?sk=app_190322544333196%3F61584 your t0p prof1le sta1kers @ http://www.facebook.com/pages/Proviews-v5-See-your-peekers/170171439703942?sk=app_190322544333196%3F61584 facebook event spam

  • Thursday, April 28, 2011
  • Noufel Backer
  • "How to see who viewed your profile!!" is yet another spam from the whopping spam list of facebook.There is no way you can find the number of profile viewers in FB.By clicking on this link the users details will be automatically collected and it also sends this link to all your friends.so friends please dont click on this malicious link and save yourself from spamming!Please do share this if you really care for your fellow FB freinds.comments are also appreciated.

    tags:My Prof1les Vis1torz Counts : 61584  Now y0u can see wh0 are your t0p prof1le sta1kers @ http://www.facebook.com/pages/Proviews-v5-See-your-peekers/170171439703942?sk=app_190322544333196%3F61584 your t0p prof1le sta1kers @ http://www.facebook.com/pages/Proviews-v5-See-your-peekers/170171439703942?sk=app_190322544333196%3F61584 facebook event spam facebook event invite spam
    Read more...

    Sunday, April 24, 2011

    1

    facebook spam applications facebook spam link facebook spam events invite facebook spam chat messages

  • Sunday, April 24, 2011
  • Noufel Backer
  • There is no dearth of spam in the popular social networking website facebook with more than 600 million users.Here is a collection of the spam applications,event invites,spam chat etc.Please do share this with your fb friends to prevent further spamming.


    facebook chat spam
    Hey,check out this girl, lol, she must be out of her mind for making that video!: bit.ly/erH085

    facebook group spam



    Read more...
    0

    hahah mine is hilarious!!! check yours out :) See what you'll look in the future! in20yrzz.info This cutting-edge technology will show you exactly how your face will look in the future! another facebook spam application

  • Noufel Backer
  • This is yet another facebook spam application.By clicking on this link the users details will be automatically collected and it also sends this link to all your friends wall.here is a screen shot of that
    so friends please dont click on this malicious link and save yourself from spamming!Please do share this if you really care for your fellow FB freinds.comments are also appreciated

    tags:see how your face will look in 20 years hahah mine is hilarious!!! check yours out :) See what you'll look in the future! in20yrzz.info This cutting-edge technology will show you exactly how your face will look in the future! another facebook spam application
    Read more...

    Saturday, April 23, 2011

    1

    My Top Profile Viewers Are: see who viewed your facebook profile @ http://x.co/WlL0/?68555 spam facebook profile viewers spam

  • Saturday, April 23, 2011
  • Noufel Backer
  • My Top Profile Viewers Are: see who viewed your facebook profile!
    Can you really find the number of people who viewed your profile!!???The answer is a big NO!Dear fb friends it is a spam that is spreading like a wild fire on facebook.See the screen shot below

    Please dont click on that link.If you click it will be posted automatically to your wall.So please dont click on that link and save yourself from spamming!

    tags:my total profile views on facebook  my total profile views are facebook spam profileviewsspam profileviewsfb
    Read more...
    0

    "How to see who viewed your profile!!" How to see who viewed your profile event invite spam

  • Noufel Backer
  • "How to see who viewed your profile!!" is yet another spam from the whopping spam list of facebook.There is no way you can find the number of profile viewers in FB.By clicking on this link the users details will be automatically collected and it also sends this link to all your friends.here is a screen shot of that




    so friends please dont click on this malicious link and save yourself from spamming!Please do share this if you really care for your fellow FB freinds.comments are also appreciated

    tags:How to see who viewed your profile spam facebook chat spam  See who views your profile http://x.co/WlL5/?7277=   event spam invite

    Read more...

    Thursday, April 21, 2011

    1

    facebook group spam ***Get Your Free Facebook T-Shirt, Register Now http://tinyurl.com/6ysc3jd*** new spam on facebook!

  • Thursday, April 21, 2011
  • Noufel Backer
  • There is no dearth of spam in the popular facebook.***Get Your Free Facebook T-Shirt, Register Now http://tinyurl.com/6ysc3jd*** is the newest in the list.Facebook groups are affected by this kind of spam link.if we click on this link the same link will be automatically posted again on that group.Here is a screen shot of that
    please please dont click on this link its another spam link that is spreading like a wild fire in the 600 million member facebook! 

    tags:facebook group spam get your free t shirt Register Now http://tinyurl.com/6ysc3jd*** new spam on facebook! 
    Read more...

    Monday, April 18, 2011

    2

    matlab program for circular convolution matlab code for convolution matlab code for circular convolution

  • Monday, April 18, 2011
  • Noufel Backer
  • circular convolution using matlab

    %circular convolution
    a=input('enter first sequence');
    b=input('enter second sequence');
    l1=length(a);
    l2=length(b);
    N=max(l1,l2);
    a=[a zeros(N-l1)];
    b=[b zeros(N-l2)];
    for n=0:N-1
        y(n+1)=0;
        for i=0:N-1;
            j=mod(n-i,N);
            y(n+1)=y(n+1)+a(i+1)*b(j+1);
        end
       
    end
    disp(y);
    x=1:N;
    stem(x,y);
           
    input
    enter first sequence[2 1 2 1]
    enter second sequence[1 2 3 4]
       
    output
    tags: matlab program for circular convolution matlab code for convolution matlab code for circular convolution circular convolution using matlab
     

    Read more...
    4

    matlab program for linear convolution matlab code for linear convolution linear convolution using matlab program

  • Noufel Backer
  • matlab program for linear convolution  
    %linear convolution
    a=input('enter the first sequence');
    b=input('enter second sequence');
    l1=length(a);
    l2=length(b);
    a=[a zeros(1,l2-1)];
    b=[b zeros(1,l1-1)];
    N=l1+l2-1;
    for k=1:N
        s=0;
        for i=1:k
            s=s+(a(i)*b(k+1-i));
        end
           c(k)=s;
    end
    l=length(c);
    n=1:1:l;
    disp(c);
    stem(n,c);
    xlabel('time');
    ylabel('amplitude');
    title('linear convolution');

    input

    enter the first sequence[2 1 1]
    enter second sequence[1 2 4]



    output
     tags:matlab program for linear convolution matlab program for convolution matlab code for linear convolution linear convolution using matlab program
    Read more...

    Sunday, April 17, 2011

    1

    Facebook event spam invite " Official app:see who has Viewed your profile?check out this!"

  • Sunday, April 17, 2011
  • Noufel Backer
  • I was surprised to find around 60 notifications when i signed into facebook.Most of them boasting about an event  "Official app:see who has Viewed your profile?check out this!"
    Dear FB friends please dont click on this link.it is a new kind of facebook event spam spreading rapidly through FB:Here is a screen shot of the spam event message





    When we click on this link the message shown in the pic will be sent automatically to all your friends.So dear friends please dont click on this link and save yourself from sending spam messages on facebook!please do share this post to all your fb friends to avoid spamming!
    tags:facebook event spam event spam invite facebook spam messages facebook spam notifications facebook spam link facebook spam applications facebook spam virus facebook spam bot facebook spam notice
    Read more...

    Wednesday, April 13, 2011

    0

    matlab program for fir hpf filter high pass filter fir design using matlab

  • Wednesday, April 13, 2011
  • Noufel Backer
  • matlab program for fir high pass filter
    clear all;
    w=input('enter cut off fre in hertz');
    N=input('no of samples');
    wc=2*pi*w;
    alpha=(N-1)/2;
    eps=.001;
    for n=0:1:N-1
        hd(n+1)=(sin(pi*(n-alpha+eps))-sin(wc*(n-alpha+eps)))/(pi*(n-alpha+eps));
    end
    wr=ones(1,N);
    hn=hd.*wr;
    w=0:.01:pi;
    h=freqz(hn,1,w);
    %absolute value plotting
    subplot(131);
    plot(w/pi,abs(h),'r');
    grid;
    xlabel('normalised freq');
    ylabel('mag');
    title('abs');
    subplot(132);
    plot(w/pi,angle(h),'g');
    xlabel('normalised freq');
    ylabel('mag');
    title('angle');
    %log magn plot
    subplot(133);
    plot(w/pi,20*log10(h),'b');
    grid;
    xlabel('normalised freq');
    ylabel('log mag');
    title('log mag');

    output

    enter frequency .25
    enter number of samples 25




    tags:fir hpf implementation using matlab matlab program for fir high pass filter design
    Read more...
    1

    matlab program for fir filter low pass matlab program for fir low pass filter

  • Noufel Backer
  •  matlab program for fir low pass filter
    w=input('enter cut off frequency in hertz');
    N=input('enter number of samples');
    wc=2*pi*w;
    alpha=(N-1)/2;
    eps=.001;
    for n=0:1:N-1;
        hd(n+1)=sin(wc*(n-alpha+eps))/(pi*(n-alpha+eps));
    end
    wr=ones(1,N);
    hn=hd.*wr;
    w=0:.01:pi;
    h=freqz(hn,1,w); %frequency response
    %absolute value
    subplot(131)
    plot(w/pi,abs(h),'r');
    grid;
    xlabel('normalised frequency');
    ylabel('magnitude');
    title('absolute value');
    %angle plotting
    subplot(132)
    plot(w/pi,angle(h),'g');
    grid;
    xlabel('normalised frequency');
    ylabel('magnitude');
    title('angle');
    %log plotting
    subplot(133)
    plot(w/pi,20*log(h),'b');
    grid;
    xlabel('normalised frequency');
    ylabel('log magnitude');
    title('log magnitude');

    output
    enter cut off frequency .25
    enter number of samples 25
    tags:fir low pass filter using matlab matlab fir lpf fir filter design using matlab matlab program for fir lpf design


    Read more...

    Thursday, April 7, 2011

    1

    facebook users statistics total number of facebook users in the world facebook users 2011 facebook users in india 2011

  • Thursday, April 7, 2011
  • Noufel Backer
  • Facebook has achieved a miraculous growth in the world during the last 2 years.Total number of facebook users has climbed up to more than 500 million users during the start of 2011.Now it is more than 660 million with United states dominating the chart with 154,971,360 users and india having 23,042,820 users on facebook.Here are some of the statistics of the number of facebook users

    Facebook Statistics as of 2011 april
    Total number of facebook users in the world:663,000,000+
    Facebook users in united states: 154,971,360
    No:of facebook users in india:23,042,820
    facebook users in india >18 years : 20,607,560
    facebook users in india in  <18 years:3,764,120 
    The number of male users in india:16,325,680
    number of female users in india:6,572,320

    here are the demographics of the facebook users in india



    tags:facebook users in india 2011 demographics facebook users in the world facebook users list facebook users demographics how many people in facebook facebook users piechart chart diagram facebook users statistics




    Read more...

    Saturday, April 2, 2011

    0

    India won ICC Cricket World Cup 2011 pictures|pictures of India Winning the cup|

  • Saturday, April 2, 2011
  • Noufel Backer




  • tags:india wins cricket world cup 2011 india won the world cup 2011 india won the cricket world cup india won the cricket world cup in which year india won cricket world cup 2011 by 6 wickets
    Read more...
    0

    India wins worldcup for the second time after 28 years!|India wins ICC World Cup 2011|India won the world cup

  • Noufel Backer



  • Yes!Dhoni's dashers have pulverised srilankan hopes to win the ICC world cup 2011!The gritty India won by 6 wicket the winning stroke made by Indian Captain Mahendra Singh dhoni with a mighty six!Mahendra Singh Dhoni was adjudged man of the match and man of the tournament award was given to the consistent Yuvraj Singh for his all round performance.Well done Team India!



    Read more...

    Friday, April 1, 2011

    2

    how to add adsense inside post |adsense ad units inside post area|adsense between posts

  • Friday, April 1, 2011
  • Noufel Backer
  • adsense inside posts can be easily added using the steps given below.
    • first you need to get your adsense code.those who dont know how t o get the adsense code can click this link https://www.google.com/adsense/support/bin/answer.py?answer=10191 to get your adsense code
    • Then you have to parse it.just visit this website http://www.blogcrowds.com/resources/parse_html.php and click on parse button on that site after copying adsense code
    • Then go to your  blogger dashboard and click design and under that select edit html
    • put a tick on the expand widgets template
    • Now search for this code <div class='post-body entry-content'>
    • after finding this type the following code below that line 
    <div style='float:center; margin: 0px 0px 0px 10px;'>
    "your parsed code"
    </div>

    this will put adsense inside the post just after the title.you can also change the postion of ad to left or right by changing  <div style='float:center; margin: 0px 0px 0px 10px;'> to <div style='float:right; margin: 0px 0px 0px 10px;'> for right alignment or <div style='float:left; margin: 0px 0px 0px 10px;'> for left alignment

    you can also add adsense ad just after post.for this search for <div class='post-footer'>
    and add the code
    <div style='float:center; margin: 0px 0px 0px 10px;'>
    "your parsed code"
    </div>
     i hope you like this tutorial.please fell free to ask any doubts.i am always here to help you!
    tags:adsense inside post adsense inside blogger post how to put adsense inside post
    Read more...