<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Devils Workshop</title>
	<atom:link href="http://devilsworkshop.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://devilsworkshop.org</link>
	<description>Technology Social Media Blogging</description>
	<lastBuildDate>Tue, 16 Mar 2010 00:37:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to include Paypal &#8220;Buy Now&#8221; button on your website ?</title>
		<link>http://devilsworkshop.org/how-to-include-paypal-buy-now-button-on-your-website/</link>
		<comments>http://devilsworkshop.org/how-to-include-paypal-buy-now-button-on-your-website/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 13:25:13 +0000</pubDate>
		<dc:creator>Parshwa Nemi Jain</dc:creator>
				<category><![CDATA[Developers]]></category>
		<category><![CDATA[Codes]]></category>
		<category><![CDATA[Paypal]]></category>

		<guid isPermaLink="false">http://devilsworkshop.org/?p=21090</guid>
		<description><![CDATA[This tutorial is for people who are trying to integrate Pyapal buy now button on their blog or on their E-commerce websites using PayPal.

I assume that you have basic knowledge of HTML.

See Demo.

Source Code:<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/how-to-include-paypal-buy-now-button-on-your-website/">How to include Paypal &#8220;Buy Now&#8221; button on your website ?</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>


<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/how-to-create-email-share-button-for-your-website/' rel='bookmark' title='Permanent Link: How to create email share button for your website?'>How to create email share button for your website?</a></li>
<li><a href='http://devilsworkshop.org/add-tweetmeme-retweet-button-in-your-blogger-blog/' rel='bookmark' title='Permanent Link: Add tweetmeme/ Retweet button in your blogger blog'>Add tweetmeme/ Retweet button in your blogger blog</a></li>
<li><a href='http://devilsworkshop.org/paypal-purpose-code-for-indian-bloggersfreelancers/' rel='bookmark' title='Permanent Link: Paypal Purpose Code for Indian Bloggers/Freelancers/Affiliates &amp; SEO Experts'>Paypal Purpose Code for Indian Bloggers/Freelancers/Affiliates &amp; SEO Experts</a></li>
<li><a href='http://devilsworkshop.org/adding-save-as-pdf-button-on-blogger-blog/' rel='bookmark' title='Permanent Link: Adding &lsquo;Save as PDF&rsquo; Button on Blogger Blog [How-to]'>Adding &lsquo;Save as PDF&rsquo; Button on Blogger Blog [How-to]</a></li>
<li><a href='http://devilsworkshop.org/easy-tricks-to-make-your-blog-website-look-professional/' rel='bookmark' title='Permanent Link: Easy tricks to make your Blog/Website look professional'>Easy tricks to make your Blog/Website look professional</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><!--INFOLINKS_ON--><!-- google_ad_section_start -->This tutorial is for people who are trying to integrate Pyapal buy now button on their blog or on their E-commerce websites using <a title="PayPal" href="https://www.paypal.com/">PayPal</a>.</p>
<p>I assume that you have basic knowledge of HTML.</p>
<p>See <a href="#demo">Demo</a>.</p>
<p>Source Code:</p>
<pre class="html">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
  Product Name: Test Product
  Price: $ 25.00 USD
  <!-- Identify your business so that you can collect the payments. -->
<input name="business" type="hidden" value="test@gmail.com" />
    <!-- Specify a Buy Now button. -->
<input name="cmd" type="hidden" value="_xclick" />
    <!-- Specify details about the item that buyers will purchase. -->
<input name="item_name" type="hidden" value="Test Product" />
<input name="amount" type="hidden" value="25.00" />
<input name="currency_code" type="hidden" value="USD" />
<!--Ask for quantity-->
Quantity:
<select name="quantity">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
</select>

    <!-- Display the payment button. -->
<input alt="PayPal - The safer, easier way to pay online" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" type="image" />
</form>
</pre>
<p>Lets start from the beginning of the code.</p>
<p>To create a PayPal Buy Now Button, we need to specify few variables.</p>
<ul>
<li>On Line #5 <em>business</em> tells PayPal where to deposit the money.</li>
<li>On Line #7 <em>cmd</em> is used to tell PayPal what type of transaction is being made. Since we are creating Buy Now button, its value is &#8220;_xclick&#8221;.</li>
<li>On Line #9 <em>item_name</em> is used to tell the product name to PayPal.</li>
<li>On Line #10 <em>amount</em> tells PayPal the price of the product.</li>
<li>On Line #11 <em>currency_code</em> tell PayPal the currency of price. The default is USD. List of allowable values of Currency Codes can be found <a href="https://cms.paypal.com/us/cgi-bin/?&amp;cmd=_render-content&amp;content_ID=developer/e_howto_api_nvp_currency_codes">here</a>.</li>
<li>On Line #14 <em>quantity</em> tells PayPal the total number of product bought by the customer.</li>
</ul>
<p>When a customer clicks on the Buy Now button, all these variables are passed to PayPal.</p>
<p>The process is shown in the following image (Copied from PayPal)<br />
<a rel="attachment wp-att-21182" href="http://devilsworkshop.org/how-to-include-paypal-buy-now-button-on-your-website/buy-now_basic-checkout-experience/"><img class="alignnone size-full wp-image-21182" title="buy-now_basic-checkout-experience" src="http://devilsworkshop.org/files/2010/03/buy-now_basic-checkout-experience.gif" alt="" width="510" height="681" /></a></p>
<p><a name="demo"></a></p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> Product Name: Test Product<br />
Price: $ 25.00 USD<br />
<!-- Identify your business so that you can collect the payments. --></p>
<input name="business" type="hidden" value="parshwanemijain@gmail.com" /> <!-- Specify a Buy Now button. --></p>
<input name="cmd" type="hidden" value="_xclick" /> <!-- Specify details about the item that buyers will purchase. --></p>
<input name="item_name" type="hidden" value="Test Product" />
<input name="amount" type="hidden" value="25.00" />
<input name="currency_code" type="hidden" value="USD" /> Quantity:</p>
<select name="quantity"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> <option value="6">6</option> <option value="7">7</option> </select>
<p><!-- Display the payment button. --></p>
<input alt="PayPal - The safer, easier way to pay online" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" type="image" />
</form>
<p>For more information on PayPal, you can refer the following link:</p>
<ul>
<li><a href="https://www.paypal.com/">PayPal</a></li>
<li><a href="https://developer.paypal.com/">PayPal Sandbox</a></li>
<li>PayPal Website Payments Standard Integration Guide: <a title="PayPal Website Payments Standard Integration Guide" href="https://cms.paypal.com/cms_content/US/en_US/files/developer/PP_WebsitePaymentsStandard_IntegrationGuide.pdf">PDF</a> <a title="PayPal Website Payments Standard Integration Guide" href="https://cms.paypal.com/us/cgi-bin/?&amp;cmd=_render-content&amp;content_ID=developer/howto_html_wp_standard_overview">HTML</a></li>
<li>PayPal Sandbox User Guide: <a title="PayPal Sandbox User Guide" href="https://cms.paypal.com/cms_content/US/en_US/files/developer/PP_Sandbox_UserGuide.pdf">PDF</a> <a title="PayPal Sandbox User Guide" href="https://cms.paypal.com/us/cgi-bin/?&amp;cmd=_render-content&amp;content_ID=developer/howto_testing_sandbox">HTML</a></li>
<li>Merchant Setup and Administration Guide: <a href="https://cms.paypal.com/cms_content/US/en_US/files/developer/PP_MerchantSetupAdministrationGuide.pdf">PDF</a> <a href="https://cms.paypal.com/us/cgi-bin/?&amp;cmd=_render-content&amp;content_ID=developer/e_howto_admin_setup_SUA_admin_setup">HTML</a></li>
<li><a title="HTML Variables for Website Payments Standard" href="https://cms.paypal.com/us/cgi-bin/?&amp;cmd=_render-content&amp;content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables">HTML Variables for Website Payments Standard</a></li>
</ul>
<p>I hope you will find this tutorial useful. In the next part of this tutorial, we will learn about how to use PayPal Instant Payment Notification (IPN).<!-- google_ad_section_end --> <!--INFOLINKS_ON--></p>
<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/how-to-include-paypal-buy-now-button-on-your-website/">How to include Paypal &#8220;Buy Now&#8221; button on your website ?</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<img src="http://devilsworkshop.org/?ak_action=api_record_view&id=21090&type=feed" alt="" />

<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/how-to-create-email-share-button-for-your-website/' rel='bookmark' title='Permanent Link: How to create email share button for your website?'>How to create email share button for your website?</a></li>
<li><a href='http://devilsworkshop.org/add-tweetmeme-retweet-button-in-your-blogger-blog/' rel='bookmark' title='Permanent Link: Add tweetmeme/ Retweet button in your blogger blog'>Add tweetmeme/ Retweet button in your blogger blog</a></li>
<li><a href='http://devilsworkshop.org/paypal-purpose-code-for-indian-bloggersfreelancers/' rel='bookmark' title='Permanent Link: Paypal Purpose Code for Indian Bloggers/Freelancers/Affiliates &amp; SEO Experts'>Paypal Purpose Code for Indian Bloggers/Freelancers/Affiliates &amp; SEO Experts</a></li>
<li><a href='http://devilsworkshop.org/adding-save-as-pdf-button-on-blogger-blog/' rel='bookmark' title='Permanent Link: Adding &lsquo;Save as PDF&rsquo; Button on Blogger Blog [How-to]'>Adding &lsquo;Save as PDF&rsquo; Button on Blogger Blog [How-to]</a></li>
<li><a href='http://devilsworkshop.org/easy-tricks-to-make-your-blog-website-look-professional/' rel='bookmark' title='Permanent Link: Easy tricks to make your Blog/Website look professional'>Easy tricks to make your Blog/Website look professional</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/how-to-include-paypal-buy-now-button-on-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Settings updates for Buzz updates in your Gmail Inbox</title>
		<link>http://devilsworkshop.org/new-settings-updates-for-buzz-updates-in-your-gmail-inbox/</link>
		<comments>http://devilsworkshop.org/new-settings-updates-for-buzz-updates-in-your-gmail-inbox/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 09:54:43 +0000</pubDate>
		<dc:creator>Aditya Kane</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[autorun]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Gmail]]></category>

		<guid isPermaLink="false">http://devilsworkshop.org/?p=21819</guid>
		<description><![CDATA[Google recently announced new updates to features with Google Buzz. Now Buzz is part of the settings section within Gmail and also you can mute a Buzz within the Inbox. Google Buzz has had a tumultuous start with many questioning it&#8217;s privacy features and there were a spate of posts on how to remove Buzz [...]<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/new-settings-updates-for-buzz-updates-in-your-gmail-inbox/">New Settings updates for Buzz updates in your Gmail Inbox</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>


<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/disable-google-buzz-updates-from-reaching-your-inbox/' rel='bookmark' title='Permanent Link: Disable Google Buzz Updates from Reaching your Inbox'>Disable Google Buzz Updates from Reaching your Inbox</a></li>
<li><a href='http://devilsworkshop.org/track-google-buzz-updates-with-chrome-extensions-or-with-rss-feeds/' rel='bookmark' title='Permanent Link: Track Google Buzz updates with Chrome extensions or with RSS feeds'>Track Google Buzz updates with Chrome extensions or with RSS feeds</a></li>
<li><a href='http://devilsworkshop.org/now-view-your-gmail-before-it-loads-with-inbox-preview/' rel='bookmark' title='Permanent Link: Now view your Gmail before it loads with &#8220;Inbox Preview&#8221;'>Now view your Gmail before it loads with &#8220;Inbox Preview&#8221;</a></li>
<li><a href='http://devilsworkshop.org/now-customize-color-of-gmail-inbox-new-feature/' rel='bookmark' title='Permanent Link: Now Customize Color of Gmail Inbox! [New Feature]'>Now Customize Color of Gmail Inbox! [New Feature]</a></li>
<li><a href='http://devilsworkshop.org/google-buzz-giving-better-control-for-email-notification/' rel='bookmark' title='Permanent Link: Google Buzz giving Better Control for Email Notification'>Google Buzz giving Better Control for Email Notification</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><!--INFOLINKS_ON--><!-- google_ad_section_start -->Google recently <a href="http://gmailblog.blogspot.com/2010/03/better-controls-for-buzz-in-your-inbox.html">announced</a> new updates to features with Google Buzz. Now Buzz is part of the settings section within Gmail and also you can mute a Buzz within the <strong>Inbox</strong>. Google Buzz has had a tumultuous start with many questioning it&#8217;s privacy features and there were a spate of posts on <a title="how to remove Buzz from Gmail" href="http://devilsworkshop.org/dont-like-google-buzz-remove-it/">how to remove Buzz from Gmail</a> only a day after it was introduced. <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a rel="attachment wp-att-21848" href="http://devilsworkshop.org/new-settings-updates-for-buzz-updates-in-your-gmail-inbox/google_buzz_new_settings/"><img class="alignnone size-full wp-image-21848" title="New Settings with Google Buzz" src="http://devilsworkshop.org/files/2010/03/Google_buzz_new_settings.png" alt="" width="550" height="248" /></a></p>
<h3><strong>New Updated Buzz Settings</strong></h3>
<p>Buzz settings now can be directly accessed from your<strong> Gmail Settings</strong>. Click on Settings and then look up the tab named Buzz. Below is the 1-2-3 of the new settings.</p>
<h3><strong>#1. Inbox Settings:</strong></h3>
<p>The settings are really useful and I think I will be trying to play around with this to figure out what works best for me. I do not like some of the people I follow on Buzz spamming my <strong>Inbox</strong>. Earlier there was <a title="a run around to it by creating a new filter withing Gmail" href="http://devilsworkshop.org/disable-google-buzz-updates-from-reaching-your-inbox/">a run around to it by creating a new filter withing Gmail</a>, but now this can be done easily done through the settings.</p>
<p>I am selecting the first option which is People comment on my posts and its update reaches my Inbox and that is what I would generally want to monitor.</p>
<h3><strong>#2. List of Followers in Buzz</strong></h3>
<p>This setting is very important considering the number one concern from a lot of tech enthusiasts was that Google Buzz shows you email contacts to anyone you are following on Buzz. The email is not leaked but email is something that can be used for personal and professional work and I am sure people don&#8217;t want one group of contacts to look up the other. Here you can choose not to show the list of people you are following to people who follow you.</p>
<h3><strong>#3. Disable Google</strong></h3>
<p>I had written a post earlier on how to remove Buzz but there are two instances of it. New settings allows you to <a title="not show Buzz within Gmail" href="http://devilsworkshop.org/dont-like-google-buzz-remove-it/">not show Buzz within Gmail</a> and there is a new option to Disable Google Buzz which completely removes all the Buzz posts and also deletes the Google profile. I think this can be handy with accounts you simply want Buzz not to be present.</p>
<h3><strong>Mute Buzz update from Inbox..</strong></h3>
<p><a rel="attachment wp-att-21852" href="http://devilsworkshop.org/new-settings-updates-for-buzz-updates-in-your-gmail-inbox/google_buzz_inbox_mute/"><img title="Google_buzz_inbox_mute" src="../files/2010/03/Google_buzz_inbox_mute.png" alt="" width="550" height="287" /></a></p>
<p>Finally the latest addition to Buzz updates that make it within your Inbox is that you can mute a Buzz post from the Inbox itself. Take a look at the image below. This does not mute the Buzz post from Buzz interface but only within your Email. This is useful to control a post which is getting a low of replies which you are not really interesting in looking up in your Inbox.</p>
<p>Do let me know if you have been using Buzz and if you have any new ideas on the drawbacks of Buzz that are not addressed with these settings? <strong></strong></p>
<p><strong>Do drop in your comments. <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </strong><!-- google_ad_section_end --> <!--INFOLINKS_ON--></p>
<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/new-settings-updates-for-buzz-updates-in-your-gmail-inbox/">New Settings updates for Buzz updates in your Gmail Inbox</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<img src="http://devilsworkshop.org/?ak_action=api_record_view&id=21819&type=feed" alt="" />

<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/disable-google-buzz-updates-from-reaching-your-inbox/' rel='bookmark' title='Permanent Link: Disable Google Buzz Updates from Reaching your Inbox'>Disable Google Buzz Updates from Reaching your Inbox</a></li>
<li><a href='http://devilsworkshop.org/track-google-buzz-updates-with-chrome-extensions-or-with-rss-feeds/' rel='bookmark' title='Permanent Link: Track Google Buzz updates with Chrome extensions or with RSS feeds'>Track Google Buzz updates with Chrome extensions or with RSS feeds</a></li>
<li><a href='http://devilsworkshop.org/now-view-your-gmail-before-it-loads-with-inbox-preview/' rel='bookmark' title='Permanent Link: Now view your Gmail before it loads with &#8220;Inbox Preview&#8221;'>Now view your Gmail before it loads with &#8220;Inbox Preview&#8221;</a></li>
<li><a href='http://devilsworkshop.org/now-customize-color-of-gmail-inbox-new-feature/' rel='bookmark' title='Permanent Link: Now Customize Color of Gmail Inbox! [New Feature]'>Now Customize Color of Gmail Inbox! [New Feature]</a></li>
<li><a href='http://devilsworkshop.org/google-buzz-giving-better-control-for-email-notification/' rel='bookmark' title='Permanent Link: Google Buzz giving Better Control for Email Notification'>Google Buzz giving Better Control for Email Notification</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/new-settings-updates-for-buzz-updates-in-your-gmail-inbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weekly Roundup for Devils&#8217; Workshop- 8th March to 14th March</title>
		<link>http://devilsworkshop.org/weekly-roundup-for-devils-workshop-8th-march-to-14th-march/</link>
		<comments>http://devilsworkshop.org/weekly-roundup-for-devils-workshop-8th-march-to-14th-march/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 03:53:25 +0000</pubDate>
		<dc:creator>ruchi</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Weekly Roundup]]></category>

		<guid isPermaLink="false">http://devilsworkshop.org/?p=21811</guid>
		<description><![CDATA[Here is the Monday Round Post for Devil’s Workshop. Check it out if you missed any of the post of this rocking week. This was really an exciting week for Devilsworkshop because of these two reason:

1. Merger of two of India’s top blog networks – rtBlogs and ShoutMeLoud .
2. We celebrated 1st anniversary of rtCamp.<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/weekly-roundup-for-devils-workshop-8th-march-to-14th-march/">Weekly Roundup for Devils&#8217; Workshop- 8th March to 14th March</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>


<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/devils-workshops-3rd-anniversary/' rel='bookmark' title='Permanent Link: Devils Workshop&#8217;s 3rd Anniversary Celebration &#8211; Free services worth $1000!'>Devils Workshop&#8217;s 3rd Anniversary Celebration &#8211; Free services worth $1000!</a></li>
<li><a href='http://devilsworkshop.org/summary-whats-new-happening-at-devils-workshop/' rel='bookmark' title='Permanent Link: [Summary] What&#8217;s new happening at Devils Workshop!'>[Summary] What&#8217;s new happening at Devils Workshop!</a></li>
<li><a href='http://devilsworkshop.org/the-devil-is-in-the-workshop/' rel='bookmark' title='Permanent Link: Help us re-design Devils Workshop'>Help us re-design Devils Workshop</a></li>
<li><a href='http://devilsworkshop.org/tdis-intoducing-a-new-section-on-devils-workshop/' rel='bookmark' title='Permanent Link: TDIS &#8211; Introducing a new section on Devils Workshop'>TDIS &#8211; Introducing a new section on Devils Workshop</a></li>
<li><a href='http://devilsworkshop.org/thank-you-all-of-u-devils-workshop-crossed-100000-visitors-mark/' rel='bookmark' title='Permanent Link: Thank you all of u! Devils workshop crossed 100,000 visitors mark!'>Thank you all of u! Devils workshop crossed 100,000 visitors mark!</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><!--INFOLINKS_ON--><!-- google_ad_section_start -->Here is the Monday Round Post for Devil’s Workshop. Check it out if you missed any of the post of this rocking week. This was really an exciting week for Devils&#8217; Workshop because of these two reason:</p>
<ol>
<li><a href="http://devilsworkshop.org/top-indian-blogs-networking-together/" target="_blank">Merger of two of India’s top blog networks</a> – rtBlogs and ShoutMeLoud .</li>
<li> <a href="http://devilsworkshop.org/rtcamp-is-celebrating-its-1st-birthday/" target="_blank">We celebrated 1st anniversary of rtCamp</a>.</li>
</ol>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="image" src="http://devilsworkshop.org/files/2010/03/image.png" border="0" alt="image" width="506" height="506" /></p>
<p>Credit: <a href="http://www.flickr.com/photos/30928442@N08/3668169284" target="_blank">Flickr</a></p>
<p>With all this excitement, we published very useful posts for DW readers:</p>
<p><strong>Google:</strong></p>
<ol>
<li><a href="http://devilsworkshop.org/how-to-get-your-youtube-account-ready-for-auto-captions/">How to get your YouTube account ready for auto captions?</a></li>
<li><a href="http://devilsworkshop.org/google-is-god-or-is-it/">Google is God- Or Is It ?</a></li>
<li><a href="http://devilsworkshop.org/google-buzz-giving-better-control-for-email-notification/">Google Buzz giving Better Control for Email Notification</a></li>
<li><a href="http://devilsworkshop.org/5-great-extensions-with-google-wave/">5 Great extensions with Google Wave</a></li>
<li><a href="http://devilsworkshop.org/google-reader-tyring-to-take-on-stumble-upon/">Google Reader trying to take on Stumble Upon?</a></li>
</ol>
<p><strong> </strong></p>
<p><strong>Editorial:</strong></p>
<ol>
<li><a href="http://devilsworkshop.org/top-indian-blogs-networking-together/">Top Indian Blogs ‘Networking’ Together!</a></li>
<li><a href="http://devilsworkshop.org/retweet-and-win-free-license-for-handy-backup-software-dw-contest/">Retweet and win free license for Handy Backup software: DW contest</a></li>
<li><a href="http://devilsworkshop.org/rtcamp-is-celebrating-its-1st-birthday/">rtCamp is Celebrating its 1st Birthday!</a></li>
</ol>
<p><strong> </strong></p>
<p><strong>Softwares:</strong></p>
<ol>
<li><a href="http://devilsworkshop.org/customize-your-folders-according-to-priorities/">Customize Your Folders According to Priorities</a></li>
<li><a href="http://devilsworkshop.org/how-to-use-ultrasurf-proxy-software-to-unblock-blocked-websites/" target="_blank">How to Use Ultrasurf Proxy Software to Unblock Blocked Websites</a></li>
</ol>
<p><strong> </strong></p>
<p><strong>Developers:</strong></p>
<ol>
<li><a href="http://devilsworkshop.org/role-of-custom-component-in-buddypress/">Role of Custom component in Buddypress</a></li>
</ol>
<p><strong> </strong></p>
<p><strong>Browsers:</strong></p>
<ol>
<li><a href="http://devilsworkshop.org/speed-up-firefox-browser-by-managing-tabs-with-bartab-add-on/">Speed up Firefox browser by managing tabs with BarTab Add-on</a></li>
</ol>
<p><strong> </strong></p>
<p><strong>Webhosting:</strong></p>
<ol>
<li><a href="http://devilsworkshop.org/how-to-set-dns-records-with-indiatimes-server/">How To Set DNS Records with IndiaTimes Server</a></li>
</ol>
<p><strong> </strong></p>
<p><strong>Gadgets:</strong></p>
<ol>
<li><a href="http://devilsworkshop.org/the-cheapest-netbooks-in-india-a-comparison/">The cheapest Netbooks in India: A comparison</a></li>
</ol>
<p><strong> </strong></p>
<p><strong>Social Media:</strong></p>
<ol>
<li><a href="http://devilsworkshop.org/missing-on-twitter-search-a-case-study/">Missing on Twitter Search: A Case-Study</a></li>
</ol>
<p><strong> </strong></p>
<p><strong>Tips and Tricks:</strong></p>
<ol>
<li><a href="http://devilsworkshop.org/create-rss-feeds-of-search-results-with-bing/">Create RSS feeds of search results with Bing</a></li>
</ol>
<p><strong> </strong></p>
<p><strong>Featured:</strong></p>
<ol>
<li><a href="5 Online Photoshop Alternatives for editing your photos" target="_blank">5 Online Photoshop Alternatives for editing your photos</a></li>
</ol>
<p><strong> </strong></p>
<p><strong>Blogging:</strong></p>
<ol>
<li><a href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/" target="_blank">Retweet, F Share &amp; Google Buzz buttons on your Blog without plugins.</a></li>
</ol>
<p><em>I hope you will find all these articles very useful. Do share what kind of articles you would like to read on Devils&#8217; Workshop.</em><!-- google_ad_section_end --> <!--INFOLINKS_ON--></p>
<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/weekly-roundup-for-devils-workshop-8th-march-to-14th-march/">Weekly Roundup for Devils&#8217; Workshop- 8th March to 14th March</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<img src="http://devilsworkshop.org/?ak_action=api_record_view&id=21811&type=feed" alt="" />

<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/devils-workshops-3rd-anniversary/' rel='bookmark' title='Permanent Link: Devils Workshop&#8217;s 3rd Anniversary Celebration &#8211; Free services worth $1000!'>Devils Workshop&#8217;s 3rd Anniversary Celebration &#8211; Free services worth $1000!</a></li>
<li><a href='http://devilsworkshop.org/summary-whats-new-happening-at-devils-workshop/' rel='bookmark' title='Permanent Link: [Summary] What&#8217;s new happening at Devils Workshop!'>[Summary] What&#8217;s new happening at Devils Workshop!</a></li>
<li><a href='http://devilsworkshop.org/the-devil-is-in-the-workshop/' rel='bookmark' title='Permanent Link: Help us re-design Devils Workshop'>Help us re-design Devils Workshop</a></li>
<li><a href='http://devilsworkshop.org/tdis-intoducing-a-new-section-on-devils-workshop/' rel='bookmark' title='Permanent Link: TDIS &#8211; Introducing a new section on Devils Workshop'>TDIS &#8211; Introducing a new section on Devils Workshop</a></li>
<li><a href='http://devilsworkshop.org/thank-you-all-of-u-devils-workshop-crossed-100000-visitors-mark/' rel='bookmark' title='Permanent Link: Thank you all of u! Devils workshop crossed 100,000 visitors mark!'>Thank you all of u! Devils workshop crossed 100,000 visitors mark!</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/weekly-roundup-for-devils-workshop-8th-march-to-14th-march/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>24HoursLoot: Grab Coolest Online Deal of The Day</title>
		<link>http://devilsworkshop.org/24hoursloot-grab-coolest-online-deal-of-the-day/</link>
		<comments>http://devilsworkshop.org/24hoursloot-grab-coolest-online-deal-of-the-day/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 02:05:00 +0000</pubDate>
		<dc:creator>themepremium</dc:creator>
				<category><![CDATA[Interesting Links]]></category>
		<category><![CDATA[24hoursloot]]></category>
		<category><![CDATA[Coupon Code]]></category>
		<category><![CDATA[Discount Coupons]]></category>
		<category><![CDATA[online shopping]]></category>

		<guid isPermaLink="false">http://devilsworkshop.org/?p=21805</guid>
		<description><![CDATA[24hoursloot is one interesting website which I came across recently and it’s become one of those website which I visit daily morning to grab some great deal.
24hoursloot is an online retail website which offer various stuff like Gadgets, T-Shirts, Posters, Watches, Spy cameras and many other stuff at discounted price.
Any item which will be displayed [...]<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/24hoursloot-grab-coolest-online-deal-of-the-day/">24HoursLoot: Grab Coolest Online Deal of The Day</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>


<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/how-to-deal-with-your-duplicate-profile-on-orkut/' rel='bookmark' title='Permanent Link: How To Deal With Your Duplicate Profile/Impersonation on Orkut!'>How To Deal With Your Duplicate Profile/Impersonation on Orkut!</a></li>
<li><a href='http://devilsworkshop.org/tshirt-takeaways-design-your-own-t-shirt-sell-it-online/' rel='bookmark' title='Permanent Link: Tshirt Takeaways: Design your own T-shirt &amp; sell it online!'>Tshirt Takeaways: Design your own T-shirt &amp; sell it online!</a></li>
<li><a href='http://devilsworkshop.org/design-your-website-with-an-online-html-editor/' rel='bookmark' title='Permanent Link: Design your website with an online HTML editor'>Design your website with an online HTML editor</a></li>
<li><a href='http://devilsworkshop.org/take-notes-and-store-them-online/' rel='bookmark' title='Permanent Link: Take notes and store them online'>Take notes and store them online</a></li>
<li><a href='http://devilsworkshop.org/using-twitter-for-marketing-your-online-business-to-success/' rel='bookmark' title='Permanent Link: Using Twitter for Marketing your Online Business to Success'>Using Twitter for Marketing your Online Business to Success</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><!--INFOLINKS_ON--><!-- google_ad_section_start -->24hoursloot is one interesting website which I came across recently and it’s become one of those website which I visit daily morning to grab some great deal.</p>
<p>24hoursloot is an online retail website which offer various stuff like Gadgets, T-Shirts, Posters, Watches, Spy cameras and many other stuff at discounted price.</p>
<p>Any item which will be displayed on the 24hourloot website stays on the homepage for 24 hours starting from 12AM IST.</p>
<p><a href="http://devilsworkshop.org/files/2010/03/24hoursloot.com_.png"><img style="display: block; float: none; margin: 10px auto; border-width: 0px;" title="24hoursloot.com" src="http://devilsworkshop.org/files/2010/03/24hoursloot.com_thumb.png" border="0" alt="24hoursloot.com" width="482" height="256" /></a></p>
<p>If the item is sold in between, it will wait for 24 hour to complete to display the new item. What I like most about this site is their customer support via Email or Twitter, which is very responsive and handle any issue on individual level.</p>
<p>I ordered a T-shirt with twitter handle which cost me almost 4$ and within 3 days I received the T-shirt.</p>
<p>If you like to shop online, I’m sure you will enjoy this website.</p>
<p><a href="http://www.24hoursloot.com/" target="_blank">Link</a></p>
<p><strong><em>Do you know any other website similar to 24hoursloot?</em></strong><!-- google_ad_section_end --> <!--INFOLINKS_ON--></p>
<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/24hoursloot-grab-coolest-online-deal-of-the-day/">24HoursLoot: Grab Coolest Online Deal of The Day</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<img src="http://devilsworkshop.org/?ak_action=api_record_view&id=21805&type=feed" alt="" />

<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/how-to-deal-with-your-duplicate-profile-on-orkut/' rel='bookmark' title='Permanent Link: How To Deal With Your Duplicate Profile/Impersonation on Orkut!'>How To Deal With Your Duplicate Profile/Impersonation on Orkut!</a></li>
<li><a href='http://devilsworkshop.org/tshirt-takeaways-design-your-own-t-shirt-sell-it-online/' rel='bookmark' title='Permanent Link: Tshirt Takeaways: Design your own T-shirt &amp; sell it online!'>Tshirt Takeaways: Design your own T-shirt &amp; sell it online!</a></li>
<li><a href='http://devilsworkshop.org/design-your-website-with-an-online-html-editor/' rel='bookmark' title='Permanent Link: Design your website with an online HTML editor'>Design your website with an online HTML editor</a></li>
<li><a href='http://devilsworkshop.org/take-notes-and-store-them-online/' rel='bookmark' title='Permanent Link: Take notes and store them online'>Take notes and store them online</a></li>
<li><a href='http://devilsworkshop.org/using-twitter-for-marketing-your-online-business-to-success/' rel='bookmark' title='Permanent Link: Using Twitter for Marketing your Online Business to Success'>Using Twitter for Marketing your Online Business to Success</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/24hoursloot-grab-coolest-online-deal-of-the-day/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>5 Online Photoshop Alternatives for editing your photos</title>
		<link>http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/</link>
		<comments>http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 09:30:12 +0000</pubDate>
		<dc:creator>sidduz</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[free photo editor]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://devilsworkshop.org/?p=21425</guid>
		<description><![CDATA[Adobe Photoshop, the term that doesn&#8217;t require any introduction for itself, being the Number 1 tool for designing, editing, composition, blending etc. But just imagine the cost of Photoshop Cs3, it would be approx 625-650$. After buying it, you need to install it and then you will be permitted to access. But 650$, is this [...]<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/">5 Online Photoshop Alternatives for editing your photos</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>


<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/aviary-a-free-collection-of-online-image-editing-tools/' rel='bookmark' title='Permanent Link: Aviary: A Free Collection of Online Image Editing Tools'>Aviary: A Free Collection of Online Image Editing Tools</a></li>
<li><a href='http://devilsworkshop.org/loonapix-create-funny-photos-online-for-free/' rel='bookmark' title='Permanent Link: Loonapix: Create Funny Photos Online for Free!'>Loonapix: Create Funny Photos Online for Free!</a></li>
<li><a href='http://devilsworkshop.org/photoshop-contests-worth1000-win/' rel='bookmark' title='Permanent Link: Photoshop Contests @ worth1000. Win $$'>Photoshop Contests @ worth1000. Win $$</a></li>
<li><a href='http://devilsworkshop.org/susie-a-private-secure-and-an-efficient-way-to-share-photos-online/' rel='bookmark' title='Permanent Link: SUSie &#8211; A Private, Secure and an Efficient way to Share Photos Online'>SUSie &#8211; A Private, Secure and an Efficient way to Share Photos Online</a></li>
<li><a href='http://devilsworkshop.org/how-to-create-web-photo-galleries-in-photoshop/' rel='bookmark' title='Permanent Link: How To Create Web Photo Galleries In Photoshop'>How To Create Web Photo Galleries In Photoshop</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><!--INFOLINKS_ON--><!-- google_ad_section_start --><a rel="attachment wp-att-21787" href="http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/photoshop_logo_feather/"><img class="alignright size-thumbnail wp-image-21787" title="photoshop_logo_feather" src="http://devilsworkshop.org/files/2010/03/photoshop_logo_feather-150x150.jpg" alt="" width="150" height="150" /></a>Adobe Photoshop, the term that doesn&#8217;t require any introduction for itself, being the Number 1 tool for designing, editing, composition, blending etc. But just imagine the cost of <a title="Photoshop" href="http://devilsworkshop.org/adobe-photoshop-cs5-whats-new/">Photoshop</a> Cs3, it would be approx 625-650$. After buying it, you need to install it and then you will be permitted to access. But 650$, is this amount affordable for everyone?</p>
<p>Surely, its bit tough and paining task to buy a Software that&#8217;s only meant for designing, editing. But 650$ will not be matter if your are the expert with that tool and also if you are a designer who keeps on working on it, as many professionals were making lots of money with it. Of-course its being the No1 in the Business though, if you are having the alternatives for it, which were available freely in the market definitely everyone will opt the free one&#8217;s though there may be loaded with minimal features when compared to the <a title="Photoshop" href="http://devilsworkshop.org/10-refreshing-photoshop-text-effect-tutorials/">Photoshop</a>.</p>
<p>I have collected the 5 Online Tools that which can be considered as Alternatives for <a title="Photoshop" href="http://devilsworkshop.org/how-to-insert-image-to-custom-shape-and-text-in-photoshop/">Photoshop</a> for editing you Photos.</p>
<ol>
<li>Flauntr</li>
<li>Splashup</li>
<li>Pixlr</li>
<li>PickMagick</li>
<li>Pixer.us</li>
</ol>
<p><a title="flauntr" href="http://www.flauntr.com/flauntr/assets/app.jsp" target="_blank"><strong>Flauntr </strong></a><strong>:</strong></p>
<p>FlauntR is a free online photo editor with photo editing features similar to photoshop. Store and share your photos online, create slideshows and printing. Visit this<strong> </strong><a title="flauntr1" href="http://www.flauntr.com/flauntr/softwareDownload.jsp" target="_blank"><strong>page</strong></a><strong> </strong>for what does this offers. FlauntR is a slick new tool that is almost everything what you want in a photo editor.</p>
<p style="text-align: left;"><a rel="attachment wp-att-21788" href="http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/14-03-2010-00-11-14/"><img class="aligncenter size-medium wp-image-21788" title="14-03-2010 00-11-14" src="http://devilsworkshop.org/files/2010/03/14-03-2010-00-11-14-600x401.jpg" alt="" width="600" height="401" /></a></p>
<p style="text-align: left;"><a title="splashup" href="http://www.splashup.com/splashup/" target="_blank"><strong>Splashup</strong></a><strong> </strong>:</p>
<p style="text-align: left;">Splashup is the only full-featured, free range, image editor online. Create new images, edit existing images and manipulate layers with filters, layer effects and brushes almost every feature of Photoshop will be available in this Online tool. This is the home page of <a title="splashup1" href="http://www.splashup.com/" target="_blank"><strong>Splashup</strong></a>. You are also given provision to use Splashup Light which is lighter version and is compatible of running on any computer as well as your mobile PC&#8217;s.</p>
<p style="text-align: left;"><a rel="attachment wp-att-21789" href="http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/14-03-2010-00-01-27/"><img class="aligncenter size-medium wp-image-21789" title="14-03-2010 00-01-27" src="http://devilsworkshop.org/files/2010/03/14-03-2010-00-01-27-600x287.jpg" alt="" width="600" height="287" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;"><a title="pixlr" href="http://www.pixlr.com/" target="_blank"><strong>Pixlr </strong></a>:</p>
<p style="text-align: left;">Pixlr is a free online photo editor. Manage your images in your browser, Edit, adjust and filter your images. No registration needed, its absolutely free. View the direct application <a title="pixlr1" href="http://www.pixlr.com/editor/" target="_blank"><strong>here</strong></a>.</p>
<p style="text-align: center;"><a rel="attachment wp-att-21790" href="http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/14-03-2010-00-04-46/"><img class="aligncenter size-medium wp-image-21790" title="14-03-2010 00-04-46" src="http://devilsworkshop.org/files/2010/03/14-03-2010-00-04-46-600x261.jpg" alt="" width="600" height="261" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;"><a title="pickmagick" href="http://www.picmagick.com/" target="_blank"><strong>PickMagick</strong></a> :</p>
<p style="text-align: left;">PicMagick is an online photo editor that enables you to make ordinary photos look wonderful within a few clicks. It will surprise you how fabulous your photos can be and how easily this can be done. View the direct application <a title="pickmagicapp" href="http://www.picmagick.com/app" target="_blank"><strong>here</strong></a>.</p>
<p style="text-align: center;"><a rel="attachment wp-att-21791" href="http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/14-03-2010-00-32-39/"><img class="aligncenter size-medium wp-image-21791" title="14-03-2010 00-32-39" src="http://devilsworkshop.org/files/2010/03/14-03-2010-00-32-39-600x470.jpg" alt="" width="600" height="470" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;"><a title="pixer" href="http://www.pixer.us/"><strong>Pixer.us</strong></a> :</p>
<p style="text-align: left;">Pixer.us is a great online photo editing tool which is free and easy to use. Pixer.us safety info and online photo editing, editing photos online, digital photo processing suggestions.</p>
<p style="text-align: center;"><a rel="attachment wp-att-21792" href="http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/14-03-2010-00-07-03/"><img class="aligncenter size-medium wp-image-21792" title="14-03-2010 00-07-03" src="http://devilsworkshop.org/files/2010/03/14-03-2010-00-07-03-600x385.jpg" alt="" width="600" height="385" /></a></p>
<p style="text-align: left;"><strong><em>Do you know of any other similar alternatives for Photoshop? Do let us know through your comments.</em></strong></p>
<p><!-- google_ad_section_end --> <!--INFOLINKS_ON--></p>
<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/">5 Online Photoshop Alternatives for editing your photos</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<img src="http://devilsworkshop.org/?ak_action=api_record_view&id=21425&type=feed" alt="" />

<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/aviary-a-free-collection-of-online-image-editing-tools/' rel='bookmark' title='Permanent Link: Aviary: A Free Collection of Online Image Editing Tools'>Aviary: A Free Collection of Online Image Editing Tools</a></li>
<li><a href='http://devilsworkshop.org/loonapix-create-funny-photos-online-for-free/' rel='bookmark' title='Permanent Link: Loonapix: Create Funny Photos Online for Free!'>Loonapix: Create Funny Photos Online for Free!</a></li>
<li><a href='http://devilsworkshop.org/photoshop-contests-worth1000-win/' rel='bookmark' title='Permanent Link: Photoshop Contests @ worth1000. Win $$'>Photoshop Contests @ worth1000. Win $$</a></li>
<li><a href='http://devilsworkshop.org/susie-a-private-secure-and-an-efficient-way-to-share-photos-online/' rel='bookmark' title='Permanent Link: SUSie &#8211; A Private, Secure and an Efficient way to Share Photos Online'>SUSie &#8211; A Private, Secure and an Efficient way to Share Photos Online</a></li>
<li><a href='http://devilsworkshop.org/how-to-create-web-photo-galleries-in-photoshop/' rel='bookmark' title='Permanent Link: How To Create Web Photo Galleries In Photoshop'>How To Create Web Photo Galleries In Photoshop</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/5-online-photoshop-alternatives-for-editing-your-photos/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Retweet, F Share &amp; Google Buzz buttons on your Blog without plugins.</title>
		<link>http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/</link>
		<comments>http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 08:57:14 +0000</pubDate>
		<dc:creator>saorabh</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media icons]]></category>

		<guid isPermaLink="false">http://devilsworkshop.org/?p=21667</guid>
		<description><![CDATA[
The  motive of all  three popular buttons is to share our idea with a   community, people and friends on twitter,   facebook and other social networking sites. These buttons  show a neat count of   the number of times your blog post has been shared.

Why the available Plugins [...]<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/">Retweet, F Share &#038; Google Buzz buttons on your Blog without plugins.</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>


<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/add-tweetmeme-retweet-button-in-your-blogger-blog/' rel='bookmark' title='Permanent Link: Add tweetmeme/ Retweet button in your blogger blog'>Add tweetmeme/ Retweet button in your blogger blog</a></li>
<li><a href='http://devilsworkshop.org/with-google-latitude-share-your-location-on-your-website-blog-chat/' rel='bookmark' title='Permanent Link: Use Google Latitude to share your location on your Website, Blog &amp; Chat!'>Use Google Latitude to share your location on your Website, Blog &amp; Chat!</a></li>
<li><a href='http://devilsworkshop.org/speed-up-your-blog-by-tweaking-google-analytic-code/' rel='bookmark' title='Permanent Link: Speed up your Blog by Tweaking Google Analytic code'>Speed up your Blog by Tweaking Google Analytic code</a></li>
<li><a href='http://devilsworkshop.org/how-to-get-list-of-plugins-installed-on-any-wordpress-blog/' rel='bookmark' title='Permanent Link: How to get list of plugins installed on any wordpress blog!'>How to get list of plugins installed on any wordpress blog!</a></li>
<li><a href='http://devilsworkshop.org/how-to-make-email-and-yahoo-messenger-buttons-for-your-blog/' rel='bookmark' title='Permanent Link: How to make Email and Yahoo Messenger Buttons for your Blog'>How to make Email and Yahoo Messenger Buttons for your Blog</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><!--INFOLINKS_ON--><!-- google_ad_section_start -->
<p style="text-align: left;"><a rel="attachment wp-att-21749" href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/test/"><img class="aligncenter size-full wp-image-21749" title="test" src="http://devilsworkshop.org/files/2010/03/test.jpg" alt="" width="341" height="213" /></a>The  motive of all  three popular buttons is to share our idea with a   community, people and friends on twitter,   facebook and other social networking sites. These buttons  show a neat count of   the number of times your blog post has been shared.</p>
<p><span id="more-21667"></span></p>
<h2>Why the available Plugins shouldn&#8217;t be used ?</h2>
<ul>
<li>Plugins have a bunch of codes and images, which inturn increases loading time of  your site.</li>
<li>It takes some extra space on your server.</li>
<li>All plugins are based or we can  say designed on <strong>I Frame.</strong> This I frame results into error when tested on W3C validator.</li>
<li>The customization of the share buttons is impossible with plugins.</li>
</ul>
<h2>How to use share scripts?</h2>
<p>Be sure to place the following code in your template page (within <strong>index.php</strong>, <strong>single.php</strong>, and /or <strong>page.php</strong>) or as per your requirement.</p>
<p><strong>1) For Retweet button: </strong></p>
<p>Go to<strong> </strong>home.php or<strong> </strong>index.php place the code before or after <strong> : </strong><em>&lt;?php the_content() ?&gt;</em></p>
<p>&lt;script  type=&#8221;text/javascript&#8221;&gt;</p>
<p>tweetmeme_source = &#8216;&lt;the name what  you want to display before  retweet post&gt;&#8217;;</p>
<p>tweetmeme_style =  &#8216;&lt;size style&gt;&#8217;;</p>
<p>tweetmeme_url = &#8216;&lt;the post  permalink<strong>&gt;</strong>&#8221;;</p>
<p>&lt;/script&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221;  src=&#8221;http://tweetmeme.com/i/scripts/button.js&#8221;&gt;&lt;/script&gt;</p>
<p>For customization of the retweet button use the following scripts:</p>
<table style="height: 428px;" border="1px" width="590">
<tbody>
<tr>
<td><strong>Script</strong></td>
<td><strong>Renders this button</strong></td>
<td style="text-align: center;"><strong>Size</strong></td>
</tr>
<tr>
<td style="text-align: left;">&lt;script type=&#8221;text/javascript&#8221;   src=&#8221;http://tweetmeme.com/i/scripts/button.js&#8221;&gt;&lt;/script&gt;</td>
<td><a href="../wp-content/uploads/2010/03/81.jpg"></a><a rel="attachment wp-att-21670" href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/retweet-button-types-copy-copy/"><img class="aligncenter size-full wp-image-21670" title="retweet button types copy copy" src="http://devilsworkshop.org/files/2010/03/retweet-button-types-copy-copy.jpg" alt="" width="151" height="98" /></a></td>
<td style="text-align: center;">57&#215;57 pixels</td>
</tr>
<tr>
<td style="text-align: left;">&lt;script src=&#8221;http://www.twittlink.com/tools/button_b.js&#8221; type=&#8221;text/javascript&#8221;/&gt;&lt;/script&gt;</td>
<td><a rel="attachment wp-att-21671" href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/22-2/"><img class="size-full wp-image-21671 alignleft" title="22" src="http://devilsworkshop.org/files/2010/03/22.jpg" alt="" width="59" height="63" /></a></td>
<td style="text-align: center;">57&#215;57 pixels</td>
</tr>
<tr style="text-align: center;">
<td style="text-align: left;">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://widgets.backtype.com/tweetcount.js&#8221;&gt;&lt;/script</td>
<td><em><a href="http://premium.greentechbytes.com/wp-content/uploads/2010/03/61.jpg"></a><a rel="attachment wp-att-21672" href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/attachment/33/"><img class="size-full wp-image-21672 alignleft" title="33" src="http://devilsworkshop.org/files/2010/03/33.jpg" alt="" width="60" height="75" /></a><br />
</em></td>
<td>57&#215;57 pixels</td>
</tr>
<tr>
<td style="text-align: left;">&lt;script src=&#8221;http://twittley.com/button/button.js&#8221;&gt;&lt;/script&gt;</td>
<td><a rel="attachment wp-att-21673" href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/44-2/"><img class="size-full wp-image-21673 alignleft" title="44" src="http://devilsworkshop.org/files/2010/03/44.jpg" alt="" width="74" height="88" /></a></td>
<td style="text-align: center;">57&#215;57 pixels</td>
</tr>
</tbody>
</table>
<p><strong>Changing the URL Shortener used</strong></p>
<p>We have also added the ability to use a URL shortener of your choice instead of our default one.</p>
<p>If you would like to do this then you need to include the “tweetmeme_service” parameter as shown below:</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
tweetmeme_service = &#8216;bit.ly&#8217;;<br />
&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://tweetmeme.com/i/scripts/button.js&#8221;&gt;&lt;/script&gt;</p>
<p><strong>2) For facebook share count buttons:</strong></p>
<p style="text-align: left;">Again go to <strong>home.php </strong>or <strong>index.php, </strong>place the code before or after<em> &lt;?php the_content() ?&gt;</em><strong></strong></p>
<p style="text-align: left;"><strong><br />
</strong>&lt;a name=&#8221;fb_share&#8221; type=&#8221;button_count&#8221; <strong>share_url=&#8221;&lt;pots permalink&gt;&#8221;</strong>&lt;/a&gt;<br />
&lt;script src=&#8221;http://static.ak.fbcdn.net/connect.php/js/FB.Share&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;</p>
<p style="text-align: left;">The above script will render a normal share count button within a post.</p>
<p style="text-align: left;">You can also try this,</p>
<table style="height: 329px;" border="1" width="588">
<tbody>
<tr>
<td><strong>Using this code</strong></td>
<td style="text-align: left;"><strong>Renders this button</strong></td>
<td style="text-align: center;"><strong>Size</strong></td>
</tr>
<tr>
<td style="text-align: left;">&lt;a name=&#8221;fb_share&#8221; type=&#8221;box_count&#8221; share_url=&#8221;YOUR_URL&#8221;&gt;&lt;/a&gt;</td>
<td><a rel="attachment wp-att-21693" href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/share_boxcount/"><img class="aligncenter size-full wp-image-21693" title="Share_boxCount" src="http://devilsworkshop.org/files/2010/03/Share_boxCount.png" alt="" width="64" height="66" /></a></td>
<td style="text-align: center;">57&#215;57 pixels</td>
</tr>
<tr>
<td style="text-align: left;">&lt;a name=&#8221;fb_share&#8221; type=&#8221;button_count&#8221; share_url=&#8221;YOUR_URL&#8221;&gt;&lt;/a&gt;</td>
<td><a title="Image:share_buttonCount.png" href="/index.php/Image:Share_buttonCount.png"><br />
</a><a rel="attachment wp-att-21695" href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/share_buttoncount/"><img class="aligncenter size-full wp-image-21695" title="Share_buttonCount" src="http://devilsworkshop.org/files/2010/03/Share_buttonCount.png" alt="" width="107" height="27" /></a></td>
<td style="text-align: center;">96&#215;18 pixels</td>
</tr>
<tr>
<td style="text-align: left;">&lt;a name=&#8221;fb_share&#8221; type=&#8221;button&#8221; share_url=&#8221;YOUR_URL&#8221;&gt;&lt;/a&gt;</td>
<td><a title="Image:share_button.png" href="/index.php/Image:Share_button.png"><br />
</a><a rel="attachment wp-att-21694" href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/share_button/"><img class="aligncenter size-full wp-image-21694" title="Share_button" src="http://devilsworkshop.org/files/2010/03/Share_button.png" alt="" width="64" height="24" /></a></td>
<td style="text-align: center;">56&#215;18 pixels</td>
</tr>
<tr>
<td style="text-align: left;">&lt;a name=&#8221;fb_share&#8221; type=&#8221;icon_link&#8221; share_url=&#8221;YOUR_URL&#8221;&gt;Share&lt;/a&gt;</td>
<td><a rel="attachment wp-att-21692" href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/icon_link/"><img class="aligncenter size-full wp-image-21692" title="Icon_link" src="http://devilsworkshop.org/files/2010/03/Icon_link.png" alt="" width="60" height="26" /></a></td>
<td style="text-align: center;">51&#215;15 pixels</td>
</tr>
<tr>
<td style="text-align: left;">&lt;a name=&#8221;fb_share&#8221; type=&#8221;icon&#8221; share_url=&#8221;YOUR_URL&#8221;&gt;&lt;/a&gt;</td>
<td><a rel="attachment wp-att-21691" href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/icon/"><img class="aligncenter size-full wp-image-21691" title="Icon" src="http://devilsworkshop.org/files/2010/03/Icon.png" alt="" width="19" height="19" /></a></td>
<td style="text-align: center;">18&#215;15 pixels</td>
</tr>
</tbody>
</table>
<p style="text-align: left;">As for example<br />
<strong>share_url= &lt;?php the_permalink() ?&gt;</strong></p>
<p style="text-align: left;">Now its depends up to you that where you want to place the buttons. For doing this<br />
Just put all the code within a <strong>&lt;div&gt; &lt;/div&gt; </strong>and apply some<strong> CSS </strong>according to its placement.<br />
<strong> </strong></p>
<p style="text-align: left;"><strong>3: ) How to use Google buzz</strong></p>
<p style="text-align: left;">Go to<strong> home.php</strong> or <strong>index.php, </strong>place the code before or after<em><strong> &lt;?php the_content() ?&gt;</strong></em></p>
<p style="text-align: left;">&lt;a href=&#8221;http://www.google.com/reader/link?url=&lt;post permalink&gt;&amp;title=&lt;?php the_title(); ?&gt;&amp;src<strong>URL=&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;&#8221; </strong>target=&#8221;_blank&#8221; rel=&#8221;nofollow external&#8221;&gt;</p>
<p style="text-align: left;">&lt;img alt=&#8217;Buzz It&#8217; src=&#8217;http://i46.tinypic.com/ouprt1.jpg&#8217;/&gt;</p>
<p style="text-align: left;">The following code will display the compact size of google buzz button.<br />
The only thing is that make sure that URL have your post permalink.<br />
As For Example: -<br />
<strong>url=&lt;?php the_permalink() ?&gt;</strong></p>
<p style="text-align: left;">You can change the default image according to your requirement, For high Resoultion Google Buzz Icons <a title="Google Buzz Buttons With diffrent Styles" href="http://www.chethstudios.net/2010/02/google-buzz-social-icons-for-bloggers.html" target="_blank">click</a> here.</p>
<p style="text-align: left;"><em>This is my first post, thanks for reading. Suggestions and feedback&#8217;s  are most welcome.</em></p>
<p><!-- google_ad_section_end --> <!--INFOLINKS_ON--></p>
<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/">Retweet, F Share &#038; Google Buzz buttons on your Blog without plugins.</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<img src="http://devilsworkshop.org/?ak_action=api_record_view&id=21667&type=feed" alt="" />

<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/add-tweetmeme-retweet-button-in-your-blogger-blog/' rel='bookmark' title='Permanent Link: Add tweetmeme/ Retweet button in your blogger blog'>Add tweetmeme/ Retweet button in your blogger blog</a></li>
<li><a href='http://devilsworkshop.org/with-google-latitude-share-your-location-on-your-website-blog-chat/' rel='bookmark' title='Permanent Link: Use Google Latitude to share your location on your Website, Blog &amp; Chat!'>Use Google Latitude to share your location on your Website, Blog &amp; Chat!</a></li>
<li><a href='http://devilsworkshop.org/speed-up-your-blog-by-tweaking-google-analytic-code/' rel='bookmark' title='Permanent Link: Speed up your Blog by Tweaking Google Analytic code'>Speed up your Blog by Tweaking Google Analytic code</a></li>
<li><a href='http://devilsworkshop.org/how-to-get-list-of-plugins-installed-on-any-wordpress-blog/' rel='bookmark' title='Permanent Link: How to get list of plugins installed on any wordpress blog!'>How to get list of plugins installed on any wordpress blog!</a></li>
<li><a href='http://devilsworkshop.org/how-to-make-email-and-yahoo-messenger-buttons-for-your-blog/' rel='bookmark' title='Permanent Link: How to make Email and Yahoo Messenger Buttons for your Blog'>How to make Email and Yahoo Messenger Buttons for your Blog</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/retweet-f-share-google-buzz-buttons-on-your-blog-without-plugins/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to Use Ultrasurf Proxy Software to Unblock Blocked Websites</title>
		<link>http://devilsworkshop.org/how-to-use-ultrasurf-proxy-software-to-unblock-blocked-websites/</link>
		<comments>http://devilsworkshop.org/how-to-use-ultrasurf-proxy-software-to-unblock-blocked-websites/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 22:43:00 +0000</pubDate>
		<dc:creator>Harsh Agrawal</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Internet Tools]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[Proxy software]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Ultra surf]]></category>

		<guid isPermaLink="false">http://devilsworkshop.org/?p=21785</guid>
		<description><![CDATA[Last time I had written post on Download ultra surf: Free desktop proxy software to unblock any website. Till now I’m using it effectively and it is helping me a lot to remove internet censorship.  This tutorial is for all those who are not aware of how they can use Ultra surf proxy software.
Download ultra [...]<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/how-to-use-ultrasurf-proxy-software-to-unblock-blocked-websites/">How to Use Ultrasurf Proxy Software to Unblock Blocked Websites</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>


<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/ultrasurf-free-desktop-proxy-software-to-unblock-any-website/' rel='bookmark' title='Permanent Link: Ultrasurf: Free Desktop Proxy Software to Unblock Any website'>Ultrasurf: Free Desktop Proxy Software to Unblock Any website</a></li>
<li><a href='http://devilsworkshop.org/proxies-what-do-they-really-do/' rel='bookmark' title='Permanent Link: What are proxies and How proxy work'>What are proxies and How proxy work</a></li>
<li><a href='http://devilsworkshop.org/has-china-blocked-social-media-sites-to-suppress-tiananmen-talks/' rel='bookmark' title='Permanent Link: Has China blocked social media sites to suppress Tiananmen talks?'>Has China blocked social media sites to suppress Tiananmen talks?</a></li>
<li><a href='http://devilsworkshop.org/check-whether-someone-is-offline-invisible-or-blocked-you-on-gtalk1/' rel='bookmark' title='Permanent Link: Check whether someone is Offline, Invisible or Blocked you on Gtalk!'>Check whether someone is Offline, Invisible or Blocked you on Gtalk!</a></li>
<li><a href='http://devilsworkshop.org/download-all-google-related-software-in-one-go/' rel='bookmark' title='Permanent Link: Download all Google related software in one go'>Download all Google related software in one go</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><!--INFOLINKS_ON--><!-- google_ad_section_start -->Last time I had written post on <a href="http://devilsworkshop.org/ultrasurf-free-desktop-proxy-software-to-unblock-any-website/" target="_blank">Download ultra surf: Free desktop proxy software to unblock any website</a>. Till now I’m using it effectively and it is helping me a lot to remove internet censorship.  This tutorial is for all those who are not aware of how they can use Ultra surf proxy software.</p>
<p><a href="http://devilsworkshop.org/ultrasurf-free-desktop-proxy-software-to-unblock-any-website/" target="_blank">Download ultra surf</a> and once download is completed. Simply start the software. Once you will run this software, it will try to connect to its server and if it’s successfully connected. You can start browsing directly from Internet explorer.</p>
<p><a href="http://devilsworkshop.org/files/2010/03/ultrasurf.png"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="ultra-surf" src="http://devilsworkshop.org/files/2010/03/ultrasurf_thumb.png" border="0" alt="ultra-surf" width="538" height="399" /></a></p>
<h3>How to Connect if I’m behind a Proxy firewall?</h3>
<p>In some colleges and office, you need proxy settings to access internet. In this case open Ultra surf, click on options and configure your proxy settings to connect to internet. Now it will connect to its server using your provided proxy settings.</p>
<p><a href="http://devilsworkshop.org/files/2010/03/proxy_settings.png"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border: 0px;" title="proxy_settings" src="http://devilsworkshop.org/files/2010/03/proxy_settings_thumb.png" border="0" alt="proxy_settings" width="540" height="430" /></a></p>
<h3>How to configure different browsers to use Ultra surf settings ?</h3>
<p>When you open Ultra surf, it will automatically configure your Internet explorer settings to use Ultra surf proxy settings. But if you want to use it on other browser like Mozilla firefox or anything else, you need to change the proxy settings of browser to use :</p>
<ul>
<li><strong>IP : 127.0.0.1</strong></li>
<li><strong>Port : 9666</strong></li>
</ul>
<p>I hope this tutorial will help you a lot to access useful sites which are accidentally blocked due to your firewall software or hardware in your organization.</p>
<p><strong><em>Do let us know which other software do you use apart from Ultra surf ?</em></strong><!-- google_ad_section_end --> <!--INFOLINKS_ON--></p>
<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/how-to-use-ultrasurf-proxy-software-to-unblock-blocked-websites/">How to Use Ultrasurf Proxy Software to Unblock Blocked Websites</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<img src="http://devilsworkshop.org/?ak_action=api_record_view&id=21785&type=feed" alt="" />

<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/ultrasurf-free-desktop-proxy-software-to-unblock-any-website/' rel='bookmark' title='Permanent Link: Ultrasurf: Free Desktop Proxy Software to Unblock Any website'>Ultrasurf: Free Desktop Proxy Software to Unblock Any website</a></li>
<li><a href='http://devilsworkshop.org/proxies-what-do-they-really-do/' rel='bookmark' title='Permanent Link: What are proxies and How proxy work'>What are proxies and How proxy work</a></li>
<li><a href='http://devilsworkshop.org/has-china-blocked-social-media-sites-to-suppress-tiananmen-talks/' rel='bookmark' title='Permanent Link: Has China blocked social media sites to suppress Tiananmen talks?'>Has China blocked social media sites to suppress Tiananmen talks?</a></li>
<li><a href='http://devilsworkshop.org/check-whether-someone-is-offline-invisible-or-blocked-you-on-gtalk1/' rel='bookmark' title='Permanent Link: Check whether someone is Offline, Invisible or Blocked you on Gtalk!'>Check whether someone is Offline, Invisible or Blocked you on Gtalk!</a></li>
<li><a href='http://devilsworkshop.org/download-all-google-related-software-in-one-go/' rel='bookmark' title='Permanent Link: Download all Google related software in one go'>Download all Google related software in one go</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/how-to-use-ultrasurf-proxy-software-to-unblock-blocked-websites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Buzz giving Better Control for Email Notification</title>
		<link>http://devilsworkshop.org/google-buzz-giving-better-control-for-email-notification/</link>
		<comments>http://devilsworkshop.org/google-buzz-giving-better-control-for-email-notification/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 10:29:00 +0000</pubDate>
		<dc:creator>Harsh Agrawal</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Email subscription]]></category>
		<category><![CDATA[Google Buzz]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://devilsworkshop.org/?p=21778</guid>
		<description><![CDATA[Google buzz is in news from some time now and slowly but its getting hype among internet users. Integrating Google buzz into Gmail is the best thing Buzz developer did, but this also created problem for lots of email notification. Google buzz announced that they will be rolling out updates soon, in which you can [...]<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/google-buzz-giving-better-control-for-email-notification/">Google Buzz giving Better Control for Email Notification</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>


<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/google-wave-notification-on-chrome-and-firefox/' rel='bookmark' title='Permanent Link: Google Wave notification on Chrome and Firefox'>Google Wave notification on Chrome and Firefox</a></li>
<li><a href='http://devilsworkshop.org/get-notified-of-google-wave-through-your-email/' rel='bookmark' title='Permanent Link: Get notified of Google Wave through your email'>Get notified of Google Wave through your email</a></li>
<li><a href='http://devilsworkshop.org/dont-like-google-buzz-remove-it/' rel='bookmark' title='Permanent Link: Don&#8217;t like Google Buzz? Remove it'>Don&#8217;t like Google Buzz? Remove it</a></li>
<li><a href='http://devilsworkshop.org/track-google-buzz-updates-with-chrome-extensions-or-with-rss-feeds/' rel='bookmark' title='Permanent Link: Track Google Buzz updates with Chrome extensions or with RSS feeds'>Track Google Buzz updates with Chrome extensions or with RSS feeds</a></li>
<li><a href='http://devilsworkshop.org/new-settings-updates-for-buzz-updates-in-your-gmail-inbox/' rel='bookmark' title='Permanent Link: New Settings updates for Buzz updates in your Gmail Inbox'>New Settings updates for Buzz updates in your Gmail Inbox</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><!--INFOLINKS_ON--><!-- google_ad_section_start -->Google buzz is in news from some time now and slowly but its getting hype among internet users. Integrating Google<a href="http://devilsworkshop.org/files/2010/03/googlebuzz.jpg"><img style="display: inline; margin: 5px 0px 0px 10px; border: 0px;" title="google buzz" src="http://devilsworkshop.org/files/2010/03/googlebuzz_thumb.jpg" border="0" alt="google buzz" width="98" height="78" align="right" /></a> buzz into Gmail is the best thing Buzz developer did, but this also created problem for lots of email notification. <a href="http://www.google.com/buzz/googlebuzz/1FdZTNDU33a/Coming-soon-Better-controls-for-buzz-in-your-inbox" target="_blank">Google buzz announced</a> that they will be rolling out updates soon, in which you can control your email notification for buzz.</p>
<p>For now, when ever any one comment on your post created on Buzz, you receive an email notification, and by any chance if you buzz a lot, your email is full of notification.</p>
<p>When Buzz team will roll out these new updates, you can control following things from settings:</p>
<p>- Comments on your posts<br />
- Comments on posts after you comment on them<br />
- Comments on posts after you are @replied on them</p>
<p>Another interesting feature they going to add is mute button similar to <a rel="nofollow" href="http://devilsworkshop.org/tag/google-wave/" target="_blank">Google wave</a> and you will stop receiving notification for comments made on that buzz.</p>
<p><em>Do let us know how’s your experience with Google buzz so far?. Meanwhile you can follow me on Google buzz </em><a rel="nofollow" href="http://www.google.com/buzz/denharsh" target="_blank"><em>here</em></a><em>.</em><!-- google_ad_section_end --> <!--INFOLINKS_ON--></p>
<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/google-buzz-giving-better-control-for-email-notification/">Google Buzz giving Better Control for Email Notification</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<img src="http://devilsworkshop.org/?ak_action=api_record_view&id=21778&type=feed" alt="" />

<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/google-wave-notification-on-chrome-and-firefox/' rel='bookmark' title='Permanent Link: Google Wave notification on Chrome and Firefox'>Google Wave notification on Chrome and Firefox</a></li>
<li><a href='http://devilsworkshop.org/get-notified-of-google-wave-through-your-email/' rel='bookmark' title='Permanent Link: Get notified of Google Wave through your email'>Get notified of Google Wave through your email</a></li>
<li><a href='http://devilsworkshop.org/dont-like-google-buzz-remove-it/' rel='bookmark' title='Permanent Link: Don&#8217;t like Google Buzz? Remove it'>Don&#8217;t like Google Buzz? Remove it</a></li>
<li><a href='http://devilsworkshop.org/track-google-buzz-updates-with-chrome-extensions-or-with-rss-feeds/' rel='bookmark' title='Permanent Link: Track Google Buzz updates with Chrome extensions or with RSS feeds'>Track Google Buzz updates with Chrome extensions or with RSS feeds</a></li>
<li><a href='http://devilsworkshop.org/new-settings-updates-for-buzz-updates-in-your-gmail-inbox/' rel='bookmark' title='Permanent Link: New Settings updates for Buzz updates in your Gmail Inbox'>New Settings updates for Buzz updates in your Gmail Inbox</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/google-buzz-giving-better-control-for-email-notification/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Great extensions with Google Wave</title>
		<link>http://devilsworkshop.org/5-great-extensions-with-google-wave/</link>
		<comments>http://devilsworkshop.org/5-great-extensions-with-google-wave/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 09:53:06 +0000</pubDate>
		<dc:creator>Aditya Kane</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Google wave]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://devilsworkshop.org/?p=21752</guid>
		<description><![CDATA[Is Google Wave really worth visiting all over again? I am not sure about it&#8217;s pros and cons but a lot of people signed up with a lot of hope and expectations and really thought it would take over the internet but were a let down more than a little because when we all used [...]<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/5-great-extensions-with-google-wave/">5 Great extensions with Google Wave</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>


<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/google-wave-notification-on-chrome-and-firefox/' rel='bookmark' title='Permanent Link: Google Wave notification on Chrome and Firefox'>Google Wave notification on Chrome and Firefox</a></li>
<li><a href='http://devilsworkshop.org/how-will-google-wave-make-money/' rel='bookmark' title='Permanent Link: How will Google Wave make money?'>How will Google Wave make money?</a></li>
<li><a href='http://devilsworkshop.org/get-notified-of-google-wave-through-your-email/' rel='bookmark' title='Permanent Link: Get notified of Google Wave through your email'>Get notified of Google Wave through your email</a></li>
<li><a href='http://devilsworkshop.org/add-twitter-gadget-to-google-wave/' rel='bookmark' title='Permanent Link: Add Twitter gadget to Google Wave'>Add Twitter gadget to Google Wave</a></li>
<li><a href='http://devilsworkshop.org/google-wave-%e2%80%93-unifying-communication-on-the-web/' rel='bookmark' title='Permanent Link: Google Wave – Unifying communication on the Web'>Google Wave – Unifying communication on the Web</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><!--INFOLINKS_ON--><!-- google_ad_section_start -->Is Google Wave really worth visiting all over again? I am not sure about it&#8217;s pros and cons but a lot of people signed up with a lot of hope and expectations and really <a title="thought it would take over the internet" href="http://devilsworkshop.org/will-the-internet-be-taken-swept-over-by-google-wave/">thought it would take over the internet</a> but were a let down more than a little because when we all used it, it seemed like a over glorified version of Gmail. We even wondered on <a title="how it will make money with an apps store?" href="http://devilsworkshop.org/how-will-google-wave-make-money/">how it will make money with an apps store?</a> But the fact is a lot of people are really forgetting about Google Wave.</p>
<p><a rel="attachment wp-att-15109" href="http://devilsworkshop.org/will-the-internet-be-taken-swept-over-by-google-wave/gogole_wave1/"><img class="alignnone size-full wp-image-15109" title="Gogole_wave1" src="http://devilsworkshop.org/files/2009/09/Gogole_wave1.JPG" alt="" width="198" height="162" /></a></p>
<p>But there are some great extensions with<strong> <a href="http://wave.google.com">Google Wave</a></strong> you can use and I thought I would pick out 5 of them for you.</p>
<h3><strong>How to enable an extension in wave?</strong></h3>
<ul>
<li>Sign in to your Google Wave account.</li>
<li>Here you will on the left hand side see Navigation tab. In it click on Extension and you will get a list of extensions you can subscribe with Wave.</li>
</ul>
<p><a rel="attachment wp-att-21755" href="http://devilsworkshop.org/5-great-extensions-with-google-wave/add_extensions_google_wave/"><img class="alignnone size-full wp-image-21755" style="border: 1px solid teal;" title="Add_extensions_google_wave" src="http://devilsworkshop.org/files/2010/03/Add_extensions_google_wave.png" alt="" width="500" height="244" /></a><strong> </strong></p>
<h3><strong><strong><strong><strong><strong><strong><strong><strong>#1. Mind Map extension</strong></strong></strong></strong></strong></strong></strong></strong></h3>
<p>Mind Mapping is a software which allows you to create work flow charts and share them in real time with your contacts on Wave. Also someone added to the wave can look it up by the play back feature. This is great way to collaborate over a project or strategy between a group. Take a look at the video below for a demo.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/q1lIkD4k1IE&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/q1lIkD4k1IE&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3><strong><strong><strong><strong><strong><strong><strong><strong>#2. Ribbit Conference Extension</strong></strong></strong></strong></strong></strong></strong></strong></h3>
<p>We can share a wave with a few of our contacts. Adding the Ribbit conference extension allows you to make conference calls to your contacts with Wave. This can be done by using your contacts phone numbers. Take a look at the video below for more details.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/t57ta1iSIUc&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/t57ta1iSIUc&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3><strong><strong><strong><strong>#3. Video Chat Experiance</strong></strong></strong></strong></h3>
<p>This one is a fantastic extension and it allows you to carry out video conference with your Wave contacts. It has a extension by 6 rounds and allows you to view You Tube videos and Facebook pictures all in a collaborative way. Below is a video which explains the extension better.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/DoVTu0Do8u0&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/DoVTu0Do8u0&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3><strong><strong>#4. Napkin Doodle</strong></strong></h3>
<p>This one allows you and your friends added to the Wave to doodle away. It is more like a collaborating paint box made very famous in Yahoo Messenger. This one can be a lot of fun.</p>
<p><a rel="attachment wp-att-21760" href="http://devilsworkshop.org/5-great-extensions-with-google-wave/wave_extension_napkingadget/"><img class="alignnone size-full wp-image-21760" style="border: 1px solid teal;" title="wave_extension_napkingadget" src="http://devilsworkshop.org/files/2010/03/wave_extension_napkingadget.png" alt="" width="406" height="161" /></a></p>
<h3><strong>#5. The Sudoku Extension</strong></h3>
<p>This allows you to play <strong>Sudoku</strong> with your friends who you can add to the wave after you have added the wave extension. This is quite a lot of fun and some details of the extensions are explained in the video below.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/mPdIvNcsUFw&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/mPdIvNcsUFw&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>So give these extensions a try and let me know what do you think about them. Also do drop in through your comments other Wave extensions you like.<!-- google_ad_section_end --> <!--INFOLINKS_ON--></p>
<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/5-great-extensions-with-google-wave/">5 Great extensions with Google Wave</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<img src="http://devilsworkshop.org/?ak_action=api_record_view&id=21752&type=feed" alt="" />

<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/google-wave-notification-on-chrome-and-firefox/' rel='bookmark' title='Permanent Link: Google Wave notification on Chrome and Firefox'>Google Wave notification on Chrome and Firefox</a></li>
<li><a href='http://devilsworkshop.org/how-will-google-wave-make-money/' rel='bookmark' title='Permanent Link: How will Google Wave make money?'>How will Google Wave make money?</a></li>
<li><a href='http://devilsworkshop.org/get-notified-of-google-wave-through-your-email/' rel='bookmark' title='Permanent Link: Get notified of Google Wave through your email'>Get notified of Google Wave through your email</a></li>
<li><a href='http://devilsworkshop.org/add-twitter-gadget-to-google-wave/' rel='bookmark' title='Permanent Link: Add Twitter gadget to Google Wave'>Add Twitter gadget to Google Wave</a></li>
<li><a href='http://devilsworkshop.org/google-wave-%e2%80%93-unifying-communication-on-the-web/' rel='bookmark' title='Permanent Link: Google Wave – Unifying communication on the Web'>Google Wave – Unifying communication on the Web</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/5-great-extensions-with-google-wave/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>rtCamp is Celebrating its 1st Birthday!</title>
		<link>http://devilsworkshop.org/rtcamp-is-celebrating-its-1st-birthday/</link>
		<comments>http://devilsworkshop.org/rtcamp-is-celebrating-its-1st-birthday/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 12:08:00 +0000</pubDate>
		<dc:creator>Harsh Agrawal</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Anniversary]]></category>
		<category><![CDATA[Bloggers]]></category>
		<category><![CDATA[Devils Workshop]]></category>
		<category><![CDATA[rtCamp]]></category>

		<guid isPermaLink="false">http://devilsworkshop.org/?p=21725</guid>
		<description><![CDATA[Last year we announced the foundation of rtCamp. rtCamp is a wordpress company who also runs India one of the top blog network - rtBlogs. In this one year we have covered lots of milestone. This is first anniversary post to summarize everything we did a year and our plans ahead!  <p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/rtcamp-is-celebrating-its-1st-birthday/">rtCamp is Celebrating its 1st Birthday!</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>


<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/happy-birthday-rahul-%e2%80%93-the-celebration-at-dw-continues/' rel='bookmark' title='Permanent Link: Happy Birthday Rahul – The celebration at DW continues!'>Happy Birthday Rahul – The celebration at DW continues!</a></li>
<li><a href='http://devilsworkshop.org/welcome-to-rtcamp/' rel='bookmark' title='Permanent Link: Welcome to rtCamp!'>Welcome to rtCamp!</a></li>
<li><a href='http://devilsworkshop.org/why-orkut-is-not-celebrating-pakistans-independence-day/' rel='bookmark' title='Permanent Link: Why Orkut is NOT celebrating Pakistan&#8217;s Independence day???'>Why Orkut is NOT celebrating Pakistan&#8217;s Independence day???</a></li>
<li><a href='http://devilsworkshop.org/google-celebrates-sir-isaac-newtons-birthday-the-new-google-doodle/' rel='bookmark' title='Permanent Link: Google celebrates Sir Isaac Newton&#8217;s Birthday; the new Google Doodle!!'>Google celebrates Sir Isaac Newton&#8217;s Birthday; the new Google Doodle!!</a></li>
<li><a href='http://devilsworkshop.org/happy-birthday-blogger/' rel='bookmark' title='Permanent Link: Happy Birthday Blogger!'>Happy Birthday Blogger!</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><!--INFOLINKS_ON--><!-- google_ad_section_start --><em>(cross posted on <a href="http://blog.rtcamp.com/2010/03/12/rtcamp-is-celebrating-its-1st-birthday/">rtCamp blog</a>)</em></p>
<p>Last year <a href="http://devilsworkshop.org/welcome-to-rtcamp/">we announced the foundation</a> of <a href="http://devilsworkshop.org/welcome-to-rtcamp/" target="_blank">rtCamp</a>. rtCamp is a web development company started by Rahul Bansal and <a href="http://devilsworkshop.org/files/2010/03/rtCamp_greetingcopy.jpg"><img style="display: inline; margin: 10px 0px 10px 15px; border: 0px;" title="rtCamp_greeting copy" src="http://devilsworkshop.org/files/2010/03/rtCamp_greetingcopy_thumb.jpg" border="0" alt="rtCamp_greeting copy" width="226" height="320" align="right" /></a> later on I (<a href="http://www.shoutmeloud.com/">Harsh Agrawal</a>) joined rtCamp. In this one year we have covered lots of milestone and lots of new services and products are in the development stage.</p>
<p>For people who don’t know about rtCamp, it’s a wordpress development company based in Pune, India. We are specialized in <a href="http://rtcamp.com/wordpress/themes/">Wordpress theme</a>, <a href="http://rtcamp.com/wordpress/plugins/">Wordpress plugins</a>, Buddypress, Wordpress MU and <a href="http://rtcamp.com/services/">anything you can imagine with Wordpress.</a></p>
<p>Apart from this, rtCamp runs a blog network &#8211; <a href="http://rtblogs.com/">rtBlogs</a>, which runs popular blogs <a href="http://devilsworkshop.org/" target="_blank">Devils’ Workshop</a>, <a href="http://www.shoutmeloud.com/">Shoutmeloud</a>, <a href="http://www.themepremium.com/">Themepremium</a>, <a href="http://orkutdiary.com/">Orkutdiary</a>, <a href="http://crictalks.com/">Cricktalks</a>, <a href="http://www.facebooknol.com/">facebooknol</a> and so on. Our motto is to provide a platform where any one can come write and make money for it. We already introduced <a href="http://devilsworkshop.org/posts-adsense-ads-revenue-sharing-program/" target="_blank">revenue sharing model for everyone</a>.</p>
<p>We are increasing our editors and writers list and we are still in the process of hiring many new authors and bloggers around the globe. You already know our Chief-editor Aditya Kane and newly joined editor Ruchi parikh.</p>
<p>Talking about achievement of rtCamp, we have done a great business and some killer products has been developed by us. One of them is <a href="http://wpveda.com/buddypress-kaltura-media-component/" target="_blank">Buddypress Kalture media component</a>. We also win a prize for our BuddyPress media component.</p>
<p>We are partnered with some big companies for Wordpress theme development, but due to NDA, we can’t disclose their names and products which we have created.</p>
<h3>What’s in the future of rtCamp&#8230;</h3>
<p>Talking about rtBlogs and rtCamp together, we have some big projects and ideas in the pipeline which we are working on and some of them are on the edge of finishing curve.</p>
<ul>
<li>Blogging community for bloggers</li>
<li>Different Blogs on all niche</li>
<li>Domain Provider</li>
<li>Web hosting provider</li>
<li>Wordpress maintenance service portal</li>
<li>Wordpress SEO</li>
<li>Advertisement solutions</li>
<li>Wordpress and Wordpress MU support portal</li>
<li>Buddypress Themes and plugins development.</li>
<li>Various Wordpress related services</li>
</ul>
<p>We are going slow, but we are building strong foundation so that we can maintain our work-quality with increasing number of client base.</p>
<p>Right now we have a team of 20 members. We wish to have 100 members in our rtCamp family on next anniversary.</p>
<p>Thank you all for helping us &#8220;camp&#8221; successfully! <img src='http://devilsworkshop.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> <!-- google_ad_section_end --> <!--INFOLINKS_ON--></p>
<p><p><a href="http://www.ilovethisdomain.com/" target="_blank"><strong>DW Anniversary offer: Grab .com domain for 6$</strong></a></p>

This Post <a href="http://devilsworkshop.org/rtcamp-is-celebrating-its-1st-birthday/">rtCamp is Celebrating its 1st Birthday!</a> is Published on <a href="http://devilsworkshop.org">Devils Workshop</a> .
</p>
<img src="http://devilsworkshop.org/?ak_action=api_record_view&id=21725&type=feed" alt="" />

<br/><h3>Related posts:</h3><ul><li><a href='http://devilsworkshop.org/happy-birthday-rahul-%e2%80%93-the-celebration-at-dw-continues/' rel='bookmark' title='Permanent Link: Happy Birthday Rahul – The celebration at DW continues!'>Happy Birthday Rahul – The celebration at DW continues!</a></li>
<li><a href='http://devilsworkshop.org/welcome-to-rtcamp/' rel='bookmark' title='Permanent Link: Welcome to rtCamp!'>Welcome to rtCamp!</a></li>
<li><a href='http://devilsworkshop.org/why-orkut-is-not-celebrating-pakistans-independence-day/' rel='bookmark' title='Permanent Link: Why Orkut is NOT celebrating Pakistan&#8217;s Independence day???'>Why Orkut is NOT celebrating Pakistan&#8217;s Independence day???</a></li>
<li><a href='http://devilsworkshop.org/google-celebrates-sir-isaac-newtons-birthday-the-new-google-doodle/' rel='bookmark' title='Permanent Link: Google celebrates Sir Isaac Newton&#8217;s Birthday; the new Google Doodle!!'>Google celebrates Sir Isaac Newton&#8217;s Birthday; the new Google Doodle!!</a></li>
<li><a href='http://devilsworkshop.org/happy-birthday-blogger/' rel='bookmark' title='Permanent Link: Happy Birthday Blogger!'>Happy Birthday Blogger!</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://devilsworkshop.org/rtcamp-is-celebrating-its-1st-birthday/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.368 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-16 06:17:33 -->
