<?xml version="1.0" encoding="utf-8"?>











<feed xmlns="http://www.w3.org/2005/Atom">
  <title><![CDATA[Chavansoft]]></title>
  <link href="http://chavansoft.webs.com/blog.htm"/>
  <generator>Freewebs</generator>
  <id>http://chavansoft.webs.com/blog.htm</id>

  <entry>
    <title><![CDATA[Link Exchange Web & Blog Directory of Top Sites Dmegs.com]]></title>
    <link href="http://chavansoft.webs.com/blog.htm?blogentryid=3460943"/>
    <content type="html"><![CDATA[Listed on: <a name="" target="_blank" href="http://www.dmegs.com">Blog Directory</a>]]></content>
    <id>http://chavansoft.webs.com/blog.htm?blogentryid=3460943</id>
    <published>2008-5-22T02:35:00-0100</published>
  </entry>

  <entry>
    <title><![CDATA[The Little Web Directory]]></title>
    <link href="http://chavansoft.webs.com/blog.htm?blogentryid=3460923"/>
    <content type="html"><![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>]]></content>
    <id>http://chavansoft.webs.com/blog.htm?blogentryid=3460923</id>
    <published>2008-5-22T02:21:00-0100</published>
  </entry>

  <entry>
    <title><![CDATA[Free website Directory]]></title>
    <link href="http://chavansoft.webs.com/blog.htm?blogentryid=3460916"/>
    <content type="html"><![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>]]></content>
    <id>http://chavansoft.webs.com/blog.htm?blogentryid=3460916</id>
    <published>2008-5-22T02:18:00-0100</published>
  </entry>

  <entry>
    <title><![CDATA[Free Website directory]]></title>
    <link href="http://chavansoft.webs.com/blog.htm?blogentryid=3446935"/>
    <content type="html"><![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>]]></content>
    <id>http://chavansoft.webs.com/blog.htm?blogentryid=3446935</id>
    <published>2008-5-19T04:15:00-0100</published>
  </entry>

  <entry>
    <title><![CDATA[Captcha Code ]]></title>
    <link href="http://chavansoft.webs.com/blog.htm?blogentryid=3446905"/>
    <content type="html"><![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>]]></content>
    <id>http://chavansoft.webs.com/blog.htm?blogentryid=3446905</id>
    <published>2008-5-19T03:54:00-0100</published>
  </entry>

  <entry>
    <title><![CDATA[Get Your Blog Listed in the Million Blog List!]]></title>
    <link href="http://chavansoft.webs.com/blog.htm?blogentryid=3375149"/>
    <content type="html"><![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>]]></content>
    <id>http://chavansoft.webs.com/blog.htm?blogentryid=3375149</id>
    <published>2008-5-03T08:06:00-0100</published>
  </entry>

  <entry>
    <title><![CDATA[WordPress Weekly Podcast Interview Tonight]]></title>
    <link href="http://chavansoft.webs.com/blog.htm?blogentryid=3375131"/>
    <content type="html"><![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>]]></content>
    <id>http://chavansoft.webs.com/blog.htm?blogentryid=3375131</id>
    <published>2008-5-03T07:55:00-0100</published>
  </entry>

</feed>


