Take it back
Take it back
Oh, take it back
I don't want your lovin' anymore
Let me live
Oh, let me live
It's not you who I sing for
So don't sit next to me
Sit by yourself...
I don't want to wonder
Whether you love me
I don't want to wonder
Whether you care
So don't try to woo me
Don't told try to fool me
Oh, I know all of your tricks
It's the possibility of staying in my corner
Monday, May 3, 2010
Sunday, May 2, 2010
LOVABLE THOUGHTS
Problems may come from "HAYWARDS"
You must take it as a "ROYAL CHALLENGE"
Else people will call you an "OLD MONK"
And stick a "BLACK LABEL" on you.
You must fight like a "BLUE RIBAND"
Live like a "BAGPIPER"
Walk like a "JOHNNY WALKER "
Work daily up to "8 PM"
With perfection of a "WHITE HORSE"
And think like a "DIRECTOR'S SPECIAL"
Only then you can become an "OFFICER'S CHOICE"
And your life will become "IMPERIAL BLUE"
And then you can have great value for your "SIGNATURE"
Problems may come from "HAYWARDS"
You must take it as a "ROYAL CHALLENGE"
Else people will call you an "OLD MONK"
And stick a "BLACK LABEL" on you.
You must fight like a "BLUE RIBAND"
Live like a "BAGPIPER"
Walk like a "JOHNNY WALKER "
Work daily up to "8 PM"
With perfection of a "WHITE HORSE"
And think like a "DIRECTOR'S SPECIAL"
Only then you can become an "OFFICER'S CHOICE"
And your life will become "IMPERIAL BLUE"
And then you can have great value for your "SIGNATURE"
Debate on Unemployment for Job
Recently, the biggest news about employment came in light. Wipro announced to add 11,000 fresher employees during the current fiscal (2010-11). Engineers will be 65% among them.
Mr Pratik Kumar who is the Wipro Ltd's Executive Vice-President, HR, Brand and Communications, said to The Hindu Business Line, “this decision to expand its potential talent pool to the non-engineering graduates was a ‘conscious one' that the company took several years ago and the multiple years of experience in following this practise has helped them scale up the numbers.
Further he adds, “Training costs may go up marginally because of the broadening the talent pool to non-engineers, this would be offset by the fact that they would come at different costs.”
Further Wipro said, “The Company added 5,325 employees in the fourth quarter. But it did not share the number of employees it plans to hire during the next one year. Unlike Infosys, Wipro does not give recruitment details for the next quarter or for the year.”
About the Attrition rate, www.thehindubusinessline.com, an online news portal about news writes, “The company's attrition rate (or employees leaving per hundred) in the IT business touched 17 per cent in the quarter ended March 2010 – a certain high compared to a range between 8.4 per cent and 13.4 per cent in the previous three quarters.”
About the overseas hiring, the news portal writes, “In another trend-setting HR exercise, Wipro has increased its local hires outside India substantially this year. Currently, almost 50 per cent of the overseas hires are locals.”
It is really the biggest news about employment in private sector. We already have been informed about 58 million new job opportunities in government sector.
Wipro is one of the world’s largest software companies. The company has decided to hire Engineers and technical persons in this fiscal year. Announcement of new job opportunities in Airline sectors was also a positive sign for the unemployment guys.
Recently, the biggest news about employment came in light. Wipro announced to add 11,000 fresher employees during the current fiscal (2010-11). Engineers will be 65% among them.
Mr Pratik Kumar who is the Wipro Ltd's Executive Vice-President, HR, Brand and Communications, said to The Hindu Business Line, “this decision to expand its potential talent pool to the non-engineering graduates was a ‘conscious one' that the company took several years ago and the multiple years of experience in following this practise has helped them scale up the numbers.
Further he adds, “Training costs may go up marginally because of the broadening the talent pool to non-engineers, this would be offset by the fact that they would come at different costs.”
Further Wipro said, “The Company added 5,325 employees in the fourth quarter. But it did not share the number of employees it plans to hire during the next one year. Unlike Infosys, Wipro does not give recruitment details for the next quarter or for the year.”
About the Attrition rate, www.thehindubusinessline.com, an online news portal about news writes, “The company's attrition rate (or employees leaving per hundred) in the IT business touched 17 per cent in the quarter ended March 2010 – a certain high compared to a range between 8.4 per cent and 13.4 per cent in the previous three quarters.”
About the overseas hiring, the news portal writes, “In another trend-setting HR exercise, Wipro has increased its local hires outside India substantially this year. Currently, almost 50 per cent of the overseas hires are locals.”
It is really the biggest news about employment in private sector. We already have been informed about 58 million new job opportunities in government sector.
Wipro is one of the world’s largest software companies. The company has decided to hire Engineers and technical persons in this fiscal year. Announcement of new job opportunities in Airline sectors was also a positive sign for the unemployment guys.
Thursday, April 29, 2010
Let's have a small program in that mean time....
C Program For Puzzle
#include
#include
#include
#include
>
#include
int mx,my,ans=0,p=4;
screen();
void button();
/* The main logic lies in displaying the numbers in the screen
The numbers are placed corresponding to their binary value
EX:In case of 14(binary equivalent is 01110).Therefore it will be
placed in 2,3 & 4 screen
*/
int s1[]={16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31};
int s2[]={8,9,10,11,12,13,14,15,24,25,26,27,28,29,30,31};
int s3[]={4,5,6,7,12,13,14,15,20,21,22,23,28,29,30,31};
int s4[]={2,3,6,7,10,11,14,15,18,19,22,23,26,27,30,31};
int s5[]={1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31};
int a1,a2,a3,a4,a5;
void main()
{
int gd=DETECT,gm;
initgraph(&gd,&gm,"c:\tc\bgi");
mouseini();
showmp();
action();
}
action()
{
int ans=0;
char st[10];
initialscreen();
while(1)
{
/* The X & Y coordinate of each function is calculated
with respect to mx "maximum of x value" & my "maximum of y value" */
if(click((mx/4)+95,(my/4)+100,(mx/4)+235,(my/4)+140,"Play..")==0)
{
a1=screen(s1,16);
a2=screen(s2,16);
a3=screen(s3,16);
a4=screen(s4,16);
a5=screen(s5,16);
ans=a1+a2+a3+a4+a5;
result(ans);
getch();
exit();
}
}
}
initialscreen()
{
mx=getmaxx(),my=getmaxy();
setmp();
setfillstyle(1,7);
bar(mx/4,my/4,3*mx/4,3*my/4);
setcolor(WHITE);
line(mx/4,my/4,3*mx/4,my/4);
line(mx/4,my/4,mx/4,3*my/4);
setcolor(BLACK);
line(mx/4,3*my/4,3*mx/4,3*my/4);
line(3*mx/4,my/4,3*mx/4,3*my/4);
setcolor(RED);
outtextxy((mx/4)+40,(my/4)+30,"THINK A NUMBER BETWEEN 1-31");
button((mx/4)+95,(my/4)+100,(mx/4)+235,(my/4)+140,"Play..");
}
screen(int *scr,int num)
{ int a,i,x1,y1;
char st[10];
mx=getmaxx(),my=getmaxy();
setmp();
setfillstyle(1,7);
bar(mx/4,my/4,3*mx/4,3*my/4);
setcolor(WHITE);
line(mx/4,my/4,3*mx/4,my/4);
line(mx/4,my/4,mx/4,3*my/4);
setcolor(BLACK);
line(mx/4,3*my/4,3*mx/4,3*my/4);
line(3*mx/4,my/4,3*mx/4,3*my/4);
setcolor(RED);
outtextxy((mx/4)+9,(my/4)+5,"TELL ME WHETHER THE NUMBER IS PRESENT?");
button((3*mx/4)-40 ,(3*my/4)-20,(3*mx/4)-5 ,(3*my/4)-5,"yes");
button((3*mx/4)-80 ,(3*my/4)-20,(3*mx/4)-45 ,(3*my/4)-5,"no");
x1=(mx/4)+80;
y1=(my/4)+65;
for(i=0;i
{
a=scr[i];
/*To convert the integer into string and then displaying it on the
graphic mode*/
itoa(a,st,10);
outtextxy(x1 ,y1,&st);
x1+=50;
if((i==3)||(i==7)||(i==11))
{
y1=y1+30;
x1=(mx/4)+80;
}
}
/*We have already noted that the numbers are placed in screen
corresponding to their binary value
To find the number we can convert these binary numbers to integers*/
while(1)
{
if (click((3*mx/4)-40 ,(3*my/4)-20,(3*mx/4)-5 ,(3*my/4)-5,"yes")==0)
{
ans=pow(2,p);
p=p-1;
return ans;
}
if (click((3*mx/4)-80 ,(3*my/4)-20,(3*mx/4)-45 ,(3*my/4)-5,"no")==0)
{
p=p-1;
return 0;
}
}
}
result(int ans)
{ char st[10];
mx=getmaxx(),my=getmaxy();
setmp();
setfillstyle(1,7);
bar(mx/4,my/4,3*mx/4,3*my/4);
setcolor(WHITE);
line(mx/4,my/4,3*mx/4,my/4);
line(mx/4,my/4,mx/4,3*my/4);
setcolor(BLACK);
line(mx/4,3*my/4,3*mx/4,3*my/4);
line(3*mx/4,my/4,3*mx/4,3*my/4);
setcolor(RED);
if(ans==0)
{
outtextxy((mx/4)+110,(my/4)+45,"I DONT BELEIVE");
outtextxy((mx/4)+60,(my/4)+60,"YOU MIGHT BE WRONG SOMEWHERE");
}
else
{
outtextxy((mx/4)+95,(my/4)+30,"THE NUMBER IS ");
itoa(ans,st,10);
outtextxy((mx/4)+205,(my/4)+30,st);
}
button((mx/4)+95,(my/4)+100,(mx/4)+235,(my/4)+140,"TRY AGAIN!");
button((mx/4)+95,(my/4)+150,(mx/4)+235,(my/4)+190,"EXIT");
while(1)
{
if (click((mx/4)+95,(my/4)+150,(mx/4)+235,(my/4)+190,"EXIT")==0)
{
closegraph();
restorecrtmode();
exit();
}
if (click((mx/4)+95,(my/4)+100,(mx/4)+235,(my/4)+140,"TRY AGAIN!")==0)
{
p=4;
action();
}
}
}
void button(int x1,int y1,int x2,int y2,char str[])
{
int xc,yc,i=0,l=0;
while(i
{
l+=4;
i++;
}
xc=(x2-x1)/2+x1-l;
yc=(y2-y1)/2+y1;
unpress(x1,y1,x2,y2);
settextstyle(0,0,0);
setcolor(RED);
outtextxy(xc,yc,str);
}
unpress(int x1,int y1,int x2,int y2)
{
setlinestyle(0,1,1);
setfillstyle(1,7);
bar(x1,y1,x2,y2);
setcolor(WHITE);
line(x1,y1,x2,y1);
line(x1,y1,x1,y2);
setcolor(0);
line(x1,y2,x2,y2);
line(x2,y1,x2,y2);
return 0;
}
press(int x1,int y1,int x2,int y2)
{
setlinestyle(0,1,1);
setfillstyle(1,7);
bar(x1,y1,x2,y2);
setcolor(0);
line(x1,y1,x2,y1);
line(x1,y1,x1,y2);
setcolor(WHITE);
line(x1,y2,x2,y2);
line(x2,y1,x2,y2);
return 0;
}
mouseini()
{
union REGS i,o;
i.x.ax=0;
int86(0x33,&i,&o);
return(o.x.ax);
}
showmp()
{
union REGS i,o;
i.x.ax=1;
int86(0x33,&i,&o);
return 0;
}
hidemp()
{
union REGS i,o;
i.x.ax=2;
int86(0x33,&i,&o);
return 0;
}
getmp(int *button,int *x,int *y)
{
union REGS i,o;
i.x.ax=3;
int86(0x33,&i,&o);
*button=o.x.bx;
*x=o.x.cx;
*y=o.x.dx;
return 0;
}
setmp()
{
union REGS i,o;
i.x.ax=4;
i.x.cx=(3*mx/4)+20;
i.x.dx=(3*my/4)+20;
int86(0x33,&i,&o);
}
click(int x1,int y1,int x2,int y2,char str[])
{
int button,x,y;
int xc,yc,i=0,l=0;
while(i
{
l+=4;
i++;
}
xc=(x2-x1)/2+x1-l;
yc=(y2-y1)/2+y1;
getmp(&button,&x,&y);
if( (x>x1 && xy1 && y
{
hidemp();
press(x1,y1,x2,y2);
setcolor(RED);
settextstyle(0,0,0);
outtextxy(xc,yc,str);
showmp();
while((button==1))
getmp(&button,&x,&y);
hidemp();
unpress(x1,y1,x2,y2);
showmp();
setcolor(RED);
settextstyle(0,0,0);
outtextxy(xc,yc,str);
for(i=50;i<500;i=i+50)
{
delay(10);
sound(i+200);
}
showmp();
nosound();
setcolor(RED);
settextstyle(0,0,0);
outtextxy(xc,yc,str);
return 0;
}
else return 1;
}
C Program For Puzzle
#include
#include
#include
#include
>
#include
int mx,my,ans=0,p=4;
screen();
void button();
/* The main logic lies in displaying the numbers in the screen
The numbers are placed corresponding to their binary value
EX:In case of 14(binary equivalent is 01110).Therefore it will be
placed in 2,3 & 4 screen
*/
int s1[]={16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31};
int s2[]={8,9,10,11,12,13,14,15,24,25,26,27,28,29,30,31};
int s3[]={4,5,6,7,12,13,14,15,20,21,22,23,28,29,30,31};
int s4[]={2,3,6,7,10,11,14,15,18,19,22,23,26,27,30,31};
int s5[]={1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31};
int a1,a2,a3,a4,a5;
void main()
{
int gd=DETECT,gm;
initgraph(&gd,&gm,"c:\tc\bgi");
mouseini();
showmp();
action();
}
action()
{
int ans=0;
char st[10];
initialscreen();
while(1)
{
/* The X & Y coordinate of each function is calculated
with respect to mx "maximum of x value" & my "maximum of y value" */
if(click((mx/4)+95,(my/4)+100,(mx/4)+235,(my/4)+140,"Play..")==0)
{
a1=screen(s1,16);
a2=screen(s2,16);
a3=screen(s3,16);
a4=screen(s4,16);
a5=screen(s5,16);
ans=a1+a2+a3+a4+a5;
result(ans);
getch();
exit();
}
}
}
initialscreen()
{
mx=getmaxx(),my=getmaxy();
setmp();
setfillstyle(1,7);
bar(mx/4,my/4,3*mx/4,3*my/4);
setcolor(WHITE);
line(mx/4,my/4,3*mx/4,my/4);
line(mx/4,my/4,mx/4,3*my/4);
setcolor(BLACK);
line(mx/4,3*my/4,3*mx/4,3*my/4);
line(3*mx/4,my/4,3*mx/4,3*my/4);
setcolor(RED);
outtextxy((mx/4)+40,(my/4)+30,"THINK A NUMBER BETWEEN 1-31");
button((mx/4)+95,(my/4)+100,(mx/4)+235,(my/4)+140,"Play..");
}
screen(int *scr,int num)
{ int a,i,x1,y1;
char st[10];
mx=getmaxx(),my=getmaxy();
setmp();
setfillstyle(1,7);
bar(mx/4,my/4,3*mx/4,3*my/4);
setcolor(WHITE);
line(mx/4,my/4,3*mx/4,my/4);
line(mx/4,my/4,mx/4,3*my/4);
setcolor(BLACK);
line(mx/4,3*my/4,3*mx/4,3*my/4);
line(3*mx/4,my/4,3*mx/4,3*my/4);
setcolor(RED);
outtextxy((mx/4)+9,(my/4)+5,"TELL ME WHETHER THE NUMBER IS PRESENT?");
button((3*mx/4)-40 ,(3*my/4)-20,(3*mx/4)-5 ,(3*my/4)-5,"yes");
button((3*mx/4)-80 ,(3*my/4)-20,(3*mx/4)-45 ,(3*my/4)-5,"no");
x1=(mx/4)+80;
y1=(my/4)+65;
for(i=0;i
{
a=scr[i];
/*To convert the integer into string and then displaying it on the
graphic mode*/
itoa(a,st,10);
outtextxy(x1 ,y1,&st);
x1+=50;
if((i==3)||(i==7)||(i==11))
{
y1=y1+30;
x1=(mx/4)+80;
}
}
/*We have already noted that the numbers are placed in screen
corresponding to their binary value
To find the number we can convert these binary numbers to integers*/
while(1)
{
if (click((3*mx/4)-40 ,(3*my/4)-20,(3*mx/4)-5 ,(3*my/4)-5,"yes")==0)
{
ans=pow(2,p);
p=p-1;
return ans;
}
if (click((3*mx/4)-80 ,(3*my/4)-20,(3*mx/4)-45 ,(3*my/4)-5,"no")==0)
{
p=p-1;
return 0;
}
}
}
result(int ans)
{ char st[10];
mx=getmaxx(),my=getmaxy();
setmp();
setfillstyle(1,7);
bar(mx/4,my/4,3*mx/4,3*my/4);
setcolor(WHITE);
line(mx/4,my/4,3*mx/4,my/4);
line(mx/4,my/4,mx/4,3*my/4);
setcolor(BLACK);
line(mx/4,3*my/4,3*mx/4,3*my/4);
line(3*mx/4,my/4,3*mx/4,3*my/4);
setcolor(RED);
if(ans==0)
{
outtextxy((mx/4)+110,(my/4)+45,"I DONT BELEIVE");
outtextxy((mx/4)+60,(my/4)+60,"YOU MIGHT BE WRONG SOMEWHERE");
}
else
{
outtextxy((mx/4)+95,(my/4)+30,"THE NUMBER IS ");
itoa(ans,st,10);
outtextxy((mx/4)+205,(my/4)+30,st);
}
button((mx/4)+95,(my/4)+100,(mx/4)+235,(my/4)+140,"TRY AGAIN!");
button((mx/4)+95,(my/4)+150,(mx/4)+235,(my/4)+190,"EXIT");
while(1)
{
if (click((mx/4)+95,(my/4)+150,(mx/4)+235,(my/4)+190,"EXIT")==0)
{
closegraph();
restorecrtmode();
exit();
}
if (click((mx/4)+95,(my/4)+100,(mx/4)+235,(my/4)+140,"TRY AGAIN!")==0)
{
p=4;
action();
}
}
}
void button(int x1,int y1,int x2,int y2,char str[])
{
int xc,yc,i=0,l=0;
while(i
{
l+=4;
i++;
}
xc=(x2-x1)/2+x1-l;
yc=(y2-y1)/2+y1;
unpress(x1,y1,x2,y2);
settextstyle(0,0,0);
setcolor(RED);
outtextxy(xc,yc,str);
}
unpress(int x1,int y1,int x2,int y2)
{
setlinestyle(0,1,1);
setfillstyle(1,7);
bar(x1,y1,x2,y2);
setcolor(WHITE);
line(x1,y1,x2,y1);
line(x1,y1,x1,y2);
setcolor(0);
line(x1,y2,x2,y2);
line(x2,y1,x2,y2);
return 0;
}
press(int x1,int y1,int x2,int y2)
{
setlinestyle(0,1,1);
setfillstyle(1,7);
bar(x1,y1,x2,y2);
setcolor(0);
line(x1,y1,x2,y1);
line(x1,y1,x1,y2);
setcolor(WHITE);
line(x1,y2,x2,y2);
line(x2,y1,x2,y2);
return 0;
}
mouseini()
{
union REGS i,o;
i.x.ax=0;
int86(0x33,&i,&o);
return(o.x.ax);
}
showmp()
{
union REGS i,o;
i.x.ax=1;
int86(0x33,&i,&o);
return 0;
}
hidemp()
{
union REGS i,o;
i.x.ax=2;
int86(0x33,&i,&o);
return 0;
}
getmp(int *button,int *x,int *y)
{
union REGS i,o;
i.x.ax=3;
int86(0x33,&i,&o);
*button=o.x.bx;
*x=o.x.cx;
*y=o.x.dx;
return 0;
}
setmp()
{
union REGS i,o;
i.x.ax=4;
i.x.cx=(3*mx/4)+20;
i.x.dx=(3*my/4)+20;
int86(0x33,&i,&o);
}
click(int x1,int y1,int x2,int y2,char str[])
{
int button,x,y;
int xc,yc,i=0,l=0;
while(i
{
l+=4;
i++;
}
xc=(x2-x1)/2+x1-l;
yc=(y2-y1)/2+y1;
getmp(&button,&x,&y);
if( (x>x1 && xy1 && y
{
hidemp();
press(x1,y1,x2,y2);
setcolor(RED);
settextstyle(0,0,0);
outtextxy(xc,yc,str);
showmp();
while((button==1))
getmp(&button,&x,&y);
hidemp();
unpress(x1,y1,x2,y2);
showmp();
setcolor(RED);
settextstyle(0,0,0);
outtextxy(xc,yc,str);
for(i=50;i<500;i=i+50)
{
delay(10);
sound(i+200);
}
showmp();
nosound();
setcolor(RED);
settextstyle(0,0,0);
outtextxy(xc,yc,str);
return 0;
}
else return 1;
}
Anushka Sharma:
Now its time to feel my girl "ANUSHKA SHARMA" hmmm there is no words to describe her beauty.. im totally mad,crazy about her..is model and actress in the Bollywood film industry. In 2008, she played the female lead role in the Bollywood film Rab Ne Bana Di Jodi, directed by Aditya Chopra, who earlier directed hits like Dilwale Dulhania Le Jayenge (1995) and Mohabbatein (2000).
Anushka Sharma, the most promising Hindi film actress is currently the hottest and the newest sensation in bollywood.
Anushka Sharma who was born in 1987 in Bangalore, Karnataka grew up dreaming of becoming a super model.
This is from Rab Ne Bana Di Jodi with super star SHAH RUKH KHAN
Now its time to feel my girl "ANUSHKA SHARMA" hmmm there is no words to describe her beauty.. im totally mad,crazy about her..is model and actress in the Bollywood film industry. In 2008, she played the female lead role in the Bollywood film Rab Ne Bana Di Jodi, directed by Aditya Chopra, who earlier directed hits like Dilwale Dulhania Le Jayenge (1995) and Mohabbatein (2000).
Anushka Sharma, the most promising Hindi film actress is currently the hottest and the newest sensation in bollywood.
Anushka Sharma who was born in 1987 in Bangalore, Karnataka grew up dreaming of becoming a super model.
This is from Rab Ne Bana Di Jodi with super star SHAH RUKH KHAN
Clinical CHENNAI crowned Champions
MS Dhoni has added another feather to his captaincy hat.Dhoni cited a motivational speech from team owner N Srinivasan as one of the significant moments of the campaign, and expressed satisfaction in the performance of the team's domestic contingent. Suresh Raina crowned a hugely impressive season with a match-winning hand of 57, and will be one of the key players as India look to regain the Twenty20 World Cup that they won in 2007.
Doug Bollinger isn't in that class as a left-arm pacer, but there's little doubt that it was his arrival as a late replacement for injured stars that transformed Chennai's season. "Our domestic pace bowlers didn't bowl very well," said Dhoni. Bollinger did, especially in tandem with the outstanding R Ashwin. "He has done the job of a seamer for us," said Dhoni. "He's an effective bowler and he has that carrom ball to confuse batsmen."
Pollard sizzles, Dhoni stays cool: With 55 required off 18, Pollard hits 22 runs in the 18th over, but smart field placings and bowling in the 19th consume Pollard.
Chennai Super Kings pose with the IPL trophy, Chennai Super Kings v Mumbai Indians, IPL final, DY Patil Stadium,
his deputy Suresh Raina capitalised on two dropped catches to score a crucial fifty, and Chennai Super Kings defended with aggression, smartness and flair to win the third IPL.
MS Dhoni has added another feather to his captaincy hat.Dhoni cited a motivational speech from team owner N Srinivasan as one of the significant moments of the campaign, and expressed satisfaction in the performance of the team's domestic contingent. Suresh Raina crowned a hugely impressive season with a match-winning hand of 57, and will be one of the key players as India look to regain the Twenty20 World Cup that they won in 2007.
Doug Bollinger isn't in that class as a left-arm pacer, but there's little doubt that it was his arrival as a late replacement for injured stars that transformed Chennai's season. "Our domestic pace bowlers didn't bowl very well," said Dhoni. Bollinger did, especially in tandem with the outstanding R Ashwin. "He has done the job of a seamer for us," said Dhoni. "He's an effective bowler and he has that carrom ball to confuse batsmen."
Pollard sizzles, Dhoni stays cool: With 55 required off 18, Pollard hits 22 runs in the 18th over, but smart field placings and bowling in the 19th consume Pollard.
Chennai Super Kings pose with the IPL trophy, Chennai Super Kings v Mumbai Indians, IPL final, DY Patil Stadium,
his deputy Suresh Raina capitalised on two dropped catches to score a crucial fifty, and Chennai Super Kings defended with aggression, smartness and flair to win the third IPL.
Sunday, April 25, 2010
Ahhh....Tempera for the Childrens.....
So....here is something I found on DickBlick art supplies. I think I'm going to order them, they look like they would have great color and be "easy". Has anyone tried these before?
http://www.dickblick.com/products/blick-tempera-cakes/
I'll let you know what I think of them...look fun though.
Hope you are all having a great week!!!
Thanks for peeking :)
New Painting "FISH TALES"
http://www.dickblick.com/products/blick-tempera-cakes/
I'll let you know what I think of them...look fun though.
Hope you are all having a great week!!!
Thanks for peeking :)
New Painting "FISH TALES"
Hey there all!!
Hope everyone is having a wonderful Summer
It's been so beautiful here and we spent most of the day today outside!!!
Feels so good to have the sun on my face again.
Here is a painting I just finished and listed on Ebay.
Subscribe to:
Posts (Atom)