<?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>rareexample &#187; Webdesign</title>
	<atom:link href="http://rareexample.ca/category/Webdesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://rareexample.ca</link>
	<description>Gaming, Internet and Metal Expert</description>
	<lastBuildDate>Mon, 28 Jun 2010 19:16:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Safari Problem : a keychain cannot be found to store &#8220;Safari&#8221;</title>
		<link>http://rareexample.ca/2009/03/23/safari-problem-a-keychain-cannot-be-found-to-store-safari/</link>
		<comments>http://rareexample.ca/2009/03/23/safari-problem-a-keychain-cannot-be-found-to-store-safari/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 14:23:24 +0000</pubDate>
		<dc:creator>rareexample</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://rareexample.ca/?p=532</guid>
		<description><![CDATA[Open Finder Search Keychain Open Keychain Access Click Keychain Access up in the menu bar Click Keychain first aid Put password, check repair, click start Click verify to make sure there are no errors Bob&#8217;s your uncle]]></description>
			<content:encoded><![CDATA[<ol>
<li>Open Finder</li>
<li>Search Keychain</li>
<li>Open Keychain Access</li>
<li>Click Keychain Access up in the menu bar</li>
<li>Click Keychain first aid</li>
<li>Put password, check repair, click start</li>
<li>Click verify to make sure there are no errors</li>
<li>Bob&#8217;s your uncle</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://rareexample.ca/2009/03/23/safari-problem-a-keychain-cannot-be-found-to-store-safari/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing a lost wordpress password.</title>
		<link>http://rareexample.ca/2008/12/02/changing-a-lost-wordpress-password/</link>
		<comments>http://rareexample.ca/2008/12/02/changing-a-lost-wordpress-password/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 20:12:33 +0000</pubDate>
		<dc:creator>rareexample</dc:creator>
				<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://rareexample.ca/?p=440</guid>
		<description><![CDATA[If you do alot of local wordpress tests like me, chances are you forget to change your automatically created wordpress password. Then you realize you don&#8217;t have your local smtp setup on your apache/wamp/mamp install. Then you&#8217;re googlin left and right to find how to get back in to your wordpress without bumbling with the [...]]]></description>
			<content:encoded><![CDATA[<p>If you do alot of local wordpress tests like me, chances are you forget to change your automatically created wordpress password. Then you realize you don&#8217;t have your local smtp setup on your apache/wamp/mamp install. Then you&#8217;re googlin left and right to find how to get back in to your wordpress without bumbling with the mind boggling options of local host isp stmp settings.</p>
<p>So here we are. You have access to PHP my admin right?</p>
<ul>
<li>Open PHP My admin</li>
<li>Open the database</li>
<li>Checkout WP_USERS and click the little browse icon</li>
<li>Click the pencil to edit admin</li>
<li>Now go <a href="http://hash-it.net/" target="blank">here</a> to create a MD5 hashed password</li>
<li>Copy the gobledygoop beside md5: </li>
<li>Back in PHP Myadmin, next to the user_pass field, paste your gobledygoop</li>
<li>Click go or save, whatever</li>
<li>Head over to http://localhost:8888/wp-login.php and voila.</li>
</ul>
<p>Rock on.</p>
]]></content:encoded>
			<wfw:commentRss>http://rareexample.ca/2008/12/02/changing-a-lost-wordpress-password/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgrade wordpress from Shell</title>
		<link>http://rareexample.ca/2008/07/31/upgrade-wordpress-from-shell/</link>
		<comments>http://rareexample.ca/2008/07/31/upgrade-wordpress-from-shell/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 16:47:19 +0000</pubDate>
		<dc:creator>rareexample</dc:creator>
				<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://rareexample.ca/?p=391</guid>
		<description><![CDATA[Type the following commands at shell prompt: $ mkdir /backup/wp/28nov2006 $ mysqldump -u user -p WP-DATABASENAME > /backup/wp/28nov2006/blog.db.sql $ tar -zcvf /backup/wp/28nov2006.tar.gz /var/www/html/blog Step # 2: Download latest wordpress CMS $ cd /tmp $ wget http://wordpress.org/latest.zip $ unzip latest.zip Step # 3: Overwrite all new files $ cd /var/www/html/blog $ cp -avr /tmp/wordpress/ . $ [...]]]></description>
			<content:encoded><![CDATA[<p>Type the following commands at shell prompt:</p>
<p>$ mkdir /backup/wp/28nov2006<br />
$ mysqldump -u user -p WP-DATABASENAME > /backup/wp/28nov2006/blog.db.sql<br />
$ tar -zcvf /backup/wp/28nov2006.tar.gz /var/www/html/blog<br />
Step # 2: Download latest wordpress CMS</p>
<p>$ cd /tmp<br />
$ wget http://wordpress.org/latest.zip<br />
$ unzip latest.zip<br />
Step # 3: Overwrite all new files</p>
<p>$ cd /var/www/html/blog<br />
$ cp -avr /tmp/wordpress/ .<br />
$ rm -rf /tmp/wordpress /tmp/latest.zip</p>
<p>Open a browser and run update script such as http://yourblog.com/wp-admin/upgrade.php</p>
<p>And you are done. Thanks to UNIX shell access. It just took less than 1 minute Replace path names and database name with actual values.</p>
<p>In case, if something goes wrong, you can always restore old database and files from /backup/wp/28nov2006 directory.</p>
<p><a href="http://www.cyberciti.biz/tips/howto-upgrade-wordpress-from-linux-unix-shell-prompt.html">Thanks to these guys for the write up</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rareexample.ca/2008/07/31/upgrade-wordpress-from-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ummm&#8230;. holly smokes there must be a lovely budget behind this website. Purely Amazing</title>
		<link>http://rareexample.ca/2008/07/08/ummm-holly-smokes-there-must-be-a-lovely-budget-behind-this-website-purely-amazing/</link>
		<comments>http://rareexample.ca/2008/07/08/ummm-holly-smokes-there-must-be-a-lovely-budget-behind-this-website-purely-amazing/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 00:07:36 +0000</pubDate>
		<dc:creator>rareexample</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://rareexample.ca/2008/07/08/ummm-holly-smokes-there-must-be-a-lovely-budget-behind-this-website-purely-amazing/</guid>
		<description><![CDATA[To those Web 2.0 freaks who say there&#8217;s no place on the web for flash, I say better check yo self. This little diddy by http://syzygy.de/ blows me away, quite amazing user experience created with flash. Load times are a little long at times but overall worth it in my opinion. There&#8217;s a cool little [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://viano-narnia.syzygy.de/main_gb.html" target="_blank"><img src='http://rareexample.ca/wp-content/uploads/2008/07/viano.jpg' alt='viano.jpg' /></a></p>
<p>To those Web 2.0 freaks who say there&#8217;s no place on the web for flash, I say better check yo self. This little diddy by <a href="http://syzygy.de/">http://syzygy.de/</a> blows me away, quite amazing user experience created with flash. Load times are a little long at times but overall worth it in my opinion. There&#8217;s a cool little game when you goto &#8220;Prizes&#8221;, I&#8217;m sold! Unfortunately, I can not afford Mercedes merchandise.<br />
<a href="http://viano-narnia.syzygy.de/main_gb.html" target="_blank"><br />
Check it. >></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rareexample.ca/2008/07/08/ummm-holly-smokes-there-must-be-a-lovely-budget-behind-this-website-purely-amazing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to duplicate your domain locally on XP</title>
		<link>http://rareexample.ca/2008/07/03/how-to-duplicate-your-domain-locally-on-xp/</link>
		<comments>http://rareexample.ca/2008/07/03/how-to-duplicate-your-domain-locally-on-xp/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 18:25:34 +0000</pubDate>
		<dc:creator>rareexample</dc:creator>
				<category><![CDATA[Friendly Advice]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://rareexample.ca/2008/07/03/how-to-duplicate-your-domain-locally-on-xp/</guid>
		<description><![CDATA[Ever want to edit your website locally with a copy of your live site? This is how I duplicated rareexample.ca on a local machine, minimal work. Get and install Wamp. To avoid headaches, install in your c:\ Ftp your server files to C:\wamp\www\rareexample Backup your Database locally Open your database file, search and replace rareexample.ca [...]]]></description>
			<content:encoded><![CDATA[<p>Ever want to edit your website locally with a copy of your live site? This is how I duplicated rareexample.ca on a local machine, minimal work.<br />
<span id="more-383"></span></p>
<ol>
<li>Get and install <a href="http://www.en.wampserver.com/">Wamp</a>. To avoid headaches, install in your c:\</li>
<li>Ftp your server files to C:\wamp\www\rareexample</li>
<li>Backup your Database locally</li>
<li>Open your database file, search and replace rareexample.ca for rareexample.dev</li>
<li>Run wamp, it will put a little icon in your tray, left click it, goto Apache, open http.conf</li>
<li>Go to the bottom and paste this<code>
<pre>NameVirtualHost 127.0.0.1
&lt;VirtualHost 127.0.0.1&gt;
    ServerName localhost
    DocumentRoot "c:/wamp/www/"
&lt;/VirtualHost&gt;
&lt;VirtualHost 127.0.0.1&gt;
    ServerName www.rareexample.dev
    DocumentRoot "c:/wamp/www/rareexample/"
&lt;/VirtualHost&gt;
</pre>
<p></code>
</li>
<li>Save the file</li>
<li>Left click wamp icon, restart all services</li>
<li>edit your hosts file located in \WINDOWS\system32\drivers\etc</li>
<li>add this to it  and save it<br />
<code>127.0.0.1       www.rareexample.dev</code></li>
<li>Click start, run, paste this <code>ipconfig /flushcache</code></li>
<li>Have a beer.</li>
</ol>
<p>P.s. if you&#8217;re wanting to access your windows server from a mac. Try this</p>
<ol>
<li>Open terminal</li>
<li> pico /private/etc/hosts</li>
<li>add the 2 similar lines as the windows host file but instead of 127.0.0.1, put your xp boxe&#8217;s lan ip</li>
<li> dscacheutil -flushcache on mac</li>
<li> Don&#8217;t forget to change your httpd.conf and add VirtualHost entries for your local ip</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://rareexample.ca/2008/07/03/how-to-duplicate-your-domain-locally-on-xp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Skeletons doing the deed</title>
		<link>http://rareexample.ca/2008/05/26/skeletons-doing-the-deed/</link>
		<comments>http://rareexample.ca/2008/05/26/skeletons-doing-the-deed/#comments</comments>
		<pubDate>Mon, 26 May 2008 21:00:27 +0000</pubDate>
		<dc:creator>rareexample</dc:creator>
				<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://rareexample.ca/2008/05/26/skeletons-doing-the-deed/</guid>
		<description><![CDATA[Creative genius Guillermo Vega has some kick ass skillz. I particularly love his condom/safe sex adds depicting skeletons doing the nasty, awesome.]]></description>
			<content:encoded><![CDATA[<p>Creative genius Guillermo Vega has some kick ass skillz. I particularly love his condom/safe sex adds depicting <a href="http://guillermovega.com/print07.htm" target="_blank">skeletons doing the nasty</a>, awesome.</p>
<p><img src='http://rareexample.ca/wp-content/uploads/2008/05/skeleton4.jpg' alt='skeleton4.jpg' /></p>
]]></content:encoded>
			<wfw:commentRss>http://rareexample.ca/2008/05/26/skeletons-doing-the-deed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ontario&#8217;s new sexy $200 000 logo, 3 dudes in a hot tub</title>
		<link>http://rareexample.ca/2008/04/22/ontarios-new-sexy-200-000-logo-3-dudes-in-a-hot-tub/</link>
		<comments>http://rareexample.ca/2008/04/22/ontarios-new-sexy-200-000-logo-3-dudes-in-a-hot-tub/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 15:53:04 +0000</pubDate>
		<dc:creator>rareexample</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://rareexample.ca/2008/04/22/ontarios-new-sexy-200-000-logo-3-dudes-in-a-hot-tub/</guid>
		<description><![CDATA[If you&#8217;re a fellow ontario-an then you&#8217;ve probably heard some of the hooplah over our new province logo. As a web designer I can understand the want and need to update the brand but with branding updates there should be reasoning behind it. Either the current brand was not working, or the organization was striving [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://rareexample.ca/wp-content/uploads/2008/04/ontario_new_logo.gif' alt='ontario_new_logo.gif' style="float: left; padding-right: 20px; " /><br />
If you&#8217;re a fellow ontario-an then you&#8217;ve probably heard <a href="http://www.cbc.ca/canada/toronto/story/2006/06/23/to-trillium20060623.html">some of</a> the <a href="http://savethetrillium.ca/" target="blank">hooplah </a>over our new province logo. As a web designer I can understand the want and need to update the brand but with branding updates there should be reasoning behind it. Either the current brand was not working, or the organization was striving forward with a new message to enforce this change of brand.</p>
<p>If you take a peek at the <a href="http://www.gov.on.ca/ont/portal/!ut/p/.cmd/cs/.ce/7_0_A/.s/7_0_24P/_s.7_0_A/7_0_24P/_l/en?docid=EC002001">ontario website</a>(How&#8217;s that for a friendly URL?) you&#8217;ll see no real change or clear brand equity. No clear message of what Ontario has to provide, stands for. No feeling of trust, inspiration or motivation. The colors are drab, pale, grey and the design is circa 1990 with cheezy flash transitions and images with the classic dotted shade backgrounds&#8230; I can go on and on with an in depth review of the website but that&#8217;s not my point here.</p>
<p><br clear="all" /><br />
<a href='http://rareexample.ca/wp-content/uploads/2008/04/douche.jpg' title='douche.jpg'><img src='http://rareexample.ca/wp-content/uploads/2008/04/douche.jpg' alt='douche.jpg' style="float: right; padding-left: 10px; width: 300px;" /></a>I&#8217;m all for change, change is good, but only when change is needed. There&#8217;s no real reasoning behind this change, it&#8217;s just  blah. </p>
<p>The logo, despite looking like 3 dudes in a hot tub is ok, but is it really worth changing our heritage with no real reasoning with a nifty price tag of over $200 000? I mean shit, I could have re-designed Ontario&#8217;s website with some clear goals, usability and accessibility for our beloved Ontario province for less then half the cost.</p>
<p>The only two reasons I can see for this is *fiscal year end blowout, Liberal agenda. Seriously now, ain&#8217;t there better things to spent tax dollars on then a logo redesign ?</p>
<p>*Fiscal year end blowout is when government sectors have money left in their budget at the end of the fiscal year and need to blow it on shit so they can get the same amount or higher budget the following year. If they overspend, they have a chance to get a little more in their budget so they can have more to blow on other useless shit. That money is usually spent on crap like T.V. Commercials, Radio adds, misc add campaings, web and print stuff and private hot tub parties in cancun.</p>
]]></content:encoded>
			<wfw:commentRss>http://rareexample.ca/2008/04/22/ontarios-new-sexy-200-000-logo-3-dudes-in-a-hot-tub/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to test for ie6 on Vista</title>
		<link>http://rareexample.ca/2008/04/16/how-to-test-for-ie6-on-vista/</link>
		<comments>http://rareexample.ca/2008/04/16/how-to-test-for-ie6-on-vista/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 19:15:29 +0000</pubDate>
		<dc:creator>rareexample</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://rareexample.ca/2008/04/16/how-to-test-for-ie6-on-vista/</guid>
		<description><![CDATA[So you design websites? You have clients who&#8217;s sites are all messed up because they&#8217;re stuck in good old buggy IE6 ? You&#8217;ve made the giant mistake of upgrading to Vista with IE7 and the standalone versions of the old browsers no longer work? Welcome to my world and the world of many other disgruntled [...]]]></description>
			<content:encoded><![CDATA[<p>So you design websites?<br />
You have clients who&#8217;s sites are all messed up because they&#8217;re stuck in good old buggy IE6 ?<br />
You&#8217;ve made the giant mistake of upgrading to Vista with IE7 and the standalone versions of the old browsers no longer work?</p>
<p>Welcome to my world and the world of many other disgruntled folk stuck in a lackluster Windows clustermuck of buggy shit software.</p>
<p>Well the kind gentle folk over at MS gave us a free way for us to keep testing their shit software. Thanks to the blog over at </p>
<p>http://blogs.msdn.com/ie/archive/2007/04/17/ie7-virtual-pc-image-and-ie6-virtual-pc-image-refresh.aspx</p>
<p>First you gotta download a virtual PC </p>
<p>http://www.microsoft.com/windows/products/winfamily/virtualpc/default.mspx</p>
<p>Then you must download the actual image 450 Megs so hope you have a good net connection&#8230;</p>
<p>http://www.microsoft.com/downloads/details.aspx?FamilyId=21EABB90-958F-4B64-B5F1-73D0A413C8EF&#038;displaylang=en</p>
<p>Go bake a cake</p>
<p>Install both respectively</p>
<p><strong>Note</strong> the image above expires in July 2008 for some reason&#8230;</p>
<p>Now open Microsoft Virtual PC, go next until you see options<br />
Select &#8220;Create a virtual Machine&#8221;<br />
Click Next and Next again to accept the default operating system selection of Other<br />
You can accept the default RAM allocation or lower the setting to 96MB. Setting the RAM quota below 32MB is not recommended.<br />
Click next. Specify that you wish to use an Existing virtual hard disk and then click Next again<br />
Browse for and select the inflated Virtual Hard Disk file from the download package. Do not enable Undo Disks. Click Next to continue<br />
Click Finish to complete the Wizard</p>
<p>You may need to <a href="http://rareexample.ca/2008/04/16/wordpress-problem-with-wamp-from-lan/">do this</a> if you are running WAMP and having problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://rareexample.ca/2008/04/16/how-to-test-for-ie6-on-vista/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress gets a facelift and a new version.</title>
		<link>http://rareexample.ca/2008/03/31/wordpress-gets-a-facelift-and-a-new-version/</link>
		<comments>http://rareexample.ca/2008/03/31/wordpress-gets-a-facelift-and-a-new-version/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 14:50:45 +0000</pubDate>
		<dc:creator>rareexample</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://rareexample.ca/2008/03/31/wordpress-gets-a-facelift-and-a-new-version/</guid>
		<description><![CDATA[My Favorite cms/blogging tool gets updated. Will be trying this out in the next few days. Website looks hot, great job! WordPress › Blog Tool and Weblog Platform]]></description>
			<content:encoded><![CDATA[<p>My Favorite cms/blogging tool gets updated. Will be trying this out in the next few days. Website looks hot, great job!</p>
<p><img src='http://rareexample.ca/wp-content/uploads/2008/03/ss-5.png' alt='ss-5.png' /></p>
<p><a href="http://wordpress.org/">WordPress › Blog Tool and Weblog Platform</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rareexample.ca/2008/03/31/wordpress-gets-a-facelift-and-a-new-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL socket errors on Leopard?</title>
		<link>http://rareexample.ca/2007/10/30/mysql-socket-errors-on-leopard/</link>
		<comments>http://rareexample.ca/2007/10/30/mysql-socket-errors-on-leopard/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 20:56:22 +0000</pubDate>
		<dc:creator>rareexample</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://rareexample.ca/2007/10/30/mysql-socket-errors-on-leopard/</guid>
		<description><![CDATA[Thanks to Angry-Fly.com: Fix for MySQL on Leopard sudo mkdir /var/mysql/ And lastly, create a symbolic link to point the default socket file: sudo ln -s /tmp/mysql.sock /var/mysql/mysql.sock Now if only I can figure out what&#8217;s wrong with Mod_rewrite]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://angry-fly.com/index.cfm/2007/10/26/Fix-for-MySQL-on-Leopard">Angry-Fly.com: Fix for MySQL on Leopard</a></p>
<p>sudo mkdir /var/mysql/</p>
<p>And lastly, create a symbolic link to point the default socket file:</p>
<p>sudo ln -s /tmp/mysql.sock /var/mysql/mysql.sock</p>
<p>Now if only I can figure out what&#8217;s wrong with Mod_rewrite</p>
]]></content:encoded>
			<wfw:commentRss>http://rareexample.ca/2007/10/30/mysql-socket-errors-on-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
