<?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>Bluelime Media Vancouver Web Development &#187; Computer Advice</title>
	<atom:link href="http://www.bluelimemedia.com/category/computer-advice/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bluelimemedia.com</link>
	<description>Interactive Solutions with a Twist</description>
	<lastBuildDate>Mon, 01 Mar 2010 04:51:22 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Stop climate change by optimizing your website</title>
		<link>http://www.bluelimemedia.com/2009/10/15/green-your-website/</link>
		<comments>http://www.bluelimemedia.com/2009/10/15/green-your-website/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 15:47:23 +0000</pubDate>
		<dc:creator>Christine</dc:creator>
				<category><![CDATA[Computer Advice]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.bluelimemedia.com/?p=1006</guid>
		<description><![CDATA[Climate change has no regional boundaries and threatens more than the environment. If we continue on this path, famine, flooding, war, and millions of refugees are the likely outcome. Given the urgency of the issue and the upcoming international climate negotiations in Copenhagen later this year, it&#8217;s only natural that this years&#8217; topic for Blog [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blogactionday.org"><img class="alignright size-full wp-image-999" title="Blog Action Day" src="http://www.bluelimemedia.com/blog/wp-content/uploads/bad-125-125.jpg" alt="Blog Action Day" width="125" height="125" /></a>Climate change has no regional boundaries and threatens more than the environment. If we continue on this path, famine, flooding, war, and millions of refugees are the likely outcome. Given the urgency of the issue and the upcoming international climate negotiations in Copenhagen later this year, it&#8217;s only natural that this years&#8217; topic for <a href="http://www.blogactionday.org">Blog Action Day</a>, is climate change.</p>
<p>All throughout the day, you&#8217;ll no doubt be reading on the <a href="http://www.davidsuzuki.org/Climate_Change/">many actions</a> you can take to help <a href="http://www.greenpeace.org/international/campaigns/climate-change">stop climate change</a>. But did you know that if you are using WordPress, you could be making minor adjustments that also help? Making your website &#8220;green&#8221; is as easy as reducing the number of of calls to your database. Let me show you how.</p>
<p><span id="more-1006"></span>WordPress is a database driven website. All of your content, posts and page information resides in a database and  every time someone visits your site, a call (SQL query) is made. Reducing the number of calls will not only green your website, it will also speed it up.</p>
<p>Obvious ways to reduce the number of calls are by:</p>
<ul>
<li><a href="http://www.dailyblogtips.com/speed-up-your-site-optimize-images/">optimizing your images</a> and make them as small as possible</li>
<li>displaying a few posts on your page instead of hundreds</li>
<li><a href="http://www.dailycoding.com/Posts/top_7_tip_for_optimizing_css.aspx">cleaning up your css</a> and reducing the file size</li>
<li><a href="http://zemalf.com/wordpress/wordpress-plugins/is-your-wordpress-blog-super-slow-because-of-plugins/">minimizing the use of plugins</a></li>
</ul>
<p>Something that may not be as obvious is to remove calls to the database located in your template files.</p>
<p>For example the header.php template is usually made up of the following code:</p>
<pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head profile="http://gmpg.org/xfn/11"&gt;
&lt;meta http-equiv="Content-Type" content="&lt;?php bloginfo('html_type'); ?&gt;; charset=&lt;?php bloginfo('charset'); ?&gt;" /&gt;
&lt;title&gt;&lt;?php if (is_home()) : ?&gt;&lt;?php bloginfo('name'); ?&gt; - &lt;?php bloginfo('description'); ?&gt;
&lt;?php else : ?&gt;&lt;?php wp_title('', 'false'); ?&gt; - &lt;?php bloginfo('name'); ?&gt;
&lt;?php endif; ?&gt;&lt;/title&gt;
&lt;!-- leave this for stats please --&gt;
&lt;link rel="alternate" type="application/rss+xml" title="&lt;?php bloginfo('name'); ?&gt; RSS 2.0" href="&lt;?php bloginfo('rss2_url'); ?&gt;" /&gt;
&lt;link rel="alternate" type="text/xml" title="RSS .92" href="&lt;?php bloginfo('rss_url'); ?&gt;" /&gt;
&lt;link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="&lt;?php bloginfo('atom_url'); ?&gt;" /&gt;
&lt;link rel="pingback" href="&lt;?php bloginfo('pingback_url'); ?&gt;" /&gt;</code>
<code>&lt;?php wp_head(); ?&gt;
&lt;style type="text/css" media="screen"&gt;
&lt;!-- @import url( &lt;?php bloginfo('stylesheet_url'); ?&gt; ); --&gt;
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id="wrap"&gt;
&lt;div id="header"&gt;
&lt;div id="logo"&gt;&lt;a href="&lt;?php bloginfo('siteurl'); ?&gt;"&gt;&lt;span&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;</code>
<code>&lt;/div&gt;</code></pre>
<p>You can eliminate 5 calls to the database simply by replacing the meta http-equiv tag with:</p>
<pre><code>&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt;</code></pre>
<p>the feed with:</p>
<pre><code>&lt;link rel="alternate" type="application/rss+xml" title="RSS Feed" href="http://www.yourUrl.com/feed/" /&gt;
&lt;link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="http://www.yourUrl.com/feed/atom/" /&gt;</code></pre>
<p>the pingback link with:</p>
<pre><code>&lt;link rel="pingback" href="http://www.yourUrl.com/blog/xmlrpc.php" /&gt;</code></pre>
<p>and the style sheet link with:</p>
<pre><code>&lt;!-- @import url( http://www.yourWebsiteThemeDirectory/style.css ); --&gt;</code></pre>
<p>It&#8217;s not much, but any reduction in energy use is better than nothing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluelimemedia.com/2009/10/15/green-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Look Out for Domain Renewal Scam</title>
		<link>http://www.bluelimemedia.com/2008/03/04/look-out-for-domain-renewal-scam/</link>
		<comments>http://www.bluelimemedia.com/2008/03/04/look-out-for-domain-renewal-scam/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 16:27:38 +0000</pubDate>
		<dc:creator>Liz</dc:creator>
				<category><![CDATA[Computer Advice]]></category>
		<category><![CDATA[Email]]></category>

		<guid isPermaLink="false">http://www.bluelimemedia.com/2008/03/04/look-out-for-domain-renewal-scam/</guid>
		<description><![CDATA[I received a very official looking Domain Name Expiration Notice a little while ago. It looked like the real thing and I might have fallen for it if I hadn’t been (a) wary that the notice was so far in advance of the actual expiry date; and (b) already aware of phantom invoice scams.
Back when [...]]]></description>
			<content:encoded><![CDATA[<p>I received a very official looking Domain Name Expiration Notice a little while ago. It looked like the real thing and I might have fallen for it if I hadn’t been (a) wary that the notice was so far in advance of the actual expiry date; and (b) already aware of phantom invoice scams.</p>
<p>Back when I worked in big companies, it was a fairly regular occurrence to get an official-looking invoice for overdue payment that upon closer inspection was fraudulent. Sometimes it was for copier toner, other times for a directory listing or other common supplies. Now the scam has gone high tech.</p>
<p>I believe in knowing what I’m paying for (I prefer not to be described as “cheap” thank you) so I always looked into what I was signing off on. That’s how I uncovered the scam and learned just how persistent and unscrupulous these companies can be.</p>
<ul>
<li>The invoices are often to the attention of a former employee</li>
<li>They always look very official</li>
<li>There was always a sense of urgency</li>
<li>The invoices keep coming even if you call the source and confront them</li>
</ul>
<p>If I was like the many small business owners who <a href="http://www.marketnavigators.ca/newsletter/0308.html">do not keep close tabs on their domain name registrations</a> and are too busy to read the fine print, I’d have paid over 4 times what I should have to renew those domain names AND I would have transferred them to a disreputable registrar.</p>
<p>Like spam, the phantom invoice scam must work or it wouldn’t keep appearing. I caution you to keep an eye on your domain names and pay attention to the details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluelimemedia.com/2008/03/04/look-out-for-domain-renewal-scam/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photo sharing on the web</title>
		<link>http://www.bluelimemedia.com/2008/01/11/photosharing/</link>
		<comments>http://www.bluelimemedia.com/2008/01/11/photosharing/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 22:07:13 +0000</pubDate>
		<dc:creator>Christine</dc:creator>
				<category><![CDATA[Computer Advice]]></category>
		<category><![CDATA[Cool Stuff]]></category>

		<guid isPermaLink="false">http://www.bluelimemedia.com/2008/01/11/photosharing/</guid>
		<description><![CDATA[With the start of a new year comes the time to make resolution. Most of us will plan on losing weight, exercise more and get organized. Professional organizer, Linda Chu, asked me to write a piece about using the web and get organized and we sent out the newsletter yesterday. In this article I mentioned [...]]]></description>
			<content:encoded><![CDATA[<p>With the start of a new year comes the time to make resolution. Most of us will plan on losing weight, exercise more and get organized. <a href="http://www.outofchaos.ca">Professional organizer, Linda Chu</a>, asked me to write a piece about using the web and get organized and we sent out the <a href="http://www.outofchaos.ca/tips/2008/01/10/using-the-web-to-stay-organized/">newsletter</a> yesterday. In this article I mentioned my top three free online tool to de-clutter my desk and brain; <a href="http://ma.gnolia.com/">Ma.gnolia</a>, <a href="http://www.tadalist.com/">Ta-da lists</a> and <a href="http://www.flickr.com/">Flickr</a>. Coincidentally, common craft released another great video explaining how photo sharing works on the web.</p>
<p>If you had set &#8220;getting organized&#8221; as one of your goals for 2008, you should <a href="http://www.commoncraft.com/photosharing">check out their video</a>.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/vPU4awtuTsk&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/vPU4awtuTsk&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluelimemedia.com/2008/01/11/photosharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How is your website built?</title>
		<link>http://www.bluelimemedia.com/2007/11/22/how-is-your-website-built/</link>
		<comments>http://www.bluelimemedia.com/2007/11/22/how-is-your-website-built/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 19:46:54 +0000</pubDate>
		<dc:creator>Christine</dc:creator>
				<category><![CDATA[Computer Advice]]></category>

		<guid isPermaLink="false">http://www.bluelimemedia.com/blog/2007/11/22/how-is-your-website-built/</guid>
		<description><![CDATA[I recently had a discussion with Mhairi about a possible project. Mhairi had a client who wished to add a blog to her site and she asked if I could provide her with a quote. Unfortunately, the website was built with ColdFusion and thus I told her that I wouldn&#8217;t be able to work on [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had a discussion with <a href="http://www.out-smarts.com/">Mhairi</a> about a possible project. Mhairi had a client who wished to add a blog to her site and she asked if I could provide her with a quote. Unfortunately, the website was built with ColdFusion and thus I told her that I wouldn&#8217;t be able to work on it because I&#8217;m simply not familiar with ColdFusion. Mhairi was a bit confused at first and unsure why the code should matter.</p>
<p><span id="more-240"></span>Unfortunately when it comes to the web there are loads or tools out there and lots of different programming languages. Developers tend to focus on one or two tools and specialize in a language. At Bluelime Media, we specialize in table-less HTML, php and WordPress. Believe it or not, we still use Homesite to hand code our sites. If you&#8217;re looking for Dreamweaver templates which can be updated with Contribute, we&#8217;re simply not the right fit for you.</p>
<p><strong>So when looking at a website, how can you tell how it was built?</strong><br />
When looking at a website, take a look at the address bar when moving from page to page. The file extension will give you an indication of the programming language used. Here&#8217;s a quick run-down at the different types of pages out there.</p>
<ul>
<li>.html or .htm &#8211; simple straightforward <a href="http://en.wikipedia.org/wiki/Html">Hypertext Markup Language</a></li>
<li>.php &#8211; <a href="http://en.wikipedia.org/wiki/Php">PHP</a> programming</li>
<li>.cfm &#8211; Adobe <a href="http://en.wikipedia.org/wiki/Coldfusion">Coldfusion</a></li>
<li>.asp &#8211;  <a href="http://en.wikipedia.org/wiki/Active_Server_Pages">Active Server Pages</a></li>
<li>.aspx &#8211; <a href="http://en.wikipedia.org/wiki/ASP.NET">ASP.NET</a></li>
<li>.cgi &#8211; <a href="http://en.wikipedia.org/wiki/Perl">Perl</a></li>
<li>.jsp &#8211; <a href="http://en.wikipedia.org/wiki/Jsp">Java Server Page Technology</a></li>
</ul>
<p>You can also find out a lot about websites by looking at the source code. Here are a few things to look out for:</p>
<ol class="code">
<li><code>&lt;http://www.domainname.com/blog/<strong>wp-content</strong>... /&gt;</code></li>
</ol>
<p>Websites built using WordPress will have code peppered with wp- markers.</p>
<ol class="code">
<li><code>&lt;object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"</code></li>
<li><code>codebase="http://fpdownload.macromedia.com/..."</code></li>
<li><code>width="149" height="378" id="NavTabs-1" align="middle"&gt;</code></li>
<li><code>&lt;param name="allowScriptAccess" value="sameDomain" /&gt;</code></li>
<li><code>&lt;param name="movie" value="NavTabs-1.swf" /&gt;&lt;param name="quality" value="high" /&gt;&lt;param name="bgcolor" value="#bbbbbc" />&lt;embed src="NavTabs-1.swf" quality="high" bgcolor="#bbbbbc" width="149" height="378" name="NavTabs-1" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /&gt;</code></li>
<li><code>&lt;/object&gt;</code></li>
</ol>
<p>These lines of code are a sure sign that the content is a flash file.</p>
<ol class="code">
<li><code>function MM_reloadPage(init) {  //reloads the window if Nav4 resized</code></li>
<li><code>if (init==true) with (navigator) {if ((appName=="Netscape")&#038;&#038;(parseInt(appVersion)==4)) {</code></li>
<li><code>document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}</code></li>
<li><code>else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();</code></li>
<li><code>}</code></li>
<li><code>MM_reloadPage(true);</code></li>
</ol>
<p>Any mention of MM of InstanceBegin indicates that Dreamweaver was used to create this website.</p>
<ol class="code">
<li><code>&lt;meta name="ProgId" content="FrontPage.Editor.Document"&gt;</code></li>
<li><code>&lt;meta name="generator" content="Adobe GoLive 6"&gt;</code></li>
</ol>
<p>Front page and GoLive both leave their trace in the meta tags.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluelimemedia.com/2007/11/22/how-is-your-website-built/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Step-by-step guide to using Google Reader</title>
		<link>http://www.bluelimemedia.com/2007/08/06/step-by-step-guide-to-using-google-reader/</link>
		<comments>http://www.bluelimemedia.com/2007/08/06/step-by-step-guide-to-using-google-reader/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 23:16:40 +0000</pubDate>
		<dc:creator>Christine</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Computer Advice]]></category>

		<guid isPermaLink="false">http://www.bluelimemedia.com/blog/2007/08/06/step-by-step-guide-to-using-google-reader/</guid>
		<description><![CDATA[Back in early May, Mhairi wrote a piece about Google Reader and how its use allows you to keep track of your favourite blogs. I thought I would provide a step-by-step guide for those who may not know how to get started. 
Step 1 &#8211; Register
Sign up for a Google Account 
Step 2 &#8211; Login
Once [...]]]></description>
			<content:encoded><![CDATA[<p>Back in early May, Mhairi wrote a <a href="http://www.bluelimemedia.com/blog/2007/05/10/the-scoop-on-google-reader/">piece about Google Reader</a> and how its use allows you to keep track of your favourite blogs. I thought I would provide a step-by-step guide for those who may not know how to get started. </p>
<p><strong>Step 1 &#8211; Register</strong><br />
Sign up for a <a href="https://www.google.com/accounts/NewAccount">Google Account</a> </p>
<p><strong>Step 2 &#8211; Login</strong><br />
Once your account set up, <a href="https://www.google.com/accounts/Login">login</a>. You should come to a page which looks like this:</p>
<p><img src='http://www.bluelimemedia.com/blog/wp-content/uploads/2007/08/1.jpg' alt='Google account home page' /></p>
<p><strong>Step 3 &#8211; Set up your reader</strong></p>
<p>Click on <a href="http://www.google.com/reader/view/">Reader</a> to access Google Reader. Using the link <strong>&#8220;Add Subscription&#8221;</strong> in the top left hand column add your favourite blogs.</p>
<p><img src='http://www.bluelimemedia.com/blog/wp-content/uploads/2007/08/2.jpg' alt='Add Subscription' /></p>
<p><strong>Step 4 &#8211; Enjoy</strong></p>
<p>Now that you&#8217;ve added your blogs, you only need to login to your account to access them all in one convenient location.</p>
<p><strong>Alternative Readers</strong><br />
For those of you who may not want to use Google, there are several <a href="http://en.wikipedia.org/wiki/List_of_feed_aggregators">other options</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluelimemedia.com/2007/08/06/step-by-step-guide-to-using-google-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
