<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kliky.Com</title>
	<atom:link href="http://www.kliky.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kliky.com</link>
	<description>Web Development and Search Engine Marketing</description>
	<lastBuildDate>Thu, 12 Aug 2010 02:36:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MySQL for Updating WordPress Post URLs</title>
		<link>http://www.kliky.com/development/mysql-for-updating-wordpress-post-urls/</link>
		<comments>http://www.kliky.com/development/mysql-for-updating-wordpress-post-urls/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 02:36:02 +0000</pubDate>
		<dc:creator>ereckers</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.kliky.com/?p=243</guid>
		<description><![CDATA[Sometimes you&#8217;ll need to update post and page urls when going from a development environment to production, or more simply when going from one domain to the next. If you have many (10s to 100s), and you will have that if the WP snapshots have been run, then you&#8217;ll want to update them all easily. [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you&#8217;ll need to update post and page urls when going from a development environment to production, or more simply when going from one domain to the next. If you have many (10s to 100s), and you will have that if the WP snapshots have been run, then you&#8217;ll want to update them all easily. You can do this with MySQL:</p>
<blockquote><p>UPDATE wp_posts SET guid = REPLACE(guid,&#8217;dev.site.com&#8217;,'www.site.com&#8217;);<br />
UPDATE wp_posts SET post_content = REPLACE(post_content,&#8217;dev.site.com&#8217;,'www.site.com&#8217;);<br />
UPDATE wp_options SET option_value = REPLACE(option_value,&#8217;dev.site.com&#8217;,'www.site.com&#8217;);</p></blockquote>
<p>That&#8217;s it. You can update your WordPress post and page url values with just a little html.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.com/development/mysql-for-updating-wordpress-post-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Config Examples</title>
		<link>http://www.kliky.com/development/mysql-config-examples/</link>
		<comments>http://www.kliky.com/development/mysql-config-examples/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 22:40:48 +0000</pubDate>
		<dc:creator>ereckers</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.kliky.com/?p=235</guid>
		<description><![CDATA[I recently was on the search for a few examples of active MySQL configuration files (my.cnf). It&#8217;s always nice to see someone else&#8217;s production version of a configuration file and during this search I realized that not a lot of examples of MySQL config files were to be found on the internet.
The first place to [...]]]></description>
			<content:encoded><![CDATA[<p>I recently was on the search for a few examples of active <a href="http://dev.mysql.com/doc/refman/5.1/en/option-files.html">MySQL configuration files</a> (my.cnf). It&#8217;s always nice to see someone else&#8217;s production version of a configuration file and during this search I realized that not a lot of examples of <a href="http://dev.mysql.com/doc/refman/5.1/en/option-files.html">MySQL config files</a> were to be found on the internet.</p>
<p>The first place to start is MySQL&#8217;s examle config files. You can find this in mysql&#8217;s doc share, ie:</p>
<p>/usr/share/doc/mysql-server-5.*.*/</p>
<p>There are 5 example <a href="http://dev.mysql.com/doc/refman/5.1/en/option-files.html">MySQL configuration files</a> provided with most systems:</p>
<ol>
<li>my-small.cnf</li>
<li>my-medium.cnf</li>
<li>my-large.cnf</li>
<li>my-huge.cnf</li>
<li>my-innodb-heavy-4G.cnf</li>
</ol>
<p>You can take a look at the example MySQL config files above to get an idea of how these settings can be handled.</p>
<p>Here are a couple links to pages with MySQL config file examples:</p>
<ul>
<li><a title="http://www.felipecruz.com/mysql-server-production-my-cnf-file.php" href="http://www.felipecruz.com/mysql-server-production-my-cnf-file.php">http://www.felipecruz.com/mysql-server-production-my-cnf-file.php</a></li>
<li><a title="http://forge.mysql.com/tools/tool.php?id=138" href="http://forge.mysql.com/tools/tool.php?id=138">http://forge.mysql.com/tools/tool.php?id=138</a></li>
<li><a title="http://www.astahost.com/info.php/Sample-Mycnf-Mysql-Configuration-File_t2727.html" href="http://www.astahost.com/info.php/Sample-Mycnf-Mysql-Configuration-File_t2727.html">http://www.astahost.com/info.php/Sample-Mycnf-Mysql-Configuration-File_t2727.html</a></li>
<li><a title="http://www.notesbit.com/index.php/web-mysql/mysql/mysql-tuning-optimizing-my-cnf-file/" href="http://www.notesbit.com/index.php/web-mysql/mysql/mysql-tuning-optimizing-my-cnf-file/">http://www.notesbit.com/index.php/web-mysql/mysql/mysql-tuning-optimizing-my-cnf-file/</a></li>
<li><a href="http://www.joehruska.com/?p=7">http://www.joehruska.com/?p=7</a></li>
</ul>
<p>Here&#8217;s a link worth reading:</p>
<ul>
<li><a href="http://www.brennan.id.au/17-MySQL_Server.html">http://www.brennan.id.au/17-MySQL_Server.html</a></li>
</ul>
<p>That&#8217;s it for now. This is a resource page/blog post pointing to example <a href="http://dev.mysql.com/doc/refman/5.1/en/option-files.html">MySQL configuration files</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.com/development/mysql-config-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Comparison Shopping Engines (CSE)</title>
		<link>http://www.kliky.com/business/list-of-comparison-shopping-engines-cse/</link>
		<comments>http://www.kliky.com/business/list-of-comparison-shopping-engines-cse/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 17:29:48 +0000</pubDate>
		<dc:creator>ereckers</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.kliky.com/?p=229</guid>
		<description><![CDATA[Below is a list of Comparison Shopping Engines (CSEs) which we had compiled during previous research. The definition of a Comparison Shopping Engine from Internet.Com&#8217;s Webopedia:
Shopping search engines that compare the prices on searched-for products at various online stores. While most comparison-shopping engines do not offer the merchandise themselves, some may earn commissions when users [...]]]></description>
			<content:encoded><![CDATA[<p>Below is a list of Comparison Shopping Engines (CSEs) which we had compiled during previous research. The definition of a <a href="http://www.webopedia.com/TERM/c/comparison_shopping_engine.html">Comparison Shopping Engine</a> from <a href="http://www.internet.com">Internet.Com&#8217;s</a> <a href="http://www.webopedia.com/">Webopedia</a>:</p>
<blockquote><p>Shopping search engines that compare the prices on searched-for products at various online stores. While most comparison-shopping engines do not offer the merchandise themselves, some may earn commissions when users follow the links in the search results and make a purchase from the online vendor.</p></blockquote>
<p>Here is our list:</p>
<ol>
<li><a href="http://www.bing.com/shopping">http://www.bing.com/shopping</a></li>
<li><a href="http://www.google.com/products">http://www.google.com/products</a></li>
<li><a href="http://www.pricegrabber.com/">http://www.pricegrabber.com</a></li>
<li><a href="http://www.shopping.yahoo.com/">http://www.shopping.yahoo.com</a></li>
<li><a href="http://www.pronto.com/">http://www.pronto.com</a></li>
<li><a href="http://www.buysafe.com/">http://www.buysafe.com</a></li>
<li><a href="http://www.shopzilla.com/">http://www.shopzilla.com</a></li>
<li><a href="http://www.smarter.com/">http://www.smarter.com</a></li>
<li><a href="http://www.thefind.com/">http://www.thefind.com</a></li>
<li><a href="http://www.nextag.com/">http://www.nextag.com</a></li>
<li><a href="http://www.become.com/">http://www.become.com</a></li>
<li><a href="http://www.shopping.com/">http://www.shopping.com</a></li>
<li><a href="http://www.sortprice.com/">http://www.sortprice.com</a></li>
<li><a href="http://www.shop.com/">http://www.shop.com</a></li>
<li><a href="http://www.like.com/">http://www.like.com</a></li>
<li><a title="http://www.shoptoit.ca" href="http://www.shoptoit.ca/">http://shoptoit.ca</a></li>
<li><a href="http://www.pricerunner.com/">http://www.pricerunner.com</a></li>
<li><a href="http://www.dealtime.com/">http://www.dealtime.com</a></li>
<li><a href="http://www.froogle.com/">http://www.froogle.com</a></li>
<li><a href="http://www.shopping.msn.com/">http://www.shopping.msn.com</a></li>
<li><a href="http://www.mysimon.com/">http://www.mysimon.com</a></li>
<li><a href="http://www.amazon.com/">http://www.amazon.com</a></li>
<li><a href="http://www.sears.com/">http://www.sears.com</a></li>
<li><a href="http://www.shopster.com/">http://www.shopster.com</a></li>
<li><a href="http://www.buyersindex.com/">http://www.buyersindex.com</a></li>
<li><a href="http://www.pricescan.com/">http://www.pricescan.com</a></li>
</ol>
<p>That&#8217;s our list of Comparison Shopping Engines (CSE). We&#8217;ll come back and add expansionary notes to these as we go along, but in the meantime the list may be of help to someone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.com/business/list-of-comparison-shopping-engines-cse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Essential WordPress Plugins</title>
		<link>http://www.kliky.com/development/essential-wordpress-plugins/</link>
		<comments>http://www.kliky.com/development/essential-wordpress-plugins/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 16:49:08 +0000</pubDate>
		<dc:creator>ereckers</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.kliky.com/?p=224</guid>
		<description><![CDATA[This post is a running tab of what we at Kliky.Com consider essential WordPress Plugins. These WordPress Plugins are essential in that they should be included in every new WordPress installation we spin up. Below is our ever-updated list of plugins which should be included in every launch:

All in One SEO Pack
This plugin enables certain [...]]]></description>
			<content:encoded><![CDATA[<p>This post is a running tab of what we at <a href="http://www.kliky.com">Kliky.Com</a> consider essential <a href="http://wordpress.org/extend/plugins/">WordPress Plugins</a>. These <a href="http://wordpress.org/extend/plugins/">WordPress Plugins</a> are essential in that they should be included in every new <a href="http://wordpress.org/">WordPress</a> installation we spin up. Below is our ever-updated list of plugins which should be included in every launch:</p>
<ol>
<li><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/"><strong>All in One SEO Pack</strong></a><br />
This plugin enables certain modifications to your WordPress blog to achieve Search Engine Optimization. For example, you can customize your post title, post description and post tags for individual post. Furthermore, this plugin also has features such as auto generates Canonical URLS for your entire WordPress site and select index/noindex for various archives pages.</li>
<li><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/"><strong>Google XML Sitemaps Generator</strong></a><br />
This plugin will create a Google sitemaps compliant XML-Sitemap of your WordPress blog. A sitemap will help search engine spiders to crawl your content. The generated sitemap also supported by other search engine such as Yahoo, MSN and Ask.com.</li>
</ol>
<p>That&#8217;s it. That is our list of essential <a href="http://wordpress.org/extend/plugins/">WordPress plugins</a>. These plugins should be a part of every new launch of a <a href="http://wordpress.org/">WordPress</a> website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.com/development/essential-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail Phishing Attack &#8211; A Gift of Spam From Gmail</title>
		<link>http://www.kliky.com/blogging/gmail-phishing-attack-a-gift-of-spam-from-gmail/</link>
		<comments>http://www.kliky.com/blogging/gmail-phishing-attack-a-gift-of-spam-from-gmail/#comments</comments>
		<pubDate>Thu, 20 May 2010 16:02:59 +0000</pubDate>
		<dc:creator>ereckers</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.kliky.com/?p=205</guid>
		<description><![CDATA[At 5:46AM the morning of May 19, 2010 I received an email from a client&#8217;s Gmail address (the address used in from/senders). The contents of the email tipped me off that it was probably the result of an earlier Gmail phishing attack (and that my client was not in fact shopping at snnsn.com).
I did a [...]]]></description>
			<content:encoded><![CDATA[<p>At 5:46AM the morning of May 19, 2010 I received an email from a client&#8217;s Gmail address (the address used in from/senders). The contents of the email tipped me off that it was probably the result of an earlier Gmail phishing attack (and that my client was not in fact shopping at snnsn.com).</p>
<p>I did a little research and did note that Google was the victim of at least 2 well publicized phishing attacks in 2009:</p>
<p>One in October:</p>
<ul>
<li><a href="http://www.computerworld.com/s/article/9139023/Google_confirms_Gmail_phishing_attack">Google confirms Gmail phishing attack</a></li>
</ul>
<p>And another Phishing attack earlier in the year in February:</p>
<ul>
<li><a href="http://www.theregister.co.uk/2009/02/25/gmail_im_phish/">Gmail phishing attack hits on heels of outage</a></li>
</ul>
<p>Below is the subject and body of the email:</p>
<blockquote><p>Subject: A gift!!!</p>
<p>My friend sent me a digital camera a few days ago,which he bought at a online shop,and I am using the camera right now,I find it is original and really has superior quality,and the price is absolutely competitive in the market,he told me the company website&lt;www.snnsn.com&gt;,  I find they have a full range of products,and there are a great many members there,You can spare some time to log on their web to have a check,there must be something that interests you!</p></blockquote>
<p>One interesting aspect of this email from the Gmail phishing attack was that they chunked off a couple of my client&#8217;s contacts covering first names starting with only 2 letters (in this case d through e). Below was my immediate reply to my client in response to this spam email:</p>
<blockquote><p>At the moment I can&#8217;t find much more than this initial report (for this particular spam mail). If this looks like emails from your gmail account contacts then you&#8217;re account has been compromised (there&#8217;s been a few reports of phishing attacks on Gmail from 2009). You&#8217;ll want to change your password with one that&#8217;s at least 8 characters, a combination of letters and numbers, at least one uppercase and a special character.</p></blockquote>
<p>After a bit more research I found a nice post in the Google support forums aptly named, &#8220;<a href="http://www.google.com/support/forum/p/gmail/thread?tid=7490d8b795716884">Help, spam has been sent to all of my contacts from my gmail account! How do I report this</a>?&#8221;.</p>
<p>The most popular answer contained the following important tips:</p>
<blockquote><p>If your account has been compromised/hacked/stolen you will need to check and fix at least all of the following settings.</p>
<p>But first you need to check the bottom of the Inbox and make sure your account is not open at any other locations.  If it shows additional locations, open the Details window and &#8220;Sign out all other sessions&#8221;.</p>
<p><em>Account Security:</em><br />
Settings -&gt; Accounts and Import -&gt; Google Account Settings -&gt; Change Password [pick a new secure password]<br />
Settings -&gt; Accounts and Import -&gt; Google Account Settings -&gt; Change Password Recovery Options [verify secret question, SMS and recovery e-mail address]</p>
<p><em>Potential Spam:</em><br />
Settings -&gt; General -&gt; Signature [make sure nothing as been added]<br />
Settings -&gt; General -&gt; Vacation Responder [make sure it's disabled and empty]<br />
<em><br />
E-mail Theft</em><br />
Settings -&gt; Accounts and Import -&gt; Send Mail As [make sure it is using your correct e-mail address]<br />
Settings -&gt; Filters [no filters that forward or delete e-mail]<br />
Settings -&gt; Forwarding and POP/IMAP -&gt; Forwarding [disabled or correct address]<br />
Settings -&gt; Forwarding and POP/IMAP -&gt; POP Download [disabled]<br />
Settings -&gt; Forwarding and POP/IMAP -&gt; IMAP Access [disabled]</p></blockquote>
<p>In that same post there are an additional number of links referencing valuable information on how to harden your Google Gmail account and hopefully prevent or at least mitigate any future damage from these Gmail Phishing attacks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.com/blogging/gmail-phishing-attack-a-gift-of-spam-from-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to View Visits Hourly in Google Analytics</title>
		<link>http://www.kliky.com/how-to/how-to-view-visits-hourly-in-google-analytics/</link>
		<comments>http://www.kliky.com/how-to/how-to-view-visits-hourly-in-google-analytics/#comments</comments>
		<pubDate>Sat, 15 May 2010 19:02:09 +0000</pubDate>
		<dc:creator>ereckers</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.kliky.com/?p=192</guid>
		<description><![CDATA[There are many out there who believe Google Analytics does not provide hourly reporting in their traffic reports. The main question is if Google Analytics provides hourly statistics or traffic reports broken down by hour for a particular day.
With the help of an existing post from Get Satisfaction titled, &#8220;In Google Analytics is there any [...]]]></description>
			<content:encoded><![CDATA[<p>There are many out there who believe <a title="Google Analytics" href="http://analytics.google.com">Google Analytics</a> does not provide hourly reporting in their traffic reports. The main question is if <a title="Google Analytics" href="http://analytics.google.com">Google Analytics</a> provides hourly statistics or traffic reports broken down by hour for a particular day.</p>
<p>With the help of an existing post from <a href="http://getsatisfaction.com/">Get Satisfaction</a> titled, &#8220;<a href="http://getsatisfaction.com/google/topics/in_google_analytics_is_there_any_way_to_view_traffic_by_time_of_day">In Google Analytics is there any way to view traffic by time-of-day?</a>&#8220;, I can show a Google Analytics view that provides an hourly report for your visits by the day.</p>
<p>The post I referenced provides a screen shot of the Analytics screen under Visitor Trending and Time On Site in which there is a link set titled <em>View By: Daily | Hourly</em>. This is no longer in the Google Analytics UI as mentioned by a commenter in that same post.</p>
<p>The best method to view visitors by hour with Google Analytics is to do the following:</p>
<blockquote><p>=&gt; select Visitors<br />
=&gt; select Vistor Trending<br />
=&gt; select Visits<br />
=&gt; select Clock/Hourly icon (to the right under the date selection option)</p></blockquote>
<p>Here is a screen-shot showing visits broken down by hour for May 14:</p>
<p><a rel="attachment wp-att-193" href="http://www.kliky.com/how-to/how-to-view-visits-hourly-in-google-analytics/attachment/how-to-view-hourly-visits-google-analytics/"><img class="alignnone size-medium wp-image-193" title="how-to-view-hourly-visits-google-analytics" src="http://www.kliky.com/wp-content/uploads/2010/05/how-to-view-hourly-visits-google-analytics-584x397.gif" alt="How to View Hourly Visits Google Analytics" width="584" height="397" /></a></p>
<p>If your report covers multiple days the hourly report will show the total amount of visitors per day for the date range. If the date range covers only one day the report will show visitors per hour for that particular day.</p>
<p>That&#8217;s it. That is how you can view visits and traffic by hour using Google Analytics.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.com/how-to/how-to-view-visits-hourly-in-google-analytics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>11 Interesting Links I Found This Week</title>
		<link>http://www.kliky.com/blogging/11-interesting-links-i-found-this-week-april-14/</link>
		<comments>http://www.kliky.com/blogging/11-interesting-links-i-found-this-week-april-14/#comments</comments>
		<pubDate>Sat, 15 May 2010 03:23:26 +0000</pubDate>
		<dc:creator>ereckers</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Ping.fm]]></category>

		<guid isPermaLink="false">http://www.kliky.com/?p=183</guid>
		<description><![CDATA[Here&#8217;s a list of 11 interesting links I found browsing the Web this week. I send them to myself over multiple formats throughout the week and towards the end of each (April 14th) try and record them in these blog posts.
Take a look below and I hope you find them as interesting as I did:


Google [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a list of 11 interesting links I found browsing the Web this week. I send them to myself over multiple formats throughout the week and towards the end of each (April 14th) try and record them in these blog posts.</p>
<p>Take a look below and I hope you find them as interesting as I did:</p>
<blockquote>
<ul>
<li><a href="http://mashable.com/2010/05/04/google-adds-app-store-for-analytics/">Google Adds App Store for Analytics</a></li>
<li><a href="http://www.seomoz.org/blog/define-competitors-step-4-of-the-8step-seo-strategy">Define Competitors: Step 4 of the 8-Step SEO Strategy</a></li>
<li><a href="http://webdesignledger.com/tools/11-excellent-solutions-for-making-your-website-mobile-friendly">11 Excellent Solutions for Making Your Website Mobile Friendly</a></li>
<li><a href="http://www.zazar.net/developers/zrssfeed/default.html#demo">zRSSFeed &#8211; RSS Feeds Reader for jQuery</a></li>
<li><a href="http://sponsoredtweets.com/">Sponsored Tweets &#8211; Twitter Advertising</a></li>
<li><a href="http://wpdocs.labs.thedextrousweb.com/">WordPress API</a></li>
<li><a href="http://www.grouptweet.com/">GroupTweet &#8211; Turns Twitter Into a Communications Hub</a></li>
<li><a href="http://net.tutsplus.com/tutorials/php/9-useful-php-functions-and-features-you-need-to-know/">9 Useful PHP Functions and Features You Need to Know | Nettuts+</a></li>
<li><a href="http://http://mashable.com/2010/04/30/schedule-tweets/">5 Free Services for Pre-Scheduling Your Twitter Updates</a></li>
<li><a href="http://webjackalope.com/16-different-clones-you-can-build-with-drupal/">16 Different Clones You Can Build with Drupal</a></li>
<li><a href="http://www.webdesignerwall.com/tutorials/css3-gradient-buttons/">CSS3 Gradient Buttons</a></li>
</ul>
</blockquote>
<p>That&#8217;s my list of 11 interesting links I found on the internet this week.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.com/blogging/11-interesting-links-i-found-this-week-april-14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia N8 Prototype Pictures</title>
		<link>http://www.kliky.com/blogging/nokia-n8-prototype-pictures/</link>
		<comments>http://www.kliky.com/blogging/nokia-n8-prototype-pictures/#comments</comments>
		<pubDate>Tue, 11 May 2010 15:39:46 +0000</pubDate>
		<dc:creator>ereckers</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.kliky.com/?p=170</guid>
		<description><![CDATA[Engadget snapped a few photos and was able to handle a prototype of Nokia&#8217;s N8 in London recently, which will be hitting shelves Q3 of this year loaded with Symbian 3. Below is a photo of the Nokia N8 as well as a few observations from Engadget:

The anodized aluminum shell feels very well built and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.engadget.com/">Engadget</a> snapped a few photos and was able to handle a prototype of <a href="http://www.engadget.com/2010/05/11/nokia-n8-hands-on/">Nokia&#8217;s N8 in London</a> recently, which will be hitting shelves Q3 of this year loaded with Symbian 3. Below is a photo of the Nokia N8 as well as a few observations from <a href="http://www.engadget.com/">Engadget</a>:</p>
<p><a rel="attachment wp-att-171" href="http://www.kliky.com/blogging/nokia-n8-prototype-pictures/attachment/nokia-n8-os3-prototype/"><img class="alignnone size-medium wp-image-171" title="nokia-n8-os3-prototype" src="http://www.kliky.com/wp-content/uploads/2010/05/nokia-n8-os3-prototype-584x388.jpg" alt="Nokia N8 Prototype" width="584" height="388" /></a></p>
<blockquote><p>The anodized aluminum shell feels very well built and is remarkably light. So much so that our first instinct was to ask whether the battery was inside or this was just a hollow mockup. We&#8217;d compare it to the feeling of picking up the <a href="http://www.engadget.com/2009/09/17/zune-hd-review/">Zune HD</a> for the first time, it&#8217;s a strikingly light device. Plopping it into our pocket also felt extremely natural, which might be attributable to the particular curvature of the N8&#8217;s sides.</p></blockquote>
<p>Please be sure to read the full post at <a href="http://www.engadget.com/">Engadget</a> for the the <a href="http://www.engadget.com/2010/05/11/nokia-n8-hands-on/">Nokia N8 Hands-On</a>.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 362px; width: 1px; height: 1px;">
<div class="col1"><!-- .at15t_email{background-position:0px -4120px} --></p>
<div class="blogroll"><!--BLOG POST CONTENT: title, byline, icons &#038; body--></p>
<div class="post_content permalink">
<div class="filed_under"><img src="http://www.blogsmithmedia.com/www.engadget.com/media/article_label_fileunder.gif" alt="" /> <a href="http://www.engadget.com/topics/cellphones">Cellphones</a>,                                                                    <a href="http://mobile.engadget.com/topics/handsets">Mobile Handsets</a></div>
<h4 class="post_title">Nokia N8 hands-on</h4>
<div class="post_info">
<div class="post_byline"><span class="caption">By <a href="http://www.engadget.com/editor/vladislav-savov">Vladislav Savov</a> <a href="http://www.engadget.com/editor/vladislav-savov/rss.xml"><img src="http://www.blogsmithmedia.com/www.engadget.com/media/writer_rss.gif" border="0" alt="" /></a> posted <span class="post_time">May 11th 2010 7:05AM</span></span></div>
<p><!--end post_byline--></p>
<div class="post_content_types">
<div class="post_category">
<div class="post_handson sprite"><a href="http://www.engadget.com/2010/05/11/nokia-n8-hands-on/tag/hands-on"><span>Hands-On</span></a></div>
</div>
<p><!--end post_category--></p>
<div class="post_icon"><img src="http://www.blogsmithmedia.com/www.engadget.com/media/post_icon_photo.gif" alt="" /></div>
</div>
<p><!--end post_content_types--></p>
</div>
<p><!--end post_info--> <!--BLOG POST BODY: image, blurb, &#038; readmore link--></p>
<div class="post_body"><!-- surphace start --></p>
<div style="text-align: center;"><a href="http://www.engadget.com/2010/05/11/nokia-n8-hands-on/"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/05/10x0511menvnokia93.jpg" border="1" alt="" hspace="4" vspace="4" /></a></div>
<p><span style="float: right; margin-bottom: 16px; margin-left: 4px;"><script type="text/javascript">// <![CDATA[
 digg_url = 'http://digg.com/gadgets/Nokia_N8_Hands_on_PICS';
// ]]&gt;</script><script src="http://digg.com/api/diggthis.js"></script><span class="db-wrapper db-clear db-large"><span><span class="db-container"><span class="db-body db-large"><span class="db-count">128</span><span class="db-copy">diggs</span><a class="db-anchor">digg</a></span></span></span></span></span>Good old London, full of little wonders and <a href="http://www.engadget.com/2009/06/23/htc-launching-new-android-phone-in-london-tomorrow-well-be-the/">flagship devices</a> for you to discover. We were at Nokia&#8217;s local HQ this morning to talk to the company&#8217;s Head of Design Marko Ahtisaari, and the good gent happened to bring with him a <a href="http://www.engadget.com/2010/04/27/nokia-says-leaked-n8-has-early-software-shouldnt-be-reviewed/">prototype N8</a> for us to play around with. It was stressed to us that it&#8217;s a prototype, so small cosmetic changes might still occur, but we are for most part looking at the hardware that will be hitting retail shelves in Q3 of this year. Speaking of <a href="http://www.engadget.com/2010/04/22/nokia-delays-symbian-3-investors-not-impressed/">Q3</a>, Marko was adamant that that will be when Nokia &#8220;turns on&#8221; the <a href="http://www.engadget.com/tag/symbian3">Symbian 3</a> housed within the N8, which &#8212; disappointingly &#8212; meant that we couldn&#8217;t get to grips with the new UI experience in person. Ah well, there are plenty of pictures to be devoured in the gallery below, and we can provide you with a few observations of our own to tide you over till then.</p>
<p>The anodized aluminum shell feels very well built and is remarkably light. So much so that our first instinct was to ask whether the battery was inside or this was just a hollow mockup. We&#8217;d compare it to the feeling of picking up the <a href="http://www.engadget.com/2009/09/17/zune-hd-review/">Zune HD</a> for the first time, it&#8217;s a strikingly light device. Plopping it into our pocket also felt extremely natural, which might be attributable to the particular curvature of the N8&#8217;s sides.</p>
</div>
</div>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.com/blogging/nokia-n8-prototype-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Favitt &#8211; Search Multiple Search Engines From One Page</title>
		<link>http://www.kliky.com/blogging/favitt-search-multiple-search-engines-from-one-page/</link>
		<comments>http://www.kliky.com/blogging/favitt-search-multiple-search-engines-from-one-page/#comments</comments>
		<pubDate>Sat, 08 May 2010 16:15:28 +0000</pubDate>
		<dc:creator>ereckers</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.kliky.com/?p=167</guid>
		<description><![CDATA[Sometimes I don&#8217;t even know why these guys bother.
Faviit lets you perform the same search on multiple search engines from a single page, thus saving you from the frustration of opening multiple browser tabs and typing the same words again and again.
You can check it out by going to Favitt.
]]></description>
			<content:encoded><![CDATA[<p>Sometimes I don&#8217;t even know why these guys bother.</p>
<blockquote><p><a href="http://favitt.com/"><strong>Faviit</strong></a> lets you perform the same search on multiple search engines from a single page, thus saving you from the frustration of opening multiple browser tabs and typing the same words again and again.</p></blockquote>
<p>You can check it out by going to <a href="http://favitt.com/">Favitt</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.com/blogging/favitt-search-multiple-search-engines-from-one-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Great Showcase of Web Design Incorporating Photos</title>
		<link>http://www.kliky.com/development/a-great-showcase-of-web-design-incorporating-photos/</link>
		<comments>http://www.kliky.com/development/a-great-showcase-of-web-design-incorporating-photos/#comments</comments>
		<pubDate>Fri, 07 May 2010 15:55:17 +0000</pubDate>
		<dc:creator>ereckers</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.kliky.com/?p=162</guid>
		<description><![CDATA[The Six Revisions site always seems to come up with intelligent posts which inspire. If you haven&#8217;t already, you should follow their tweets. The just put up a post called, &#8220;Excellent Examples of Using Photos in Web Design&#8221; and I&#8217;d have to say it&#8217;s a great collection. I read a lot of these &#8220;lists&#8221; each [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://sixrevisions.com/">Six Revisions</a> site always seems to come up with intelligent posts which inspire. If you haven&#8217;t already, you should follow their tweets. The just put up a post called, &#8220;<a href="http://sixrevisions.com/design-showcase-inspiration/using-photos-web-design/">Excellent Examples of Using Photos in Web Design</a>&#8221; and I&#8217;d have to say it&#8217;s a great collection. I read a lot of these &#8220;lists&#8221; each day for inspiration and most of the time, it&#8217;s recycled garbage, but I&#8217;d have to say this post by <a href="http://sixrevisions.com/">Six Revisions</a> showing the usage of photography as the basis of your Web site design is great.</p>
<blockquote><p>Using photos as a design element and central piece in a web design is a great way to get a point across to the viewers or to just add more depth into the design. We are going to look at some examples of two popular ways of using photos in a web layout: using a large photo as your background and using a photo as the central focus in the header.</p></blockquote>
<p>You can read their post here:</p>
<p><a href="http://sixrevisions.com/design-showcase-inspiration/using-photos-web-design/">http://sixrevisions.com/design-showcase-inspiration/using-photos-web-design/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kliky.com/development/a-great-showcase-of-web-design-incorporating-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
