<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3157116677331327281</id><updated>2011-11-27T15:14:41.023-08:00</updated><category term='downloader'/><category term='IDM'/><category term='download accelerator'/><category term='latest download manager'/><category term='free idm download'/><title type='text'>MegaHut</title><subtitle type='html'>Latest softwares,just one click away...</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>38</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-6509798132607518280</id><published>2010-11-24T13:57:00.000-08:00</published><updated>2010-11-24T13:58:22.748-08:00</updated><title type='text'>Simple Itrative</title><content type='html'>#include&lt;iostream.h&gt;&lt;br /&gt;#include&lt;math.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;#include&lt;process.h&gt;&lt;br /&gt;#define f(x) 0.5*(cos(x)+3)&lt;br /&gt;int n;&lt;br /&gt;float e,x0,x1;&lt;br /&gt;void main(void)&lt;br /&gt;{&lt;br /&gt; int i,n,flag=1;&lt;br /&gt; float x2;&lt;br /&gt; char ch;&lt;br /&gt; cout&lt;&lt;"\n\n\tSIMPLE ITRATIVE METHOD";&lt;br /&gt; cout&lt;&lt;"\n\n\tENTER THE VALUE OF X0 :";&lt;br /&gt; cin&gt;&gt;x0;&lt;br /&gt; cout&lt;&lt;"\n\n\tENTER THE VALUE OF E :";&lt;br /&gt; cin&gt;&gt;e;&lt;br /&gt; cout&lt;&lt;"\n\n\tENTER THE VALUE OF N :";&lt;br /&gt; cin&gt;&gt;n;&lt;br /&gt; x1=f(x0);&lt;br /&gt; for(i=0;i&lt;n &amp;&amp; flag;i++;&lt;br /&gt; {&lt;br /&gt;  x2=x1-x0;&lt;br /&gt;  if(x2&lt;0)&lt;br /&gt;    x2=x2*(-1);&lt;br /&gt;     if(x2&lt;e)&lt;br /&gt;      flag=0;&lt;br /&gt;     else&lt;br /&gt;       {&lt;br /&gt;         x0=x1;&lt;br /&gt;         x1=f(x0);&lt;br /&gt;       }&lt;br /&gt; }&lt;br /&gt; if(flag==1)&lt;br /&gt;  {&lt;br /&gt;   cout&lt;&lt;"\n\n\tNO Convergence";&lt;br /&gt;   getch();&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt;  cout&lt;&lt;"\n\nAfter\t"&lt;&lt;i&lt;&lt;"Iterations,Root Is\t"&lt;&lt;x1;&lt;br /&gt;  getch();&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;a href="http://beyshare.com/en/download/KHW6CsTCMore/Simple+Iterative.txt"&gt;Download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-6509798132607518280?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/6509798132607518280/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2010/11/simple-itrative.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/6509798132607518280'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/6509798132607518280'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2010/11/simple-itrative.html' title='Simple Itrative'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-2289867945438098159</id><published>2010-11-24T13:55:00.000-08:00</published><updated>2010-11-24T13:56:51.515-08:00</updated><title type='text'>Secnt Method</title><content type='html'>#include&lt;iostream.h&gt;&lt;br /&gt;#include&lt;math.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;#define f(x) (sin(x)-5*x+2)&lt;br /&gt;int n;&lt;br /&gt;float e,X0,x1;&lt;br /&gt;void main(void)&lt;br /&gt;{&lt;br /&gt; int i,flag;&lt;br /&gt; float x2,f1,f0,x3,temp,denom;&lt;br /&gt; char ch;&lt;br /&gt; cout&lt;&lt;"\n\n\tSECANT METHOD";&lt;br /&gt; cout&lt;&lt;"\n\n\tENTER THE VALUE OF X0 :";&lt;br /&gt; cin&gt;&gt;x0;&lt;br /&gt; cout&lt;&lt;"\n\n\tENTER THE VALUE OF X1 :";&lt;br /&gt; cin&gt;&gt;x1;&lt;br /&gt; cout&lt;&lt;"\n\n\tENTER THE VALUE OF N :";&lt;br /&gt; cin&gt;&gt;n;&lt;br /&gt; cout&lt;&lt;"\n\n\tENTER THE VALUE OF E :";&lt;br /&gt; cin&gt;&gt;e;&lt;br /&gt; for(i=0;i&lt;n &amp;&amp; flag;i++)&lt;br /&gt;  {&lt;br /&gt;   f0=f(x0);&lt;br /&gt;   f1=f(x1);&lt;br /&gt;   denom=f1-f0;&lt;br /&gt;   temp=denom;&lt;br /&gt;   if(temp=&lt;0)&lt;br /&gt;     temp=temp*(-1); &lt;br /&gt;   if(temp&lt;e)&lt;br /&gt;     {&lt;br /&gt;      cout&lt;&lt;"\n\n\tDENOMINATOR TOO SMALL";&lt;br /&gt;      flag=0;&lt;br /&gt;      break;&lt;br /&gt;     }&lt;br /&gt;   x2=((x0*f1)-(x1*f0))/denom;&lt;br /&gt;   x3=x2-x1;&lt;br /&gt;   if(x3&lt;0)&lt;br /&gt;    x3=x3*(-1);&lt;br /&gt;   if(x3&lt;e)&lt;br /&gt;     {&lt;br /&gt;      cout&lt;&lt;"\n\n\tAFTER"&lt;&lt;i&lt;&lt;"ITERATIONS,ROOT IS :"&lt;&lt;x2;&lt;br /&gt;      flag=0;&lt;br /&gt;     }&lt;br /&gt;   x0=x1;&lt;br /&gt;   x1=x2;&lt;br /&gt;  }&lt;br /&gt; if(flag=1)&lt;br /&gt;   cout&lt;&lt;"\n\n\tNO CONVERGENCE";&lt;br /&gt; getch();&lt;br /&gt;}&lt;br /&gt;&lt;a href="http://beyshare.com/en/download/JiqxyaCBbkAn/Secant+Method.txt"&gt;Download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-2289867945438098159?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/2289867945438098159/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2010/11/secnt-method.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/2289867945438098159'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/2289867945438098159'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2010/11/secnt-method.html' title='Secnt Method'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-5575626883706395127</id><published>2010-11-24T13:53:00.000-08:00</published><updated>2010-11-24T13:55:08.244-08:00</updated><title type='text'>Regula Falsi</title><content type='html'>#include&lt;iostream.h&gt;&lt;br /&gt;#include&lt;math.h&gt;&lt;br /&gt;#inclde&lt;processing.h&gt;&lt;br /&gt;#define f(x)(sin(x)-5*x+2)&lt;br /&gt;int n;&lt;br /&gt;float e,x0,x1;&lt;br /&gt;void main(void)&lt;br /&gt;{&lt;br /&gt;int i,flag=1;&lt;br /&gt;float x2,f1,f0,x3,temp,denom,x4,f,f2;&lt;br /&gt;char ch;&lt;br /&gt;cout&lt;&lt;"\n\n\tRegula Falsi Method";&lt;br /&gt;cout&lt;&lt;"\n\n\tEnter The Vale Of X0\t";&lt;br /&gt;cin&gt;&gt;x0;&lt;br /&gt;cout&lt;&lt;"\n\n\tEnter The Vale Of X1:";&lt;br /&gt;cin&gt;&gt;x1;&lt;br /&gt;cout&lt;&lt;"\n\n\tEnter The Vale Of N:";&lt;br /&gt;cin&gt;&gt;n;&lt;br /&gt;cout&lt;&lt;"\n\n\tEnter The Vale Of E:";&lt;br /&gt;cin&gt;&gt;e;&lt;br /&gt;for(i=0;i&lt;n &amp;&amp; flag;i++)&lt;br /&gt; {&lt;br /&gt;  f0=f(x0);&lt;br /&gt;  f1=f(x1);&lt;br /&gt;  denom=f1-f0;&lt;br /&gt;  temp=denom;&lt;br /&gt;  if(temp=&lt;0)&lt;br /&gt;    temp=temp*(-1);&lt;br /&gt;  if(temp&lt;e)&lt;br /&gt;    {&lt;br /&gt;     cout&lt;&lt;"\n\n\tDenominator Too Small";&lt;br /&gt;     flag=0;&lt;br /&gt;     break;&lt;br /&gt;    }&lt;br /&gt;  f=f0*f1;&lt;br /&gt;  if(f&gt;0)&lt;br /&gt;    {&lt;br /&gt;     cout&lt;&lt;"\n\n\tThere is no root";&lt;br /&gt;     flag=0;&lt;br /&gt;     break;&lt;br /&gt;    }&lt;br /&gt;  x2=((x0*f1)-(x1*f0))/denom;&lt;br /&gt;  f2=f(x2);&lt;br /&gt;  f=f2*f1;&lt;br /&gt;  x3=x2-x1;&lt;br /&gt;  if(x3&lt;0)&lt;br /&gt;   x3=x3*(-1);&lt;br /&gt;  if(x3&lt;e)&lt;br /&gt;    {&lt;br /&gt;     cout&lt;&lt;"\n\n\tAfter\t"&lt;&lt;i&lt;&lt;"\tIterations,Root Is\t"&lt;&lt;x2;&lt;br /&gt;     getch();&lt;br /&gt;     flag=0;&lt;br /&gt;    }&lt;br /&gt;  if(f&lt;0)&lt;br /&gt;     x0=x2;&lt;br /&gt;  else&lt;br /&gt;     x1=x2;&lt;br /&gt;  x4=x1-x0;&lt;br /&gt;  if(x4&lt;0)&lt;br /&gt;    x4=x4*(-1);&lt;br /&gt;  if(x4&lt;e)&lt;br /&gt;    {&lt;br /&gt;     cout&lt;&lt;"\n\nNo Convergence";&lt;br /&gt;     getch();&lt;br /&gt;     flag=0;&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;if(flag=1)&lt;br /&gt;  {&lt;br /&gt;   cout&lt;&lt;"\n\n\tValue of root :"&lt;&lt;x2;&lt;br /&gt;   getch();&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;a href="http://beyshare.com/en/download/ayGKpFAc9iop/Regula+falsi.txt"&gt;Download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-5575626883706395127?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/5575626883706395127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2010/11/regula-falsi.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/5575626883706395127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/5575626883706395127'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2010/11/regula-falsi.html' title='Regula Falsi'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-3375997595365598470</id><published>2010-11-24T13:51:00.000-08:00</published><updated>2010-11-24T13:53:22.168-08:00</updated><title type='text'>Newton FRWD nd BACKWRD</title><content type='html'>#include&lt;iostream.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;#inlude&lt;process.h&gt;&lt;br /&gt;float interval,x0,p,array[20][20]={0.0};&lt;br /&gt;int no,col,x,y;&lt;br /&gt;void difftable()&lt;br /&gt;{&lt;br /&gt; cout&lt;&lt;"\tDIFFERENET TABLE";&lt;br /&gt; cout&lt;&lt;"\n\n\tENTER THE FIRST VALUE: ";&lt;br /&gt; cin&gt;&gt;array[0][0];&lt;br /&gt; cout&lt;&lt;"\n\tENTER THE INTERVAL : ";&lt;br /&gt; cin&gt;&gt;interval;&lt;br /&gt; cout&lt;&lt;"\n\tENTER TOTAL NO. OF X:";&lt;br /&gt; cin&gt;&gt;no;&lt;br /&gt; for(int i=1;i&lt;no;i++)&lt;br /&gt;  {&lt;br /&gt;   array[i][0]=array[i-1][0]+interval;&lt;br /&gt;  }&lt;br /&gt; cout&lt;&lt;"\n\tENTER FUNCTIONAL VALUES :\n";&lt;br /&gt; for(i=0;i&lt;no;i++)&lt;br /&gt;  {&lt;br /&gt;   cout&lt;&lt;"\tX("&lt;&lt;i&lt;&lt;")=";&lt;br /&gt;   cin&gt;&gt;array[i][1];&lt;br /&gt;  }&lt;br /&gt; cout&lt;&lt;"\n\tHOW MANY COLUMNS ARE REQUIRED :";&lt;br /&gt; cin&gt;&gt;col;&lt;br /&gt; for(i=2;i&lt;=(col+2);i++)&lt;br /&gt;  {&lt;br /&gt;   for(int j=0;j&lt;=(no-i);j++)&lt;br /&gt;    {&lt;br /&gt;     array[j][i]=array[j+1][i-1]-array[j][i-1];&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt; clrscr();&lt;br /&gt; cout&lt;&lt;""\t\tDIFFERENCE TABLE\n";&lt;br /&gt; cout&lt;&lt;X       F(X)   ";&lt;br /&gt; for(j=1;i&lt;=col;i++)&lt;br /&gt;  {&lt;br /&gt;   cout&lt;&lt;"     col    "&lt;&lt;i;&lt;br /&gt;  }&lt;br /&gt; cout&lt;&lt;"\n";&lt;br /&gt; for(i=0;i&lt;no;i++)&lt;br /&gt;  {&lt;br /&gt;   cout&lt;&lt;"  "&lt;&lt;array[i][0]&lt;&lt;"\n\n";&lt;br /&gt;  }&lt;br /&gt; x=8;y=3;&lt;br /&gt; for(i=1;i&lt;=(col+1);i++)&lt;br /&gt;  {&lt;br /&gt;   gotoxy(x,y);&lt;br /&gt;   for(int j=0;j&lt;=(no-i);j++)&lt;br /&gt;    {&lt;br /&gt;     cout&lt;&lt;array[j][i];&lt;br /&gt;     y+=2;&lt;br /&gt;     gotoxy(x,y);&lt;br /&gt;    }&lt;br /&gt;   x+=9;y=i+3;&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;void findx()&lt;br /&gt;{&lt;br /&gt; float xp;&lt;br /&gt; cout&lt;&lt;"\n\tXP FOR WICH VALUE OF F(X) IS REQUIRED:  ";&lt;br /&gt; cin&gt;&gt;xp;&lt;br /&gt; int i=0;&lt;br /&gt; while(((xp-array[i][0]/interval&gt;1)&amp;&amp;(I&lt;no))&lt;br /&gt;  {&lt;br /&gt;   i++;&lt;br /&gt;  }&lt;br /&gt; x0=i;&lt;br /&gt; p=(xp-array[x0][0]/interval;&lt;br /&gt;}&lt;br /&gt;void nford()&lt;br /&gt;{&lt;br /&gt; findx();&lt;br /&gt; cout&lt;&lt;"\n\n\tanswr= ";&lt;br /&gt; cout&lt;&lt;(array[x0][1]+(p*array[x0][2]+(p*(p-1)/2*array[x0][3])+p*(p-1)*(p-2)/6*array[x0][4])+(p*(p-1)*(p-2)*(p-3)/24*array[x0][5]);&lt;br /&gt;}&lt;br /&gt;void nback()&lt;br /&gt;{&lt;br /&gt; findx();&lt;br /&gt; cout&lt;&lt;"\n\n\tanswer= ";&lt;br /&gt; cout&lt;&lt;(array[x0][1]+(p*array[x0-1][2]+(p*(p+1)/2*array[x0-2][3])+p*(p+1)*(p+2)/6*array[x0-3][4])+(p*(p+1)*(p+2)*(p+3)/24*array[x0-4][5]);&lt;br /&gt;}&lt;br /&gt;void main(void)&lt;br /&gt;{&lt;br /&gt; clrscr();difftable();getch();&lt;br /&gt; int choice;&lt;br /&gt; while(1)&lt;br /&gt; {&lt;br /&gt;  clrscr();&lt;br /&gt;  cout&lt;&lt;"\n\n\t\tMAIN MANU";&lt;br /&gt;  cout&lt;&lt;"\n\n\tFORWARD DIFFERENCE INTERPOLATION FORMULA --- 1";&lt;br /&gt;  cout&lt;&lt;"\n\n\tBACKWARD DIFFERENCE INTERPOLATION FORMULA --- 2";&lt;br /&gt;  cout&lt;&lt;"\n\n\tTO EXIT---------------------------------------3";&lt;br /&gt;  cout&lt;&lt;"\n\n\n\tENTER YOUR CHOICE :";&lt;br /&gt;  cin&gt;&gt;choice;&lt;br /&gt;  switch(choice)&lt;br /&gt;   {&lt;br /&gt;    case 1:clrscr();nford();getch();break;&lt;br /&gt;    case 2:clrscr();nback();getch();break;&lt;br /&gt;    case 3:exit(0)&lt;br /&gt;   }&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;a href="http://beyshare.com/en/download/uEqAjE3iSngp/Newton%27s+Forward+nd+backward.txt"&gt;Download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-3375997595365598470?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/3375997595365598470/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2010/11/newton-frwd-nd-backwrd.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/3375997595365598470'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/3375997595365598470'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2010/11/newton-frwd-nd-backwrd.html' title='Newton FRWD nd BACKWRD'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-1013144481794697603</id><published>2010-11-24T13:48:00.000-08:00</published><updated>2010-11-24T13:50:40.601-08:00</updated><title type='text'>Newton Rophson</title><content type='html'>#include&lt;iostream.h&gt;&lt;br /&gt;#include&lt;math.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;#define f(x) (pow(x,2)-2*x-2)&lt;br /&gt;#define f1(y) (2*y-2)&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt; int i,flag=1;&lt;br /&gt; cout&lt;&lt;"\n\n\tNEWTON RAPHSON METHOD\n";&lt;br /&gt; cout&lt;&lt;"\n\tEnter The Value Of X0 :";&lt;br /&gt; cin&gt;&gt;x0;&lt;br /&gt; cout&lt;&lt;"\n\tEnter The Value Of N :";&lt;br /&gt; cin&gt;&gt;n;&lt;br /&gt; cout&lt;&lt;"\n\tEnter The Value Of E :";&lt;br /&gt; cin&gt;&gt;e;&lt;br /&gt; for(i=0;i&lt;n &amp;&amp; flag;i++)&lt;br /&gt;  {&lt;br /&gt;   f=f(x0);&lt;br /&gt;   fd=f1(x0);&lt;br /&gt;   x1=x0-f/fd;&lt;br /&gt;   x2=x1-x0;&lt;br /&gt;   if(x2&lt;0)&lt;br /&gt;    x2=x2*(-1);&lt;br /&gt;   if(x2&lt;e)&lt;br /&gt;    flag=0;&lt;br /&gt;   else&lt;br /&gt;    x0=x1;&lt;br /&gt;  }&lt;br /&gt; if(flag==)&lt;br /&gt;  {&lt;br /&gt;   cout&lt;&lt;"\n\n\n\n\tNO CONVERGENCE\n";&lt;br /&gt;   getch();&lt;br /&gt;  }&lt;br /&gt; else&lt;br /&gt;  {&lt;br /&gt;   cout&lt;&lt;"\n\n\n\tAFTER"&lt;&lt;i&lt;&lt;"ITERATIONS,THE ROOT IS: "x1;&lt;br /&gt;   getch();&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;a href="http://beyshare.com/en/download/WP4zkfFtXD37/Newton+Raphson.txt"&gt;Download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-1013144481794697603?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/1013144481794697603/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2010/11/newton-rophson.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1013144481794697603'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1013144481794697603'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2010/11/newton-rophson.html' title='Newton Rophson'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-7161653646898125237</id><published>2010-11-24T13:47:00.000-08:00</published><updated>2010-11-24T13:48:29.618-08:00</updated><title type='text'>Jacobi</title><content type='html'>#include&lt;iostream.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;#include&lt;stdio.h&gt;&lt;br /&gt;#define size 8&lt;br /&gt;static float temp,data[size][size],x[10],x1[10];&lt;br /&gt;short no_eq,itr;&lt;br /&gt;void main(void)&lt;br /&gt;{&lt;br /&gt; short i,j,k=8,I=20,count=1;&lt;br /&gt;clrscr();&lt;br /&gt;gotoxy(24,1);cout&lt;&lt;"JACOBI METHOD";&lt;br /&gt;gotoxy(17,2);&lt;br /&gt;cout&lt;&lt;"*************************\n";&lt;br /&gt;cout&lt;&lt;"\nHOW MANY EQUATIONS:";&lt;br /&gt;cin&gt;&gt;no_eq;&lt;br /&gt;cout&lt;&lt;"\nENTER DATA FOR EQUATIONS";&lt;br /&gt;cout&lt;&lt;"\n======================";&lt;br /&gt;for(i=0;i&lt;no_eq-1;i++)&lt;br /&gt;for(j=0;j&lt;=no_eq;j++)&lt;br /&gt;{&lt;br /&gt; gotoxy(I,k);&lt;br /&gt;cin&gt;&gt;data[i][j];&lt;br /&gt;I+8;&lt;br /&gt;if(j==no_rq)&lt;br /&gt; {&lt;br /&gt;  k++;&lt;br /&gt;  I+20;&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;cout&lt;&lt;"\nHOW MANY ITERATIONS YOU WANT TO DO:";&lt;br /&gt;cin&gt;&gt;itr;&lt;br /&gt;for(i=0;i&lt;=no_eq-1;i++)&lt;br /&gt;{&lt;br /&gt;temp=data[i][i];&lt;br /&gt; for(j=0;j&lt;=no_eq;j++)&lt;br /&gt; data[i][j]/=temp;&lt;br /&gt;}&lt;br /&gt;cout&lt;&lt;"\n\nITERATIONS           RESULT\n\n";&lt;br /&gt; while(count&lt;=itr)&lt;br /&gt; {&lt;br /&gt;  for(i=0;i&lt;==no_eq-1;i++)&lt;br /&gt;   {&lt;br /&gt;    x1(i)-=data[i][no_eq];&lt;br /&gt;    for(j=no_eq-1;j&gt;=0;j--)&lt;br /&gt;    {&lt;br /&gt;     if(i==j)&lt;br /&gt;       j--;&lt;br /&gt;       x1[i]-=data[i][j]*x[j];&lt;br /&gt;     }&lt;br /&gt;   }&lt;br /&gt;cout&lt;&lt;"                   "&lt;c&lt;count;  &lt;br /&gt;for(k=o;k&lt;=no_eq-1;k++)&lt;br /&gt;   {&lt;br /&gt;   x[k]=x1[k];&lt;br /&gt;   printf("      %9.4f',x[k]);&lt;br /&gt;   }&lt;br /&gt;   cout&lt;&lt;"\n";&lt;br /&gt;   count++;&lt;br /&gt; }&lt;br /&gt;getch();&lt;br /&gt;}&lt;br /&gt;&lt;a href="http://beyshare.com/en/download/7zVBhstxfbfu/Jacobi.txt"&gt;Download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-7161653646898125237?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/7161653646898125237/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2010/11/jacobi.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7161653646898125237'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7161653646898125237'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2010/11/jacobi.html' title='Jacobi'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-2864759989995256503</id><published>2010-11-24T13:45:00.000-08:00</published><updated>2010-11-24T13:46:55.178-08:00</updated><title type='text'>Guassian Elimination</title><content type='html'>#include&lt;iostream.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;float temp,arr[10][6],answer[6];&lt;br /&gt;int noofeq;&lt;br /&gt;void readata()&lt;br /&gt;{&lt;br /&gt; short i,,k=8,I=20;&lt;br /&gt; gotoxy(24,1);&lt;br /&gt; count&lt;&lt;"GAUSSIAN ELIMINATION METHOD";&lt;br /&gt; gotoxy(24,2);&lt;br /&gt; cout&lt;&lt;"*****************************";&lt;br /&gt; count&lt;&lt;"\n\tHOW MANY EQUATIONS:";&lt;br /&gt; cin&gt;&gt;noofeq;&lt;br /&gt; cout&lt;&lt;"\n\tENTER DATA FOR EQUATIONS:";&lt;br /&gt; cout&lt;&lt;"\n\t==========================";&lt;br /&gt; for(i=0;i&lt;=noofeq-1;i++)&lt;br /&gt; for(j=0;j&lt;=noofeq;j++)&lt;br /&gt;   { &lt;br /&gt;    gotoxy(1,k);&lt;br /&gt;    cin&gt;&gt;arr[i][j];&lt;br /&gt;    I+=8;&lt;br /&gt;    if(j=noofeq)&lt;br /&gt;     {&lt;br /&gt;      k++;&lt;br /&gt;      I=20;&lt;br /&gt;     }&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;void print_result()&lt;br /&gt;{&lt;br /&gt; int i,j=1;&lt;br /&gt; cout&lt;&lt;"\n\tFINAL RESULT            :";&lt;br /&gt; cout&lt;&lt;"\n\t============================\n";&lt;br /&gt; for(i==noofeq-1;i&gt;=0;i--)&lt;br /&gt; {&lt;br /&gt;  cout&lt;&lt;"\tX"&lt;&lt;j++&lt;&lt;":\t&lt;&lt;answer[i]&lt;&lt;end 1;&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;int i,j,k,I=1,p=1;&lt;br /&gt;clrscr();&lt;br /&gt;readata();&lt;br /&gt;for(i=1;i&lt;=noofeq;i++)&lt;br /&gt;  {&lt;br /&gt;   for(j=i-1;j&lt;=noofeq;j++)&lt;br /&gt;   arr[noofeq+i-1][j]=arr[i-1][j]/arr[i-1][i-1];&lt;br /&gt;   for(j=i;i&lt;=noofeq;i++)&lt;br /&gt;    {&lt;br /&gt;     temp=arr[j][i-1];&lt;br /&gt;      for(k=i-1;k&lt;=noofeq;k++)&lt;br /&gt;       arr[j][k]-=arr[noofeq+i-1][k]*temp;&lt;br /&gt;    }&lt;br /&gt;   }&lt;br /&gt;temp=0;k=1;&lt;br /&gt;answer[0]=arr[2*noofeq-1][noofeq];&lt;br /&gt;for(j=2*noofeq-1;j&gt;noofeq;j--)&lt;br /&gt;  {&lt;br /&gt;   for(k=1;k&lt;=p;k++)&lt;br /&gt;     temp+=answer[k-1]*arr[j-1][noofeq-k];&lt;br /&gt;   answer[p++]=arr[j-1](noofeq)-temp;&lt;br /&gt;   temp=0;&lt;br /&gt;  }&lt;br /&gt; print_result();&lt;br /&gt;}&lt;br /&gt;&lt;a href="http://beyshare.com/en/download/kSvQXcGmgmLO/Guassian+Elimination.txt"&gt;Dowanload&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-2864759989995256503?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/2864759989995256503/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2010/11/guassian-elimination.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/2864759989995256503'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/2864759989995256503'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2010/11/guassian-elimination.html' title='Guassian Elimination'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-1353018308763194233</id><published>2010-11-24T13:32:00.000-08:00</published><updated>2010-11-24T13:44:46.841-08:00</updated><title type='text'>Bisection method</title><content type='html'>&lt;div&gt;#include&lt;iostream.h&gt;&lt;/div&gt;&lt;div&gt;#include&lt;math.h&gt;&lt;/div&gt;&lt;div&gt;#include&lt;conio.h&gt;&lt;/div&gt;&lt;div&gt;#define f(x)(sin(x)-5*x+2)&lt;/div&gt;&lt;div&gt;float e,x1,x2;&lt;/div&gt;&lt;div&gt;voiad main(void)&lt;/div&gt;&lt;div&gt;{&lt;/div&gt;&lt;div&gt; int i,x1,x2;&lt;/div&gt;&lt;div&gt; float x3,f,f1,f2,f3,temp;&lt;/div&gt;&lt;div&gt; cout&lt;&lt;"\n\n\tBISECTION METHOD\n";&lt;/div&gt;&lt;div&gt; cout&lt;&lt;"\n\tEnter The Value Of X1 :";&lt;/div&gt;&lt;div&gt; cin&gt;&gt;x1;&lt;/div&gt;&lt;div&gt; cout&lt;&lt;"\n\tEnter The Value Of X2 :";&lt;/div&gt;&lt;div&gt; cin&gt;&gt;x2;&lt;/div&gt;&lt;div&gt; cout&lt;&lt;"\n\tEnter The Value Of E :";&lt;/div&gt;&lt;div&gt; cin&gt;&gt;e;&lt;/div&gt;&lt;div&gt; //x1=f(x1)&lt;/div&gt;&lt;div&gt; for(i=o;i&lt;50&gt;&lt;div&gt;  {&lt;/div&gt;&lt;div&gt;   temp=x2-x1;&lt;/div&gt;&lt;div&gt;   if(temp&lt;0)&lt;/div&gt;&lt;div&gt;     temp*=(-1);&lt;/div&gt;&lt;div&gt;   if(temp&lt;e)&lt;/div&gt;&lt;div&gt;     { &lt;/div&gt;&lt;div&gt;      flag=0;&lt;/div&gt;&lt;div&gt;      break;&lt;/div&gt;&lt;div&gt;     }&lt;/div&gt;&lt;div&gt;   f1=f(x1);&lt;/div&gt;&lt;div&gt;   f2=f(x2);&lt;/div&gt;&lt;div&gt;   f3=f1*f2;&lt;/div&gt;&lt;div&gt;   x3=(x1+x2)/2;&lt;/div&gt;&lt;div&gt;   f3=f(x3)&lt;/div&gt;&lt;div&gt;   if(f3==0)&lt;/div&gt;&lt;div&gt;    {&lt;/div&gt;&lt;div&gt;      cout&lt;&lt;"\n\n\tAFTER"&lt;&lt;i&lt;&lt;"iterations,toot&gt;&lt;div&gt;      break;&lt;/div&gt;&lt;div&gt;    }&lt;/div&gt;&lt;div&gt;   f=f1*f3;&lt;/div&gt;&lt;div&gt;   if(f&lt;0)&lt;/div&gt;&lt;div&gt;     x2=x3;&lt;/div&gt;&lt;div&gt;   else&lt;/div&gt;&lt;div&gt;    {&lt;/div&gt;&lt;div&gt;     f=f2*f3;&lt;/div&gt;&lt;div&gt;     if(f&lt;0)&lt;/div&gt;&lt;div&gt;       x1=x3;&lt;/div&gt;&lt;div&gt;    }&lt;/div&gt;&lt;div&gt;  }&lt;/div&gt;&lt;div&gt; if(flag==1)&lt;/div&gt;&lt;div&gt;   cout&lt;&lt;"\n\n\tSOLUTION DOES NOT EXIST";&lt;/div&gt;&lt;div&gt; else&lt;/div&gt;&lt;div&gt;   cout&lt;&lt;"\n\n\tAFTER"&lt;&lt;i&lt;&lt;"iterations,toot&gt;&lt;div&gt; getch();&lt;/div&gt;&lt;div&gt;}&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;a href="http://beyshare.com/en/download/G9JjK3EckHMK/Bisection.txt"&gt;Download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-1353018308763194233?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/1353018308763194233/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2010/11/bisection-method.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1353018308763194233'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1353018308763194233'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2010/11/bisection-method.html' title='Bisection method'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-1783755314574328154</id><published>2009-08-29T10:53:00.000-07:00</published><updated>2010-05-29T20:33:12.595-07:00</updated><title type='text'>Beyluxe Multi 119(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_q2DjllHSat0/Splr53rAldI/AAAAAAAAAKU/-nNgTa_9Jz4/s1600-h/images.jpeg"&gt;&lt;img style="MARGIN: 0pt 10px 10px 0pt; WIDTH: 143px; FLOAT: left; HEIGHT: 107px; CURSOR: pointer" id="BLOGGER_PHOTO_ID_5375446272184456658" border="0" alt="" src="http://3.bp.blogspot.com/_q2DjllHSat0/Splr53rAldI/AAAAAAAAAKU/-nNgTa_9Jz4/s320/images.jpeg" /&gt;&lt;/a&gt;&lt;br /&gt;Latest &lt;span style="FONT-WEIGHT: bold"&gt;beyluxe multi &lt;/span&gt;messenger for free.Now you can get portable beyluxe messenger and aal tips and cracks for free.&lt;br /&gt;&lt;a href="http://beyshare.com/en/download/ELwz9r6wDKaV/Beyluxe.Messenger-Multi02119A.exe"&gt;Download&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-1783755314574328154?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/1783755314574328154/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/08/beyluxe-multifree.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1783755314574328154'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1783755314574328154'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/08/beyluxe-multifree.html' title='Beyluxe Multi 119(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_q2DjllHSat0/Splr53rAldI/AAAAAAAAAKU/-nNgTa_9Jz4/s72-c/images.jpeg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-8604142137087440559</id><published>2009-07-01T21:40:00.000-07:00</published><updated>2009-07-01T21:46:38.047-07:00</updated><title type='text'>Safari 4.0 Latest(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_q2DjllHSat0/Skw7llkzNrI/AAAAAAAAAKM/fP6N9HEHoa4/s1600-h/images.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 133px; height: 109px;" src="http://4.bp.blogspot.com/_q2DjllHSat0/Skw7llkzNrI/AAAAAAAAAKM/fP6N9HEHoa4/s320/images.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5353719573964338866" /&gt;&lt;/a&gt;&lt;br /&gt;The world's fatest browser here for free dowload.&lt;div&gt;&lt;span class="Apple-style-span"   style="  ;font-family:'Lucida Grande', Geneva, Arial, Verdana, sans-serif;font-size:10px;"&gt;&lt;h3 style="font-size: 12px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Windows Requirements&lt;/h3&gt;&lt;ul class="square" style="list-style-type: square; list-style-position: outside; list-style-image: initial; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 16px; padding-top: 0px; padding-right: 0px; padding-bottom: 1em; padding-left: 0px; "&gt;&lt;li style="padding-bottom: 0.3em; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Any PC running Windows XP or Windows Vista&lt;/span&gt;&lt;/li&gt;&lt;li style="padding-bottom: 0.3em; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;500-MHz Pentium-class processor or better&lt;/span&gt;&lt;/li&gt;&lt;li style="padding-bottom: 0.3em; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;256MB of RAM&lt;/span&gt;&lt;/li&gt;&lt;li style="padding-bottom: 0.3em; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Top Sites and Cover Flow require a compatible DirectX 9.0 video card with 64MB of video RA&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;M&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;&lt;a href="http://www.apple.com/safari/download/"&gt;D&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;&lt;a href="http://www.apple.com/safari/download/"&gt;O&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;&lt;a href="http://www.apple.com/safari/download/"&gt;W&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;&lt;a href="http://www.apple.com/safari/download/"&gt;N&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;&lt;a href="http://www.apple.com/safari/download/"&gt;L&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;&lt;a href="http://www.apple.com/safari/download/"&gt;O&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;&lt;a href="http://www.apple.com/safari/download/"&gt;A&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;&lt;a href="http://www.apple.com/safari/download/"&gt;D&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-8604142137087440559?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/8604142137087440559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/07/safari-40-latestfree.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8604142137087440559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8604142137087440559'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/07/safari-40-latestfree.html' title='Safari 4.0 Latest(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_q2DjllHSat0/Skw7llkzNrI/AAAAAAAAAKM/fP6N9HEHoa4/s72-c/images.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-7341006499902623827</id><published>2009-07-01T10:03:00.000-07:00</published><updated>2009-07-01T10:06:02.485-07:00</updated><title type='text'>Kaspersky Antivirus 2010(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_q2DjllHSat0/SkuXcw7-C0I/AAAAAAAAAKE/V_KaGexQhgA/s1600-h/images+(1).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 130px; height: 97px;" src="http://3.bp.blogspot.com/_q2DjllHSat0/SkuXcw7-C0I/AAAAAAAAAKE/V_KaGexQhgA/s320/images+(1).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5353539102488529730" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(94, 94, 94);  font-family:Verdana;font-size:11px;"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;T&lt;b&gt;he Kaspersky Anti-Virus 2009&lt;/b&gt; application was designed to be the backbone of your PC's security system, offering protection from a range of IT threats.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Kaspersky Anti-Virus 2010&lt;/b&gt; provides the basic tools needed to protect your PC.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:100%;"&gt;&lt;span class="Apple-style-span"  style="font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(94, 94, 94); "&gt;&lt;span style=" ;color:green;"&gt;&lt;b&gt;Requirements:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;· Intel Pentium 800 MHz 32 bit (x86) / 64 bit (x64) or higher (or equivalent)&lt;br /&gt;· 512 MB available RAM&lt;br /&gt;· 50 MB free space on the hard drive&lt;br /&gt;· CD-ROM (for installation of the program from CD)&lt;br /&gt;· computer mouse&lt;br /&gt;· Internet connection (for product activation)&lt;br /&gt;· Microsoft Internet Explorer 5.5 or higher (for downloading updates)&lt;br /&gt;· Microsoft Windows Installer 2.0&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:100%;"&gt;&lt;span class="Apple-style-span"  style="font-size:11px;"&gt;&lt;b&gt;&lt;a href="http://www.softpedia.com/get/Antivirus/Kaspersky-Antivirus-Personal.shtml"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-7341006499902623827?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/7341006499902623827/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/07/kaspersky-antivirus-2010free.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7341006499902623827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7341006499902623827'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/07/kaspersky-antivirus-2010free.html' title='Kaspersky Antivirus 2010(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_q2DjllHSat0/SkuXcw7-C0I/AAAAAAAAAKE/V_KaGexQhgA/s72-c/images+(1).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-8749368783358666360</id><published>2009-07-01T08:53:00.000-07:00</published><updated>2009-07-01T08:56:44.694-07:00</updated><title type='text'>Kaspersky Internet Security 2010(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_q2DjllHSat0/SkuHNagrPhI/AAAAAAAAAJ8/8-MopXCB8Xg/s1600-h/images.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 130px; height: 95px;" src="http://2.bp.blogspot.com/_q2DjllHSat0/SkuHNagrPhI/AAAAAAAAAJ8/8-MopXCB8Xg/s320/images.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5353521246584389138" /&gt;&lt;/a&gt;&lt;br /&gt;The &lt;b&gt;Kaspersky Internet Security 2009&lt;/b&gt; application was designed to be a all-in-one security solution that offers a worry-free computing environment for you and your family. &lt;b&gt;Kaspersky &lt;/b&gt;&lt;b&gt;Internet Security 2010&lt;/b&gt; has everything you need for a safe and secure Internet experience.&lt;br /&gt;&lt;b&gt;Requirements:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;· Intel Pentium 300 MHz or higher (or equivalent)&lt;br /&gt;· 256 MB available RAM&lt;br /&gt;· 50 MB free space on the hard drive&lt;br /&gt;· CD-ROM (for installation of the program from CD)&lt;br /&gt;· computer mouse&lt;br /&gt;· Internet connection (for product activation)&lt;br /&gt;· Microsoft Internet Explorer 5.5 or higher (for downloading updates)&lt;br /&gt;· Microsoft Windows Installer 2.0&lt;div&gt;&lt;b&gt;&lt;a href="http://www.softpedia.com/get/Antivirus/Kaspersky-Internet-Security.shtml"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-8749368783358666360?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/8749368783358666360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/07/kaspersky-internet-security-2010free.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8749368783358666360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8749368783358666360'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/07/kaspersky-internet-security-2010free.html' title='Kaspersky Internet Security 2010(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_q2DjllHSat0/SkuHNagrPhI/AAAAAAAAAJ8/8-MopXCB8Xg/s72-c/images.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-6488518831654756333</id><published>2009-06-12T08:34:00.000-07:00</published><updated>2009-06-14T23:30:22.100-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='downloader'/><category scheme='http://www.blogger.com/atom/ns#' term='download accelerator'/><category scheme='http://www.blogger.com/atom/ns#' term='free idm download'/><category scheme='http://www.blogger.com/atom/ns#' term='latest download manager'/><category scheme='http://www.blogger.com/atom/ns#' term='IDM'/><title type='text'>Internet Download Manager 5.17 Build 5(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_q2DjllHSat0/SjJ16guVULI/AAAAAAAAAJQ/vbclDKzTxgQ/s1600-h/images+%2823%29.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 91px; height: 119px;" src="http://4.bp.blogspot.com/_q2DjllHSat0/SjJ16guVULI/AAAAAAAAAJQ/vbclDKzTxgQ/s320/images+%2823%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5346465355719332018" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: rgb(94, 94, 94);font-family:Verdana;font-size:11;"  &gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;span class="Apple-style-span" style="color: rgb(0, 0, 0);"&gt;&lt;b&gt;Internet Download Manager (IDM)&lt;/b&gt; is a tool to increase download speeds by up to 500 percent, resume and schedule downloads.&lt;br /&gt;&lt;br /&gt;Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost connections, network problems, computer shutdowns, or unexpected power outages. Simple graphic user interface makes &lt;b&gt;IDM&lt;/b&gt; user friendly and easy to use.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Internet Download Manager&lt;/b&gt; has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;a href="http://rapidshare.com/files/239968905/Internet.Download.Manager.v5.17.5.WinALL.Incl.Keygen.and.Patch-BRD.rar"&gt;&lt;span class="Apple-style-span" style=";font-family:Verdana;font-size:100%;"  &gt;&lt;span class="Apple-style-span"  style="font-size:13;"&gt;&lt;b&gt;Download&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-6488518831654756333?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/6488518831654756333/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/internet-download-manager-517-build.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/6488518831654756333'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/6488518831654756333'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/internet-download-manager-517-build.html' title='Internet Download Manager 5.17 Build 5(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_q2DjllHSat0/SjJ16guVULI/AAAAAAAAAJQ/vbclDKzTxgQ/s72-c/images+%2823%29.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-1845942566581949740</id><published>2009-06-12T07:12:00.000-07:00</published><updated>2009-06-12T07:16:08.172-07:00</updated><title type='text'>You Got Booted 1.0(yahoo booter)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_q2DjllHSat0/SjJjHoMiZgI/AAAAAAAAAJI/fx8V6UWYwZw/s1600-h/images+(22).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 56px; height: 124px;" src="http://1.bp.blogspot.com/_q2DjllHSat0/SjJjHoMiZgI/AAAAAAAAAJI/fx8V6UWYwZw/s320/images+(22).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5346444690342438402" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(158, 158, 158);  font-family:Verdana;font-size:10px;"&gt;&lt;h1  style=" font-weight: lighter; color: rgb(0, 31, 91); margin-top: -1px; margin-bottom: 20px; font-family:Arial, Helvetica, sans-serif;"&gt;&lt;span class="Apple-style-span"  style="color: rgb(94, 94, 94);  font-family:Verdana;"&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;Yahoo Booter&lt;/b&gt; is a free tool that disconnects the screename off of Yahoo. Perfectly legal, boots very fast. This is a 500 Bot Login 6 Option &lt;b&gt;Booter&lt;/b&gt;.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;strong&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;NOTE:&lt;/span&gt;&lt;/strong&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;br /&gt;Given the nature of this program, some security applications might detect it as malware, although it does not harm your computer in any way.&lt;/span&gt;&lt;/span&gt;&lt;/h1&gt;&lt;div&gt;&lt;b&gt;&lt;a href="http://www.softpedia.com/progDownload/You-Got-Booted-Download-49248.html"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-1845942566581949740?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/1845942566581949740/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/you-got-booted-10yahoo-booter.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1845942566581949740'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1845942566581949740'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/you-got-booted-10yahoo-booter.html' title='You Got Booted 1.0(yahoo booter)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_q2DjllHSat0/SjJjHoMiZgI/AAAAAAAAAJI/fx8V6UWYwZw/s72-c/images+(22).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-3952612337098495689</id><published>2009-06-12T06:42:00.000-07:00</published><updated>2009-06-12T07:08:14.765-07:00</updated><title type='text'>Skype Messenger(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_q2DjllHSat0/SjJhOpMRILI/AAAAAAAAAJA/9etvHYLkQts/s1600-h/images+(21).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 73px; height: 137px;" src="http://4.bp.blogspot.com/_q2DjllHSat0/SjJhOpMRILI/AAAAAAAAAJA/9etvHYLkQts/s320/images+(21).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5346442611845570738" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(44, 44, 44);  line-height: 19px; font-family:Helvetica;font-size:14px;"&gt;&lt;b&gt;Skype-to-Skype&lt;/b&gt; calls, video calls and instant messaging are free, any time of the day or night, anywhere in the world. Call phones and mobiles and send SMS messages at great value &lt;a href="http://www.skype.com/go/callphones" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 14px; font-family: inherit; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; "&gt;&lt;span class="Apple-style-span"  style="color:#330000;"&gt;Pay As You Go&lt;/span&gt;&lt;/a&gt;&lt;span class="Apple-style-span"  style="color:#330000;"&gt; &lt;/span&gt;rates, or call unlimited* to certain countries &lt;a href="http://www.skype.com/go/subscriptions" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 14px; font-family: inherit; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; "&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;with a subscriptions&lt;/span&gt;&lt;/a&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Helvetica;font-size:130%;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:14px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(44, 44, 44); font-weight: bold; "&gt;Built this brand new Skype so you can have the conversations that make a difference to you, every day. It's easy to use, plus step-by-step guides help you get started&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Helvetica;font-size:130%;color:#2C2C2C;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:14px;"&gt;&lt;b&gt;&lt;a href="http://www.skype.com/intl/en/download/skype/windows/"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-3952612337098495689?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/3952612337098495689/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/skype-messengerlatest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/3952612337098495689'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/3952612337098495689'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/skype-messengerlatest.html' title='Skype Messenger(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_q2DjllHSat0/SjJhOpMRILI/AAAAAAAAAJA/9etvHYLkQts/s72-c/images+(21).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-4232134687533627061</id><published>2009-06-12T03:53:00.000-07:00</published><updated>2009-06-14T23:38:56.636-07:00</updated><title type='text'>AVG internet security 2009(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_q2DjllHSat0/SjI0CT30yAI/AAAAAAAAAI4/zJmQ6qHHHkQ/s1600-h/images+%2820%29.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 100px; height: 128px;" src="http://2.bp.blogspot.com/_q2DjllHSat0/SjI0CT30yAI/AAAAAAAAAI4/zJmQ6qHHHkQ/s320/images+%2820%29.jpg" alt="" id="BLOGGER_PHOTO_ID_5346392921941002242" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span" style="color: rgb(94, 94, 94);font-family:Verdana;" &gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;AVG Internet Security&lt;/b&gt; provides complete security protection against all of the most serious Internet threats, including viruses, worms, spyware, trojans, adware, hackers and spam.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;AVG Internet Security&lt;/b&gt; includes:&lt;br /&gt;&lt;br /&gt;· &lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Anti-Virus&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; protects from viruses, worms and trojans&lt;br /&gt;· &lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Anti-Spyware&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; protects from spyware, adware and other malicious programs&lt;br /&gt;· &lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Anti-Spam&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; filters spam and protects against phishing attacks&lt;br /&gt;· &lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Firewall&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt; protects from hackers&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;a href="http://rapidshare.com/files/167098055/AVG.Internet.Security.v8.0.199.Incl.Keymaker-EMBRACE.rar"&gt;&lt;span class="Apple-style-span" style="color: rgb(94, 94, 94);font-family:Verdana;font-size:100%;"  &gt;&lt;span class="Apple-style-span"  style="font-size:13;"&gt;&lt;b&gt;Download&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-4232134687533627061?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/4232134687533627061/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/avg-internet-security-2009free.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/4232134687533627061'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/4232134687533627061'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/avg-internet-security-2009free.html' title='AVG internet security 2009(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_q2DjllHSat0/SjI0CT30yAI/AAAAAAAAAI4/zJmQ6qHHHkQ/s72-c/images+%2820%29.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-2344328484890008921</id><published>2009-06-12T03:47:00.000-07:00</published><updated>2009-06-12T03:49:50.972-07:00</updated><title type='text'>AVG antivirus 2009(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_q2DjllHSat0/SjIyp4LvzOI/AAAAAAAAAIw/PVmum4cyCM4/s1600-h/images+(19).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 89px; height: 122px;" src="http://3.bp.blogspot.com/_q2DjllHSat0/SjIyp4LvzOI/AAAAAAAAAIw/PVmum4cyCM4/s320/images+(19).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5346391402679880930" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_q2DjllHSat0/SjIygbCCirI/AAAAAAAAAIo/oUA68kor7q8/s1600-h/images+(20).jpg"&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Arial;font-size:12px;"&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;AVG Antivirus Free Edition&lt;/b&gt; is a free antivirus :&lt;/span&gt;&lt;ul style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 8px; padding-left: 12px; list-style-type: none; "&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 12px; background-image: url(http://en.kioskea.net/template/blocs/bloc_36/li.png); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; line-height: 1.4em; background-position: 0px 4px; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Easy to use, low system resource&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 12px; background-image: url(http://en.kioskea.net/template/blocs/bloc_36/li.png); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; line-height: 1.4em; background-position: 0px 4px; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Automatic update functionality&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 12px; background-image: url(http://en.kioskea.net/template/blocs/bloc_36/li.png); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; line-height: 1.4em; background-position: 0px 4px; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Real-time protection as files are opened and programs are run&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 12px; background-image: url(http://en.kioskea.net/template/blocs/bloc_36/li.png); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; line-height: 1.4em; background-position: 0px 4px; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;Full e-mail protection&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 12px; background-image: url(http://en.kioskea.net/template/blocs/bloc_36/li.png); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; line-height: 1.4em; background-position: 0px 4px; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;&lt;b&gt;AVG's Virus&lt;/b&gt; Vault for the safe handling of infected files&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 12px; background-image: url(http://en.kioskea.net/template/blocs/bloc_36/li.png); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; line-height: 1.4em; background-position: 0px 4px; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;LinkScanner Active Surf-Shield : Protects in real time against poisoned web pages while you're surfing&lt;/span&gt;&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 12px; background-image: url(http://en.kioskea.net/template/blocs/bloc_36/li.png); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; line-height: 1.4em; background-position: 0px 4px; "&gt;&lt;span class="Apple-style-span"  style="font-size:small;"&gt;LinkScanner Search-Shield : Real-time safety ratings for all search results in Google, Yahoo and MSN/Live search&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:100%;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 16px;font-size:13px;"&gt;&lt;b&gt;&lt;a href="http://en.kioskea.net/telecharger/telecharger-64-avg-anti-virus-free-edition"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;ul style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 8px; padding-left: 12px; list-style-type: none; "&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/ul&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-2344328484890008921?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/2344328484890008921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/avg-antivirus-2009free.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/2344328484890008921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/2344328484890008921'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/avg-antivirus-2009free.html' title='AVG antivirus 2009(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_q2DjllHSat0/SjIyp4LvzOI/AAAAAAAAAIw/PVmum4cyCM4/s72-c/images+(19).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-3839590825004610526</id><published>2009-06-12T03:38:00.000-07:00</published><updated>2009-06-12T03:41:28.187-07:00</updated><title type='text'>Kaspersky Internet Security 2009 8.0.0.506 (free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_q2DjllHSat0/SjIwwA9adgI/AAAAAAAAAIg/uVeGy098Xq8/s1600-h/images+(18).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 114px; height: 114px;" src="http://3.bp.blogspot.com/_q2DjllHSat0/SjIwwA9adgI/AAAAAAAAAIg/uVeGy098Xq8/s320/images+(18).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5346389309091640834" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style=" color: rgb(94, 94, 94); font-family:Verdana;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;The &lt;b&gt;Kaspersky Internet Security 2009&lt;/b&gt; application was designed to be a all-in-one security solution that offers a worry-free computing environment for you and your family.&lt;b&gt; Kaspersky Internet Security 2009&lt;/b&gt; has everything you need for a safe and secure Internet experience&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;color:#5E5E5E;"&gt;&lt;b&gt;&lt;a href="http://www.brothersoft.com/kaspersky-internet-security-2009-download-12625.html"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-3839590825004610526?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/3839590825004610526/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/kaspersky-internet-security-2009-800506.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/3839590825004610526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/3839590825004610526'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/kaspersky-internet-security-2009-800506.html' title='Kaspersky Internet Security 2009 8.0.0.506 (free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_q2DjllHSat0/SjIwwA9adgI/AAAAAAAAAIg/uVeGy098Xq8/s72-c/images+(18).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-8368165407572961614</id><published>2009-06-11T06:47:00.000-07:00</published><updated>2009-06-11T06:51:53.725-07:00</updated><title type='text'>Kaspersky antivirus 2009(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_q2DjllHSat0/SjELscA4VII/AAAAAAAAAIY/2xq5SykgLMc/s1600-h/images.jpeg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 93px; height: 130px;" src="http://1.bp.blogspot.com/_q2DjllHSat0/SjELscA4VII/AAAAAAAAAIY/2xq5SykgLMc/s320/images.jpeg" alt="" id="BLOGGER_PHOTO_ID_5346067090727523458" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;Kaspersky Anti-Virus&lt;/span&gt;&lt;span style="font-size:85%;"&gt; is powered by a unique integrated technology for unknown virus searching, based on the principals of second-generation heuristic analysis.&lt;/span&gt;&lt;/p&gt;&lt;span style="font-size:85%;"&gt;                         Because of this, the program is able to protect you from even unknown viruses. By using the integrated Control Center in &lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;Kaspersky Anti-Virus &lt;/span&gt;&lt;span style="font-size:85%;"&gt;Personal, it enables you to create a flexible schedule for the program components to be started and to automatically download and apply updates to your anti-virus databases via the Internet.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;Kaspersky Anti-Virus&lt;/span&gt;&lt;span style="font-size:85%;"&gt; inherits all the strengths of the previous version and adds increased speed and efficiency based on new technologies as well as a more convenient user interface.&lt;br /&gt;&lt;a href="http://www.soft82.com/get/download/windows/kaspersky-anti-virus/"&gt;&lt;span style="font-weight: bold;"&gt;Download&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-8368165407572961614?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/8368165407572961614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/kaspersky-antivirus-2009free.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8368165407572961614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8368165407572961614'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/kaspersky-antivirus-2009free.html' title='Kaspersky antivirus 2009(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_q2DjllHSat0/SjELscA4VII/AAAAAAAAAIY/2xq5SykgLMc/s72-c/images.jpeg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-626457510195306914</id><published>2009-06-09T22:38:00.000-07:00</published><updated>2009-06-09T22:41:55.253-07:00</updated><title type='text'>JetAudio Player 7.5.2(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_q2DjllHSat0/Si9HnOXLgLI/AAAAAAAAAIQ/jbhddDm4ZuU/s1600-h/images+(16).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 119px; height: 107px;" src="http://1.bp.blogspot.com/_q2DjllHSat0/Si9HnOXLgLI/AAAAAAAAAIQ/jbhddDm4ZuU/s320/images+(16).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345570021907857586" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(53, 53, 53);  line-height: 19px; font-family:Arial;font-size:12px;"&gt;&lt;b&gt;JetAudio&lt;/b&gt; is integrated &lt;b&gt;multimedia&lt;/b&gt; software made up of a single compact rack. Not only does it play various music and video files, it also has features such as CD burning, recording, and conversion to other file formats. You can create your own Internet broadcast by using &lt;b&gt;JetCast&lt;/b&gt;, provided with J&lt;b&gt;etAudio&lt;/b&gt;, and you can play all major file formats, including WAV, MP3, MP3Pro, OGG, WMA, MPEG, AVI, WMV, MIDI, RM, and video and audio CD tracks. Convert among audio file formats, and record analog audio to various formats tag editing for MP3, OGG, and WMA files; sound effects including wide, reverb, and x-bass; multichannel sound output; speed control of audio playback; cross-fading for a smooth transition between two songs; a skinnable user interface; and synchronized lyrics display (karaoke) for MIDI and MP3 files.supports for video conversion for iAUDIO U3, supports ts,tp file extension, and includes video format converter to AVI.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:100%;color:#353535;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:12px;"&gt;&lt;b&gt;&lt;a href="http://download.cnet.com/JetAudio-Basic/3000-2141_4-10013740.html"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-626457510195306914?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/626457510195306914/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/jetaudio-player-752latest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/626457510195306914'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/626457510195306914'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/jetaudio-player-752latest.html' title='JetAudio Player 7.5.2(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_q2DjllHSat0/Si9HnOXLgLI/AAAAAAAAAIQ/jbhddDm4ZuU/s72-c/images+(16).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-1554178488495044552</id><published>2009-06-09T22:30:00.000-07:00</published><updated>2009-06-09T22:36:21.032-07:00</updated><title type='text'>Adobe Flash Player version 10.0.22.87(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_q2DjllHSat0/Si9GTQaXR0I/AAAAAAAAAII/lZXySsJyy4c/s1600-h/images+(15).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 116px; height: 116px;" src="http://2.bp.blogspot.com/_q2DjllHSat0/Si9GTQaXR0I/AAAAAAAAAII/lZXySsJyy4c/s320/images+(15).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345568579349071682" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="font-family:Verdana;font-size:100%;"&gt;&lt;span class="Apple-style-span"  style="font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(94, 94, 94); "&gt;&lt;b&gt;Adobe Flash Player&lt;/b&gt; is the client runtime that delivers powerful and consistent user experiences across major operating systems, browsers, mobile phones, and devices.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Verdana;font-size:100%;color:#5E5E5E;"&gt;&lt;span class="Apple-style-span"  style="font-size:11px;"&gt;&lt;span class="Apple-style-span" style="color: rgb(158, 158, 158); "&gt;Access an internet searching service from your desktop and find news, pictures and videos in a flash&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Verdana;font-size:100%;color:#9E9E9E;"&gt;&lt;span class="Apple-style-span"  style="font-size:11px;"&gt;&lt;b&gt;&lt;a href="http://get.adobe.com/flashplayer/"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-1554178488495044552?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/1554178488495044552/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/adobe-flash-player-version.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1554178488495044552'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1554178488495044552'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/adobe-flash-player-version.html' title='Adobe Flash Player version 10.0.22.87(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_q2DjllHSat0/Si9GTQaXR0I/AAAAAAAAAII/lZXySsJyy4c/s72-c/images+(15).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-7191051629027776705</id><published>2009-06-09T22:28:00.000-07:00</published><updated>2009-06-09T22:30:22.918-07:00</updated><title type='text'>Adobe Media Player(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_q2DjllHSat0/Si9Et8ufP-I/AAAAAAAAAIA/l_nVA-LXeGk/s1600-h/images+(14).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 107px; height: 71px;" src="http://4.bp.blogspot.com/_q2DjllHSat0/Si9Et8ufP-I/AAAAAAAAAIA/l_nVA-LXeGk/s320/images+(14).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345566838897983458" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(68, 68, 68);  line-height: 25px; font-family:'Helvetica Neue';font-size:17px;"&gt;Experience the next generation of television with Adobe® Media Player software, which enables you to interact with your favorite content in exciting new ways and helps build opportunities for anyone who creates media content.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:'Helvetica Neue';font-size:180%;color:#444444;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 25px;font-size:17px;"&gt;&lt;b&gt;&lt;a href="http://get.adobe.com/amp/"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-7191051629027776705?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/7191051629027776705/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/adobe-media-playerlatest_09.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7191051629027776705'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7191051629027776705'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/adobe-media-playerlatest_09.html' title='Adobe Media Player(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_q2DjllHSat0/Si9Et8ufP-I/AAAAAAAAAIA/l_nVA-LXeGk/s72-c/images+(14).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-7020480728241474151</id><published>2009-06-09T22:12:00.000-07:00</published><updated>2009-06-09T22:18:49.626-07:00</updated><title type='text'>WINAMP Player 5.552(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_q2DjllHSat0/Si9B8hjo7bI/AAAAAAAAAHs/WLh00UA1Njg/s1600-h/images+(13).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 109px; height: 129px;" src="http://4.bp.blogspot.com/_q2DjllHSat0/Si9B8hjo7bI/AAAAAAAAAHs/WLh00UA1Njg/s320/images+(13).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345563790767877554" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(34, 34, 34);  line-height: 18px; font-family:Verdana;font-size:12px;"&gt;&lt;b&gt;Winamp&lt;/b&gt; is a skinnable, multi-format media player.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Verdana;font-size:100%;color:#222222;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 18px;font-size:12px;"&gt;&lt;p&gt;&lt;b&gt;Winamp&lt;/b&gt; supports a wide variety of contemporary and specialized music file formats, including MIDI, MOD, MPEG-1 audio layers 1 and 2, AAC, M4A, FLAC, WAV, OGG Vorbis, and Windows Media Audio. It supports gapless playback for MP3 and AAC, and Replay Gain for volume leveling across tracks. In addition, &lt;b&gt;Winamp&lt;/b&gt; can play and import music from audio CDs, optionally with CD-Text, and can also burn music to CDs. &lt;b&gt;Winamp&lt;/b&gt; supports playback of Windows Media Video and Nullsoft Streaming Video, as well as most of the video formats supported by Windows Media Player. 5.1 Surround sound is supported where formats and decoders allow.&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;a href="http://www.winamp.com/player"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-7020480728241474151?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/7020480728241474151/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/winamp-player-5552latest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7020480728241474151'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7020480728241474151'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/winamp-player-5552latest.html' title='WINAMP Player 5.552(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_q2DjllHSat0/Si9B8hjo7bI/AAAAAAAAAHs/WLh00UA1Njg/s72-c/images+(13).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-5438586573708331469</id><published>2009-06-09T21:47:00.000-07:00</published><updated>2009-06-09T21:50:23.553-07:00</updated><title type='text'>VLC Media Player(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_q2DjllHSat0/Si87hsx_bpI/AAAAAAAAAHk/ae5ujz8qp24/s1600-h/images+(12).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 81px; height: 131px;" src="http://3.bp.blogspot.com/_q2DjllHSat0/Si87hsx_bpI/AAAAAAAAAHk/ae5ujz8qp24/s320/images+(12).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345556732854627986" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(51, 51, 51);  line-height: 19px; font-family:Verdana;font-size:12px;"&gt;VLC media player is a highly portable &lt;strong&gt;multimedia player&lt;/strong&gt; and &lt;strong&gt;multimedia framework&lt;/strong&gt; capable of reading most audio and video formats (MPEG-2, MPEG-4, H.264, DivX, MPEG-1, mp3, ogg, aac ...) as well as &lt;strong&gt;DVD&lt;/strong&gt;s, &lt;strong&gt;Audio CD&lt;/strong&gt;s&lt;strong&gt;VCD&lt;/strong&gt;s, and various &lt;strong&gt;streaming&lt;/strong&gt; protocols.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Verdana;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:12px;"&gt;It can also be used as a &lt;strong&gt;media converter&lt;/strong&gt; or a &lt;a href="http://www.videolan.org/vlc/streaming.html"&gt;&lt;strong&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;server to stream&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt; in unicast or &lt;strong&gt;multicast&lt;/strong&gt; in IPv4 or &lt;strong&gt;IPv6&lt;/strong&gt; on networks.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Verdana;font-size:100%;color:#333333;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 19px;font-size:12px;"&gt;&lt;b&gt;&lt;a href="http://www.videolan.org/vlc/"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-5438586573708331469?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/5438586573708331469/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/vlc-media-playerlatest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/5438586573708331469'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/5438586573708331469'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/vlc-media-playerlatest.html' title='VLC Media Player(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_q2DjllHSat0/Si87hsx_bpI/AAAAAAAAAHk/ae5ujz8qp24/s72-c/images+(12).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-7322161015135944343</id><published>2009-06-09T21:40:00.000-07:00</published><updated>2009-06-09T21:43:44.824-07:00</updated><title type='text'>Real Player 11(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_q2DjllHSat0/Si85-o1u8nI/AAAAAAAAAHc/kEIZ0MQVvxU/s1600-h/images+(11).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 95px; height: 124px;" src="http://2.bp.blogspot.com/_q2DjllHSat0/Si85-o1u8nI/AAAAAAAAAHc/kEIZ0MQVvxU/s320/images+(11).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345555030989533810" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(56, 69, 84);  font-family:Arial;font-size:13px;"&gt;RealPlayer is the all-in-one digital media player that lets you find anything and play everything. Now also includes an option during setup to install the Real Toolbar for Internet Explorer.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:100%;color:#384554;"&gt;&lt;span class="Apple-style-span"  style="font-size:13px;"&gt;This popular streaming-media player offers improved video controls and access to 2500 radio stations.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:100%;color:#384554;"&gt;&lt;span class="Apple-style-span"  style="font-size:13px;"&gt;&lt;b&gt;Features of RealPlayer 11 :&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:100%;color:#384554;"&gt;&lt;span class="Apple-style-span"  style="font-size:13px;"&gt;- Online Radio: Over 3200 stations worldwide &amp;amp; 60 ad-free stations for endless listening.&lt;br /&gt;- Expanded Controls: Optimize sound with the 10-Band Graphic Equalizer and get the sharpest picture with advanced video controls.&lt;br /&gt;- Advanced CD Burning: Rip, mix &amp;amp; burn CDs like a pro - fast! Encode MP3s at up to 320kbps.&lt;br /&gt;- Play Everything: RealOne Player plays all major media formats including Quicktime MPEG-4, Windows Media, DVDs, &amp;amp; more.&lt;br /&gt;- Easy, Fun &amp;amp; Intuitive: Browse the web, organize audio &amp;amp; video files, create playlists, &amp;amp; more!&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Arial;font-size:100%;color:#384554;"&gt;&lt;span class="Apple-style-span"  style="font-size:13px;"&gt;&lt;b&gt;&lt;a href="http://www.free-codecs.com/realplayer_download.htm"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-7322161015135944343?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/7322161015135944343/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/real-player-11latest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7322161015135944343'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7322161015135944343'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/real-player-11latest.html' title='Real Player 11(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_q2DjllHSat0/Si85-o1u8nI/AAAAAAAAAHc/kEIZ0MQVvxU/s72-c/images+(11).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-6561600249279508512</id><published>2009-06-09T21:19:00.000-07:00</published><updated>2009-06-09T21:34:38.667-07:00</updated><title type='text'>Windows 7 themes(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_q2DjllHSat0/Si831NKAKKI/AAAAAAAAAHU/o-mYpn7pTko/s1600-h/images+(10).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 137px; height: 103px;" src="http://2.bp.blogspot.com/_q2DjllHSat0/Si831NKAKKI/AAAAAAAAAHU/o-mYpn7pTko/s320/images+(10).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345552669916276898" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(37, 37, 37);  line-height: 25px; font-family:'Lucida Grande';font-size:15px;"&gt;Customizing the look and feel of Windows is a cinch with themes—problem is, &lt;b&gt;Microsoft &lt;/b&gt;generally offers so few supported themes. That's changed in &lt;a class="autolink" title="Click here to read more posts tagged WINDOWS 7" href="http://lifehacker.com/tag/windows-7/" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 15px; font-family: inherit; vertical-align: baseline; color: rgb(37, 37, 37); border-bottom-style: initial; border-bottom-color: initial; text-decoration: none; "&gt;&lt;b&gt;Windows 7&lt;/b&gt;&lt;/a&gt;&lt;b&gt; Bet&lt;/b&gt;&lt;b&gt;a&lt;/b&gt;: Microsoft is already offering 20 fresh &lt;b&gt;themes&lt;/b&gt;. Here's a closer look.What do you think of the new &lt;b&gt;Windows 7 themes&lt;/b&gt;? Are they enough to keep you from patching and using unauthorized custom themes when the time comes? Let's hear your thoughts—along with your favorites—in the comments.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:'Lucida Grande';font-size:130%;color:#252525;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 25px;font-size:15px;"&gt;&lt;b&gt;&lt;a href="http://windows.microsoft.com/en-US/windows7/Personalize"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-6561600249279508512?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/6561600249279508512/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/windows-7-themesfree.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/6561600249279508512'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/6561600249279508512'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/windows-7-themesfree.html' title='Windows 7 themes(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_q2DjllHSat0/Si831NKAKKI/AAAAAAAAAHU/o-mYpn7pTko/s72-c/images+(10).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-8998828477052191700</id><published>2009-06-09T19:57:00.000-07:00</published><updated>2009-06-09T21:19:37.134-07:00</updated><title type='text'>Vista Themes and skins(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_q2DjllHSat0/Si80GkmGmiI/AAAAAAAAAHM/4Lj0MMY_P9w/s1600-h/images+(9).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 143px; height: 107px;" src="http://2.bp.blogspot.com/_q2DjllHSat0/Si80GkmGmiI/AAAAAAAAAHM/4Lj0MMY_P9w/s320/images+(9).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345548570219420194" /&gt;&lt;/a&gt;&lt;br /&gt;The altimate &lt;b&gt;free windows vista&lt;/b&gt;&lt;b&gt; themes.&lt;/b&gt;Now you can give your desktop, a new technical and functional look.&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(68, 68, 68);  line-height: 21px; font-size:12px;"&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;I&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;norder to give your Windows XP a Vista-style look, you can either use the &lt;/span&gt;&lt;/span&gt;&lt;a href="http://www.johntp.com/2007/04/24/how-to-make-windows-xp-look-like-vista/" title="How To Make Windows XP Look Like Vista" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; text-decoration: none; "&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;b&gt;Vista Transformation Pack&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;span class="Apple-style-span"  style="color:#000000;"&gt;&lt;b&gt;or&lt;/b&gt;&lt;/span&gt; use these Windows Vista themes&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div&gt;&lt;b&gt;&lt;a href="http://www.myvistathemes.com/"&gt;download&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-8998828477052191700?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/8998828477052191700/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/vista-themesfree.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8998828477052191700'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8998828477052191700'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/vista-themesfree.html' title='Vista Themes and skins(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_q2DjllHSat0/Si80GkmGmiI/AAAAAAAAAHM/4Lj0MMY_P9w/s72-c/images+(9).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-7520243941910215405</id><published>2009-06-09T19:49:00.000-07:00</published><updated>2009-06-09T19:53:40.940-07:00</updated><title type='text'>Xp themes(free)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_q2DjllHSat0/Si8f4r5vojI/AAAAAAAAAHE/pgO4YZ33MZE/s1600-h/images+(8).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 137px; height: 103px;" src="http://3.bp.blogspot.com/_q2DjllHSat0/Si8f4r5vojI/AAAAAAAAAHE/pgO4YZ33MZE/s320/images+(8).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345526341430125106" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(101, 101, 101);  line-height: 16px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px; font-family:Verdana;font-size:12px;"&gt;Did you know that you can change the look and feel of Windows with thousands of free Windows &lt;b&gt;XP themes&lt;/b&gt;, Vista themes, wallpapers, logons and bootscreens? Well if you didn't, here is the place to download loads of great free and premium customizations.&lt;br /&gt;&lt;br /&gt;The easiest way to give Windows a fresh new look is to change your desktop wallpaper. Just drop any wallpaper or photo you wish to use into your My Pictures folder and change it within Desktop Properties by right-clicking anywhere on your desktop.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Verdana;font-size:100%;color:#656565;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 16px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;font-size:12px;"&gt;&lt;b&gt;&lt;a href="http://www.belchfire.net/xp-themes.html"&gt;download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-7520243941910215405?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/7520243941910215405/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/xp-themesfree.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7520243941910215405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7520243941910215405'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/xp-themesfree.html' title='Xp themes(free)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_q2DjllHSat0/Si8f4r5vojI/AAAAAAAAAHE/pgO4YZ33MZE/s72-c/images+(8).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-8063581411879604329</id><published>2009-06-09T19:37:00.000-07:00</published><updated>2009-06-09T19:42:23.455-07:00</updated><title type='text'>Opera Mini(latest) For mobile phones.</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_q2DjllHSat0/Si8dh1slZZI/AAAAAAAAAG8/xSWoukO9KdA/s1600-h/images+(7).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 121px; height: 128px;" src="http://2.bp.blogspot.com/_q2DjllHSat0/Si8dh1slZZI/AAAAAAAAAG8/xSWoukO9KdA/s320/images+(7).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345523749899036050" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(34, 34, 34);  line-height: 20px; font-family:'helvetica neue';font-size:14px;"&gt; &lt;b&gt;Opera&lt;/b&gt; &lt;b&gt;Mini&lt;/b&gt; enables you to take your full Web experience to your phone. &lt;strong style="font-weight: bold; "&gt;Fast:&lt;/strong&gt; Faster mobile internet as data is compressed before being sent to your phone. &lt;strong style="font-weight: bold; "&gt;Free:&lt;/strong&gt; Opera Mini is free to download. It is the definitive mobile web browser.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:'helvetica neue';font-size:130%;color:#222222;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 20px;font-size:14px;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 18px; font-size:12px;"&gt;&lt;b&gt;Opera Mini 4.2&lt;/b&gt; can use our newly established server park in the US. This means significantly faster page downloads for our users in the Americas and Asia-Pacific region. Users in the rest of the world will also experience faster page downloads since we’ve reduced the load on our other servers.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:'helvetica neue';font-size:100%;color:#222222;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 18px;font-size:12px;"&gt;Personalize Opera Mini by choosing a new colorful skin. We have reintroduced the popular skinning feature from Opera Mini 3.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:'helvetica neue';font-size:100%;color:#222222;"&gt;&lt;span class="Apple-style-span"  style=" line-height: 18px;font-size:12px;"&gt;&lt;b&gt;&lt;a href="http://www.opera.com/mini/"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-8063581411879604329?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/8063581411879604329/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/opera-minilatest-for-mobile-phones.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8063581411879604329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8063581411879604329'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/opera-minilatest-for-mobile-phones.html' title='Opera Mini(latest) For mobile phones.'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_q2DjllHSat0/Si8dh1slZZI/AAAAAAAAAG8/xSWoukO9KdA/s72-c/images+(7).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-1363408016996252609</id><published>2009-06-09T19:32:00.000-07:00</published><updated>2009-06-09T19:34:37.679-07:00</updated><title type='text'>Opera Browser(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_q2DjllHSat0/Si8bs_65mNI/AAAAAAAAAG0/A9UJ3YNZi9Y/s1600-h/images+(6).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 125px; height: 105px;" src="http://2.bp.blogspot.com/_q2DjllHSat0/Si8bs_65mNI/AAAAAAAAAG0/A9UJ3YNZi9Y/s320/images+(6).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345521742598740178" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(34, 34, 34);  line-height: 18px; font-family:Verdana;font-size:12px;"&gt;&lt;p&gt;A full-featured Internet browser, Opera includes pop-up blocking, tabbed browsing, integrated searches, and advanced functions like Opera's groundbreaking E-mail program, RSS Newsfeeds and IRC chat. And because we know that our users have different needs, you can customize the look and content of your Opera browser with a few clicks of the mouse.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;Speed Dial:&lt;/b&gt; Your favorite sites are just one click away at all times.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Search Shortcuts:&lt;/b&gt; Faster search – type your queries directly into the address bar.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Trash Can:&lt;/b&gt; Instantly reopen recently closed tabs.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Speed Dial:&lt;/b&gt; Get your favorite Web page with just one click.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Mouse Gestures:&lt;/b&gt; With Opera you can navigate the Web with your mouse.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Opera Link:&lt;/b&gt; Synchronize data of your choice online, or among different computers and devices.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Quick Find:&lt;/b&gt; Opera remembers not only the titles and addresses, but also the actual content of the Web pages you visit.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Feed Preview:&lt;/b&gt; Preview a Feed by clicking on the feed icon, and you will see it in clean and efficient multiple-column layout.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Quick and customizable Web search:&lt;/b&gt; Get quick access to Google, eBay, Amazon and more with the search field in the upper right corner.&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;b&gt;&lt;a href="http://www.filehippo.com/download_opera/"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-1363408016996252609?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/1363408016996252609/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/opera-browserlatest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1363408016996252609'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/1363408016996252609'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/opera-browserlatest.html' title='Opera Browser(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_q2DjllHSat0/Si8bs_65mNI/AAAAAAAAAG0/A9UJ3YNZi9Y/s72-c/images+(6).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-759613002753198183</id><published>2009-06-09T19:26:00.000-07:00</published><updated>2009-06-09T19:30:11.336-07:00</updated><title type='text'>Google Chrome oofline setup.(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_q2DjllHSat0/Si8aqmUYnmI/AAAAAAAAAGs/pIjk2FKaAUA/s1600-h/images+(5).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 115px; height: 132px;" src="http://4.bp.blogspot.com/_q2DjllHSat0/Si8aqmUYnmI/AAAAAAAAAGs/pIjk2FKaAUA/s320/images+(5).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345520601854942818" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="  ;font-family:'Lucida Grande';font-size:11px;"&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; line-height: 1.6em; "&gt;If you want to download Google's new web browser "&lt;strong style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;Chrome&lt;/strong&gt;", you'll need to download a small&lt;strong style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;474 KB&lt;/strong&gt; installer from its official website and then it'll download the required files of approx. &lt;strong style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "&gt;7 MB&lt;/strong&gt;from Google server.&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; line-height: 1.6em; "&gt;Its annoying and painful when you want to install Chrome in more than one computer. You'll have to download the required setup files in each system.&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; line-height: 1.6em; "&gt;Now no need to worry, Google is providing a standalone installer which doesn't require net connection while installing the browser. So you can download it once and then install it in as many systems as you want without any problem.There is also another benefit in downloading this standalone installer. It doesn't contain the Google Update EXE file.&lt;/p&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; line-height: 1.6em; "&gt;&lt;b&gt;&lt;a href="http://www.askvg.com/chrome-offline-installer-full-standalone-installer-without-google-update/"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-759613002753198183?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/759613002753198183/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/google-chrome-oofline-setuplatest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/759613002753198183'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/759613002753198183'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/google-chrome-oofline-setuplatest.html' title='Google Chrome oofline setup.(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_q2DjllHSat0/Si8aqmUYnmI/AAAAAAAAAGs/pIjk2FKaAUA/s72-c/images+(5).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-4125234728489993370</id><published>2009-06-09T19:07:00.000-07:00</published><updated>2009-06-09T19:20:08.088-07:00</updated><title type='text'>Mozilla Firefox(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_q2DjllHSat0/Si8YTm3klQI/AAAAAAAAAGk/ejEp01ZMkkg/s1600-h/images+(4).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 122px; height: 109px;" src="http://4.bp.blogspot.com/_q2DjllHSat0/Si8YTm3klQI/AAAAAAAAAGk/ejEp01ZMkkg/s320/images+(4).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345518007842280706" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(34, 34, 34);  line-height: 18px; font-family:Verdana;font-size:12px;"&gt;&lt;p&gt;The Web is all about innovation, and Firefox sets the pace with dozens of new features to deliver a faster, more secure and customizable Web browsing experience for all.&lt;/p&gt;&lt;p&gt;&lt;b&gt;User Experience.&lt;/b&gt; The enhancements to Firefox provide the best possible browsing experience on the Web. The new Firefox smart location bar, affectionately known as the "Awesome Bar," learns as people use it, adapting to user preferences and offering better fitting matches over time.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Performance.&lt;/b&gt; Firefox is built on top of the powerful new Gecko platform, resulting in a safer, easier to use and more personal product.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Security.&lt;/b&gt; Firefox raises the bar for security. The new malware and phishing protection helps protect from viruses, worms, trojans and spyware to keep people safe on the Web.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Customization.&lt;/b&gt; Everyone uses the Web differently, and Firefox lets users customize their browser with more than 5,000 add-ons.&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;a href="http://www.filehippo.com/download_firefox/"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-4125234728489993370?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/4125234728489993370/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/mozilla-firefoxlatest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/4125234728489993370'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/4125234728489993370'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/mozilla-firefoxlatest.html' title='Mozilla Firefox(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_q2DjllHSat0/Si8YTm3klQI/AAAAAAAAAGk/ejEp01ZMkkg/s72-c/images+(4).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-3084760786628085479</id><published>2009-06-09T08:11:00.000-07:00</published><updated>2009-06-09T08:13:15.964-07:00</updated><title type='text'>Yahoo Messenger portable(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_q2DjllHSat0/Si58BC9V81I/AAAAAAAAAGc/IoIOYICwe9A/s1600-h/portable-yahoo-messenger-logo.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 194px; height: 95px;" src="http://2.bp.blogspot.com/_q2DjllHSat0/Si58BC9V81I/AAAAAAAAAGc/IoIOYICwe9A/s320/portable-yahoo-messenger-logo.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345346165151232850" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(70, 70, 70);  line-height: 21px; font-family:verdana;font-size:12px;"&gt;&lt;p class="MsoNormal" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; "&gt;&lt;strong&gt;Yahoo Messenger&lt;/strong&gt; is popular &lt;strong&gt;instant messenger&lt;/strong&gt; and used by millions of users around then world. &lt;strong&gt;Features of yahoo Messenger&lt;/strong&gt; are far better then any other instant messenger. A latest version of &lt;strong&gt;Yahoo Messenger 9&lt;/strong&gt; has many new features as well as several bug fixes with &lt;strong&gt;antivirus scanner support&lt;/strong&gt; to scan files shared between yahoo messenger users.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; "&gt;You may be power user of yahoo messenger but their may be chances that you may not have yahoo messenger installed on public or on your friends computer. Don’t you think need of&lt;strong&gt;portable Yahoo messenger&lt;/strong&gt;? If answer is yes then here is &lt;strong&gt;Portable Yahoo Messenger 9&lt;/strong&gt;which makes you free from need of any installation and you can &lt;strong&gt;carry in your USB flash drive&lt;/strong&gt;any where.&lt;span id="more-1789"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; "&gt;Yahoo Messenger 9 has more skins and new audible and emoticons. You can use &lt;strong&gt;Portable Yahoo Messenger 9&lt;/strong&gt; along with older version of Yahoo Messenger.&lt;/p&gt;&lt;p class="MsoNormal" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; "&gt;&lt;a href="http://www.blogsdna.com/1789/portable-yahoo-messenger-9-900797-download-now.htm"&gt;&lt;b&gt;Download&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-3084760786628085479?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/3084760786628085479/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/yahoo-messenger-portablelatest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/3084760786628085479'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/3084760786628085479'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/yahoo-messenger-portablelatest.html' title='Yahoo Messenger portable(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_q2DjllHSat0/Si58BC9V81I/AAAAAAAAAGc/IoIOYICwe9A/s72-c/portable-yahoo-messenger-logo.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-2247819963041685147</id><published>2009-06-09T08:02:00.000-07:00</published><updated>2009-06-09T19:55:22.537-07:00</updated><title type='text'>Paltalk messenger(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_q2DjllHSat0/Si56Z1zlcXI/AAAAAAAAAGU/Cz1eoI-VEd0/s1600-h/images+(3).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 93px; height: 115px;" src="http://1.bp.blogspot.com/_q2DjllHSat0/Si56Z1zlcXI/AAAAAAAAAGU/Cz1eoI-VEd0/s320/images+(3).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345344392094118258" /&gt;&lt;/a&gt;&lt;br /&gt;The new &lt;b&gt;Paltalk Messenger&lt;/b&gt; allows you to see, hear, share files, and chat with anyone, anywhere in the world--all for &lt;b&gt;free&lt;/b&gt;. Paltalk operates with AIM, Yahoo, MSN, and ICQ, so you can chat with all your buddies using a single program. &lt;b&gt;Paltalk&lt;/b&gt; boasts an improved user interface and supports a new x-Treme service level with crystal clear, TV-like video speed, and unlimited video windows. And now we're offering our users a trial of our high-quality streaming video and audio for absolutely free. Meet millions of people in existing audio and video chat rooms, or create a videoconference of your own to bring together other users with similar interests. No Webcam is required to see people. Plus, you can share photos, files, and messages instantly with any Paltalk user. If you want to chat without the video and voice features, you can always instant message and use &lt;b&gt;Paltalk for real-time&lt;/b&gt; text chat. Finally, Paltalk includes 24-hour online help.&lt;br /&gt;&lt;a href="http://www.paltalk.com/start_chatting.shtml"&gt;&lt;b&gt;Download&lt;/b&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-2247819963041685147?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/2247819963041685147/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/paltalk-messengerlatest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/2247819963041685147'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/2247819963041685147'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/paltalk-messengerlatest.html' title='Paltalk messenger(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_q2DjllHSat0/Si56Z1zlcXI/AAAAAAAAAGU/Cz1eoI-VEd0/s72-c/images+(3).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-7202136823109335288</id><published>2009-06-09T07:14:00.000-07:00</published><updated>2009-06-09T19:56:47.853-07:00</updated><title type='text'>MSN Messenger(latest)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_q2DjllHSat0/Si5uhD-89QI/AAAAAAAAAGM/1XSAWJkDHr4/s1600-h/images+(2).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 64px; height: 137px;" src="http://1.bp.blogspot.com/_q2DjllHSat0/Si5uhD-89QI/AAAAAAAAAGM/1XSAWJkDHr4/s320/images+(2).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345331322019443970" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(94, 94, 94);  font-family:Verdana;font-size:11px;"&gt;This is &lt;b&gt;Windows Live Messenger version 2009&lt;/b&gt; aka Windows Live &lt;b&gt;Messenger 9&lt;/b&gt;, the latest version of Windows Live Messenger from Microsoft. WLM, right now, is in beta stage, so ONLY beta testers will be able to sign in!&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Verdana;font-size:7;color:#5E5E5E;"&gt;&lt;span class="Apple-style-span"  style="font-size:12px;"&gt;   &lt;a href="http://www.softpedia.com/get/Internet/Chat/Instant-Messaging/Windows-Live-Messenger-9.shtml"&gt;&lt;b&gt;Download&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-7202136823109335288?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/7202136823109335288/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/msn-messengerlatest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7202136823109335288'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/7202136823109335288'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/msn-messengerlatest.html' title='MSN Messenger(latest)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_q2DjllHSat0/Si5uhD-89QI/AAAAAAAAAGM/1XSAWJkDHr4/s72-c/images+(2).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-2019971053682230089</id><published>2009-06-09T04:50:00.000-07:00</published><updated>2009-06-09T04:53:39.123-07:00</updated><title type='text'>Yahoo offline setup(9.0)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_q2DjllHSat0/Si5NN7tTDRI/AAAAAAAAAGE/TzeRpu4x3-0/s1600-h/images+(1).jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 150px; height: 94px;" src="http://3.bp.blogspot.com/_q2DjllHSat0/Si5NN7tTDRI/AAAAAAAAAGE/TzeRpu4x3-0/s320/images+(1).jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345294709496679698" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(17, 17, 17);  line-height: 18px; font-family:arial;font-size:13px;"&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; text-decoration: none; overflow-x: hidden; overflow-y: hidden; "&gt;Fortunately yahoo has also provided a complete &lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; "&gt;offline installer for yahoo messenger 9&lt;/strong&gt;. Its hidden deep inside the yahoo messenger website. But I found it for you &lt;img src="http://www.hacktrix.com/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" title="How To Install Yahoo Messenger 9 Offline Without Internet" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; float: none; " /&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; text-decoration: none; overflow-x: hidden; overflow-y: hidden; "&gt;You can download the complete &lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; "&gt;Yahoo Messenger 9 offline installer&lt;/strong&gt; from &lt;a href="http://download.yahoo.com/ycs/msg/dl/msgr9/us/ymsgr900_2136_us.exe" target="_blank" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: none; color: rgb(0, 0, 153); border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; "&gt;this lin&lt;/a&gt;k.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; padding-left: 0px; text-decoration: none; overflow-x: hidden; overflow-y: hidden; "&gt;                                                      &lt;a href="http://www.hacktrix.com/how-to-install-yahoo-messenger-9-offline-without-internet"&gt;    &lt;/a&gt;&lt;b&gt;&lt;a href="http://www.hacktrix.com/how-to-install-yahoo-messenger-9-offline-without-internet"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-2019971053682230089?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/2019971053682230089/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/yahoo-offline-setup90.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/2019971053682230089'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/2019971053682230089'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/yahoo-offline-setup90.html' title='Yahoo offline setup(9.0)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_q2DjllHSat0/Si5NN7tTDRI/AAAAAAAAAGE/TzeRpu4x3-0/s72-c/images+(1).jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-8267679364000698928</id><published>2009-06-09T04:40:00.000-07:00</published><updated>2009-06-09T04:42:58.183-07:00</updated><title type='text'>BLACK MAGIC 3(Yahoo Booter)</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_q2DjllHSat0/Si5Kte4jc3I/AAAAAAAAAF8/RjWViBXLBHs/s1600-h/boot.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 320px; height: 186px;" src="http://1.bp.blogspot.com/_q2DjllHSat0/Si5Kte4jc3I/AAAAAAAAAF8/RjWViBXLBHs/s320/boot.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345291952980194162" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style="  ;font-family:Arial;font-size:12px;"&gt;&lt;span style=" ;font-size:12px;"&gt;&lt;span style=" ;font-family:verdana;"&gt;&lt;b&gt;Desciption:&lt;/b&gt;&lt;/span&gt; &lt;span style=" ;font-family:verdana;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div style="text-align: justify; "&gt;&lt;span style=" ;font-size:12px;"&gt;&lt;span style=" ;font-family:verdana;"&gt;Single Bot Login Booter. This Booter Will Does Not Hit Anything Below Yahoo Messenger 9.x &lt;/span&gt;&lt;span style=" ;font-family:verdana;"&gt;Update(s):&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=" ;font-size:12px;"&gt;&lt;/span&gt;&lt;ul  style=" ;font-family:verdana;"&gt;&lt;li&gt;&lt;span style=" ;font-size:12px;"&gt;Packet Update - Faster D/C&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=" ;font-size:12px;"&gt;Minor Settings Save Bug Fixed&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=" ;font-size:12px;"&gt;Cleaner Packet Header Function(s)&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style=" ;font-size:12px;"&gt;&lt;span style=" ;font-family:verdana;"&gt;&lt;b&gt;Include:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;ul  style=" ;font-family:verdana;"&gt;&lt;li&gt;&lt;span style=" ;font-size:12px;"&gt;blackmagic.ini&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=" ;font-size:12px;"&gt;BlackMagic.exe&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;                                                            &lt;b&gt;&lt;a href="http://www.4shared.com/file/108468871/17419284/BlackMagic3.html"&gt;Download&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-8267679364000698928?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/8267679364000698928/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/black-magic-3yahoo-booter.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8267679364000698928'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/8267679364000698928'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/black-magic-3yahoo-booter.html' title='BLACK MAGIC 3(Yahoo Booter)'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_q2DjllHSat0/Si5Kte4jc3I/AAAAAAAAAF8/RjWViBXLBHs/s72-c/boot.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3157116677331327281.post-4638517225773145400</id><published>2009-06-09T04:23:00.000-07:00</published><updated>2009-06-09T04:33:26.169-07:00</updated><title type='text'>BEYLUXE MESSENGER</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_q2DjllHSat0/Si5H-LD7fRI/AAAAAAAAAF0/lkLZekV1YsA/s1600-h/images.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 99px; height: 136px;" src="http://4.bp.blogspot.com/_q2DjllHSat0/Si5H-LD7fRI/AAAAAAAAAF0/lkLZekV1YsA/s320/images.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5345288941182090514" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span class="Apple-style-span"   style=" color: rgb(255, 255, 255);  font-weight: bold; font-family:arial;font-size:12px;"&gt;&lt;p   style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 20px; display: block; color: rgb(82, 87, 87);   font-weight: bold; text-align: left; font-family:Arial, Helvetica, sans-serif;font-size:11px;"&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size:0;"&gt;&lt;b style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size:85%;color:#000080;"&gt;1- Please, when you create a nickname you will get an e-mail registration code, so    make sure you include your full e-mail address and do not give a false e-mail address or we will have to reject it.&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 20px; display: block; color: rgb(82, 87, 87);   font-weight: bold; text-align: left; font-family:Arial, Helvetica, sans-serif;font-size:11px;"&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size:85%;color:#000080;"&gt;&lt;b style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;2- Avoid making nicknames that are trademarks, Countries, advertisements, inappropriate names, such as names that include firearms and managements like help, technical and so on&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p   style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 20px; display: block; color: rgb(82, 87, 87);   font-weight: bold; text-align: left; font-family:Arial, Helvetica, sans-serif;font-size:11px;"&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size:0;"&gt;&lt;b style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-size:85%;color:#000080;"&gt;3- Please note you are fully responsible for all user on your account even on your computer if they do something wrong. To get banned you get banned as well. So be very careful who you let use your account and your computer. Even if it is a wife/husband/child/family member of friend ect ..You are still responsible.&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;span style="font-size:130%;"&gt;&lt;a href="http://beyluxe.com/check/"&gt;Download&lt;/a&gt;&lt;/span&gt;&lt;/center&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3157116677331327281-4638517225773145400?l=tannusoft.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tannusoft.blogspot.com/feeds/4638517225773145400/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tannusoft.blogspot.com/2009/06/beyluxe-messenger.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/4638517225773145400'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3157116677331327281/posts/default/4638517225773145400'/><link rel='alternate' type='text/html' href='http://tannusoft.blogspot.com/2009/06/beyluxe-messenger.html' title='BEYLUXE MESSENGER'/><author><name>Tannu</name><uri>http://www.blogger.com/profile/02100732482281246942</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://1.bp.blogspot.com/_q2DjllHSat0/SjJ5n7T5DgI/AAAAAAAAAJc/_whwE8dnxbA/S220/workout_a.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_q2DjllHSat0/Si5H-LD7fRI/AAAAAAAAAF0/lkLZekV1YsA/s72-c/images.jpg' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
