<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Eyedea Lab</title>
	
	<link>http://eyedealab.com</link>
	<description>Web and Graphic Design Studio</description>
	<lastBuildDate>Thu, 17 May 2012 16:48:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/eyedealab" /><feedburner:info uri="eyedealab" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/</creativeCommons:license><image><link>http://www.eyedealab.com/</link><url>http://www.eyedealab.com/images/eyedeaLAB_logo_144x60.png</url><title>Eyedea Lab Logo</title></image><feedburner:emailServiceId>eyedealab</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Redirect category postname to only postname in WordPress</title>
		<link>http://feedproxy.google.com/~r/eyedealab/~3/CDeG5va9yG0/</link>
		<comments>http://eyedealab.com/redirect-from-category-postname-to-postname-wordpress/#comments</comments>
		<pubDate>Mon, 14 May 2012 13:01:36 +0000</pubDate>
		<dc:creator>Priyanka</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://eyedealab.com/?p=6672</guid>
		<description><![CDATA[How to redirect the /category/postname/ permalink to only /postname/ in WordPress with .htaccess or plugin<hr><p><small>Like our blog? Why don't you <a href='http://twitter.com/eyedealab/'>follow us on Twitter</a><br>© Copyright 2004 - 2012 <a href='http://eyedealab.com/'>Eyedea Lab</a>. All rights reserved.</small></p>]]></description>
			<content:encoded><![CDATA[<p>Previously it was not recommended to use only the <code><strong>/%postname%/</strong></code> for the WordPress permalink structure because it was too resource intensive. But after the update to <strong>WordPress 3.3</strong>, I see that WordPress has added this as the default option and obviously many serious wp people recommends this structure as seo friendly! </p>
<p>As we were using this permalink structure <code><strong>/%category%/%postname%/</strong></code> on our site, it became sometimes difficult to change the post from one category to another after publishing, because the published url got the category fixed with the url. Also in the case of posts with multiple categories the category name was always chosen in alphabetical order in the url, not as the author&#8217;s personal preference. I thought lets change our blog posts to this new structure, then it would be easy to maintain/change the categories.<span id="more-6672"></span></p>
<p><img src="http://eyedealab.com/wp-content/uploads/permalink-settings.png" alt="permalink-settings" title="permalink-settings" width="600" height="270" class="aligncenter size-full wp-image-6727" /></p>
<p>So I went ahead and changed the permalink, but WordPress itself couldn&#8217;t take care of the url redirects in our live site (why I don&#8217;t know, because I tested this in localhost too and this worked, may be conflicting with some plugins here) resulting in lots of 404s for our old urls. </p>
<p><em>If you want to use any of the codes below just replace <strong>&#8220;/blog/general/&#8221;</strong> with your /parent-category-name/child-category-name/</em></p>
<h2>Process 1</h2>
<h3>Simple but time consuming</h3>
<p>Save me .htaccess! Tried to add these in the site root&#8217;s .htaccess file. But after adding a few, I got tired. Adding so many .htaccess redirects for all these posts individually (like this code below) would be a real trouble and time consuming too. </p>
<pre>redirect permanent /blog/general/goodbye-ie6-join-countdown-to-history/ http://eyedealab.com/goodbye-ie6-join-countdown-to-history/</pre>
<h2>Process 2</h2>
<h3>With a popular plugin</h3>
<p>What else can I do&#8230;?? Go for the PLUGIN &#8211; A quick <dfn title="Problem Solver">&#8220;Muskil Asan&#8221;</dfn>!</p>
<p>So I just installed the <strong>&#8220;Redirection&#8221;</strong> plugin.<br />
<em>Chose the following options:</em><br />
a) &#8220;Redirect to URL&#8221; by matching &#8220;URL only&#8221;<br />
b) Source URL: <code>/blog/general/(.*)</code><br />
c) Target URL: <code>/$1</code><br />
d) Regular expression (regex): <code>[&#10004;] keep it "checked"</code> <em>(This is the important part otherwise the regular expressions placed in source/target won&#8217;t work)</em></p>
<p>I did only one instance for each category, and all our old links redirected to our new links properly for each post, giving me some opportunity to relax for the time being.</p>
<p>But I don&#8217;t like installing so many plugins&#8230; <img src='http://eyedealab.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  And just to avoid broken links I now have to keep this plugin always on, made me annoyed.</p>
<h2>Process 3</h2>
<h3>Back to .htaccess in a different way</h3>
<p>Now seriously I wanted to convert this whole process to either my theme functions.php with some WordPress rewites etc or the .htaccess, and worked on it for next one or two days, ultimately coming to a satisfactory solution mentioned below.</p>
<p>I had to put this code in the .htaccess file</p>
<pre>
RewriteRule ^blog/general/(.*) http://domain.com/$1 [R=301,L]
</pre>
<p>or you can put it like this
<pre>
RewriteRule ^blog/general/(.*) index.\php/$1 [R=301,L]
</pre>
<p>right after</p>
<pre>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
</pre>
<p>Wow this worked! Now I am happy to get rid of the redirection plugin.</p>
<p>Although in the back of my mind I am still finding the reasons why the default WordPress canonical redirect did not work? But that will be another story&#8230;</p>
<hr><p><small>Like our blog? Why don't you <a href='http://twitter.com/eyedealab/'>follow us on Twitter</a><br>© Copyright 2004 - 2012 <a href='http://eyedealab.com/'>Eyedea Lab</a>. All rights reserved.</small></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/eyedealab?a=CDeG5va9yG0:0bD8boiSQa8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/eyedealab?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=CDeG5va9yG0:0bD8boiSQa8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/eyedealab?i=CDeG5va9yG0:0bD8boiSQa8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=CDeG5va9yG0:0bD8boiSQa8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/eyedealab?i=CDeG5va9yG0:0bD8boiSQa8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=CDeG5va9yG0:0bD8boiSQa8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/eyedealab?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/eyedealab/~4/CDeG5va9yG0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://eyedealab.com/redirect-from-category-postname-to-postname-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://eyedealab.com/redirect-from-category-postname-to-postname-wordpress/</feedburner:origLink></item>
		<item>
		<title>Do you really need ‘a website’ or a website that works</title>
		<link>http://feedproxy.google.com/~r/eyedealab/~3/prvHx_1jcT0/</link>
		<comments>http://eyedealab.com/do-you-really-need-a-website-that-works/#comments</comments>
		<pubDate>Sun, 06 May 2012 14:20:23 +0000</pubDate>
		<dc:creator>Rana</dc:creator>
				<category><![CDATA[Website Solutions]]></category>
		<category><![CDATA[browsing the internet]]></category>
		<category><![CDATA[business website]]></category>
		<category><![CDATA[infographics]]></category>
		<category><![CDATA[successful]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://eyedealab.com/?p=6580</guid>
		<description><![CDATA[If yes, then what should be in your checklist... read these step by step guide for your business website.<hr><p><small>Like our blog? Why don't you <a href='http://twitter.com/eyedealab/'>follow us on Twitter</a><br>© Copyright 2004 - 2012 <a href='http://eyedealab.com/'>Eyedea Lab</a>. All rights reserved.</small></p>]]></description>
			<content:encoded><![CDATA[<p><strong>&#8216;Running a small business? or thinking of one?&#8230; create a website&#8217;.</strong></p>
<p>Now this is the mantra of the Internet-Age. But does this really work, will it help you get the business you are thinking of, and the most important thing, do you really need <a class="lightbox" title="Just 'a website'" href="http://eyedealab.com/wp-content/uploads/a-website-just.gif"><em>&#8216;a website&#8217;</em></a>&#8216; ?</p>
<p>You may be thinking why I&#8217;m thinking this way being a web designer my self. No, we are not quiting from our web deign &amp; development service in any near future, rather we want more &amp; more people to go online with their business. Then why!!!?!<span id="more-6580"></span></p>
<h2>DATA CHECK</h2>
<p>Because there are 676,919,707 site responses according to the survey of Netcraft in the April 2012 survey, which is giving a rise of 5.1% since last month (March 2012). That means another 3,26,43,953 website are on air with in a month, which again means almost 10,88,132 websites per day. Out of those websites the Indexed Web contents are at least 778,00,00,000 (7.78 Billion / 778 Crore) pages. Checkout our infographic below.</p>
<p style="text-align: center;"><a class="lightbox" title="Website Reality 2012" href="http://eyedealab.com/wp-content/uploads/website-reality-2012.png"><img class="aligncenter size-medium wp-image-6609" title="website-reality-2012" src="http://eyedealab.com/wp-content/uploads/website-reality-2012-566x600.png" alt="website-reality-2012" width="566" height="600" /></a></p>
<h3>Where you stand</h3>
<p>Now what all these means to your website, that means when you will launch your website it will have to compete with all these billions of websites to make it&#8217;s way to your target client/buyers screen. It is hard, but it is not at all impossible. Because just like books, not every website is created to serve every human being on earth, i.e &#8230;if you are not thinking of making another Google or Facebook. Everyone goes &amp; surfs internet for his/her specific demands, we always knew what we are looking for on internet when we sit in-front of our computer. For instance right now you may have some specific interest on <strong>&#8220;website&#8221;</strong> or <strong>&#8220;business&#8221;</strong> or <strong>&#8220;internet&#8221;</strong> and that is why you are here reading this. There may be more than 7 Billion pages available on the web, but similarly more than 2 Billion surfers are there to read them. Which means 3.5 pages per reader, is it too much? I don&#8217;t think so.</p>
<p>But the thing is who is reading what and how to reach the target surfer for your website, who may be a potential future client/buyer of your product/service!</p>
<h2>HOW TO START</h2>
<p>Making a <strong>business website</strong> is no big deal, buy a domain, rent a hosting (or use Free hosting), put your contents and you are ready for your web based business. But the problem is, where to find the buyers, how to find them and the biggest question is, how to identify them?</p>
<p>To understand this, we have to know that, there are 2 types of Business websites for small-to-medium business, if it is not an eCommerce (Point-of-sell) Website&#8230;</p>
<p><strong>Type-1:</strong> Portfolio/Brochure Website<br />
<strong>Type-2:</strong> Marketing Website</p>
<p>If you have Type-1 (<strong>Portfolio/Brochure Website</strong>) in mind, you have to lead visitors directly &amp; manually by yourself, it may be through your Business card, eMail footer link, Direct links, any other print material, whispering, etc., etc.</p>
<p>But if you want to go for the other type that is &#8216;<strong>Marketing Website</strong>&#8216; and want the potential clients/buyers find your website/service online themselves (i.e automatically) and generate leads, then you have to think differently. If you have enough budget you can go for some big promotions or ads and this will surely drive traffic to your website. But if you have a tight budget, then what? No that does not mean that you can&#8217;t go for a Marketing website.</p>
<p>But Yes, for this you have to make the website plan more future-proof, technically sound and content wise strong and of-course very user friendly. This way you can even make a strong, efficient and timeless website that derive legitimate traffic to your website with no/less budget for advertising in future along with less maintenance cost. We call it <strong>Organic Website</strong>.</p>
<p>3 most important thing you have to do for this are, (1) Planning (2) Planning and (3) Planning.</p>
<h2>PLANNING</h2>
<p>YES! Planning. Because, every website has its unique needs to make it edible for its unique range of visitors, just like Interior designing. An interior style for a Bookstore can&#8217;t go for a Jewelry Shop or a Flower Boutique, isn&#8217;t it.</p>
<h3>Design</h3>
<p>So you have to plan it from start for a basic Business Website &#8230;</p>
<ol>
<li>first list the Features you want</li>
<li>then the create GOAL along with UXD (User Experience Design)</li>
<li>now create or manage contents</li>
<li>then create Wire-frame on it,</li>
<li>then comes the look &amp; feel,</li>
<li>and now fix a color palette.</li>
</ol>
<p>Now you are ready to design your website. Wait! the buck doesn&#8217;t stop here, you forgot to put the engine inside the car, the development.</p>
<h3>Development</h3>
<p>Development is the part which make the website live and running, for that again you have to have a PLAN. I know now you may be thinking that I&#8217;m just exaggerating the whole thing.</p>
<p>No I&#8217;m not, here (rather at the beginning) you have to think, how do you want to manage your site in future and how the bots or browser will read your website. These things directly influence your web presence and it&#8217;s business. So you must plan these issues on the first hand &amp; with extra care.</p>
<h3>Marketing &amp; Publicity</h3>
<p>After the Development when the site is ready to run, you should &#8216;Plan&#8217; the marketing &amp; publicity for the website itself. Of-course I&#8217;m not talking about paid/ high budget advertisements. If your budget is fixed/none, you can still plan some publicity with the investment of time and innovative thoughts.</p>
<p>There are some more technical areas one can/should look for, when they plan for their website&#8217;s optimum success, but these can be managed step-by-step later on if the plan &amp; structure has it already inside. This can even be paused for a small/micro web business, or at-least until its ROI.</p>
<p>If all the Plans are done properly &amp; worked upon them accordingly with legitimate time, one can surely get some good harvest. Check the steps below:</p>
<p style="text-align: center;"><a class="lightbox" title="STEPS OF WEBSITE CREATION" href="http://eyedealab.com/wp-content/uploads/STEPS-OF-WEBSITE-CREATION.png"><img class="aligncenter size-full wp-image-6612" title="STEPS-OF-WEBSITE-CREATION" src="http://eyedealab.com/wp-content/uploads/STEPS-OF-WEBSITE-CREATION.png" alt="STEPS-OF-WEBSITE-CREATION" width="600" height="592" /></a></p>
<p>If you think this is too technical for you to do it yourself, <em>hire a professional</em>. But now atleast you know all these technicalities &amp; you can surely make a &#8220;check-list&#8221; of what you are getting. If you think you are interested, you can <a class="post-hireus" href="http://eyedealab.com/contact/">HIRE US</a> ! We will love to hear from you about your project.</p>
<p>So once again think, &#8216;<strong>Do you really need a website</strong>&#8216; or &#8216;<strong>You need a website that works</strong>&#8216;.</p>
<hr><p><small>Like our blog? Why don't you <a href='http://twitter.com/eyedealab/'>follow us on Twitter</a><br>© Copyright 2004 - 2012 <a href='http://eyedealab.com/'>Eyedea Lab</a>. All rights reserved.</small></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/eyedealab?a=prvHx_1jcT0:1oSkNNWG9Qg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/eyedealab?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=prvHx_1jcT0:1oSkNNWG9Qg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/eyedealab?i=prvHx_1jcT0:1oSkNNWG9Qg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=prvHx_1jcT0:1oSkNNWG9Qg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/eyedealab?i=prvHx_1jcT0:1oSkNNWG9Qg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=prvHx_1jcT0:1oSkNNWG9Qg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/eyedealab?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/eyedealab/~4/prvHx_1jcT0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://eyedealab.com/do-you-really-need-a-website-that-works/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://eyedealab.com/do-you-really-need-a-website-that-works/</feedburner:origLink></item>
		<item>
		<title>May 2012 Calendar Wallpaper</title>
		<link>http://feedproxy.google.com/~r/eyedealab/~3/ojiCD0An8Qw/</link>
		<comments>http://eyedealab.com/may-2012-calendar-wallpaper/#comments</comments>
		<pubDate>Tue, 01 May 2012 16:22:28 +0000</pubDate>
		<dc:creator>eyedealab</dc:creator>
				<category><![CDATA[Wallpaper]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[May]]></category>
		<category><![CDATA[picture]]></category>

		<guid isPermaLink="false">http://eyedealab.com/?p=6563</guid>
		<description><![CDATA[Download our free May 2012 Wallpaper Calendar.<hr><p><small>Like our blog? Why don't you <a href='http://twitter.com/eyedealab/'>follow us on Twitter</a><br>© Copyright 2004 - 2012 <a href='http://eyedealab.com/'>Eyedea Lab</a>. All rights reserved.</small></p>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://en.wikipedia.org/wiki/Indian_Peafowl" target="_blank">peacock</a> is the National Bird of India because of its rich religious and legendary involvement in Indian traditions. During courtship, and on seeing the dark clouds, peacock outspreads its tail and starts dancing in rhythmic fashion. So peacock dance is popularly believed as an indication of rains too. For our May calendar we present the dancing Peacock! <span id="more-6563"></span><br />
<a class="lightbox" href="http://eyedealab.com/wp-content/uploads/1024X768-may12.png" title="May 2012 Calendar Wallpaper"><img src="http://eyedealab.com/wp-content/uploads/1024X768-may12-600x450.png" alt="May 2012 Calendar Wallpaper" title="May 2012 Calendar Wallpaper" width="600" height="450" class="aligncenter size-medium wp-image-6573" /></a></p>
<h3 style="text-align: center;">Choose your wallpaper to download:</h3>
<hr />
<h5 style="text-align: center;"><em>For Desktop Wallpaper :</em> <small><a title="What is my screen resolution" onclick="eldetect();return false;" href="#">[What's my Screen size?]</a></small><br />
<a href="http://eyedealab.com/free-download/wallpapers/2012/05/1024X768-may12.png"><br />
1024&#215;768</a> | <a href="http://eyedealab.com/free-download/wallpapers/2012/05/1280X1024-may12.png">1280&#215;1024</a> | <a href="http://eyedealab.com/free-download/wallpapers/2012/05/1152X864-may12.png">1152&#215;864</a> | <a href="http://eyedealab.com/free-download/wallpapers/2012/05/1280X800-may12.png">1280&#215;800</a> | <a href="http://eyedealab.com/free-download/wallpapers/2012/05/1366X768-may12.png">1366X768</a></h5>
<p></p>
<h5 style="text-align: center;"><em>For iPhone Wallpaper :</em><a href="http://eyedealab.com/free-download/wallpapers/2012/05/320X480-may12.png"><br />
320&#215;480</a></h5>
<p></p>
<h5 style="text-align: center;"><em>For iPad Wallpaper :</em><a href="http://eyedealab.com/free-download/wallpapers/2012/05/1024X1024-may12.png"><br />
1024&#215;1024</a></h5>
<hr />
<hr><p><small>Like our blog? Why don't you <a href='http://twitter.com/eyedealab/'>follow us on Twitter</a><br>© Copyright 2004 - 2012 <a href='http://eyedealab.com/'>Eyedea Lab</a>. All rights reserved.</small></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/eyedealab?a=ojiCD0An8Qw:n5Sl6X5LucY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/eyedealab?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=ojiCD0An8Qw:n5Sl6X5LucY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/eyedealab?i=ojiCD0An8Qw:n5Sl6X5LucY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=ojiCD0An8Qw:n5Sl6X5LucY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/eyedealab?i=ojiCD0An8Qw:n5Sl6X5LucY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=ojiCD0An8Qw:n5Sl6X5LucY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/eyedealab?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/eyedealab/~4/ojiCD0An8Qw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://eyedealab.com/may-2012-calendar-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://eyedealab.com/may-2012-calendar-wallpaper/</feedburner:origLink></item>
		<item>
		<title>April 2012 Calendar Wallpaper</title>
		<link>http://feedproxy.google.com/~r/eyedealab/~3/1z84d0-xEys/</link>
		<comments>http://eyedealab.com/april-2012-calendar-wallpaper/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 16:17:20 +0000</pubDate>
		<dc:creator>eyedealab</dc:creator>
				<category><![CDATA[Wallpaper]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[April]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[picture]]></category>

		<guid isPermaLink="false">http://eyedealab.com/?p=6518</guid>
		<description><![CDATA[Download our April 2012 Desktop Wallpaper!!! Yes, its FREE ..This is no april fool's joke :)<hr><p><small>Like our blog? Why don't you <a href='http://twitter.com/eyedealab/'>follow us on Twitter</a><br>© Copyright 2004 - 2012 <a href='http://eyedealab.com/'>Eyedea Lab</a>. All rights reserved.</small></p>]]></description>
			<content:encoded><![CDATA[<p>Ok today is April Fool&#8217;s day! But we were sure not fooling around, and was busy to bring you this wallpaper calendar. Today, we wanted to share something amusing with you, keeping in mind the flavor of the day. Here comes the great &#8220;<a href="http://en.wikipedia.org/wiki/Indian_rope_trick" title="Indian Rope Trick" target="_blank">Indian rope trick</a>&#8220;.<br />
Have fun, enjoy the month.<span id="more-6518"></span></p>
<p class="enlarge"><a class="lightbox" href="http://eyedealab.com/wp-content/uploads/1024X768-apr12.png" title="April 2012 Wallpaper (Larger View)"><img src="http://eyedealab.com/wp-content/uploads/1024X768-apr12-600x450.png" alt="April 2012 Wallpaper" title="April 2012 Wallpaper" width="600" height="450" class="aligncenter size-medium wp-image-6529" /></a></p>
<h3 style="text-align: center;">Choose your wallpaper to download:</h3>
<hr />
<h5 style="text-align: center;"><em>For Desktop Wallpaper :</em> <small><a title="What is my screen resolution" onclick="eldetect();return false;" href="#">[What's my Screen size?]</a></small><br />
<a href="http://eyedealab.com/free-download/wallpapers/2012/04/1024X768-apr12.png"><br />
1024&#215;768</a> | <a href="http://eyedealab.com/free-download/wallpapers/2012/04/1280X1024-apr12.png">1280&#215;1024</a> | <a href="http://eyedealab.com/free-download/wallpapers/2012/04/1152X864-apr12.png">1152&#215;864</a> | <a href="http://eyedealab.com/free-download/wallpapers/2012/04/1280X800-apr12.png">1280&#215;800</a> | <a href="http://eyedealab.com/free-download/wallpapers/2012/04/1366X768-apr12.png">1366X768</a></h5>
<p></p>
<h5 style="text-align: center;"><em>For iPhone Wallpaper :</em><a href="http://eyedealab.com/free-download/wallpapers/2012/04/320X480-apr12.png"><br />
320&#215;480</a></h5>
<p></p>
<h5 style="text-align: center;"><em>For iPad Wallpaper :</em><a href="http://eyedealab.com/free-download/wallpapers/2012/04/1024X1024-apr12.png"><br />
1024&#215;1024</a></h5>
<hr />
<div class="postinfo">Illustration and wallpaper design by: Priyanka N Majumder <span>&nbsp;</span></div>
<hr><p><small>Like our blog? Why don't you <a href='http://twitter.com/eyedealab/'>follow us on Twitter</a><br>© Copyright 2004 - 2012 <a href='http://eyedealab.com/'>Eyedea Lab</a>. All rights reserved.</small></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/eyedealab?a=1z84d0-xEys:l0dVtZ6Wdes:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/eyedealab?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=1z84d0-xEys:l0dVtZ6Wdes:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/eyedealab?i=1z84d0-xEys:l0dVtZ6Wdes:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=1z84d0-xEys:l0dVtZ6Wdes:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/eyedealab?i=1z84d0-xEys:l0dVtZ6Wdes:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=1z84d0-xEys:l0dVtZ6Wdes:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/eyedealab?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/eyedealab/~4/1z84d0-xEys" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://eyedealab.com/april-2012-calendar-wallpaper/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://eyedealab.com/april-2012-calendar-wallpaper/</feedburner:origLink></item>
		<item>
		<title>How to find the Facebook profile ID?</title>
		<link>http://feedproxy.google.com/~r/eyedealab/~3/G706Yh6RcKQ/</link>
		<comments>http://eyedealab.com/how-to-find-the-facebook-profile-id/#comments</comments>
		<pubDate>Sun, 18 Mar 2012 14:41:14 +0000</pubDate>
		<dc:creator>Priyanka</dc:creator>
				<category><![CDATA[Tips & Tricks (Computer)]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[opengraph]]></category>

		<guid isPermaLink="false">http://eyedealab.com/?p=6388</guid>
		<description><![CDATA[Two ways in which you can find your Facebook profile id easily!<hr><p><small>Like our blog? Why don't you <a href='http://twitter.com/eyedealab/'>follow us on Twitter</a><br>© Copyright 2004 - 2012 <a href='http://eyedealab.com/'>Eyedea Lab</a>. All rights reserved.</small></p>]]></description>
			<content:encoded><![CDATA[<p>For different purposes you may anytime need to know your facebook profile ID, suppose for adding a Facebook plugin in wordpress or adding the <a href="http://eyedealab.com/add-facebook-likebutton-tumblr-posts-opengraph/" title="How to add facebook like-button in tumblr posts with opengraph protocol">facebook like button with opengraph protocol (to place in fb:admins meta)</a> in your website etc. But what may be the case, sometimes finding petty things becomes too tough or quite out of the ordinary.<span id="more-6388"></span></p>
<p>So just to make your life easier, let&#8217;s quickly go through these two ways, and use the procedure that is convenient for you!</p>
<hr />
<h2>Process 1</h2>
<h3>Long way (layman style)</h3>
<ol>
<li>Go to  <a href="https://www.facebook.com/" title="Facebook.com" target="_blank">https://www.facebook.com/</a></li>
<li>Login to your account.</li>
<li>Visit your &#8220;<strong>Photos</strong>&#8221; under Apps</li>
<li>Click on &#8220;<strong>My Albums</strong>&#8220;</li>
<li>Now hover your mouse over &#8220;<strong>Videos</strong>&#8221; link as in picture below, you will see in the statusbar of your browser, a link text somehow similar to &#8220;https://www.facebook.com/video/?id=123456789&#8243;.</li>
<li>From this full link copy/write down the <strong class="redtext">&#8220;123456789&#8243;</strong> portion (your profile ID) which you will find right after the &#8220;https://www.facebook.com/video/?id=&#8221;.</li>
</ol>
<p><img src="http://eyedealab.com/wp-content/uploads/fb-profile-id-steps-col.png" alt="fb-profile-id-steps-col" title="fb-profile-id-steps-col" width="600" height="346" class="aligncenter size-full wp-image-6426 blogpic" /></p>
<hr />
<h2>Process 2</h2>
<h3>Short way (developer style)</h3>
<p>We will use <a href="http://developers.facebook.com/docs/opengraph/" target="_blank">opengraph</a> to find out your facebook profile ID.</p>
<ol>
<li>Go to http://graph.facebook.com/USERNAME</li>
<li>Replace <strong class="redtext">&#8220;USERNAME&#8221;</strong> with your Facebook user/profile name.</li>
<li>You will get your profile details as shown in the picture below.</li>
</ol>
<p><img src="http://eyedealab.com/wp-content/uploads/fb-profile-id-zuckgraph.png" alt="fb-profile-id-zuckgraph" title="fb-profile-id-zuckgraph" width="369" height="229" class="aligncenter size-full wp-image-6396 blogpic" /></p>
<p>The above example is from &#8220;Mark Zuckerberg&#8217;s&#8221; opengraph details (Don&#8217;t know <a href="http://en.wikipedia.org/wiki/Mark_Zuckerberg" target="_blank">Mark Zuckerberg</a>?) with his profile name &#8220;<strong>zuck</strong>&#8220;. By visiting: <a href="http://graph.facebook.com/zuck" title="http://graph.facebook.com/zuck" target="_blank">http://graph.facebook.com/zuck</a> , we get &#8216;<strong>4</strong>&#8216; as his facebook profile ID.</p>
<h3>So now you got your facebook profile id too!</h3>
<hr><p><small>Like our blog? Why don't you <a href='http://twitter.com/eyedealab/'>follow us on Twitter</a><br>© Copyright 2004 - 2012 <a href='http://eyedealab.com/'>Eyedea Lab</a>. All rights reserved.</small></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/eyedealab?a=G706Yh6RcKQ:PEuXCWhLEck:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/eyedealab?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=G706Yh6RcKQ:PEuXCWhLEck:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/eyedealab?i=G706Yh6RcKQ:PEuXCWhLEck:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=G706Yh6RcKQ:PEuXCWhLEck:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/eyedealab?i=G706Yh6RcKQ:PEuXCWhLEck:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/eyedealab?a=G706Yh6RcKQ:PEuXCWhLEck:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/eyedealab?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/eyedealab/~4/G706Yh6RcKQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://eyedealab.com/how-to-find-the-facebook-profile-id/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://eyedealab.com/how-to-find-the-facebook-profile-id/</feedburner:origLink></item>
	</channel>
</rss>

