<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>WebResourcesDepot</title>
	
	<link>http://www.webresourcesdepot.com</link>
	<description>Free Web Resources Everyday</description>
	<pubDate>Fri, 10 Jul 2009 05:20:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/webresourcesdepot" type="application/rss+xml" /><feedburner:emailServiceId>webresourcesdepot</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Help Your Content Spread On Twitter With Easy Retweet Button (+Wordpress Installation Steps)</title>
		<link>http://feedproxy.google.com/~r/webresourcesdepot/~3/EnJf6c6OKSM/</link>
		<comments>http://www.webresourcesdepot.com/help-your-content-spread-on-twitter-with-easy-retweet-button-wordpress-installation-steps/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 05:15:47 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
		
		<category><![CDATA[Goodies]]></category>

		<category><![CDATA[MIT License]]></category>

		<category><![CDATA[Social Bookmarking]]></category>

		<category><![CDATA[Bit.ly]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1043</guid>
		<description><![CDATA[John Resig is sharing very functional script named Easy Retweet Button that will simplify &#34;the sharing of your content on Twitter&#34;.
It is an unobtrusive JavaScript file for displaying a retweet link with a shortened URL via Bit.ly (similar to Tweetmeme) &#38; number of clicks came to that content from Twitter.

Easy Retweet Button has 2 ready-to-go [...]]]></description>
			<content:encoded><![CDATA[<p><strong>John Resig</strong> is sharing very functional script named <a target="_blank" href="http://ejohn.org/blog/retweet/"><strong>Easy Retweet Button</strong></a> that will simplify &quot;the sharing of your content on <strong>Twitter</strong>&quot;.</p>
<p>It is an unobtrusive JavaScript file for <strong>displaying a retweet link with a shortened URL via Bit.ly</strong> (similar to Tweetmeme) &amp; <strong>number of clicks</strong> came to that content from Twitter.</p>
<p><a target="_blank" href="http://ejohn.org/blog/retweet/"><img height="150" width="480" alt="Easy Retweet Button" src="http://www.webresourcesdepot.com/wp-content/uploads/image/easy-retweet-button.jpg" /></a></p>
<p><strong>Easy Retweet Button</strong> has 2 ready-to-go styles: vertical &amp; horizontal. And it can be <strong>easily themed</strong> as only HTML, CSS &amp; JavaScript is used.</p>
<p>It is possible to customize the &quot;Retweet&quot; text, prefix of the tweets (like RT @..) &amp; Bit.ly username / API key to be used.</p>
<h3>It offers various advantages like:</h3>
<ul>
<li>speed:&nbsp;it works completely asynchronously</li>
<li>tracking:&nbsp;all the tracking is done via Bit.ly &amp; clicks from retweets can be tracked from a single interface</li>
</ul>
<p><strong>Tip:</strong> <a target="_blank" href="http://twitter.com/umutm">Follow <strong>WebResourcesDepot</strong> on Twitter</a> &amp; get more resources!</p>
<h3>Steps For Using It With Wordpress:</h3>
<p>This is nothing complicated but can save your time:</p>
<p><span id="more-1043"></span></p>
<ul>
<li>Create a &quot;js&quot; folder in your active theme &amp; upload Retweet.js into this folder</li>
<li>Include the Retweet.js to your theme. There are 2 options:
<ul>
<li>You may want to use retweet links only inside your post details (single.php) page. So, it is a better decision to include Retweet.js only into single.php to prevent unnecessary loading. In your template&#8217;s folder&gt;header.php&gt;between your head tags: <br />
        <code>&lt;?php<br />
        if ( is_single()) {<br />
        ?&gt;<br />
        &nbsp;&nbsp;&nbsp; &lt;script src=&quot;&lt;?php bloginfo(&#8217;stylesheet_directory&#8217;); ?&gt;/js/retweet.js&quot;&gt;&lt;/script&gt;<br />
        &lt;?php<br />
        }<br />
        ?&gt;</code></li>
<li>If you will use it site-wide (your homepage, post details, etc..) simple include the JS file to your template&#8217;s folder&gt;header.php&gt;between your head tags: <br />
        <code>&lt;script src=&quot;&lt;?php bloginfo('stylesheet_directory'); ?&gt;/js/retweet.js&quot;&gt;&lt;/script&gt;</code></li>
</ul>
</li>
<li>For using it inside post details (single.php), insert the code below to any part of your template&#8217;s single.php file:<br />
    <code>&lt;a class=&quot;retweet&quot; href=&quot;&lt;?php echo get_permalink(); ?&gt;&quot; rel=&quot;nofollow&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;</code> . Besides the original examples of Easy Retweet Button, <code>rel=nofollow</code> info is added considering the link has no value to search engines.</li>
<li>And, you may want to get a free account from Bit.ly &amp; update the username &amp; API key info inside Retweet.js to reach your stats from a single interface.</li>
</ul>
<p>P.S. A demo of the script can be found below the title of every post at <strong>WebResourcesDepot</strong>.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic - Cheap SSL Certificates (from $19.99/year)</a><br />
<a href="http://www.dreamhost.com/r.cgi?360198" target="_blank">Dreamhost $50 Discount Code: WRD</a><br />
<a href="http://twitter.com/umutm" target="_blank">Follow WebResourcesDepot At Twitter And Get More Resources!</a></p>

	Tags: <a href="http://www.webresourcesdepot.com/tag/bitly/" title="Bit.ly" rel="tag">Bit.ly</a>, <a href="http://www.webresourcesdepot.com/tag/javascript/" title="Javascript" rel="tag">Javascript</a>, <a href="http://www.webresourcesdepot.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a><br />

	<h4>Related posts</h4>
	<ul class='st-related-posts'>
	<li><a href="http://www.webresourcesdepot.com/display-tweets-with-phpajax-ptwix/" title="Display Tweets With PHP/Ajax: Ptwix (July 4, 2009)">Display Tweets With PHP/Ajax: Ptwix</a></li>
	<li><a href="http://www.webresourcesdepot.com/ajax-powered-mash-up-engine-afrous/" title="Ajax-Powered Mash Up Engine: Afrous (January 6, 2008)">Ajax-Powered Mash Up Engine: Afrous</a></li>
	<li><a href="http://www.webresourcesdepot.com/zoom-script-with-a-smart-interface-tjpzoom/" title="Zoom Script With A Smart Interface: TJPzoom (September 4, 2008)">Zoom Script With A Smart Interface: TJPzoom</a></li>
	<li><a href="http://www.webresourcesdepot.com/what-you-see-is-what-you-ajax-wavemaker/" title="What You See Is What You Ajax: WaveMaker (March 5, 2008)">What You See Is What You Ajax: WaveMaker</a></li>
	<li><a href="http://www.webresourcesdepot.com/wforms-easy-javascript-form-controls/" title="wForms: Easy JavaScript Form Controls (April 25, 2008)">wForms: Easy JavaScript Form Controls</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=EnJf6c6OKSM:1ia0YLuaU9U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=EnJf6c6OKSM:1ia0YLuaU9U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=EnJf6c6OKSM:1ia0YLuaU9U:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=EnJf6c6OKSM:1ia0YLuaU9U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=EnJf6c6OKSM:1ia0YLuaU9U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=EnJf6c6OKSM:1ia0YLuaU9U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=EnJf6c6OKSM:1ia0YLuaU9U:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/webresourcesdepot/~4/EnJf6c6OKSM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/help-your-content-spread-on-twitter-with-easy-retweet-button-wordpress-installation-steps/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webresourcesdepot.com/help-your-content-spread-on-twitter-with-easy-retweet-button-wordpress-installation-steps/</feedburner:origLink></item>
		<item>
		<title>Convert RSS Feeds To PDF Newspapers Via PHP</title>
		<link>http://feedproxy.google.com/~r/webresourcesdepot/~3/7r_-UO8RiNw/</link>
		<comments>http://www.webresourcesdepot.com/convert-rss-feeds-to-pdf-newspapers-via-php/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 19:01:23 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
		
		<category><![CDATA[Goodies]]></category>

		<category><![CDATA[Other License]]></category>

		<category><![CDATA[Rss &amp; Feeds]]></category>

		<category><![CDATA[Php]]></category>

		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1041</guid>
		<description><![CDATA[This is an open source PHP application which can convert any RSS feed into a PDF&#160;newspaper.
It works flawless with fetching only the text &#38; ,currently, has a partial support for images.

The application uses other open source codes like:

TCPDF
HTML Tidy
SimplePie
HTML&#160;Purifier
SmartyPants
OPML Parser

If a feed shares a part of the original content, the application has an option to [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://fivefilters.org/pdf-newspaper/">This</a> is an <strong>open source PHP application</strong> which can <strong>convert any RSS feed into a PDF&nbsp;newspaper</strong>.</p>
<p>It works flawless with fetching only the text &amp; ,currently, has a partial support for images.</p>
<p><a target="_blank" href="http://fivefilters.org/pdf-newspaper/"><img height="214" width="480" alt="RSS To PDF" src="http://www.webresourcesdepot.com/wp-content/uploads/image/rss-to-pdf.jpg" /></a></p>
<p>The application uses other open source codes like:</p>
<ul>
<li><a target="_blank" href="http://www.tcpdf.org/">TCPDF</a></li>
<li><a target="_blank" href="http://tidy.sourceforge.net/">HTML Tidy</a></li>
<li><a target="_blank" href="http://simplepie.org/">SimplePie</a></li>
<li><a target="_blank" href="http://htmlpurifier.org/">HTML&nbsp;Purifier</a></li>
<li><a href="http://michelf.com/projects/php-smartypants/" target="_blank">SmartyPants</a></li>
<li><a href="http://freshmeat.net/projects/opml-parser-class/" target="_blank">OPML Parser</a></li>
</ul>
<p>If a feed shares a part of the original content, the application has an option to fetch the complete content as well.</p>
<p>Although the application may not seem interesting for many developers at first, <strong>the code &amp; the function itself is an inspiration+resource</strong> for offering more out of feeds.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic - Cheap SSL Certificates (from $19.99/year)</a><br />
<a href="http://www.dreamhost.com/r.cgi?360198" target="_blank">Dreamhost $50 Discount Code: WRD</a><br />
<a href="http://twitter.com/umutm" target="_blank">Follow WebResourcesDepot At Twitter And Get More Resources!</a></p>

	Tags: <a href="http://www.webresourcesdepot.com/tag/php/" title="Php" rel="tag">Php</a>, <a href="http://www.webresourcesdepot.com/tag/rss/" title="RSS" rel="tag">RSS</a><br />

	<h4>Related posts</h4>
	<ul class='st-related-posts'>
	<li><a href="http://www.webresourcesdepot.com/powerful-and-free-newsletter-manager-phplist/" title="Powerful And Free Newsletter Manager: phplist (March 6, 2008)">Powerful And Free Newsletter Manager: phplist</a></li>
	<li><a href="http://www.webresourcesdepot.com/php-rss-parsers/" title="PHP RSS Parsers (January 8, 2008)">PHP RSS Parsers</a></li>
	<li><a href="http://www.webresourcesdepot.com/php-image-rotation-engine-revolver/" title="PHP Image Rotation Engine: Revolver (April 8, 2008)">PHP Image Rotation Engine: Revolver</a></li>
	<li><a href="http://www.webresourcesdepot.com/open-source-web-based-feed-reader-gregarious/" title="Open Source Web Based Feed Reader: Gregarius (August 16, 2008)">Open Source Web Based Feed Reader: Gregarius</a></li>
	<li><a href="http://www.webresourcesdepot.com/zimplit-easiest-cms-for-simple-websites/" title="Zimplit: Easiest CMS For Simple Websites (August 29, 2008)">Zimplit: Easiest CMS For Simple Websites</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=7r_-UO8RiNw:BemecmPJWAU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=7r_-UO8RiNw:BemecmPJWAU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=7r_-UO8RiNw:BemecmPJWAU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=7r_-UO8RiNw:BemecmPJWAU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=7r_-UO8RiNw:BemecmPJWAU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=7r_-UO8RiNw:BemecmPJWAU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=7r_-UO8RiNw:BemecmPJWAU:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/webresourcesdepot/~4/7r_-UO8RiNw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/convert-rss-feeds-to-pdf-newspapers-via-php/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webresourcesdepot.com/convert-rss-feeds-to-pdf-newspapers-via-php/</feedburner:origLink></item>
		<item>
		<title>A JavaScript Library By BBC: Glow</title>
		<link>http://feedproxy.google.com/~r/webresourcesdepot/~3/LV6-JR0yPng/</link>
		<comments>http://www.webresourcesdepot.com/a-javascript-library-by-bbc-glow/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 06:08:27 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
		
		<category><![CDATA[Extras]]></category>

		<category><![CDATA[Other License]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Widget]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1039</guid>
		<description><![CDATA[Glow is a JavaScript library, built by BBC that aims to make working with JavaScript and the DOM easier, similar to the popular ones like jQuery, MooTools, etc.
It tries to do this by abstracting common tasks, hiding cross-browser issues, and providing a set of user interface widgets.
on reviewing the major libraries we found that none [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.bbc.co.uk/glow/"><strong>Glow</strong></a> is a <strong>JavaScript library</strong>, built by <strong>BBC</strong> that aims to make working with JavaScript and the DOM easier, similar to the popular ones like jQuery, MooTools, etc.</p>
<p>It tries to do this by abstracting common tasks, hiding cross-browser issues, and providing a set of user interface widgets.</p>
<blockquote><p><span>on reviewing the major libraries we found that none met our standards and guidelines, with browser support in particular being a major issue.</span></p></blockquote>
<p><a target="_blank" href="http://www.bbc.co.uk/glow/"><img height="151" width="480" alt="Glow JavaScript Library" src="http://www.webresourcesdepot.com/wp-content/uploads/image/bbc-glow-javascript.jpg" /></a></p>
<p>The library is <a target="_blank" href="http://www.bbc.co.uk/glow/docs/">very well-documented</a> &amp; it already comes with various <strong>ready-to-use widgets</strong> like:</p>
<ul>
<li>autosuggest</li>
<li>carousel</li>
<li>overlay (lightbox)</li>
<li>slider</li>
<li>timetable</li>
<li>&amp; more..</li>
</ul>
<p>Several <a target="_blank" href="http://www.bbc.co.uk/glow/demos/">demos</a> are provided to see <strong>Glow</strong> in action</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic - Cheap SSL Certificates (from $19.99/year)</a><br />
<a href="http://www.dreamhost.com/r.cgi?360198" target="_blank">Dreamhost $50 Discount Code: WRD</a><br />
<a href="http://twitter.com/umutm" target="_blank">Follow WebResourcesDepot At Twitter And Get More Resources!</a></p>

	Tags: <a href="http://www.webresourcesdepot.com/tag/javascript/" title="Javascript" rel="tag">Javascript</a>, <a href="http://www.webresourcesdepot.com/tag/widget/" title="Widget" rel="tag">Widget</a><br />

	<h4>Related posts</h4>
	<ul class='st-related-posts'>
	<li><a href="http://www.webresourcesdepot.com/what-you-see-is-what-you-ajax-wavemaker/" title="What You See Is What You Ajax: WaveMaker (March 5, 2008)">What You See Is What You Ajax: WaveMaker</a></li>
	<li><a href="http://www.webresourcesdepot.com/javascript-widgets-library-meteora/" title="JavaScript Widgets Library: Meteora (March 24, 2008)">JavaScript Widgets Library: Meteora</a></li>
	<li><a href="http://www.webresourcesdepot.com/zoom-script-with-a-smart-interface-tjpzoom/" title="Zoom Script With A Smart Interface: TJPzoom (September 4, 2008)">Zoom Script With A Smart Interface: TJPzoom</a></li>
	<li><a href="http://www.webresourcesdepot.com/wforms-easy-javascript-form-controls/" title="wForms: Easy JavaScript Form Controls (April 25, 2008)">wForms: Easy JavaScript Form Controls</a></li>
	<li><a href="http://www.webresourcesdepot.com/web-based-ftp-client-similar-to-windows-explorer/" title="Web Based FTP Client Similar To Windows Explorer (February 22, 2008)">Web Based FTP Client Similar To Windows Explorer</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=LV6-JR0yPng:NADTzw65_fg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=LV6-JR0yPng:NADTzw65_fg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=LV6-JR0yPng:NADTzw65_fg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=LV6-JR0yPng:NADTzw65_fg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=LV6-JR0yPng:NADTzw65_fg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=LV6-JR0yPng:NADTzw65_fg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=LV6-JR0yPng:NADTzw65_fg:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/webresourcesdepot/~4/LV6-JR0yPng" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/a-javascript-library-by-bbc-glow/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webresourcesdepot.com/a-javascript-library-by-bbc-glow/</feedburner:origLink></item>
		<item>
		<title>Attractive Sitemaps With SlickMap CSS</title>
		<link>http://feedproxy.google.com/~r/webresourcesdepot/~3/u2z0eSpe_0I/</link>
		<comments>http://www.webresourcesdepot.com/attractive-sitemaps-with-slickmap-css/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 17:24:58 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Goodies]]></category>

		<category><![CDATA[Menu &amp; Navigation]]></category>

		<category><![CDATA[Xhtml &amp; Css]]></category>

		<category><![CDATA[Sitemap]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1038</guid>
		<description><![CDATA[SlickMap CSS is a stylesheet for transforming HTML unordered lists into attractive sitemaps.
The stylesheet can easily fit into most of the websites as it supports up to 3-level navigations.
It also provides a functional visual output by displaying the URLs besides the titles. For a demo of SlickMap CSS, click here.

Special Downloads:
Free Admin Template For Web [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://astuteo.com/slickmap/"><strong>SlickMap CSS</strong></a> is a stylesheet for transforming HTML unordered lists into <strong>attractive sitemaps</strong>.</p>
<p>The stylesheet can easily fit into most of the websites as it supports up to 3-level navigations.</p>
<p>It also provides a functional visual output by <strong>displaying the URLs</strong> besides the titles. For a demo of <strong>SlickMap CSS</strong>, <a href="http://astuteo.com/slickmap/demo/" target="_blank">click here</a>.</p>
<p><a href="http://astuteo.com/slickmap/" target="_blank"><img height="175" width="480" src="http://www.webresourcesdepot.com/wp-content/uploads/image/sitemap-css.jpg" alt="SlickCSS" /></a></p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic - Cheap SSL Certificates (from $19.99/year)</a><br />
<a href="http://www.dreamhost.com/r.cgi?360198" target="_blank">Dreamhost $50 Discount Code: WRD</a><br />
<a href="http://twitter.com/umutm" target="_blank">Follow WebResourcesDepot At Twitter And Get More Resources!</a></p>

	Tags: <a href="http://www.webresourcesdepot.com/tag/sitemap/" title="Sitemap" rel="tag">Sitemap</a><br />

	<h4>Related posts</h4>
	<ul class='st-related-posts'>
	<li><a href="http://www.webresourcesdepot.com/sitemaps-create-edit-and-share-them-with-writemaps/" title="Sitemaps: Create, Edit And Share Them With WriteMaps (December 21, 2007)">Sitemaps: Create, Edit And Share Them With WriteMaps</a></li>
	<li><a href="http://www.webresourcesdepot.com/sitemaps-with-css/" title="Sitemaps With CSS (March 26, 2008)">Sitemaps With CSS</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=u2z0eSpe_0I:gOtkLafEM-Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=u2z0eSpe_0I:gOtkLafEM-Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=u2z0eSpe_0I:gOtkLafEM-Q:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=u2z0eSpe_0I:gOtkLafEM-Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=u2z0eSpe_0I:gOtkLafEM-Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=u2z0eSpe_0I:gOtkLafEM-Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=u2z0eSpe_0I:gOtkLafEM-Q:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/webresourcesdepot/~4/u2z0eSpe_0I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/attractive-sitemaps-with-slickmap-css/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webresourcesdepot.com/attractive-sitemaps-with-slickmap-css/</feedburner:origLink></item>
		<item>
		<title>Free Seamless Patterns From PatternWall</title>
		<link>http://feedproxy.google.com/~r/webresourcesdepot/~3/vDxKB_GkuMA/</link>
		<comments>http://www.webresourcesdepot.com/free-seamless-patterns-from-patternwall/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 07:14:42 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Other License]]></category>

		<category><![CDATA[Texture]]></category>

		<category><![CDATA[JPG]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1036</guid>
		<description><![CDATA[PatternWall is a fresh website which features a huge collection of free seamless patterns to beautify your designs &#38; website backgrounds.
Just like the name, it is similar to a wall where new patterns load automatically once you scroll down, no paging is required.
Patterns are free to use both in personal &#38; commercial projects.

Special Downloads:
Free Admin [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://patternwall.com/"><strong>PatternWall</strong></a> is a fresh website which features a <strong>huge collection of free seamless patterns</strong> to beautify your designs &amp; website backgrounds.</p>
<p>Just like the name, it is similar to a wall where new patterns load automatically once you scroll down, no paging is required.</p>
<p>Patterns are free to use both in personal &amp; commercial projects.</p>
<p><a target="_blank" href="http://patternwall.com/"><img height="240" width="480" alt="PatternWall" src="http://www.webresourcesdepot.com/wp-content/uploads/image/patternwall.jpg" /></a></p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic - Cheap SSL Certificates (from $19.99/year)</a><br />
<a href="http://www.dreamhost.com/r.cgi?360198" target="_blank">Dreamhost $50 Discount Code: WRD</a><br />
<a href="http://twitter.com/umutm" target="_blank">Follow WebResourcesDepot At Twitter And Get More Resources!</a></p>

	Tags: <a href="http://www.webresourcesdepot.com/tag/jpg/" title="JPG" rel="tag">JPG</a><br />

	<h4>Related posts</h4>
	<ul class='st-related-posts'>
	<li><a href="http://www.webresourcesdepot.com/quality-patterns-from-dinpattern/" title="Quality Patterns From DinPattern (June 16, 2008)">Quality Patterns From DinPattern</a></li>
	<li><a href="http://www.webresourcesdepot.com/get-color-palette-by-uploading-an-image/" title="Get Color Palette By Uploading An Image (February 16, 2009)">Get Color Palette By Uploading An Image</a></li>
	<li><a href="http://www.webresourcesdepot.com/free-textures-from-zentextures/" title="Free Textures From ZenTextures (March 31, 2009)">Free Textures From ZenTextures</a></li>
	<li><a href="http://www.webresourcesdepot.com/free-flash-media-player-flowplayer/" title="Free Flash Media Player: Flowplayer (September 26, 2008)">Free Flash Media Player: Flowplayer</a></li>
	<li><a href="http://www.webresourcesdepot.com/easy-image-optimization-with-smushit/" title="Easy Image Optimization With Smush.it (September 30, 2008)">Easy Image Optimization With Smush.it</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=vDxKB_GkuMA:Qj21OGsDAis:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=vDxKB_GkuMA:Qj21OGsDAis:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=vDxKB_GkuMA:Qj21OGsDAis:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=vDxKB_GkuMA:Qj21OGsDAis:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=vDxKB_GkuMA:Qj21OGsDAis:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=vDxKB_GkuMA:Qj21OGsDAis:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=vDxKB_GkuMA:Qj21OGsDAis:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/webresourcesdepot/~4/vDxKB_GkuMA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/free-seamless-patterns-from-patternwall/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webresourcesdepot.com/free-seamless-patterns-from-patternwall/</feedburner:origLink></item>
		<item>
		<title>Convert Tables To Accessible Charts/Graphs With Canvas And jQuery</title>
		<link>http://feedproxy.google.com/~r/webresourcesdepot/~3/j5SKm0tRKKo/</link>
		<comments>http://www.webresourcesdepot.com/convert-tables-to-accessible-chartsgraphs-with-canvas-and-jquery/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 17:00:52 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
		
		<category><![CDATA[Charts]]></category>

		<category><![CDATA[GPL License]]></category>

		<category><![CDATA[Goodies]]></category>

		<category><![CDATA[MIT License]]></category>

		<category><![CDATA[Accessible]]></category>

		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1035</guid>
		<description><![CDATA[Visualize is a jQuery plugin which converts tables to charts &#38; graphs using the HTML 5 canvas tag.
The usage of tables is very important  the data is already formatted in a way that is accessible to users browsing the web with a screen reader or other assistive technology.

The plugin offers a very easy usage [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas"><strong>Visualize</strong></a> is a <strong>jQuery plugin</strong> which <strong>converts tables to charts &amp; graphs</strong> using the HTML 5 canvas tag.</p>
<p>The usage of tables is very important  the data is already formatted in a way that is <strong>accessible</strong> to users browsing the web with a screen reader or other assistive technology.</p>
<p><a target="_blank" href="http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas"><img height="221" width="480" alt="jQuery Visualize Plugin" src="http://www.webresourcesdepot.com/wp-content/uploads/image/jquery-visualize-plugin.gif" /></a></p>
<p>The plugin offers a very easy usage as calling a function like: <code>$('table').visualize();</code> is enough for <strong>creating a line, pie, bar or an area chart from a table</strong>.</p>
<h3>Visualize offers various methods for customizing:</h3>
<ul>
<li>the type (line, pie, bar or area)</li>
<li>width &amp; height</li>
<li>title</li>
<li>color</li>
<li>margins</li>
<li>&amp; more</li>
</ul>
<p>Here is a <a target="_blank" href="http://www.filamentgroup.com/examples/charting_v2/index_2.php">customizable demo</a> to test the plugin completely.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic - Cheap SSL Certificates (from $19.99/year)</a><br />
<a href="http://www.dreamhost.com/r.cgi?360198" target="_blank">Dreamhost $50 Discount Code: WRD</a><br />
<a href="http://twitter.com/umutm" target="_blank">Follow WebResourcesDepot At Twitter And Get More Resources!</a></p>

	Tags: <a href="http://www.webresourcesdepot.com/tag/accessible/" title="Accessible" rel="tag">Accessible</a>, <a href="http://www.webresourcesdepot.com/tag/javascript/" title="Javascript" rel="tag">Javascript</a><br />

	<h4>Related posts</h4>
	<ul class='st-related-posts'>
	<li><a href="http://www.webresourcesdepot.com/zoom-script-with-a-smart-interface-tjpzoom/" title="Zoom Script With A Smart Interface: TJPzoom (September 4, 2008)">Zoom Script With A Smart Interface: TJPzoom</a></li>
	<li><a href="http://www.webresourcesdepot.com/what-you-see-is-what-you-ajax-wavemaker/" title="What You See Is What You Ajax: WaveMaker (March 5, 2008)">What You See Is What You Ajax: WaveMaker</a></li>
	<li><a href="http://www.webresourcesdepot.com/wforms-easy-javascript-form-controls/" title="wForms: Easy JavaScript Form Controls (April 25, 2008)">wForms: Easy JavaScript Form Controls</a></li>
	<li><a href="http://www.webresourcesdepot.com/web-based-ftp-client-similar-to-windows-explorer/" title="Web Based FTP Client Similar To Windows Explorer (February 22, 2008)">Web Based FTP Client Similar To Windows Explorer</a></li>
	<li><a href="http://www.webresourcesdepot.com/web-based-open-source-sql-designer/" title="Web Based &#038; Open Source SQL Designer (January 29, 2009)">Web Based &#038; Open Source SQL Designer</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=j5SKm0tRKKo:Kh-_s0Zf9X4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=j5SKm0tRKKo:Kh-_s0Zf9X4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=j5SKm0tRKKo:Kh-_s0Zf9X4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=j5SKm0tRKKo:Kh-_s0Zf9X4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=j5SKm0tRKKo:Kh-_s0Zf9X4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=j5SKm0tRKKo:Kh-_s0Zf9X4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=j5SKm0tRKKo:Kh-_s0Zf9X4:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/webresourcesdepot/~4/j5SKm0tRKKo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/convert-tables-to-accessible-chartsgraphs-with-canvas-and-jquery/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webresourcesdepot.com/convert-tables-to-accessible-chartsgraphs-with-canvas-and-jquery/</feedburner:origLink></item>
		<item>
		<title>247 Web Usability Guidelines By Userfocus</title>
		<link>http://feedproxy.google.com/~r/webresourcesdepot/~3/PBH3VcNwkxA/</link>
		<comments>http://www.webresourcesdepot.com/247-web-usability-guidelines-by-userfocus/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 05:01:04 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
		
		<category><![CDATA[Extras]]></category>

		<category><![CDATA[Info]]></category>

		<category><![CDATA[Other License]]></category>

		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1034</guid>
		<description><![CDATA[Userfocus, a consultancy &#38; training company on website usability, is sharing 247 web usability guidelines for creating more consistently &#38; better.
The guidelines are very well-categorized like homepage, forms &#38; data entry, navigation, search &#38; more.
Here are some examples:

Text boxes on forms are the right length for the expected answer.
The home page shows good examples of [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Userfocus</strong>, a consultancy &amp; training company on website usability, is sharing <a href="http://www.userfocus.co.uk/resources/guidelines.html" target="_blank"><strong>247 web usability guidelines</strong></a> for creating more consistently &amp; better.</p>
<p>The guidelines are <strong>very well-categorized</strong> like homepage, forms &amp; data entry, navigation, search &amp; more.</p>
<h3>Here are some examples:</h3>
<ul>
<li>Text boxes on forms are the right length for the expected answer.</li>
<li>The home page shows good examples of real site content.</li>
<li>The layout helps focus attention on what to do next.</li>
<li>Search results are clear, useful and ranked by relevance.</li>
</ul>
<p>All the guidelines are <strong>also provided as an Excel workbook</strong>, where you can go through a website &amp; check the ones that are ok.</p>
<p><a href="http://www.userfocus.co.uk/resources/guidelines.html" target="_blank"><img height="114" width="480" src="http://www.webresourcesdepot.com/wp-content/uploads/image/web-usability-guidelines.jpg" alt="Web Usability Guidelines" /></a></p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic - Cheap SSL Certificates (from $19.99/year)</a><br />
<a href="http://www.dreamhost.com/r.cgi?360198" target="_blank">Dreamhost $50 Discount Code: WRD</a><br />
<a href="http://twitter.com/umutm" target="_blank">Follow WebResourcesDepot At Twitter And Get More Resources!</a></p>

	Tags: <a href="http://www.webresourcesdepot.com/tag/usability/" title="Usability" rel="tag">Usability</a><br />

	<h4>Related posts</h4>
	<ul class='st-related-posts'>
	<li><a href="http://www.webresourcesdepot.com/clixpy-a-practical-web-service-to-capture-user-activities-50-free-promo-codes/" title="Clixpy: A Practical Web Service To Capture User Activities (50 Free Promo Codes) (June 1, 2009)">Clixpy: A Practical Web Service To Capture User Activities (50 Free Promo Codes)</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=PBH3VcNwkxA:4mWHhrqyrjI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=PBH3VcNwkxA:4mWHhrqyrjI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=PBH3VcNwkxA:4mWHhrqyrjI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=PBH3VcNwkxA:4mWHhrqyrjI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=PBH3VcNwkxA:4mWHhrqyrjI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=PBH3VcNwkxA:4mWHhrqyrjI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=PBH3VcNwkxA:4mWHhrqyrjI:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/webresourcesdepot/~4/PBH3VcNwkxA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/247-web-usability-guidelines-by-userfocus/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webresourcesdepot.com/247-web-usability-guidelines-by-userfocus/</feedburner:origLink></item>
		<item>
		<title>Facebook-Style Chat Application: CometChat (2 Licenses Giveaway)</title>
		<link>http://feedproxy.google.com/~r/webresourcesdepot/~3/kMAXbxpnijU/</link>
		<comments>http://www.webresourcesdepot.com/facebook-style-chat-application-cometchat-2-licenses-giveaway/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 08:10:44 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
		
		<category><![CDATA[Chat]]></category>

		<category><![CDATA[Extras]]></category>

		<category><![CDATA[Goodies]]></category>

		<category><![CDATA[Other License]]></category>

		<category><![CDATA[Reviews &amp; Giveaways]]></category>

		<category><![CDATA[Facebook]]></category>

		<category><![CDATA[Mysql]]></category>

		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1032</guid>
		<description><![CDATA[CometChat, a Facebook-style chat script -which enables website users to chat with each other easily- is giving away 2 licenses ($49/each) to WebResourcesDepot readers. Details on &#34;how to join&#34; can be found at the end of the post.

What is CometChat?
It is a PHP / MySQL script for creating a chat environment that can be used [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cometchat.com/" target="_blank"><strong>CometChat</strong></a>, a <strong>Facebook-style chat script</strong> -which enables website users to chat with each other easily- is <strong>giving away 2 licenses</strong> ($49/each) to WebResourcesDepot readers. Details on &quot;how to join&quot; can be found at the end of the post.</p>
<p><a target="_blank" href="http://www.cometchat.com/"><img height="220" width="480" alt="CometChat" src="http://www.webresourcesdepot.com/wp-content/uploads/image/cometchat.jpg" /></a></p>
<h3>What is CometChat?</h3>
<p>It is a <strong>PHP / MySQL script</strong> for creating a chat environment that can be used while visitors are browsing any page of the website.</p>
<p>Users can select their statuses (like busy, available, invisible or a custom one), &quot;get friends&quot; with each other &amp; see if their friends are online or not.</p>
<p>The interface automatically <strong>converts related entries into smileys or well-formatted links</strong> &amp; it can <strong>notify users with audio</strong> messages when a message arrives.</p>
<p><strong>CometChat</strong> is <strong>multilingual</strong>, can be translated to any language &amp; besides the standard icons, new ones can be placed to for a better integration with any website.</p>
<p>The script comes in 2 versions:</p>
<ul>
<li><strong>standalone</strong>: for&nbsp; integrating it with your existing social networking, dating or community site</li>
<li><strong>vBulletin edition</strong>: instant integration with this forum software</li>
</ul>
<h3>How To Win The Free Licenses?</h3>
<p>You have <strong>2 options</strong> to join the giveaway where <strong>you can do both of them</strong> to increase the chance of winning:</p>
<ul>
<li>comment to this post with at least &quot;I want the license&quot; text besides any other comment</li>
<li>ReTweet this message at Twitter: <a href="http://twitter.com/home?status=Facebook-Style Chat Application: CometChat (http://www.cometchat.com/) (2 Licenses Giveaway): http://tr.im/r2sU (via @umutm)" target="_blank">Facebook-Style Chat Application: CometChat (http://www.cometchat.com/) (2 Licenses Giveaway): http://tr.im/r2sU (via @umutm)</a> (click the link to ReTweet easily).</li>
</ul>
<p>Winners will be selected randomly on 13th July 2009 (1 week later &amp; they can choose whether they want to get the standalone or the vBulletin edition.</p>
<p>Good luck to all.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic - Cheap SSL Certificates (from $19.99/year)</a><br />
<a href="http://www.dreamhost.com/r.cgi?360198" target="_blank">Dreamhost $50 Discount Code: WRD</a><br />
<a href="http://twitter.com/umutm" target="_blank">Follow WebResourcesDepot At Twitter And Get More Resources!</a></p>

	Tags: <a href="http://www.webresourcesdepot.com/tag/facebook/" title="Facebook" rel="tag">Facebook</a>, <a href="http://www.webresourcesdepot.com/tag/mysql/" title="Mysql" rel="tag">Mysql</a>, <a href="http://www.webresourcesdepot.com/tag/php/" title="Php" rel="tag">Php</a><br />

	<h4>Related posts</h4>
	<ul class='st-related-posts'>
	<li><a href="http://www.webresourcesdepot.com/wiki-like-project-management-tool-streber/" title="Wiki-Like Project Management Tool: Streber (May 26, 2008)">Wiki-Like Project Management Tool: Streber</a></li>
	<li><a href="http://www.webresourcesdepot.com/web-server-that-runs-on-cd-rom-server2go/" title="Web Server That Runs On CD-Rom: Server2Go (November 29, 2008)">Web Server That Runs On CD-Rom: Server2Go</a></li>
	<li><a href="http://www.webresourcesdepot.com/web-based-task-manager-taskfreak/" title="Web Based Task Manager: TaskFreak! (February 29, 2008)">Web Based Task Manager: TaskFreak!</a></li>
	<li><a href="http://www.webresourcesdepot.com/voice-enabled-powerful-web-chat-software-ajax-chat/" title="Voice Enabled Powerful Web Chat Software: Ajax Chat (February 21, 2008)">Voice Enabled Powerful Web Chat Software: Ajax Chat</a></li>
	<li><a href="http://www.webresourcesdepot.com/typolight-an-open-source-php-cms/" title="TYPOlight: An Open Source PHP CMS (April 11, 2008)">TYPOlight: An Open Source PHP CMS</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=kMAXbxpnijU:_yRF66DeYTk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=kMAXbxpnijU:_yRF66DeYTk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=kMAXbxpnijU:_yRF66DeYTk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=kMAXbxpnijU:_yRF66DeYTk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=kMAXbxpnijU:_yRF66DeYTk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=kMAXbxpnijU:_yRF66DeYTk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=kMAXbxpnijU:_yRF66DeYTk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/webresourcesdepot/~4/kMAXbxpnijU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/facebook-style-chat-application-cometchat-2-licenses-giveaway/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webresourcesdepot.com/facebook-style-chat-application-cometchat-2-licenses-giveaway/</feedburner:origLink></item>
		<item>
		<title>Backup And E-Mail MySQL Databases Automatically: Backup2Mail</title>
		<link>http://feedproxy.google.com/~r/webresourcesdepot/~3/aUYScCjTSfA/</link>
		<comments>http://www.webresourcesdepot.com/backup-and-e-mail-mysql-databases-automatically-backup2mail/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 11:45:17 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
		
		<category><![CDATA[Extras]]></category>

		<category><![CDATA[GPL License]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[Cron]]></category>

		<category><![CDATA[Mysql]]></category>

		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1031</guid>
		<description><![CDATA[Almost every web designer/developer, one way or another, faces data loss &#38; experiences the importance of taking regular backups.
Backup2Mail is a free PHP script which easily prevents this problem by automatically backing up MySQL&#160;databases &#38; e-mailing them to a given address.

It requires PHP 4.1+ to run &#38; for scheduling the script, cron jobs (Unix/Linux) or [...]]]></description>
			<content:encoded><![CDATA[<p>Almost every web designer/developer, one way or another, faces data loss &amp; experiences the importance of taking regular backups.</p>
<p><a target="_blank" href="http://www.backup2mail.com/"><strong>Backup2Mail</strong></a> is a <strong>free PHP script</strong> which easily prevents this problem by automatically <strong>backing up MySQL&nbsp;databases &amp; e-mailing </strong>them to a given address.</p>
<p><a target="_blank" href="http://www.backup2mail.com/"><img height="113" width="480" alt="Backup2mail" src="http://www.webresourcesdepot.com/wp-content/uploads/image/backup2mail.gif" /></a></p>
<p>It requires <strong>PHP 4.1+</strong> to run &amp; for scheduling the script, <strong>cron jobs</strong> (Unix/Linux) or a <strong>scheduled task interface</strong> (Windows) is required.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic - Cheap SSL Certificates (from $19.99/year)</a><br />
<a href="http://www.dreamhost.com/r.cgi?360198" target="_blank">Dreamhost $50 Discount Code: WRD</a><br />
<a href="http://twitter.com/umutm" target="_blank">Follow WebResourcesDepot At Twitter And Get More Resources!</a></p>

	Tags: <a href="http://www.webresourcesdepot.com/tag/cron/" title="Cron" rel="tag">Cron</a>, <a href="http://www.webresourcesdepot.com/tag/mysql/" title="Mysql" rel="tag">Mysql</a>, <a href="http://www.webresourcesdepot.com/tag/php/" title="Php" rel="tag">Php</a><br />

	<h4>Related posts</h4>
	<ul class='st-related-posts'>
	<li><a href="http://www.webresourcesdepot.com/scheduledtweets-free-and-fully-ajaxed-php-application-to-schedule-tweets/" title="ScheduledTweets: Free And Fully Ajaxed PHP Application To Schedule Tweets (April 7, 2009)">ScheduledTweets: Free And Fully Ajaxed PHP Application To Schedule Tweets</a></li>
	<li><a href="http://www.webresourcesdepot.com/open-source-online-invoice-system-siwapp/" title="Open Source Online Invoice System: siwapp (May 19, 2009)">Open Source Online Invoice System: siwapp</a></li>
	<li><a href="http://www.webresourcesdepot.com/wiki-like-project-management-tool-streber/" title="Wiki-Like Project Management Tool: Streber (May 26, 2008)">Wiki-Like Project Management Tool: Streber</a></li>
	<li><a href="http://www.webresourcesdepot.com/web-server-that-runs-on-cd-rom-server2go/" title="Web Server That Runs On CD-Rom: Server2Go (November 29, 2008)">Web Server That Runs On CD-Rom: Server2Go</a></li>
	<li><a href="http://www.webresourcesdepot.com/web-based-task-manager-taskfreak/" title="Web Based Task Manager: TaskFreak! (February 29, 2008)">Web Based Task Manager: TaskFreak!</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=aUYScCjTSfA:t6OyR-gpD7Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=aUYScCjTSfA:t6OyR-gpD7Q:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=aUYScCjTSfA:t6OyR-gpD7Q:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=aUYScCjTSfA:t6OyR-gpD7Q:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=aUYScCjTSfA:t6OyR-gpD7Q:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=aUYScCjTSfA:t6OyR-gpD7Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=aUYScCjTSfA:t6OyR-gpD7Q:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/webresourcesdepot/~4/aUYScCjTSfA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/backup-and-e-mail-mysql-databases-automatically-backup2mail/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webresourcesdepot.com/backup-and-e-mail-mysql-databases-automatically-backup2mail/</feedburner:origLink></item>
		<item>
		<title>Display Tweets With PHP/Ajax: Ptwix</title>
		<link>http://feedproxy.google.com/~r/webresourcesdepot/~3/oN0mRwqG-xg/</link>
		<comments>http://www.webresourcesdepot.com/display-tweets-with-phpajax-ptwix/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 06:43:00 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
		
		<category><![CDATA[Extras]]></category>

		<category><![CDATA[GPL License]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Php]]></category>

		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1030</guid>
		<description><![CDATA[Ptwix is an open source web component, that is built with PHP, for displaying tweets in an Ajaxed interface.
It can be configured to show your tweets or the tweets of your friends.

Once a webpage is loaded, the latest tweets are shown &#38; &#34;an update button&#34; can make an Ajax call to get the new ones.
The [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ptwix.toforge.com/" target="_blank"><strong>Ptwix</strong></a> is an <strong>open source web component</strong>, that is built with <strong>PHP</strong>, for displaying tweets in an <strong>Ajaxed interface</strong>.</p>
<p>It can be configured to show your tweets or the tweets of your friends.</p>
<p><a href="http://ptwix.toforge.com/" target="_blank"><img height="124" width="480" src="http://www.webresourcesdepot.com/wp-content/uploads/image/ptwix-ajax-php-ttwitter.jpg" alt="Ptwix - Ajax/PHP Tweets" /></a></p>
<p>Once a webpage is loaded, the latest tweets are shown &amp; &quot;an update button&quot; can make an Ajax call to get the new ones.</p>
<p>The component comes with <strong>3 ready-to-use themes</strong> &amp; new ones can be created by updating the CSS + images used.</p>
<p><strong>Ptwix</strong> is so easy to install &amp; it supports <strong>caching for faster loading</strong>.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic - Cheap SSL Certificates (from $19.99/year)</a><br />
<a href="http://www.dreamhost.com/r.cgi?360198" target="_blank">Dreamhost $50 Discount Code: WRD</a><br />
<a href="http://twitter.com/umutm" target="_blank">Follow WebResourcesDepot At Twitter And Get More Resources!</a></p>

	Tags: <a href="http://www.webresourcesdepot.com/tag/javascript/" title="Javascript" rel="tag">Javascript</a>, <a href="http://www.webresourcesdepot.com/tag/php/" title="Php" rel="tag">Php</a>, <a href="http://www.webresourcesdepot.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a><br />

	<h4>Related posts</h4>
	<ul class='st-related-posts'>
	<li><a href="http://www.webresourcesdepot.com/use-php-functions-in-javascript-phpjs/" title="Use PHP Functions In JavaScript: PHP.JS (May 28, 2009)">Use PHP Functions In JavaScript: PHP.JS</a></li>
	<li><a href="http://www.webresourcesdepot.com/use-any-font-in-your-websites-with-flir/" title="Use Any Font In Your Websites With FLIR (August 5, 2008)">Use Any Font In Your Websites With FLIR</a></li>
	<li><a href="http://www.webresourcesdepot.com/track-mouse-activities-with-js-and-php-smt/" title="Track Mouse Activities With JS And PHP: (smt) (June 29, 2009)">Track Mouse Activities With JS And PHP: (smt)</a></li>
	<li><a href="http://www.webresourcesdepot.com/stylish-mootools-file-manager/" title="Stylish MooTools File Manager (April 30, 2009)">Stylish MooTools File Manager</a></li>
	<li><a href="http://www.webresourcesdepot.com/stunning-ajax-file-manager-ajaxplorer/" title="Stunning Ajax File Manager: AjaXplorer (March 11, 2009)">Stunning Ajax File Manager: AjaXplorer</a></li>
</ul>

<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=oN0mRwqG-xg:1YzpPHS39Mw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=oN0mRwqG-xg:1YzpPHS39Mw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=oN0mRwqG-xg:1YzpPHS39Mw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=oN0mRwqG-xg:1YzpPHS39Mw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=oN0mRwqG-xg:1YzpPHS39Mw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/webresourcesdepot?a=oN0mRwqG-xg:1YzpPHS39Mw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/webresourcesdepot?i=oN0mRwqG-xg:1YzpPHS39Mw:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/webresourcesdepot/~4/oN0mRwqG-xg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/display-tweets-with-phpajax-ptwix/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.webresourcesdepot.com/display-tweets-with-phpajax-ptwix/</feedburner:origLink></item>
	</channel>
</rss>
