<?xml version="1.0"?>










<rss version="2.0">
  <channel>
    <title><![CDATA[Chavansoft]]></title>
    <link>http://chavansoft.webs.com/blog.htm</link>
    <description><![CDATA[Hi its me]]></description>
    <generator>Freewebs</generator>

    <item>
      <title><![CDATA[Link Exchange Web & Blog Directory of Top Sites Dmegs.com]]></title>
      <link>http://chavansoft.webs.com/blog.htm?blogentryid=3460943</link>
      <description><![CDATA[Listed on: <a name="" target="_blank" href="http://www.dmegs.com">Blog Directory</a>]]></description>
      <comments>http://chavansoft.webs.com/blog.htm?blogentryid=3460943#topBox</comments>
      <guid isPermaLink="true">http://chavansoft.webs.com/blog.htm?blogentryid=3460943</guid>
      <pubDate>Thu, 22 May 2008 02:35:00 -0100</pubDate>
    </item>

    <item>
      <title><![CDATA[The Little Web Directory]]></title>
      <link>http://chavansoft.webs.com/blog.htm?blogentryid=3460923</link>
      <description><![CDATA[<br><a name="" href="http://www.littlewebdirectory.com/">The Little Web Directory</a><br><br><a name="" href="http://www.littlewebdirectory.com/">Free Web Directory - Add Your Link</a><br>]]></description>
      <comments>http://chavansoft.webs.com/blog.htm?blogentryid=3460923#topBox</comments>
      <guid isPermaLink="true">http://chavansoft.webs.com/blog.htm?blogentryid=3460923</guid>
      <pubDate>Thu, 22 May 2008 02:21:00 -0100</pubDate>
    </item>

    <item>
      <title><![CDATA[Free website Directory]]></title>
      <link>http://chavansoft.webs.com/blog.htm?blogentryid=3460916</link>
      <description><![CDATA[<a href="http://www.freewebsitedirectory.com/">Free Website Directory</a><br><br><a name="" style="color: aliceblue;" href="http://www.freewebsitedirectory.com/" target="_blank">http://www.freewebsitedirectory.com&nbsp; </a><br><br><br>]]></description>
      <comments>http://chavansoft.webs.com/blog.htm?blogentryid=3460916#topBox</comments>
      <guid isPermaLink="true">http://chavansoft.webs.com/blog.htm?blogentryid=3460916</guid>
      <pubDate>Thu, 22 May 2008 02:18:00 -0100</pubDate>
    </item>

    <item>
      <title><![CDATA[Free Website directory]]></title>
      <link>http://chavansoft.webs.com/blog.htm?blogentryid=3446935</link>
      <description><![CDATA[<div style="text-align: center;"><a name="" target="_blank" href="http://www.submitexpress.com"><img src="http://www.submitexpress.com/submitexpress.gif" border="0"></a> <a name="" href="http://www.submitexpress.com">Search Engine Optimization and SEO Tools</a></div>]]></description>
      <comments>http://chavansoft.webs.com/blog.htm?blogentryid=3446935#topBox</comments>
      <guid isPermaLink="true">http://chavansoft.webs.com/blog.htm?blogentryid=3446935</guid>
      <pubDate>Mon, 19 May 2008 04:15:00 -0100</pubDate>
    </item>

    <item>
      <title><![CDATA[Captcha Code ]]></title>
      <link>http://chavansoft.webs.com/blog.htm?blogentryid=3446905</link>
      <description><![CDATA[&lt;?php<br>session_start();<br><br><br>class CaptchaSecurityImages &#123;<br><br>&nbsp;&nbsp;&nbsp; var $font = 'monofont.ttf';<br><br>&nbsp;&nbsp;&nbsp; function generateCode($characters) &#123;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $possible = '23456789bcdfghjkmnpqrstvwxyz';<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $code = '';<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $i = 0;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; while ($i &lt; $characters) &#123; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $code .= substr($possible, mt_rand(0, strlen($possible)-1), 1);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $i++;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &#125;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return $code;<br>&nbsp;&nbsp;&nbsp; &#125;<br><br>&nbsp;&nbsp;&nbsp; function CaptchaSecurityImages($width='120',$height='40',$characters='6') &#123;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $code = $this-&gt;generateCode($characters);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $font_size = $height * 0.75;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $image = @imagecreate($width, $height) or die('Cannot initialize new GD image stream');<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $background_color = imagecolorallocate($image, 255, 255, 255);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $text_color = imagecolorallocate($image, 20, 40, 100);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $noise_color = imagecolorallocate($image, 100, 120, 180);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; for( $i=0; $i&lt;($width*$height)/3; $i++ ) &#123;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; imagefilledellipse($image, mt_rand(0,$width), mt_rand(0,$height), 1, 1, $noise_color);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &#125;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; for( $i=0; $i&lt;($width*$height)/150; $i++ ) &#123;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; imageline($image, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $noise_color);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &#125;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $textbox = imagettfbbox($font_size, 0, $this-&gt;font, $code) or die('Error in imagettfbbox function');<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $x = ($width - $textbox[4])/2;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $y = ($height - $textbox[5])/2;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; imagettftext($image, $font_size, 0, $x, $y, $text_color, $this-&gt;font , $code) or die('Error in imagettftext function');<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; header('Content-Type: image/jpeg');<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; imagejpeg($image);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; imagedestroy($image);<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $_SESSION['security_code'] = $code;<br>&nbsp;&nbsp;&nbsp; &#125;<br><br>&#125;<br><br>$width = isset($_GET['width']) ? $_GET['width'] : '120';<br>$height = isset($_GET['height']) ? $_GET['height'] : '40';<br>$characters = isset($_GET['characters']) &amp;&amp; $_GET['characters'] &gt; 1 ? $_GET['characters'] : '6';<br><br>$captcha = new CaptchaSecurityImages($width,$height,$characters);<br><br>?&gt;<br>]]></description>
      <comments>http://chavansoft.webs.com/blog.htm?blogentryid=3446905#topBox</comments>
      <guid isPermaLink="true">http://chavansoft.webs.com/blog.htm?blogentryid=3446905</guid>
      <pubDate>Mon, 19 May 2008 03:54:00 -0100</pubDate>
    </item>

    <item>
      <title><![CDATA[Get Your Blog Listed in the Million Blog List!]]></title>
      <link>http://chavansoft.webs.com/blog.htm?blogentryid=3375149</link>
      <description><![CDATA[<h2 class="entry-title"><a href="http://technorati.com/posts/4%2Bsi7WJZg0Ox5tuHCUNft4Bbsanebfb%2B1EX2tYNVUr0%3D"><br></a></h2>
                <a rel="bookmark" class="url" href="http://fird.kucing-kelabu.com/2008/05/03/get-your-blog-listed-in-the-million-blog-list/">http://fird.kucing-kelabu.com/ 2008/ 05/ 03/ get-your-blog-listed-in-the-million&#133;</a>                
                <div class="excerpt">
                    <blockquote class="entry-summary" cite="http://fird.kucing-kelabu.com/2008/05/03/get-your-blog-listed-in-the-million-blog-list/">
                        <p>
This project is organized by the MillionBlogList.com, with the
objective of seeing how long does it take to list 1,000,000 blogs in
the site. As mentioned by the organizers: First off, welcome to the
site. It is said that there are over 70,000,000 blogs in existence. </p>
                    </blockquote>
                </div>]]></description>
      <comments>http://chavansoft.webs.com/blog.htm?blogentryid=3375149#topBox</comments>
      <guid isPermaLink="true">http://chavansoft.webs.com/blog.htm?blogentryid=3375149</guid>
      <pubDate>Sat, 03 May 2008 08:06:00 -0100</pubDate>
    </item>

    <item>
      <title><![CDATA[WordPress Weekly Podcast Interview Tonight]]></title>
      <link>http://chavansoft.webs.com/blog.htm?blogentryid=3375131</link>
      <description><![CDATA[<a class="url" href="http://xfep.com/podcast/wordpress-weekly-podcast-interview-tonight/">http://xfep.com/ podcast/ wordpress-weekly-podcast-interview-tonight/ </a>
        <div class="content">WordPress
Weekly Podcast Interview Tonight 2.05.2008 Author: David In: Interview,
Podcast For those of you tracking my every move, or just looking to get
some questions answered by me, please head on over to the WordPress
Weekly podcast tonight where I will be interviewed, questioned, poked
and prodded for a minimum of one hour, starting at 9PM eastern. ...</div>
        <div class="meta">
            <span class="updated"> 20 hours ago</span>
                            by <a href="http://technorati.com/people/technorati/davidcubed">davidcubed</a>
                        in <a href="http://technorati.com/blogs/xfep.com">eXtra For Every Publisher</a>
        </div>]]></description>
      <comments>http://chavansoft.webs.com/blog.htm?blogentryid=3375131#topBox</comments>
      <guid isPermaLink="true">http://chavansoft.webs.com/blog.htm?blogentryid=3375131</guid>
      <pubDate>Sat, 03 May 2008 07:55:00 -0100</pubDate>
    </item>

  </channel>
</rss>

