<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>guidefordesign</title>
	<atom:link href="http://www.guidefordesign.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.guidefordesign.com</link>
	<description>Free resources for webmasters, design tools, templates, pixel fonts, free vectors and more..</description>
	<lastBuildDate>Tue, 10 Jan 2012 12:39:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bing Translator &#8211; PHP Usage</title>
		<link>http://www.guidefordesign.com/code-samples/bing-translator-php-usage.html</link>
		<comments>http://www.guidefordesign.com/code-samples/bing-translator-php-usage.html#comments</comments>
		<pubDate>Sun, 25 Dec 2011 13:05:03 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[bing api]]></category>
		<category><![CDATA[bing translator]]></category>
		<category><![CDATA[google translator]]></category>
		<category><![CDATA[website translator]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=317</guid>
		<description><![CDATA[I&#8217;d like to share a php code that you can use for bing translator api. Just add your bing api id into &#8220;AppID= &#8221; part.
&#60;?php
echo translate(&#8217;Hello World&#8217;, &#8216;en&#8217;, &#8216;da&#8217;).&#8221;&#60;br&#62;&#8221;;
function translate($text, $from, $to) {
 $data = file_get_contents(&#8217;http://api.bing.net/json.aspx?AppId=31B78D195F4E66D972222136272630A949274973&#38;Sources=Translation&#38;Version=2.2&#38;Translation.SourceLanguage=&#8217; . $from . &#8216;&#38;Translation.TargetLanguage=&#8217; . $to . &#8216;&#38;Query=&#8217; . urlencode($text));
 $translated = json_decode($data);
 if (sizeof($translated) &#62; 0) {
 if [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to share a php code that you can use for bing translator api. Just add your bing api id into &#8220;AppID= &#8221; part.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">&lt;?php</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">echo translate(&#8217;Hello World&#8217;, &#8216;en&#8217;, &#8216;da&#8217;).&#8221;&lt;br&gt;&#8221;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">function translate($text, $from, $to) {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>$data = file_get_contents(&#8217;http://api.bing.net/json.aspx?AppId=31B78D195F4E66D972222136272630A949274973&amp;Sources=Translation&amp;Version=2.2&amp;Translation.SourceLanguage=&#8217; . $from . &#8216;&amp;Translation.TargetLanguage=&#8217; . $to . &#8216;&amp;Query=&#8217; . urlencode($text));</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>$translated = json_decode($data);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>if (sizeof($translated) &gt; 0) {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>if (isset($translated-&gt;SearchResponse-&gt;Translation-&gt;Results[0]-&gt;TranslatedTerm)) {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>return $translated-&gt;SearchResponse-&gt;Translation-&gt;Results[0]-&gt;TranslatedTerm;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>} else {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>return false;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>} else {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>return false;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">?&gt;</div>
<p>&lt;?php</p>
<p>echo translate(&#8217;Hello World&#8217;, &#8216;en&#8217;, &#8216;fr&#8217;);</p>
<p>function translate($text, $from, $to) {</p>
<p><span style="white-space: pre;"> </span>$data = file_get_contents(&#8217;http://api.bing.net/json.aspx?AppId=YoutApiIDHere&amp;Sources=Translation&amp;Version=2.2&amp;Translation.SourceLanguage=&#8217; . $from . &#8216;&amp;Translation.TargetLanguage=&#8217; . $to . &#8216;&amp;Query=&#8217; . urlencode($text));</p>
<p><span style="white-space: pre;"> </span>$translated = json_decode($data);</p>
<p><span style="white-space: pre;"> </span>if (sizeof($translated) &gt; 0) {</p>
<p><span style="white-space: pre;"> </span>if (isset($translated-&gt;SearchResponse-&gt;Translation-&gt;Results[0]-&gt;TranslatedTerm)) {</p>
<p><span style="white-space: pre;"> </span>return $translated-&gt;SearchResponse-&gt;Translation-&gt;Results[0]-&gt;TranslatedTerm;</p>
<p><span style="white-space: pre;"> </span>} else {</p>
<p><span style="white-space: pre;"> </span>return false;</p>
<p><span style="white-space: pre;"> </span>}</p>
<p><span style="white-space: pre;"> </span>} else {</p>
<p><span style="white-space: pre;"> </span>return false;</p>
<p><span style="white-space: pre;"> </span>}</p>
<p>}</p>
<p>?&gt;</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fcode-samples%2Fbing-translator-php-usage.html&amp;linkname=Bing%20Translator%20%26%238211%3B%20PHP%20Usage"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/code-samples/bing-translator-php-usage.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS2 Domain Lock &#8211; Protecting SWF Files</title>
		<link>http://www.guidefordesign.com/code-samples/as2-domain-lock-protecting-swf-files.html</link>
		<comments>http://www.guidefordesign.com/code-samples/as2-domain-lock-protecting-swf-files.html#comments</comments>
		<pubDate>Wed, 22 Jun 2011 15:43:36 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[domain lock]]></category>
		<category><![CDATA[lock swf]]></category>
		<category><![CDATA[protect swf files]]></category>
		<category><![CDATA[swf decompile]]></category>
		<category><![CDATA[swf protect]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=312</guid>
		<description><![CDATA[Domain Locking is the simple way to protect your swf files at least from newbies. Here&#8217;s what i&#8217;ve found for domain locking. Just copy and paste this code into first frame;
urls_allowed = ["www.guidefordesign.com"];
sitelock(urls_allowed);
function sitelock(urls_allowed) {
lock = true;
domain_parts = _url.split(&#8221;://&#8221;);
real_domain = domain_parts[1].split(&#8221;/&#8221;);
domain.text = real_domain[0];
for (x in urls_allowed) {
if (urls_allowed[x] == real_domain[0]) {
lock = false;
}
}
if (lock) {
_root._alpha [...]]]></description>
			<content:encoded><![CDATA[<p>Domain Locking is the simple way to protect your swf files at least from newbies. Here&#8217;s what i&#8217;ve found for domain locking. Just copy and paste this code into first frame;</p>
<p>urls_allowed = ["www.guidefordesign.com"];<br />
sitelock(urls_allowed);<br />
function sitelock(urls_allowed) {<br />
lock = true;<br />
domain_parts = _url.split(&#8221;://&#8221;);<br />
real_domain = domain_parts[1].split(&#8221;/&#8221;);<br />
domain.text = real_domain[0];<br />
for (x in urls_allowed) {<br />
if (urls_allowed[x] == real_domain[0]) {<br />
lock = false;<br />
}<br />
}<br />
if (lock) {<br />
_root._alpha = 0;<br />
}<br />
}</p>
<p>for multiple domain lock just change the line above;</p>
<p>urls_allowed = ["www.guidefordesign.com","www.anotherdomain.com"];</p>
<p>source: <a href="http://www.emanueleferonato.com/" target="_blank">emanueleferonato.com</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fcode-samples%2Fas2-domain-lock-protecting-swf-files.html&amp;linkname=AS2%20Domain%20Lock%20%26%238211%3B%20Protecting%20SWF%20Files"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/code-samples/as2-domain-lock-protecting-swf-files.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>90 Cool Seo Tools</title>
		<link>http://www.guidefordesign.com/webmaster-resources/90-cool-seo-tools.html</link>
		<comments>http://www.guidefordesign.com/webmaster-resources/90-cool-seo-tools.html#comments</comments>
		<pubDate>Tue, 10 May 2011 17:37:21 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Webmaster Resources]]></category>
		<category><![CDATA[banned sites]]></category>
		<category><![CDATA[google position finder]]></category>
		<category><![CDATA[google sandbox]]></category>
		<category><![CDATA[google seo]]></category>
		<category><![CDATA[outbound links]]></category>
		<category><![CDATA[seo tools]]></category>
		<category><![CDATA[webmaster tools]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=301</guid>
		<description><![CDATA[
You should check searchenginegenie.com . There are too many usefull seo and webmaster tools in this site.
]]></description>
			<content:encoded><![CDATA[<p><img title="new-logo-1" width="200" alt="new-logo-1" class="alignleft size-full wp-image-302" src="http://www.guidefordesign.com/wp-content/uploads/2011/05/new-logo-1.gif" height="60" /><br />
You should check <a href="http://www.searchenginegenie.com" target="_blank">searchenginegenie.com</a> . There are too many usefull seo and webmaster tools in this site.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fwebmaster-resources%2F90-cool-seo-tools.html&amp;linkname=90%20Cool%20Seo%20Tools"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/webmaster-resources/90-cool-seo-tools.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Ways to Earn Money From Your Flash Game</title>
		<link>http://www.guidefordesign.com/earning-money-from-web/best-ways-to-earn-money-from-your-flash-game.html</link>
		<comments>http://www.guidefordesign.com/earning-money-from-web/best-ways-to-earn-money-from-your-flash-game.html#comments</comments>
		<pubDate>Tue, 10 May 2011 17:22:55 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Earning Money From Web]]></category>
		<category><![CDATA[earning money]]></category>
		<category><![CDATA[flash game]]></category>
		<category><![CDATA[flash market]]></category>
		<category><![CDATA[make money]]></category>
		<category><![CDATA[mochimedia]]></category>
		<category><![CDATA[sell your flash applications]]></category>
		<category><![CDATA[selling flash games]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=297</guid>
		<description><![CDATA[Here&#8217;s the best ways to earn money from your flash game;
1. Finding sponsors.
You may sell your game to a sponsor. Some of the sponsors that buy flash games; ArmorGames, CrazyMonkeyGames, Flashrange.com, www.zbeng.ro
2. Markets to sell games or your flash applications;
. Buy Stock Flash
. Flash Juggler
. Flash Marketplace
. Flash Do
. Flash Scope
. Stock Fuel
. Flash Components
. [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the best ways to earn money from your flash game;</p>
<p>1. Finding sponsors.</p>
<p>You may sell your game to a sponsor. Some of the sponsors that buy flash games; ArmorGames, CrazyMonkeyGames, Flashrange.com, www.zbeng.ro</p>
<p>2. Markets to sell games or your flash applications;</p>
<p>. Buy Stock Flash<br />
. Flash Juggler<br />
. Flash Marketplace<br />
. Flash Do<br />
. Flash Scope<br />
. Stock Fuel<br />
. Flash Components<br />
. Active Den<br />
. Flash Game License (games only, auction + shop)<br />
. Flashgamelicence.com</p>
<p>3 Game Networks</p>
<p>a) I offer you <a href="https://www.mochimedia.com/r/6e42c9dfa1f930bb" target="blank">mochimedia.com.</a> They have free tools and services for monetizing, distributing and tracking your games. You earn money when someone play your game somewhere around the world, sounds great.<br />
b) Gamegum which offers %50 commision revenue sharing. Just upload your game.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fearning-money-from-web%2Fbest-ways-to-earn-money-from-your-flash-game.html&amp;linkname=Best%20Ways%20to%20Earn%20Money%20From%20Your%20Flash%20Game"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/earning-money-from-web/best-ways-to-earn-money-from-your-flash-game.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cool Online Seo Tools</title>
		<link>http://www.guidefordesign.com/search-engine-optimization/cool-online-seo-tools.html</link>
		<comments>http://www.guidefordesign.com/search-engine-optimization/cool-online-seo-tools.html#comments</comments>
		<pubDate>Tue, 10 May 2011 16:39:41 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[backlink]]></category>
		<category><![CDATA[keyword suggestion tool]]></category>
		<category><![CDATA[online tool]]></category>
		<category><![CDATA[reciprocal backlink]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo tools]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=290</guid>
		<description><![CDATA[I&#8217;ve found a seo site, seoheap.com. They have pretty seo tools like web site analyzing, backlink checking, keyword suggestion tools,  reciprocal backlink checking tool. i think you should check this site  ;)
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found a seo site, seoheap.com. They have pretty <strong>seo tools</strong> like web site analyzing, backlink checking, keyword suggestion tools,  reciprocal backlink checking tool. i think you should check this site  ;)</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fsearch-engine-optimization%2Fcool-online-seo-tools.html&amp;linkname=Cool%20Online%20Seo%20Tools"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/search-engine-optimization/cool-online-seo-tools.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing folder with the files inside with php</title>
		<link>http://www.guidefordesign.com/code-samples/removing-folder-with-the-files-inside-with-php.html</link>
		<comments>http://www.guidefordesign.com/code-samples/removing-folder-with-the-files-inside-with-php.html#comments</comments>
		<pubDate>Wed, 05 Jan 2011 10:24:27 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=281</guid>
		<description><![CDATA[Another usefull php function. It removes a folder with the content inside.
//function
function delTree($dir) {
    $files = glob( $dir . &#8216;*&#8217;, GLOB_MARK );
    foreach( $files as $file ){
        if( substr( $file, -1 ) == &#8216;/&#8217; )
            delTree( $file );
        else
            unlink( $file );
    }
    rmdir( $dir );
}
//usage
delTree(&#8217;FolrderName&#8217;);
]]></description>
			<content:encoded><![CDATA[<p>Another usefull php function. It removes a folder with the content inside.</p>
<p>//function<br />
function delTree($dir) {<br />
    $files = glob( $dir . &#8216;*&#8217;, GLOB_MARK );<br />
    foreach( $files as $file ){<br />
        if( substr( $file, -1 ) == &#8216;/&#8217; )<br />
            delTree( $file );<br />
        else<br />
            unlink( $file );<br />
    }<br />
    rmdir( $dir );</p>
<p>}</p>
<p>//usage<br />
delTree(&#8217;FolrderName&#8217;);</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fcode-samples%2Fremoving-folder-with-the-files-inside-with-php.html&amp;linkname=Removing%20folder%20with%20the%20files%20inside%20with%20php"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/code-samples/removing-folder-with-the-files-inside-with-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php function against sql injection</title>
		<link>http://www.guidefordesign.com/code-samples/php-function-against-sql-injection.html</link>
		<comments>http://www.guidefordesign.com/code-samples/php-function-against-sql-injection.html#comments</comments>
		<pubDate>Tue, 04 Jan 2011 11:06:12 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[get_magic_quotes_gpc]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[real escape string]]></category>
		<category><![CDATA[special characters]]></category>
		<category><![CDATA[sql injection]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=279</guid>
		<description><![CDATA[I&#8217;ve began to use this usefull function against sql injection and cleaning other bad characters before inserting data into database.
//function
function clean($str) {
  $str = @trim($str);
  if(get_magic_quotes_gpc()) {
   $str = stripslashes($str);
  }
  return mysql_real_escape_string($str);
 }
// usage:
clean($_POST["data"]);
hope it helps.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve began to use this usefull function against sql injection and cleaning other bad characters before inserting data into database.</p>
<p>//function</p>
<p>function clean($str) {<br />
  $str = @trim($str);<br />
  if(get_magic_quotes_gpc()) {<br />
   $str = stripslashes($str);<br />
  }<br />
  return mysql_real_escape_string($str);<br />
 }</p>
<p>// usage:<br />
clean($_POST["data"]);</p>
<p>hope it helps.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fcode-samples%2Fphp-function-against-sql-injection.html&amp;linkname=php%20function%20against%20sql%20injection"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/code-samples/php-function-against-sql-injection.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Online Web Site Submission Services</title>
		<link>http://www.guidefordesign.com/search-engine-optimization/free-online-web-site-submission-services.html</link>
		<comments>http://www.guidefordesign.com/search-engine-optimization/free-online-web-site-submission-services.html#comments</comments>
		<pubDate>Wed, 22 Sep 2010 13:13:42 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[add me]]></category>
		<category><![CDATA[add site]]></category>
		<category><![CDATA[free directories]]></category>
		<category><![CDATA[free submission]]></category>
		<category><![CDATA[site submission]]></category>
		<category><![CDATA[submit express]]></category>
		<category><![CDATA[submit site]]></category>
		<category><![CDATA[submit tool]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=277</guid>
		<description><![CDATA[Free online web site submission services that i use regularly. Hope it helps  
1. Submit Express
2. Free web submission
3. Add me
Also a helpfull link;
Top free directories &#38; search engines
]]></description>
			<content:encoded><![CDATA[<p>Free online web site submission services that i use regularly. Hope it helps <img src='http://www.guidefordesign.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>1.<a title="submit express" href="http://www.submitexpress.com/free-submission.html" target="_blank"> Submit Express</a></p>
<p>2. <a title="free web submission" href="http://www.freewebsubmission.com/" target="_blank">Free web submission</a></p>
<p>3. <a title="add me" href="http://www.addme.com/" target="_blank">Add me</a></p>
<p>Also a helpfull link;</p>
<p><a href="http://www.tipsntutorials.com/Top-Directories/">Top free directories &amp; search engines</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fsearch-engine-optimization%2Ffree-online-web-site-submission-services.html&amp;linkname=Free%20Online%20Web%20Site%20Submission%20Services"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/search-engine-optimization/free-online-web-site-submission-services.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine List For DoFollow Links</title>
		<link>http://www.guidefordesign.com/search-engine-optimization/search-engine-list-for-dofollow-links.html</link>
		<comments>http://www.guidefordesign.com/search-engine-optimization/search-engine-list-for-dofollow-links.html#comments</comments>
		<pubDate>Sat, 11 Sep 2010 21:59:24 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[dofollow]]></category>
		<category><![CDATA[dofollow links]]></category>
		<category><![CDATA[link find]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo tools]]></category>
		<category><![CDATA[tag]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=275</guid>
		<description><![CDATA[How can we find dofollow links for link building? Here&#8217;s the list of search engines for finding dofollow links:
http://www.backlinkmagic.com/
http://w3ec.com/dofollow
http://techmm.com/dofollow
http://www.followtopia.com
http://www.commenthunt.com
http://www.commentlinkbuilding.info
http://bloggtag.com/en/dofollow-search
http://www.inlineseo.com/dofollowdiver
http://www.bestrealincome.com/dofollowsearch.htm
http://www.wmtips.com/tools/dofollow-search-engine
http://www.hippowebsolutions.com/dofollow-search-tool
http://www.ezbusinessneeds.com/dofollow.php
]]></description>
			<content:encoded><![CDATA[<p>How can we find dofollow links for link building? Here&#8217;s the list of search engines for finding dofollow links:</p>
<p>http://www.backlinkmagic.com/<br />
http://w3ec.com/dofollow<br />
http://techmm.com/dofollow<br />
http://www.followtopia.com<br />
http://www.commenthunt.com<br />
http://www.commentlinkbuilding.info<br />
http://bloggtag.com/en/dofollow-search<br />
http://www.inlineseo.com/dofollowdiver<br />
http://www.bestrealincome.com/dofollowsearch.htm<br />
http://www.wmtips.com/tools/dofollow-search-engine<br />
http://www.hippowebsolutions.com/dofollow-search-tool<br />
http://www.ezbusinessneeds.com/dofollow.php</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fsearch-engine-optimization%2Fsearch-engine-list-for-dofollow-links.html&amp;linkname=Search%20Engine%20List%20For%20DoFollow%20Links"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/search-engine-optimization/search-engine-list-for-dofollow-links.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 70 ajax demos and code examples</title>
		<link>http://www.guidefordesign.com/code-samples/top-70-ajax-demo-and-code-examples.html</link>
		<comments>http://www.guidefordesign.com/code-samples/top-70-ajax-demo-and-code-examples.html#comments</comments>
		<pubDate>Mon, 19 Jul 2010 07:36:30 +0000</pubDate>
		<dc:creator>yuzi</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Code Samples]]></category>
		<category><![CDATA[ajax code sample]]></category>
		<category><![CDATA[ajax loader]]></category>
		<category><![CDATA[ajax logging]]></category>
		<category><![CDATA[ajax tickbox]]></category>
		<category><![CDATA[ajax tutorial]]></category>
		<category><![CDATA[ajax upload]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[live chat code]]></category>
		<category><![CDATA[mobile applications]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.guidefordesign.com/?p=271</guid>
		<description><![CDATA[For more attractive web sites;

Ajallerix : AJAX, simple, fast Web image gallery demo ; at Novell
AJAX – microlink pattern tutorial : A microlink is a link that opens up content below it.
Ajax BBC News RSS Reader : demo by Nigel Crawley
AJAX Chat in Python with Dojo : at AquaAjax
Ajax Chess : multiplayer chess
Ajax examples at [...]]]></description>
			<content:encoded><![CDATA[<p>For more attractive web sites;</p>
<ol style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;">
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://forge.novell.com/modules/xfmod/project/?ajallerix">Ajallerix</a> : AJAX, simple, fast Web image gallery demo ; at Novell</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.stratulat.com/technical/ajax/a1/?article=AJAX%20-%20microlink%20pattern%20">AJAX – microlink pattern tutorial</a> : A microlink is a link that opens up content below it.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.nigelcrawley.co.uk/bbc/">Ajax BBC News RSS Reader</a> : demo by Nigel Crawley</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://aquajax.com/">AJAX Chat in Python with Dojo</a> : at AquaAjax</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.linuxuser.at/chess/">Ajax Chess</a> : multiplayer chess<br /><span id="more-271"></span></li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.backbase.com/demos/explorer/">Ajax examples at BackBase</a> : examples demonstrating several aspects of the Backbase technology.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://openrico.org/rico/demos.page">Ajax examples at Rico</a> : Inner HTML, JavaScript updater etc.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.propeller-head.biz/demo/desktop/">Ajax examples using ColdFusionMX, SQLServer, SOAP</a> : Contact Manager, NOAA 7 Day Forecast code and demos.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.feedfeeds.com/feedtv">Ajax Feed TV</a> : News feed</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.chevol.com/Blog/tabid/61/EntryID/22/Default.aspx">Ajax inline dictionary</a> : Highlight any text on this site then right click. A tooltip containing the definition of the selected word should show up.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.ajaxload.info/">Ajaxload</a> : Ajax loading gif generator.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.jamesdam.com/ajax_login/login.html">Ajax Login Demo</a> : Creating a secure login system using XMLHttpRequest</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://software500.pathf.com/">Ajax Newsletter Signup</a> : A newsletter signup form that shows Thank You on the same page.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.vertexlogic.com/">ajaxProject</a> : Project Management applicaiton with rich UI</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.masuga.com/thelab/ajaxrate/">Ajax Rater</a> : A star rating system that uses Ajax.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.robertnyman.com/2005/11/13/proudly-presenting-ajax-s/">AJAX-S</a> : An Ajax-based slideshow system.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.broken-notebook.com/spell_checker">AJAX Spell Checker</a> : spell check text / form content.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://ajaxtoolbox.com/">Ajax Toolbox</a> : Tools for the Ajax Developer</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://lmap.co.nr/Amazon1.htm">Amazon Catalog Tree</a> : Amazon Catalog Tree</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.francisshanahan.com/zuggest.aspx">Amazon Zuggest</a> : Amazon product suggestion (like google suggest)</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.symfony-project.com/askeet/8">Askeet by symfony</a> : Digg-like AJAX interactions; open source</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.backbase.com/?no-loop#home/home.xml[0]">Backbase – Ajax Demos</a> : Ajax demos at BackBase</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.clearnova.com/ajax/">Basic Ajax Examples</a> : Ping, track changes, drop down, Google suggest hack etc at Clearnova</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://bennolan.com/behaviour/more.html">Behaviour</a> : Fading lists, Sortable lists, Dropout boxen, Shaky lists</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://gamma.nic.fi/~jmp/chat/app.html">chat.app</a> : ajax chat</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://chi.lexigame.com/">Chihuahua Word Puzzle</a> : daily word puzzles</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.couloir.org/">Coloir</a> : Ajax Slideshow</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.def-logic.com/games.html">DHTML arcade/action games</a> : a collection that demonstrate the power of DHTML</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.domapi.com/index.cfm?action=examples">DomAPI</a> : Windows Desktop, Outlook-like, RSS Reader</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.cyberdummy.co.uk/test/cart.php">Drag and Drop Shopping Cart Demo</a> : at CyberDummy</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.yvoschaap.com/index.php/weblog/ajax_inline_instant_update_text_20">Easy AJAX inline text edit 2.0</a> : edit a piece of text inline</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://encodable.com/filechucker/">FileChucker</a> : File upload and progress bar at Encodable.com</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.cyberdummy.co.uk/test/username-ajax.php">Gmail Style Check Username AJAX Demo</a> : at CyberDummy</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://code.google.com/webtoolkit/documentation/examples/">Google Web Toolkit Example Projects</a> : Hello World, Dynamic Table, Desktop App Clone etc</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://amix.dk/projects/?page_id=5#Download_-_the_">GreyBox</a> : Pop up window using idea of light box.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.fiftyfoureleven.com/resources/programming/xmlhttprequest/examples">FiftyFourEleven: Ajax Examples</a></li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.abaqueinside.com/IntuiCatAjaxDemoVerif.asp">IntuiCat – ajax Catalogue</a> : Ajax-based Catalogue Demo</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.linb.net/linb/">jsLINB programming demos</a> : LINB(Lazy INternet and Browser)</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://earthcode.com/blog/2005/12/jslog.html">JSlog</a> : Ajax logging tool.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.masswerk.at/jsuix/jsuix_support/">JS/UIX Unix Shell</a> : JS/UIX is an UN*X-like OS for standard web-browsers, written entirely in JavaScript.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://socket7.net/lace/">Lace</a> : free web chat application</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.huddletogether.com/projects/lightbox2/">Lightbox</a> : simple, unobtrusive script used to overlay images on the current page.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.eight.nl/files/leightbox/">Leightbox</a> : Light Box with inline div’s instead of AJAX calls.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.ajaxtechforums.com/viewtopic.php?t=21">Live Quote Demo</a> : Simple way of creating an updating stock quote table in ajax.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.broken-notebook.com/magnetic">Magnetic Poetry</a> : drag and drop poetry</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://metatron.rhea-silva.com/">Metatron Chat Engine</a> : PHP/MySQL/JavaScript powered chat engine</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.monket.net/cal">Monket Calendar</a> : online calendar</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.cyberdummy.co.uk/test/dd.php">Multi List Drag Drop Demo</a> : at CyberDummy</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.netdirector.org/">NetDirector</a> : open and extensible framework for managing configurations of common open source network services.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://demo.neximage.com/">nexImage</a> : Image processing demo</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.opera.com/products/mobile/platform/">Opera Platform</a> : Enabling AJAX applications on mobile phones</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.orbeon.com/ops/goto-example/xforms-controls">Orbeon examples</a> : various examples illustrating the capabilities of OPS, from the OPS Tutorial examples to XForms examples</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.ovosuite.com/">OVO Suite : Online Virtual Office</a> : virtual office limited demo</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.phpfreechat.net/">phpFreeChat</a> : php Free Chat</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://meyerweb.com/eric/tools/s5/">S5: A Simple Standards-Based Slide Show System</a> : S5 is a slide show format based entirely on XHTML, CSS, and JavaScript.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://mir.aculo.us/stuff/reflector/reflector.html">script.aculo.us Reflector</a> : image reflector script that uses uses opacity-based fades</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.cyberdummy.co.uk/test/slider/">Slider Bar Demo</a> : at CyberDummy</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://rockstars.homedns.org/smallestajax/index.php">SmallestAjax</a> : Smallest Ajax example in the world?</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://demo.primalgrasp.com/spell/edit_text">Spell Check demo</a> : by Primal Grasp</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.janis.or.jp/users/segabito/JavaScriptMaryo.html">Super Maryo World</a> : Japanese game demo</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://demo.opennotion.com/tacos4/app">Tacos</a> : Tacos provides a library of useful Tapestry components. This application provides some examples to get you started.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.agavegroup.com/agWork/theList/theListWrapper.php">theList</a> : to-do list / bug-tracker</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://codylindley.com/Javascript/257/thickbox-one">ThickBox</a> : ThickBox is a Lightbox than can show html pages as well as images.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://tooltip.crtx.org/">Tooltip.js</a> : Tooltip.js is a simple class to make it possible to add tooltips to your page.</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://treehouse.ofb.net/chat/?lang=en">Treehouse Chat</a> : ajax chat</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://tudu.sourceforge.net/">Tudu Lists</a> : open-source to-do lists</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://weboggle.shackworks.com/">WeBoggle</a> : Ajax Boggle</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.plasticshore.com/projects/chat/">XHTML live Chat</a> : ajax chat</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.myjavaserver.com/~harikrishnag/yahoo.html">YahooSearchAsYouType</a> : Yahoo search as you type</li>
<li style="margin-top: 0px; margin-right: 5px; margin-bottom: 5px; margin-left: 15px; padding: 0px;"><a style="color: #424e58; background-color: inherit; padding: 0px; margin: 0px;" href="http://www.potix.com/zkdemo/userguide">ZK Demo</a> : demo programs for various components</li>
</ol>
<p>source: webdeveloper.econsultant.com</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.guidefordesign.com%2Fcode-samples%2Ftop-70-ajax-demo-and-code-examples.html&amp;linkname=Top%2070%20ajax%20demos%20and%20code%20examples"><img src="http://www.guidefordesign.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.guidefordesign.com/code-samples/top-70-ajax-demo-and-code-examples.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

