<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>ReaL TricKs</title><description>FREE "C"LANGUAGE PROGRAMS, GAMES,AIRTELLIVE HACKING,MOBILE AND PC TRICKS,FREE GAMES,MOVIES,CRACKS,
SERIALS AND MUCH MORE</description><managingEditor>noreply@blogger.com (ReaL TricKs)</managingEditor><pubDate>Sun, 6 Oct 2024 07:07:12 +0900</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">58</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>http://realtricks4u.blogspot.com/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:summary>FREE "C"LANGUAGE PROGRAMS, GAMES,AIRTELLIVE HACKING,MOBILE AND PC TRICKS,FREE GAMES,MOVIES,CRACKS, SERIALS AND MUCH MORE</itunes:summary><itunes:subtitle>FREE "C"LANGUAGE PROGRAMS, GAMES,AIRTELLIVE HACKING,MOBILE AND PC TRICKS,FREE GAMES,MOVIES,CRACKS, SERIALS AND MUCH MORE</itunes:subtitle><itunes:category text="Technology"><itunes:category text="Gadgets"/></itunes:category><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><title>Conversion from Decimal To OCTAL Using C Program</title><link>http://realtricks4u.blogspot.com/2010/09/conversion-from-decimal-to-octal-using.html</link><category>c programs</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sun, 26 Sep 2010 18:30:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-7358697348651456618</guid><description>#include&lt;stdio.h&gt;&lt;br /&gt;
int main(){&lt;br /&gt;
  int i=0,j=0,rem=0,a[10],b[10];&lt;br /&gt;
  long int num;&lt;br /&gt;
  printf("\nEnter a number :");&lt;br /&gt;
  scanf("%ld",&amp;num);&lt;br /&gt;
  while(num){&lt;br /&gt;
    if(num&lt;8){
         a[j++]=num;
         break;
     }
     else{
         a[j++]=num%8;
         num=num/8;
     }
   }
   for(i=j-1;i&gt;=0;i--)&lt;br /&gt;
   b[rem++]=a[i];&lt;br /&gt;
   printf("\nOctal equivalent :");&lt;br /&gt;
   for(j=0;j&lt;rem;j++)&lt;br /&gt;
   printf("%d",b[j]);&lt;br /&gt;
   return 0;&lt;br /&gt;
}</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><title>PRINT PRIME NUMBERS BETWEEN 1-100 USING BREAK AND CONTINUE IN C</title><link>http://realtricks4u.blogspot.com/2010/09/print-prime-numbers-between-1-100-using.html</link><category>c programs</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sun, 26 Sep 2010 18:26:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-1649506115478223511</guid><description>/* Prime Number between 1-100 using Break and continue statement */&lt;br /&gt;
&lt;br /&gt;
#include &lt;math.h&gt;&lt;br /&gt;
#include &lt;stdio.h&gt;&lt;br /&gt;
main()&lt;br /&gt;
{&lt;br /&gt;
  int i, j;&lt;br /&gt;
  i = 1;&lt;br /&gt;
  while ( i &lt; 100 )
  {
            j = 2;
            while ( j &lt; sqrt(i) )
            {
                        if ( i % j == 0 )
                                    break;
                        else
                        {
                                    ++j;
                                    continue;
                        }
            }
   if ( j &gt; sqrt(i) )&lt;br /&gt;
            printf("%d\t", i);&lt;br /&gt;
    ++i;&lt;br /&gt;
  }&lt;br /&gt;
  return 0;&lt;br /&gt;
}</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>GET A FREE InkFruit T-Shirt</title><link>http://realtricks4u.blogspot.com/2010/08/get-free-inkfruit-t-shirt.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Wed, 25 Aug 2010 00:48:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-991563128143589874</guid><description>&lt;a href="http://www.inkfruit.com/images/main-banner.jpg"&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.inkfruit.com/vregistration.php?userid=116928"&gt;CLICK HERE FOR FREE T-SHIRT&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Procedure:&lt;br /&gt;
&lt;br /&gt;
1. Invite your friends&lt;br /&gt;
&lt;br /&gt;
2. If anyone clicks on the link and get registered, inkfruit will mail them a confirmation link&lt;br /&gt;
&lt;br /&gt;
3. Only when the registered users click on the verification link, the registration process will be considered final.&lt;br /&gt;
&lt;br /&gt;
4. Once the total number of final registered users becomes more than 10, drop a mail at hobbes@inkfruit.com mentioning&lt;br /&gt;
about your registered email id, Shipping address, phone number, size of t shirt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://www.inkfruit.com/images/main-banner.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="203" src="http://www.inkfruit.com/images/main-banner.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><title> AIRTELlive!! hacking august 2010</title><link>http://realtricks4u.blogspot.com/2010/08/airtellive-hacking-august-2010.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Thu, 12 Aug 2010 23:11:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-1327818747836555064</guid><description>The Wait Is Over... Get THE airtellive ! free surfing and hacking trick here&lt;br /&gt;
&lt;br /&gt;
Surf Internet On Airtel For Free !&lt;br /&gt;
Activate Airtel Live ! on your mobile phone (No need to do any changes, just save the settings as it is).&lt;br /&gt;
Save the settings.&lt;br /&gt;
Open browser and enter any address in place of XXXX in http://59.160.228.22/index.php?p=XXXX&lt;br /&gt;
&lt;br /&gt;
For eg: http://59.160.228.22/index.php?p=http://m.besttop.mobi or http://59.160.228.22/index.php?p=http://m.cricinfo.com</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Solution To Images/Videos Not Displayed Properly [Or Not Appearing] In Nokia Mobile</title><link>http://realtricks4u.blogspot.com/2010/08/solution-to-imagesvideos-not-displayed.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Wed, 11 Aug 2010 00:54:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-1590334328965100649</guid><description>&lt;a href="http://www.techvorm.com/solution-to-imagesvideos-not-displayed-properly-or-not-appearing-in-nokia-mobile.html"&gt;Solution To Images/Videos Not Displayed Properly [Or Not Appearing] In Nokia Mobile&lt;/a&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Watch Live Streaming Of India, Sri Lanka, New Zealand Triangular Series, 2010 Online For Free</title><link>http://realtricks4u.blogspot.com/2010/08/watch-live-streaming-of-india-sri-lanka.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Wed, 11 Aug 2010 00:52:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-8768073588050760770</guid><description>&lt;a href="http://www.techvorm.com/watch-live-streaming-of-india-sri-lanka-new-zealand-triangular-series-2010-online-for-free.html"&gt;Watch Live Streaming Of India, Sri Lanka, New Zealand Triangular Series, 2010 Online For Free&lt;/a&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Free Live Tv Trick in Bsnl aug 2010</title><link>http://realtricks4u.blogspot.com/2010/08/free-live-tv-trick-in-bsnl-aug-2010.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sun, 8 Aug 2010 03:24:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-5357467213262302863</guid><description>hi Realtricks is back with a new live tv trick&lt;br /&gt;
Publishing on Web This trick is 100% Working and Tested By Me&lt;br /&gt;
first of all u have bsnllive settings which can be got by just a sms&lt;br /&gt;
to get bsnllive settings just sms ur MOBILE MODEL NUMBER TO 58355&lt;br /&gt;
&lt;br /&gt;
For example for nokia 2700 just type NOKIA 2700 AND send it to 58355 &lt;br /&gt;
this trick is only availiable to those who follow my blog and subscribe my rss Feeds&lt;br /&gt;
due to security reasons COOMING SOON BEFORE 15 AUGU&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;iframe src="http://rcm.amazon.com/e/cm?t=realtri03-20&amp;o=1&amp;p=8&amp;l=bpl&amp;asins=B0036DDT6K&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="align:left;padding-top:5px;width:131px;height:245px;padding-right:10px;"align="left" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt;ST&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;iframe src="http://rcm.amazon.com/e/cm?t=realtri03-20&amp;o=1&amp;p=8&amp;l=bpl&amp;asins=B002LITT3I&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="align:left;padding-top:5px;width:131px;height:245px;padding-right:10px;"align="left" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;iframe src="http://rcm.amazon.com/e/cm?t=realtri03-20&amp;o=1&amp;p=8&amp;l=bpl&amp;asins=B002ZG9846&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="align:left;padding-top:5px;width:131px;height:245px;padding-right:10px;"align="left" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt;&lt;a href="http://operamini.uiwap.com/images/0new.gif"&gt;&lt;/a&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Airtel Live Free GPRS Trick/Hack (July, 2010)</title><link>http://realtricks4u.blogspot.com/2010/08/airtel-live-free-gprs-trickhack-july.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sun, 8 Aug 2010 02:16:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-7669239008429035201</guid><description>&lt;a href="http://www.techvorm.com/airtel-live-free-gprs-trickhack-july-2010.html"&gt;Airtel Live Free GPRS Trick/Hack (July, 2010)&lt;/a&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Bloggers - Meet Millions of Bloggers</title><link>http://realtricks4u.blogspot.com/2010/08/bloggers-meet-millions-of-bloggers.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sun, 8 Aug 2010 01:29:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-8681327165168913689</guid><description>&lt;a href="http://bloggers.com/"&gt;Bloggers - Meet Millions of Bloggers&lt;/a&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Get Free Traffic to Your Website or Blog: How to Get Free Backlinks</title><link>http://realtricks4u.blogspot.com/2010/08/get-free-traffic-to-your-website-or.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sun, 8 Aug 2010 01:26:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-7059250801585044982</guid><description>&lt;a href="http://getmorevisitors.blogspot.com/2008/11/how-to-get-free-backlinks.html"&gt;Get Free Traffic to Your Website or Blog: How to Get Free Backlinks&lt;/a&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Maximizing BitTorrent Speeds with uTorrent (Updated July 2010) - Bootstrike.Com</title><link>http://realtricks4u.blogspot.com/2010/08/maximizing-bittorrent-speeds-with.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Tue, 3 Aug 2010 17:05:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-6179616765455341185</guid><description>&lt;a href="http://www.bootstrike.com/Articles/BitTorrentGuide/"&gt;Maximizing BitTorrent Speeds with uTorrent (Updated July 2010) - Bootstrike.Com&lt;/a&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>welcome to REALTRICKS</title><link>http://realtricks4u.blogspot.com/2010/06/welcome-to-realtricks.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sat, 12 Jun 2010 14:42:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-3105925883569170315</guid><description>HI WELCOME TO REAL TRICKS&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
FREE GAMES,AIRTELLIVE HACKING,MOBILE AND PC TRICKS,FREE GAMES,MOVIES,CRACKS,SERIALS AND MUCH MORE FREE AIRTELLIVE GAMES,DIRECT DOWNLOAD LINKS OF LATEST MOVIES,FREE BROWSING AND DOWNLOADING TRICK IN AIRTEL (LIFETIME) MOBILE OFFICE TRICKS,PC TRICKS AND MUCH MOREHomePicturesVideosmoney</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Free airtel proxy</title><link>http://realtricks4u.blogspot.com/2010/06/free-airtel-proxy.html</link><category>AIRTEL TRICKS</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Fri, 11 Jun 2010 16:12:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-1337454723253826440</guid><description>Free airtel proxy&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://hp.wap.yahoo.com&lt;br /&gt;
&lt;br /&gt;
apn.airtelgprs.com&lt;br /&gt;
&lt;br /&gt;
ip.94.210.221.17&lt;br /&gt;
&lt;br /&gt;
port:8080 work in some state &lt;br /&gt;
&lt;br /&gt;
more trick join .</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Internet download manager V5.15 serial key</title><link>http://realtricks4u.blogspot.com/2010/06/internet-download-manager-v515-serial.html</link><category>PC Tricks</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Fri, 11 Jun 2010 16:05:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-6981523874529503671</guid><description>Internet download manager V5.15 serial key&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1) 4BTJF-DYNIL-LD8CN-MM8X5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2) XAG2U-SJOFO-BDLTK-B3C3V&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
eNjoY..&lt;br /&gt;
&lt;br /&gt;
*Share with friends</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>AirTel User Dwnload</title><link>http://realtricks4u.blogspot.com/2010/06/airtel-user-dwnload.html</link><category>AIRTEL TRICKS</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Fri, 11 Jun 2010 15:50:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-8192320974552613399</guid><description>AirTel User Dwnload&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
"Video Box"Free Streaming Application&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://202.87.41.147/hungamawap/hungama/62406/videobox.php3# card1</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Use All Mail Via Airtel Live Free:</title><link>http://realtricks4u.blogspot.com/2010/06/use-all-mail-via-airtel-live-free.html</link><category>AIRTEL TRICKS</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Fri, 11 Jun 2010 15:49:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-4609233205202524914</guid><description>Use All Mail Via Airtel Live Free:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Go:&lt;br /&gt;
&lt;br /&gt;
http://m.meongo.com&lt;br /&gt;
&lt;br /&gt;
Then registered here &amp;amp; Add ur mail id whch u want 2 access like yahoo, gmail etc.</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Disable Autorun of CD</title><link>http://realtricks4u.blogspot.com/2010/06/disable-autorun-of-cd.html</link><category>PC Tricks</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Fri, 11 Jun 2010 15:46:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-3664619828498420965</guid><description>Disable Autorun of CD&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;gt;run&lt;br /&gt;
&lt;br /&gt;
&amp;gt;type&lt;br /&gt;
&lt;br /&gt;
gpedit.msc&lt;br /&gt;
&lt;br /&gt;
&amp;gt;Computer Configuration&amp;gt;Administrative Templates&amp;gt;System&lt;br /&gt;
&lt;br /&gt;
&amp;gt;Turn autoplay off and modify it</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>LOCK UR CD ROM!</title><link>http://realtricks4u.blogspot.com/2010/06/lock-ur-cd-rom.html</link><category>PC Tricks</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Fri, 11 Jun 2010 15:44:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-1779904886982262019</guid><description>LOCK UR CD ROM!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Goto&lt;br /&gt;
&lt;br /&gt;
&amp;gt;run&lt;br /&gt;
&lt;br /&gt;
&amp;gt;type regedit&lt;br /&gt;
&lt;br /&gt;
&amp;gt;find allocatecdrom&lt;br /&gt;
&lt;br /&gt;
&amp;gt;change d value frm 1 to 0&lt;br /&gt;
&lt;br /&gt;
Done.&lt;br /&gt;
&lt;br /&gt;
2reset it to nrmal then type 1 in place of 0.</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>: Mein Tenu Samjhawan - Rahat Fateh Ali Khan,Farah</title><link>http://realtricks4u.blogspot.com/2010/04/mein-tenu-samjhawan-rahat-fateh-ali.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Mon, 26 Apr 2010 14:55:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-2636301868365143994</guid><description>&lt;a href="http://download474.mediafire.com/r2mgfuyynEzg/2my1d22fcxy/05+-+Mein+Tenu+Samjhawan.mp3"&gt;click here to download&lt;/a&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i40.tinypic.com/jzin4m.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" height="200" src="http://i40.tinypic.com/jzin4m.jpg" width="200" /&gt;&lt;/a&gt;&lt;/div&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://i40.tinypic.com/jzin4m_th.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Virsa (2010) Hindi Movie Mp3 Audio Songs Download Mediafire Links</title><link>http://realtricks4u.blogspot.com/2010/04/virsa-2010-hindi-movie-mp3-audio-songs.html</link><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Mon, 26 Apr 2010 14:53:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-3575991462088414859</guid><description>&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i40.tinypic.com/jzin4m.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://i40.tinypic.com/jzin4m.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Movie Name:::Virsa&lt;br /&gt;
Released Year:::March 2010&lt;br /&gt;
Cast:::Gulshan Grover,Shazia,Arya Babbar,Kanwaljeet,Mehreen Raheal,Naumaan Ijaas, Ruby,Aparna Sharma,Aman Dhaliwal&lt;br /&gt;
Genre:::Drama,Romance,Family&lt;br /&gt;
Music:::Jawad Ahmad&lt;br /&gt;
Banner:::Wize Mindz Entertainment Pvt. Ltd.&lt;br /&gt;
Director:::Pankaj Batra&lt;br /&gt;
Producer:::Dr Amanullah Khan,Jawad Ahmad,Vikram Khakhar&lt;br /&gt;
Lyrics:::Ahmad Anees,Dr Amanullah Khan&lt;br /&gt;
&lt;a href="http://www.kwdownloads.com/latestreleases/45603-virsa-2010-hindi-movie-mp3-audio-songs-download.html"&gt;click here to download&lt;/a&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="http://i40.tinypic.com/jzin4m_th.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>AirTel Free GPRS Trick 2010 april</title><link>http://realtricks4u.blogspot.com/2010/04/airtel-free-gprs-trick-2010-april.html</link><category>AIRTEL TRICKS</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Fri, 9 Apr 2010 23:55:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-4510797594122376249</guid><description>&amp;nbsp;AirTel Free GPRS Trick; Proxy:10.132.194.196 Port:8080 HP:https://fire-proxy.com APN:airtelmms.com DownloadOpera5.2&amp;amp;EnjoyFree</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Airtel trick 2Know ur Frnds Balance</title><link>http://realtricks4u.blogspot.com/2010/02/airtelbig-airtel-trick-2know-ur-frnds.html</link><category>AIRTEL TRICKS</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sat, 20 Feb 2010 01:37:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-238297476370972360</guid><description>&lt;td height="20" style="height: 15.0pt; width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;br /&gt;
&lt;td colspan="13" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 624pt;" width="832"&gt;&lt;/td&gt;&lt;br /&gt;
&amp;nbsp;Airtel trick 2Know ur Frnds Balance Send RBAL Mobno to   121 -Get Ur PUK No Snd Ur No to 785 Rcrg dtails MRP cost to 405 .&lt;br /&gt;
&lt;br /&gt;
&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;   &lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;   &lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;   &lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;   &lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;   &lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;   &lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;   &lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;   &lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;   &lt;td style="width: 48pt;" width="64"&gt;&lt;br /&gt;
&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td height="20" style="height: 15.0pt; width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;br /&gt;
&lt;/td&gt;&lt;td colspan="13" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 624pt;" width="832"&gt;&lt;/td&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>DoCoMo user Free Harrypotter Game</title><link>http://realtricks4u.blogspot.com/2010/02/docomo-user-free-harrypotter-game.html</link><category>TATA DOCOMO</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sat, 20 Feb 2010 01:35:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-5748492667117246851</guid><description>&lt;td height="20" style="height: 15.0pt; width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;http://122.170.122.194/tata/dg.jsp?channel=ONDECK&amp;amp;gname=HarryPotterMasteringMagic&amp;amp;cost=0&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;td colspan="15" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 720pt;" width="960"&gt;&amp;nbsp;&lt;/td&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td height="20" style="height: 15.0pt; width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td height="20" style="height: 15.0pt; width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td height="20" style="height: 15.0pt; width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>AirTel/Reliance Free GPRS</title><link>http://realtricks4u.blogspot.com/2010/02/airtelreliance-free-gprs.html</link><category>AIRTEL TRICKS</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sat, 20 Feb 2010 01:20:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-495811821973188577</guid><description>&lt;td colspan="14" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 672pt;" width="896"&gt;&amp;nbsp;AirTel/Reliance Free GPRS: Install This Browser!   *UCWEB 7* -   http://xchanger.mobi/get110993/otsZfnooot/ucweb7-final-english.jar&lt;/td&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Norton9 Key</title><link>http://realtricks4u.blogspot.com/2010/02/norton9-key.html</link><category>Serial keys</category><author>noreply@blogger.com (ReaL TricKs)</author><pubDate>Sat, 20 Feb 2010 01:18:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-2908195892291146516.post-115868227954043291</guid><description>&lt;td colspan="12" height="20" style="height: 15.0pt; mso-ignore: colspan; width: 576pt;" width="768"&gt;Norton9 Key &amp;nbsp;XFKBB-PQJJV-G9969-VWGXY-2V3XY. *Discover new *&lt;/td&gt;&lt;td height="20" style="height: 15.0pt; width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;&lt;td style="width: 48pt;" width="64"&gt;&lt;/td&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item></channel></rss>