Wednesday, January 29, 2014

Pitbull and Jennifer Lopez Team Up for FIFA World Cup Song

Pitbull and Jennifer Lopez Team Up for FIFA World Cup  Song
Whether you grew up in the generation of Ricky Martin's "The Cup of Life" or Shakira's "Waka Waka," it's time to announce that the FIFA world cup might just have its third anthemic hit by latin stars. According toFIFA, a brand new Pitbull and Jeniffer Lopez collaboration called "We Are One (Ole Ola)" has been named as the official anthem for the 2014 World Cup in Brazil. The song also features Brazilian singer Claudia Leitte, and will be performed at the opening of the football tournament at the Arena de Sao Paulo on 12 June, 2014.
"I'm honored to join Jennifer Lopez and Claudia Leitte at the FIFA World Cup to bring the world together," Pitbull said in a statement. "I truly believe that this great game and the power of music will help unify us, because we are best when we are one."
Jeniffer Lopez had a much more personal link to the collaboration. When approached for a statement the "Jenny From the Block" singer took it back to her roots.

"I grew up in a house that loved futbol, so I am thrilled to be performing at the World Cup Opening Ceremonies with Pitbull and Claudia Leitte," says Jennifer Lopez. "This is an amazing celebration of global unity, competition and the sport."
The track will be released later this year in the lead up to the World Cup. It will also be included on the upcoming official 2014 Fifa World Cup album.

Tuesday, January 7, 2014

Circuits on Matrixboard
Soldering part
Compelled By: [Kshitij Wagle(me) & Samir Pokhrel (BEX/069)]




Traffic Light Program( C ):



 #include<reg51.h>
sbit R1=P1^2;
sbit Y1=P1^1;
sbit G1=P1^0;
sbit R2=P1^3;
sbit Y2=P1^4;
sbit G2=P1^5;
sbit R3=P2^2;
sbit Y3=P2^3;
sbit G3=P2^4;
sbit R4=P2^7;
sbit Y4=P2^6;
sbit G4=P2^5;


void msdelay(unsigned int t)
{
int i,j;
int k=100*t;
for(i=0;i<k;i++)
for(j=0;j<1275;j++);
}

void clear()
{
R1=0;
R2=0;
R3=0;
R4=0;
Y1=0;
Y2=0;
Y3=0;
Y4=0;
G1=0;
G2=0;
G3=0;
G4=0;
}


void phase1()
{
R1=1;
R2=1;
G3=1;
R4=1;
msdelay(25);
Y3=1;
Y1=1;
msdelay(5);
}

void phase2()
{
G1=1;
R2=1;
R3=1;
R4=1;
msdelay(25);
Y2=1;
Y1=1;
Y4=1;
msdelay(5);
}

void phase3()
{
R1=1;
G2=1;
R3=1;
G4=1;
msdelay(25);
Y2=1;
Y4=1;
msdelay(5);
}

void phase4()
{
R1=1;
G2=1;
R3=1;
R4=1;
msdelay(25);
Y1=1;
Y2=1;
Y3=1;
msdelay(5);
}

void phase5()
{
G1=1;
R2=1;
G3=1;
R4=1;
msdelay(25);
Y1=1;
Y3=1;
Y4=1;
msdelay(5);
}

void phase6()
{
R1=1;
R2=1;
R3=1;
G4=1;
msdelay(25);
Y3=1;
Y4=1;
msdelay(5);
}


void main()
{
P1=0x00;
P2=0x00;
while(1)
  {
 phase1();
 clear();
 phase2();
 clear();
 phase3();
 clear();
 phase4();
 clear();
 phase5();
 clear();
 phase6();
 clear();
  }

}


Design and Compelled by Engineer Kshitij Wagle | Blogger Theme by Horizon - Wagle | waglehorizon