<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>xtras &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/xtras/</link>
	<description>Feed of posts on WordPress.com tagged "xtras"</description>
	<pubDate>Mon, 04 Jan 2010 00:42:12 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Sphinx search configuration]]></title>
<link>http://flexlearner.wordpress.com/2009/12/03/sphinx-search/</link>
<pubDate>Thu, 03 Dec 2009 10:01:37 +0000</pubDate>
<dc:creator>techfavour</dc:creator>
<guid>http://flexlearner.wordpress.com/2009/12/03/sphinx-search/</guid>
<description><![CDATA[Configuring sphinx search in linux step1: Download the sphinx package for linux from http://www.sphi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h3><strong>Configuring sphinx search in linux</strong></h3>
<p><strong><br />
</strong></p>
<p><strong>step1</strong>: Download the sphinx package for linux from<a href="http://www.sphinxsearch.com/downloads.html" target="_blank"> http://www.sphinxsearch.com/downloads.html</a></p>
<p><strong>step2</strong>:place it in your filesystem under &#8216;/usr&#8217; directory.</p>
<p><strong>step 3</strong>:Then in terminal go to the directory by cd /usr/sphinx</p>
<p><strong>step4</strong>:configure by ./configure ,add your extension to the database by prefix <code>./configure--with-mysql </code> for mysql and<br />
for PostgreSQL  <code>./configure--with-pgsql</code></p>
<p><strong>step5</strong>:Build the binaries:<strong> $ make</strong></p>
<p><strong>step6</strong>:After make do <strong><strong>$ make install</strong></strong></p>
<p>Thats it sphinx is installed in your system</p>
<p>to configure a database write the configuration file for sphinx manually. and save as &#8220;sphinx.conf&#8221;</p>
<p><em><strong>(Example)</strong></em></p>
<p><strong>step7</strong>:create a database  called classroom<br />
with fields id, name, report,subject.</p>
<p><strong>step8</strong>:make directory called &#8216;data&#8217; and &#8216;log&#8217; in your sphinx installation folder<br />
<strong>$mkdir log</strong><br />
<strong>$mkdir data</strong>(if you dont understand just simply create 2 folder called &#8216;data&#8217; and &#8216;log&#8217; inside your sphinx folder , it should look like this sphinx/data and sphinx/log)</p>
<p>your sphinx.conf should be like this</p>
<div style="background-color:#dcdcdc;padding:1em;">source student<br />
{<br />
type            = mysql<br />
sql_sock        = /opt/lampp/var/mysql/mysql.sock<br />
sql_host        = localhost<br />
sql_user        = root<br />
sql_pass        =<br />
sql_db          = classroom<br />
sql_port        = 3306# optional, default is 3306<br />
sql_query       = SELECT id, name, report,subject from student<br />
sql_query_info  = SELECT * FROM student WHERE id=$id}<br />
index student<br />
{<br />
source          = student<br />
path            = data/student<br />
docinfo         = extern<br />
charset_type    = sbcs<br />
}indexer<br />
{<br />
mem_limit       = 32M<br />
}</p>
<p>searchd<br />
{<br />
port            = 3312<br />
log             = log/searchd.log<br />
query_log       = log/query.log<br />
read_timeout    = 5<br />
max_children    = 30<br />
pid_file        = log/searchd.pid<br />
max_matches     = 1000<br />
}</p>
</div>
<p><strong>Note</strong>:while entering data for  &#8216; <strong>sql_sock</strong>&#8216; check the directory it is usually in /opt/lampp/var/mysql/mysql.sock for ubuntu.(if you are confused try searching for mysql.sock in your filesystem and then enter its path).</p>
<p><strong>step9</strong>:then type <strong>$indexer</strong> ,the terminal would show the available option</p>
<p><strong>step 10</strong>:<strong>$indexer &#8211;all</strong> this  actually indexes all the datas which needed to indexed in the  data directory.</p>
<p><strong>step11</strong>: try searching your data by $search ezhil(in this case i have a name called ezhil in my database)</p>
<p><strong><strong><span style="color:#808080;"> </span>result:</strong></strong></p>
<p><strong><strong>displaying matches:<br />
1. document=2, weight=1<br />
id=2<br />
name=ezhil<br />
report=he is a leader<br />
subject=flexlearner.wordpress.com</strong></strong></p>
<p><strong><strong>words:<br />
1. &#8216;ezhil&#8217;: 1 documents, 1 hits</strong></strong></p>
<h2><strong><strong>happy searching&#8230;&#8230;.<br />
</strong></strong></h2>
<p><code><br />
</code></p>
<div id="_mcePaste" style="overflow:hidden;position:absolute;left:-10000px;top:273px;width:1px;height:1px;">
<pre>source book
{
    type            = mysql
    sql_host        = localhost
    sql_user        = root
    sql_pass        = root
    sql_db          = library
    sql_port        = 3306# optional, default is 3306
    sql_query       = SELECT id, title, summary, author from library
    sql_query_info  = SELECT * FROM library_book WHERE id=$id
}

index book
{
    source          = book
    path            = data/book
    docinfo         = extern
    charset_type    = sbcs
}

indexer
{
    mem_limit       = 32M
}

searchd
{
    port            = 3312
    log             = log/searchd.log
    query_log       = log/query.log
    read_timeout    = 5
    max_children    = 30
    pid_file        = log/searchd.pid
    max_matches     = 1000
}</pre>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Vettaikkaran Trailer - Vijay Latest Movie 2009]]></title>
<link>http://prasven.wordpress.com/2009/11/19/vettaikkaran-trailer-vijay-latest-movie-2009/</link>
<pubDate>Thu, 19 Nov 2009 15:03:11 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/11/19/vettaikkaran-trailer-vijay-latest-movie-2009/</guid>
<description><![CDATA[Watch the Trailer of Ilaya Thalapathy Vijay&#8217;s latest Tamil movie Vettaikkaran. This is a fan m]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Watch the Trailer of Ilaya Thalapathy Vijay&#8217;s latest Tamil movie Vettaikkaran. This is a fan made trailer of superstar Vijay&#8217;s upcoming movie Vettaikkaran. Directed by Babu Sivan, Vettaikaran stars Vijay and Anushka Shetty in the main roles. The songs of Vettaikaran are composed by music director Vijay Antony. Vettaikaran is expected to release on 18th December 2009.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/OnAfikVTk9M&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/OnAfikVTk9M&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Sony Vaio X series]]></title>
<link>http://prasven.wordpress.com/2009/11/07/sony-vaio-x-series/</link>
<pubDate>Sat, 07 Nov 2009 04:35:21 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/11/07/sony-vaio-x-series/</guid>
<description><![CDATA[Sony Vaio X series notebook key features: Comes in two styles – one with a smooth glossy finish and ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-3239" title="sony-vaio-x-series-notebook" src="http://prasven.wordpress.com/files/2009/11/sony-vaio-x-series-notebook.jpg" alt="sony-vaio-x-series-notebook" width="450" height="320" /></p>
<h3 style="text-align:justify;">Sony Vaio X series notebook key features:</h3>
<ul>
<li>Comes in two styles – one with a smooth glossy finish and the other being a matt metal look</li>
<li>Supports different battery variants (if not the standard one, the weight could increase to 755 gms)</li>
<li>Battery will last ‘a working day’ or 16 hours</li>
<li>11.1 inch LCD display having a resolution of 1366×768 pixels and is LED backlit</li>
<li>Well-spaced keyboard</li>
<li>Integrated with mobile broadband (UMTS) – no external broadband cable required</li>
<li>2USB ports, VGA port, Ethernet socket and SD/ Memory Stick reader</li>
<li>Built Motion-Eye webcam</li>
<li>32 bit Windows 7′ pre-installed</li>
</ul>
<p>Sony plans to make a big impact with this miniature series, having romped in the original size-zero, Bollywood actress Kareena Kapoor as its brand ambassador.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Sony Ericsson W715]]></title>
<link>http://prasven.wordpress.com/2009/11/07/sony-ericsson-w715/</link>
<pubDate>Sat, 07 Nov 2009 04:30:51 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/11/07/sony-ericsson-w715/</guid>
<description><![CDATA[Sony Ericsson W715 Specifications: 2G Network:GSM 850 / 900 / 1800 / 1900 3G Network:HSDPA 900 / 190]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><img class="aligncenter size-full wp-image-3237" title="Sony-Ericsson-W715" src="http://prasven.wordpress.com/files/2009/11/sony-ericsson-w715.jpg" alt="Sony-Ericsson-W715" width="450" height="352" /></p>
<h3 style="text-align:justify;"><span style="color:#808000;"><span style="text-decoration:underline;">Sony Ericsson W715 Specifications:</span></span></h3>
<ul>
<li><span style="color:#808000;">2G Network:GSM 850 / 900 / 1800 / 1900</span></li>
<li><span style="color:#808000;">3G Network:HSDPA 900 / 1900 / 2100 / 1700</span></li>
<li><span style="color:#808000;">Dimensions:95 x 47.5 x 14.3 mm</span></li>
<li><span style="color:#808000;">Weight:98 g</span></li>
<li><span style="color:#808000;">Display:2.4 inches TFT, 256K colors,240 x 320 pixels,</span></li>
<li><span style="color:#808000;">Accelerometer sensor for auto-rotate</span></li>
<li><span style="color:#808000;">Internal Memory – 120 MB;  Memory Stick Micro (M2), expandable up to 8GB</span></li>
<li><span style="color:#808000;">GPRS, EDGE, 3G, Wi-Fi, Bluetooth, USB</span></li>
<li><span style="color:#808000;">3.2 Megapixel, 2048×1536 pixels, LED flash,Geo-tagging</span></li>
<li><span style="color:#808000;">Secondary Videocall camera</span></li>
<li><span style="color:#808000;">Stereo FM radio with RDS</span></li>
<li><span style="color:#808000;">TrackID music recognition</span></li>
<li><span style="color:#808000;">MP3/AAC/MP4 player, Walkman 3.0 player</span></li>
<li><span style="color:#808000;">Shake control, Sense ME</span></li>
<li><span style="color:#808000;">Motion gaming</span></li>
<li><span style="color:#808000;">GPS with A-GPS support</span></li>
<li><span style="color:#808000;">Standard battery, Li-Ion</span></li>
<li><span style="color:#808000;">Stand-by: Up to 400 h (2G) / Up to 350 h (3G)</span></li>
<li><span style="color:#808000;">Talk time : Up to 10 h (2G) / Up to 4 h (3G)</span></li>
<li><span style="color:#808000;">Available Colors: Galactic Black, Luxury Silver</span></li>
</ul>
<h5><span style="color:#808000;"><span style="text-decoration:underline;">Sony Ericsson W715 Mobile India Price (Approx.) : Rs.15,990/- INR Price</span></span></h5>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cat becomes a Cleaner - Picture of the Day]]></title>
<link>http://prasven.wordpress.com/2009/10/30/cat-becomes-a-cleaner-picture-of-the-day/</link>
<pubDate>Fri, 30 Oct 2009 15:21:58 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/10/30/cat-becomes-a-cleaner-picture-of-the-day/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-2763" title="cat-cleans-up-his-own-mess-31290-1256841185-7" src="http://prasven.wordpress.com/files/2009/10/cat-cleans-up-his-own-mess-31290-1256841185-7.jpg" alt="cat-cleans-up-his-own-mess-31290-1256841185-7" width="540" height="381" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Samsung I5700 Galaxy Spica Mobile]]></title>
<link>http://prasven.wordpress.com/2009/10/29/samsung-i5700-galaxy-spica-mobile/</link>
<pubDate>Thu, 29 Oct 2009 13:58:04 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/10/29/samsung-i5700-galaxy-spica-mobile/</guid>
<description><![CDATA[Key Features of Samsung I5700 Galaxy Spica: Standard battery, Li-Ion 1500 mAh 3.2 Megapixels Camera ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div>
<div>
<p style="text-align:center;"><img class="aligncenter" title="Samsung-I5700-Galaxy-Spica" src="http://prasnna23.files.wordpress.com/2009/10/samsung-i5700-galaxy-spica.jpg?w=157&#038;h=300#38;h=300" alt="Samsung-I5700-Galaxy-Spica" width="157" height="300" /></p>
<h4>Key Features of Samsung I5700 Galaxy Spica:</h4>
<ul>
<li>Standard battery, Li-Ion 1500 mAh</li>
<li>3.2 Megapixels Camera</li>
<li>MP3/MPEG4 Player</li>
<li>GPRS, EDGE, 3G,  WLAN, Bluetooth, USB</li>
<li>3.2 inch AMOLED capacitive touchscreen, 16M colors Display</li>
</ul>
</div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[WWE Bragging Rights Results]]></title>
<link>http://prasven.wordpress.com/2009/10/26/wwe-bragging-rights-results/</link>
<pubDate>Mon, 26 Oct 2009 17:31:01 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/10/26/wwe-bragging-rights-results/</guid>
<description><![CDATA[The Miz vs. John Morrison &#8211; Champion vs. Champion -Click Here For Results Mysterio-Batista-Pun]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-2701" title="wwe-bragging-rights-2009-matches1" src="http://prasven.wordpress.com/files/2009/10/wwe-bragging-rights-2009-matches1.jpg" alt="wwe-bragging-rights-2009-matches1" width="600" height="450" /></p>
<p><span style="color:#ff0000;">The Miz vs. John Morrison &#8211;  Champion vs. Champion</span> -<a href="http://prasven.wordpress.com/2009/05/26/champion-vs-champion/" target="_blank">Click Here For Results</a><br />
<span style="color:#ff0000;">Mysterio-Batista-Punk-Undertaker-Heavyweight Title</span> -<a href="http://prasven.wordpress.com/2009/05/26/world-heavyweight-championship/" target="_blank">Click Here For Results</a><br />
<span style="color:#ff0000;"> Team Raw vs. Team Smackdown</span> -<a href="http://prasven.wordpress.com/2009/05/26/team-raw-vs-team-smackdown/" target="_blank">Click Here For Results</a><br />
<span style="color:#ff0000;"> John Cena vs. Randy Orton-WWE Title IronManMatch</span> -<a href="http://prasven.wordpress.com/2009/05/26/wwe-champion/" target="_blank">Click Here For Results</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dil Bole Hadippa Video Song Download]]></title>
<link>http://prasven.wordpress.com/2009/10/18/dil-bole-hadippa-video-song-download/</link>
<pubDate>Sun, 18 Oct 2009 08:12:21 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/10/18/dil-bole-hadippa-video-song-download/</guid>
<description><![CDATA[Rapidshare Link http://rapidshare.com/files/280308162/Hadippa.DBH.720p.UpScaled.KiL0.By.TuHiN.TsG.mk]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img src="http://i29.tinypic.com/2urxtog.jpg" border="0" alt="" /></p>
<p style="text-align:center;"><img src="http://lookpic.com/i/275/LYpFGAhK.png" border="0" alt="" /></p>
<p style="text-align:center;"><img src="http://i30.tinypic.com/168eo15.jpg" border="0" alt="" width="640" height="264" /></p>
<p style="text-align:center;"><img src="http://i27.tinypic.com/2mgo274.png" border="0" alt="" width="640" height="264" /></p>
<p style="text-align:center;"><img class="aligncenter" src="http://lookpic.com/i/845/8ChwkUTq.png" border="0" alt="" /></p>
<p style="text-align:center;"><strong>Rapidshare Link</strong></p>
<p style="text-align:center;"><span style="color:#3366ff;">http://rapidshare.com/files/280308162/Hadippa.DBH.720p.UpScaled.KiL0.By.TuHiN.TsG.mkv</span></p>
<p style="text-align:center;"><strong>HotFile Link</strong></p>
<p style="text-align:center;"><span style="color:#3366ff;">http://hotfile.com/dl/12555151/b981cd9/Hadippa.DBH.720p.UpScaled.KiL0.By.TuHiN.TsG.mkv.html</span></p>
<p style="text-align:center;"><strong>FileFactory Link</strong></p>
<p style="text-align:center;"><span style="color:#3366ff;">http://www.filefactory.com/file/ah9ced5/n/Hadippa_DBH_720p_UpScaled_KiL0_By_TuHiN_TsG_mkv</span></p>
<p style="text-align:center;"><strong>FileUpload Link</strong></p>
<p style="text-align:center;"><span style="color:#3366ff;">http://ul.to/7urghd/Hadippa.DBH.720p.UpScaled.KiL0.By.TuHiN.TsG.mkv</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Aadhavan Movie - Review]]></title>
<link>http://prasven.wordpress.com/2009/10/18/aadhavan-movie-review/</link>
<pubDate>Sun, 18 Oct 2009 07:29:00 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/10/18/aadhavan-movie-review/</guid>
<description><![CDATA[Aadhavan Movie Cast Cast: Surya, Nayanthara, Rahul Dev, Anand Babu, Saroja Devi, Vadivelu, Ramesh Kh]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-2620" title="Aadhavan-22" src="http://prasven.wordpress.com/files/2009/10/aadhavan-22.jpg" alt="Aadhavan-22" width="600" height="398" /></p>
<h3><span style="color:#800000;"><span style="text-decoration:underline;">Aadhavan Movie Cast</span></span></h3>
<p><span style="color:#cc99ff;"><span style="color:#ff6600;">Cast</span>: Surya, Nayanthara, Rahul Dev, Anand Babu, Saroja Devi, Vadivelu, Ramesh Khanna, Sayaji Shinde, Nassar<br />
<span style="color:#ff6600;"> Direction</span>: K.S.Ravikumar<br />
<span style="color:#ff6600;"> Music</span>: Harris Jayaraj<br />
<span style="color:#ff6600;"> Production</span>: Red Giant Movies<br />
<span style="color:#ff6600;"> Released on</span>: 17th October 2009</span><br />
<span style="color:#cc99ff;"><span style="color:#ff6600;">Aadhavan Movie Rating</span>: 3.5/5</span></p>
<h3><span style="color:#800000;"><span style="text-decoration:underline;">Aadhavan Movie Review</span></span></h3>
<p style="text-align:justify;">One of Kollywood’s much expected movie of recent times K.S Ravikumar directed Aadhavan has hit the screens today. Actor Surya is targeting a hat trick of Box Office hits with Aadhavan while K.S Ravikumar is expecting a hit after his mega Box office hit Dasavatharam. Aadhavan is surely an commercial entertainer with trade mark K.S Ravikumar formula and surely you will have a good time while watching the movie with your family this Diwali although the movie certain flaws and lacks logic.</p>
<p style="text-align:justify;">Surya(Aadhavan) is a professional trained assassin shooter and always completes his assignments without missing the target. Aadhavan has given a big job to take down a judge, but the bullet from the trained shooter’s Snipper misses the judge and he escapes. For the first time Aadhavan fails, but he has to protect his reputation and the client interest. Now how Aadhavan, finishes the job forms the rest of story and you will sure enjoy the course of the movie watching it in big screen.</p>
<p style="text-align:justify;">After the initial scenes of assassin you might of have think of a suspense filled action thriller plot. But you will get the exact opposite of it with the introduction of a large joint family which has Saroja Devi (on screen after 12 years), Thara(Nayanthara), Murali and Vadivelu. Surya joins the mix and you are in for a hilarious one and a half hours.</p>
<p style="text-align:justify;">Surya does his role with ease and he neatly fits the role of a assassin. Surya’s effort and risks taken in the fight sequences, especially the first chase through Kolkata where he can be seen jumping over rooftops etc.., tell a lot about commitment and surely he has to be applauded for it. Surya looks very very stylish in the movie and also brings out different shades of the character he portrays. Surya also appears as a 4 feet tall 10 year old boy which will be of first time in Tamil cinema. Nayanthara after a long time escapes the glamour route and looks fresh and has done justice to her role.</p>
<p style="text-align:justify;">Harris Jayraj music is a big plus point for the movie and songs are already topping the charts. Hasile Fisiliye song and Yaeno Panithulli song visuals are stunning with their exotic location.</p>
<p style="text-align:justify;">On a whole the movie is a complete family entertainer which has all the trade mark ingredients of K.S Ravikumar such as action, comedy, sentiment, romance, music and masala. The movie lacks some pace at some parts and also has some flaws here and there. But on a whole Surya has given his hat trick hit and K.S Ravikumar has proved his reputation again that he is the number 1 commercial director in tamil cinema.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Ricky Martin VideoSongs]]></title>
<link>http://prasven.wordpress.com/2009/09/27/ricky-martin-videosongs/</link>
<pubDate>Sun, 27 Sep 2009 13:44:11 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/09/27/ricky-martin-videosongs/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/GnUyA2Lxris&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/GnUyA2Lxris&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Arnold Schwarzenegger]]></title>
<link>http://prasven.wordpress.com/2009/09/27/arnold-schwarzenegger/</link>
<pubDate>Sun, 27 Sep 2009 05:38:21 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/09/27/arnold-schwarzenegger/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/my6IroYcyEI&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/my6IroYcyEI&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Blog Oklahoma Podcast 38]]></title>
<link>http://blogoklahoma.wordpress.com/2009/08/31/blog-oklahoma-podcast-38/</link>
<pubDate>Mon, 31 Aug 2009 14:03:01 +0000</pubDate>
<dc:creator>K.</dc:creator>
<guid>http://blogoklahoma.wordpress.com/2009/08/31/blog-oklahoma-podcast-38/</guid>
<description><![CDATA[I posted the latest podcast last night. Blog Oklahoma Podcast 38: Oklahoma, Go Blog Something http:/]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="utterz-entry utterli-entry">
<div class="utterz-text utterli-text">I posted the latest podcast last night. Blog Oklahoma Podcast 38: Oklahoma, Go Blog Something <a href="http://bit.ly/wxh6q" class="external_lnk">http://bit.ly/wxh6q</a></div>
<p><a target="_new" href="http://www.utterli.com/u/utt/u-OTEyNjg3MQ">Mobile post</a> sent by <a target="_new" href="http://www.utterli.com/ProgramWitch">ProgramWitch</a> using <a target="_new" href="http://www.utterli.com">Utterli</a>.&#160;<a target="_new" href="http://www.utterli.com/u/utt/u-OTEyNjg3MQ"><img border="0" style="vertical-align:middle;border:none;padding:0;" src="http://www.utterli.com/u/reply_count/u-OTEyNjg3MQ" alt="reply-count" /></a>&#160;<a target="_new" href="http://www.utterli.com/u/utt/u-OTEyNjg3MQ">Replies</a>.</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Vettaikaran Videos]]></title>
<link>http://prasven.wordpress.com/2009/08/27/vettaikaran-videos/</link>
<pubDate>Thu, 27 Aug 2009 12:57:50 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/08/27/vettaikaran-videos/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/vKcF6bmTbr4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/vKcF6bmTbr4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Proposal của Sandra Bullock]]></title>
<link>http://filmcriticvn.org/2009/08/27/the-proposal/</link>
<pubDate>Wed, 26 Aug 2009 19:15:04 +0000</pubDate>
<dc:creator>sundy2211</dc:creator>
<guid>http://filmcriticvn.org/2009/08/27/the-proposal/</guid>
<description><![CDATA[Bài đăng ở đây là một bài tập nhận xét về kịch bản của phim nên rất có thể có một số chi tiết sẽ khá]]></description>
<content:encoded><![CDATA[Bài đăng ở đây là một bài tập nhận xét về kịch bản của phim nên rất có thể có một số chi tiết sẽ khá]]></content:encoded>
</item>
<item>
<title><![CDATA[For Advertising Contact:]]></title>
<link>http://prasven.wordpress.com/2009/08/12/for-advertising-contact/</link>
<pubDate>Wed, 12 Aug 2009 15:45:31 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/08/12/for-advertising-contact/</guid>
<description><![CDATA[Name : Prasanna Mail Id : prasan123venki@gmail.com PayPal ID : prasan123venki@gmail.com Contact : 98]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Name : Prasanna</p>
<p>Mail Id : prasan123venki@gmail.com</p>
<p>PayPal ID : prasan123venki@gmail.com</p>
<p>Contact : 9840742164</p>
<p>Advertising Packages:</p>
<table border="0" cellspacing="0" cellpadding="0" width="192">
<tbody>
<tr>
<td width="64" height="20">Size</td>
<td width="64">Period</td>
<td width="64">Amount</td>
</tr>
<tr>
<td height="20">200 x 200</td>
<td>1 Month</td>
<td>5$</td>
</tr>
<tr>
<td height="20">200 x 200</td>
<td>3 Weeks</td>
<td>4$</td>
</tr>
<tr>
<td height="20">200 x 200</td>
<td>2 Weeks</td>
<td>3$</td>
</tr>
<tr>
<td height="20">200 x 200</td>
<td>1 Weeks</td>
<td>2$</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<table border="0" cellspacing="0" cellpadding="0" width="192">
<col span="3" width="64"></col>
<tbody>
<tr>
<td width="64" height="20">Size</td>
<td width="64">Period</td>
<td width="64">Amount</td>
</tr>
<tr>
<td height="20">125 x 125</td>
<td>1 Month</td>
<td>4$</td>
</tr>
<tr>
<td height="20">125 x 125</td>
<td>3 Weeks</td>
<td>3$</td>
</tr>
<tr>
<td height="20">125 x 125</td>
<td>2 Weeks</td>
<td>2$</td>
</tr>
<tr>
<td height="20">125 x 125</td>
<td>1 Weeks</td>
<td>1$</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[5 year old romanian as strongest child]]></title>
<link>http://prasven.wordpress.com/2009/07/29/5-year-old-romanian-as-strongest-child/</link>
<pubDate>Wed, 29 Jul 2009 13:44:45 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/07/29/5-year-old-romanian-as-strongest-child/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/PndJi2Sia2w&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/PndJi2Sia2w&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Kurbaan Kissing Scene]]></title>
<link>http://prasven.wordpress.com/2009/07/26/kurbaan-kissing-scene/</link>
<pubDate>Sun, 26 Jul 2009 04:48:33 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/07/26/kurbaan-kissing-scene/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/hy0Y-1D7oA0&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/hy0Y-1D7oA0&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shilpa Shetty Blouse Malfunction]]></title>
<link>http://prasven.wordpress.com/2009/07/01/shilpa-shetty-blouse-malfunction/</link>
<pubDate>Wed, 01 Jul 2009 13:15:15 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/07/01/shilpa-shetty-blouse-malfunction/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/qOtE5JRrKkg&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/qOtE5JRrKkg&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Blog Oklahoma Podcast 31: Back from Vacation]]></title>
<link>http://blogoklahoma.wordpress.com/2009/06/28/blog-oklahoma-podcast-31-back-from-vacation/</link>
<pubDate>Mon, 29 Jun 2009 05:18:35 +0000</pubDate>
<dc:creator>K.</dc:creator>
<guid>http://blogoklahoma.wordpress.com/2009/06/28/blog-oklahoma-podcast-31-back-from-vacation/</guid>
<description><![CDATA[I was sitting in the shade with a cool beverage, but the vacation is over. Time for a podcast. Show ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="utterz-entry utterli-entry">
<div class="utterz-audio utterli-audio"><span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://wordpress.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://wordpress.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=0xFFFFFF&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=http%3A%2F%2Fwww.utterli.com%2Futts%2F75%2F755739ec40b8e723e4b526a6afff0352.mp3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /></object></p></span> </p>
</div>
<div class="utterz-image utterli-image"><a target="_new" href="http://www.utterli.com/u/utt/u-ODY3NzgyNQ"><img alt="utterli-image" border="0" src="http://www.utterli.com/imgs/i/05/058aa693e93aed002597b1d9c39d1de2.jpeg" /></a></p>
</div>
<div class="utterz-text utterli-text">I was sitting in the shade with a cool beverage, but the vacation is over. Time for a podcast. <br />
Show Notes:  <a href="http://www.blogoklahoma.com/blog.asp?id=1233" class="external_lnk">http://www.blogoklahoma.com/blog.asp</a></p>
</div>
<p><a target="_new" href="http://www.utterli.com/u/utt/u-ODY3NzgyNQ">Mobile post</a> sent by <a target="_new" href="http://www.utterli.com/ProgramWitch">ProgramWitch</a> using <a target="_new" href="http://www.utterli.com">Utterli</a>.&#160;<a target="_new" href="http://www.utterli.com/u/utt/u-ODY3NzgyNQ"><img border="0" style="vertical-align:middle;border:none;padding:0;" src="http://www.utterli.com/u/reply_count/u-ODY3NzgyNQ" alt="reply-count" /></a>&#160;<a target="_new" href="http://www.utterli.com/u/utt/u-ODY3NzgyNQ">Replies</a>.&#160;&#160;<a href="http://www.utterli.com/utts/75/755739ec40b8e723e4b526a6afff0352.mp3">mp3</a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Vettaikaran - 2]]></title>
<link>http://prasven.wordpress.com/2009/06/23/vettaikaran-2/</link>
<pubDate>Tue, 23 Jun 2009 14:24:30 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/06/23/vettaikaran-2/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://prasven.wordpress.com/2009/09/29/oru-chinna-thamarai-song-lyrics-%e2%80%93-vettaikaran-lyrics/"><img class="aligncenter size-full wp-image-3695" title="vijay-vettaikaran-new-look-photo-02" src="http://prasven.wordpress.com/files/2009/11/vijay-vettaikaran-new-look-photo-02.jpg" alt="" width="500" height="273" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Vettaikaran - 1]]></title>
<link>http://prasven.wordpress.com/2009/06/23/vettaikaran-1/</link>
<pubDate>Tue, 23 Jun 2009 14:23:10 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/06/23/vettaikaran-1/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://prasven.wordpress.com/2009/09/28/karigalan-song-lyrics-%e2%80%93-vettaikaran-lyrics/"><img class="aligncenter size-full wp-image-3693" title="vijay-vettaikaran-new-look-photo-01" src="http://prasven.wordpress.com/files/2009/11/vijay-vettaikaran-new-look-photo-01.jpg" alt="" width="350" height="253" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Sameera Reddy6]]></title>
<link>http://prasven.wordpress.com/2009/06/12/sameera-reddy6/</link>
<pubDate>Fri, 12 Jun 2009 17:22:33 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/06/12/sameera-reddy6/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://prasven.wordpress.com/2009/09/30/sameera-reddy-is-hot-in-lakme-fasion-week/"><img src="http://prasven.wordpress.com/files/2009/11/normal_sameerareddy0011.jpg" alt="normal_sameerareddy0011" title="normal_sameerareddy0011" width="457" height="640" class="aligncenter size-full wp-image-3482" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Sameera Reddy5]]></title>
<link>http://prasven.wordpress.com/2009/06/12/sameera-reddy5/</link>
<pubDate>Fri, 12 Jun 2009 17:22:29 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/06/12/sameera-reddy5/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://prasven.wordpress.com/2009/11/09/south-indian-bank-recruitment-of-probationary-clerks/"><img src="http://prasven.wordpress.com/files/2009/11/3.jpg" alt="3" title="3" width="600" height="450" class="aligncenter size-full wp-image-3481" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Priyamani Bikini 15]]></title>
<link>http://prasven.wordpress.com/2009/05/07/priyamani-bikini-15/</link>
<pubDate>Thu, 07 May 2009 12:19:21 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/05/07/priyamani-bikini-15/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-3281" title="priyamani-hot-sexy-bikini-stills-pics-photo-gallery-wallpapers-01" src="http://prasven.wordpress.com/files/2009/11/priyamani-hot-sexy-bikini-stills-pics-photo-gallery-wallpapers-01.jpg" alt="priyamani-hot-sexy-bikini-stills-pics-photo-gallery-wallpapers-01" width="586" height="605" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Priyamani Bikini 11]]></title>
<link>http://prasven.wordpress.com/2009/05/07/priyamani-bikini-11/</link>
<pubDate>Thu, 07 May 2009 12:18:05 +0000</pubDate>
<dc:creator>prasven</dc:creator>
<guid>http://prasven.wordpress.com/2009/05/07/priyamani-bikini-11/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-3272" title="priyamani-bikini-photos-43" src="http://prasven.wordpress.com/files/2009/11/priyamani-bikini-photos-43.jpg" alt="priyamani-bikini-photos-43" width="600" height="734" /></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
