<?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>technoholic.ca</title>
	<atom:link href="http://www.technoholic.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.technoholic.ca</link>
	<description>Mac, technology, and web design blog</description>
	<lastBuildDate>Tue, 29 Nov 2011 04:52:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Cut and Paste Files in Mac OS X</title>
		<link>http://www.technoholic.ca/cut-and-paste-files-in-mac-os-x/</link>
		<comments>http://www.technoholic.ca/cut-and-paste-files-in-mac-os-x/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 04:52:32 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.technoholic.ca/?p=252</guid>
		<description><![CDATA[I&#8217;ve been using Mac OS X for 4 years now, but only now did I learn of this one. If you&#8217;re used to moving files in Windows by selecting them and using &#8216;Ctrl + X&#8217; and &#8216;Ctrl + V&#8217; to &#8230; <a href="http://www.technoholic.ca/cut-and-paste-files-in-mac-os-x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Mac OS X for 4 years now, but only now did I learn of this one.</p>
<p>If you&#8217;re used to moving files in Windows by selecting them and using &#8216;Ctrl + X&#8217; and &#8216;Ctrl + V&#8217; to cut and paste them from place to place, there&#8217;s actually a Mac equivalent command.</p>
<p>Use &#8216;Command + C&#8217;, then &#8216;Alt + Command + V&#8217;. If only someone could have told me about that one years ago.</p>
<img src="http://www.technoholic.ca/?ak_action=api_record_view&id=252&type=feed" alt="" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.technoholic.ca%2Fcut-and-paste-files-in-mac-os-x%2F&amp;title=Cut%20and%20Paste%20Files%20in%20Mac%20OS%20X" id="wpa2a_2"><img src="http://www.technoholic.ca/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.technoholic.ca/cut-and-paste-files-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal 6 page.tpl.php template based on path</title>
		<link>http://www.technoholic.ca/drupal-6-page-tpl-php-template-based-on-path/</link>
		<comments>http://www.technoholic.ca/drupal-6-page-tpl-php-template-based-on-path/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 17:28:28 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.technoholic.ca/?p=245</guid>
		<description><![CDATA[Use custom page.tpl.php files based on the URL path alias of your pages to create custom template files. Add the following code to your theme&#8217;s template.php file. function phptemplate_engine_preprocess_page(&#38;$variables) { $alias = drupal_get_path_alias($_GET['q']); if ($alias != $_GET['q']) { $template_filename = &#8230; <a href="http://www.technoholic.ca/drupal-6-page-tpl-php-template-based-on-path/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Use custom page.tpl.php files based on the URL path alias of your pages to create custom template files. Add the following code to your theme&#8217;s template.php file.</p>
<p><code>function phptemplate_engine_preprocess_page(&amp;$variables) {<br />
$alias = drupal_get_path_alias($_GET['q']);<br />
if ($alias != $_GET['q']) {<br />
$template_filename = 'page';<br />
foreach (explode('/', $alias) as $path_part) {<br />
$template_filename = $template_filename . '-' . $path_part;<br />
$variables['template_files'][] = $template_filename;<br />
}<br />
}<br />
}<br />
</code></p>
<p>Create a copy of page.tpl.php and rename it to page-YOURPATH.tpl.php and begin to make your own custom edits specific to that path. Now, if you&#8217;ve got a www.yoursite.com/blog path, then Drupal will pick up page-blog.tpl.php as the template for that page. The above code is for Drupal 6. You may need to clear Drupal&#8217;s cache after you&#8217;ve done this for it to take effect.</p>
<img src="http://www.technoholic.ca/?ak_action=api_record_view&id=245&type=feed" alt="" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.technoholic.ca%2Fdrupal-6-page-tpl-php-template-based-on-path%2F&amp;title=Drupal%206%20page.tpl.php%20template%20based%20on%20path" id="wpa2a_4"><img src="http://www.technoholic.ca/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.technoholic.ca/drupal-6-page-tpl-php-template-based-on-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix for Smart Playlists broken in iOS 5</title>
		<link>http://www.technoholic.ca/fix-for-smart-playlists-broken-in-ios-5/</link>
		<comments>http://www.technoholic.ca/fix-for-smart-playlists-broken-in-ios-5/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 21:59:42 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.technoholic.ca/?p=241</guid>
		<description><![CDATA[I use a Smart Playlist called &#8220;Recently Added&#8221; a lot on my iPhone. Whenever I add a new track, that&#8217;s my go to list. With the latest update to iOS 5, the list started to display in reverse order when &#8230; <a href="http://www.technoholic.ca/fix-for-smart-playlists-broken-in-ios-5/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-242" title="smart-playlist" src="http://www.technoholic.ca/wp-content/uploads/2011/10/smart-playlist.jpg" alt="" width="533" height="178" /></p>
<p>I use a Smart Playlist called &#8220;Recently Added&#8221; a lot on my iPhone. Whenever I add a new track, that&#8217;s my go to list. With the latest update to iOS 5, the list started to display in reverse order when synced onto the phone, which makes it impossible to play a series on newly added songs in sequence, since the newest is the last on the list.</p>
<p>Luckily, I found a solution. You need to edit the playlist by right clicking and selecting &#8220;Edit Smart Playlist&#8221;. Under &#8220;Match the following rule&#8221;, I had &#8220;Playlist&#8221; is &#8220;Music&#8221; previously. I editted the playlist and chose &#8220;Media Kind&#8221; rather than &#8220;Playlist&#8221;. After that, everything went back to normal after I synced it onto the phone. If you&#8217;re having the same problem, perhaps this will solve it for you too.</p>
<img src="http://www.technoholic.ca/?ak_action=api_record_view&id=241&type=feed" alt="" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.technoholic.ca%2Ffix-for-smart-playlists-broken-in-ios-5%2F&amp;title=Fix%20for%20Smart%20Playlists%20broken%20in%20iOS%205" id="wpa2a_6"><img src="http://www.technoholic.ca/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.technoholic.ca/fix-for-smart-playlists-broken-in-ios-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4S Pre-Orders Start 12:01am on Oct. 7!</title>
		<link>http://www.technoholic.ca/iphone-4s-pre-orders-start-1201am-on-oct-7/</link>
		<comments>http://www.technoholic.ca/iphone-4s-pre-orders-start-1201am-on-oct-7/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 02:31:58 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.technoholic.ca/?p=237</guid>
		<description><![CDATA[As much as people around the internet have been complaining that they were expecting more out of this iPhone release, I&#8217;m desperately in need of a new phone. Here in Canada, we&#8217;re stuck with 3 years contracts for carrier subsidized iPhones, so I&#8217;ve &#8230; <a href="http://www.technoholic.ca/iphone-4s-pre-orders-start-1201am-on-oct-7/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-238" title="iphone-4s" src="http://www.technoholic.ca/wp-content/uploads/2011/10/iphone-4s.jpg" alt="" width="600" height="513" /></p>
<p>As much as people around the internet have been complaining that they were expecting more out of this iPhone release, I&#8217;m desperately in need of a new phone. Here in Canada, we&#8217;re stuck with 3 years contracts for carrier subsidized iPhones, so I&#8217;ve been using an iPhone 3G for over 3 years now. The iPhone 4S is so much better than my current phone that I have no problem buying an iPhone 4S. I certainly can&#8217;t stand my 3G for another year. Besides, even if it looks like last year&#8217;s model, the internals and software are a huge step above the iPhone 4.</p>
<p>Naturally, I want to get my iPhone 4S as soon as possible. When I heard that pre-orders were starting this Friday, I needed to know when I could order mine to make sure I could get it right away. There doesn&#8217;t seem to be too much consensus on the exact time the pre-order will start on the 7th, but <a title="MacRumors iPhone 4S Pre-orders" href="http://www.macrumors.com/2011/10/04/iphone-4s-pre-orders-start-at-1201-am-pacific-on-friday/http://www.macrumors.com/2011/10/04/iphone-4s-pre-orders-start-at-1201-am-pacific-on-friday/" target="_blank">MacRumors</a> is reporting that Apple reps are telling people that it&#8217;ll be <strong>12:01am PST</strong>, so I&#8217;ll be frantically refreshing the page then to try to be one of the first online to order one. Wish me luck!</p>
<img src="http://www.technoholic.ca/?ak_action=api_record_view&id=237&type=feed" alt="" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.technoholic.ca%2Fiphone-4s-pre-orders-start-1201am-on-oct-7%2F&amp;title=iPhone%204S%20Pre-Orders%20Start%2012%3A01am%20on%20Oct.%207%21" id="wpa2a_8"><img src="http://www.technoholic.ca/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.technoholic.ca/iphone-4s-pre-orders-start-1201am-on-oct-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Shine animation effect</title>
		<link>http://www.technoholic.ca/jquery-shine-animation-effect/</link>
		<comments>http://www.technoholic.ca/jquery-shine-animation-effect/#comments</comments>
		<pubDate>Sat, 13 Nov 2010 18:16:39 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.technoholic.ca/?p=207</guid>
		<description><![CDATA[I&#8217;ve been diving deeper into jQuery lately, because a few clients have been requesting Flash-like functionality for their websites, and I&#8217;ve been avoiding Flash since before Steve Jobs made it cool to do so. I have to say, there is &#8230; <a href="http://www.technoholic.ca/jquery-shine-animation-effect/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been diving deeper into jQuery lately, because a few clients have been requesting Flash-like functionality for their websites, and I&#8217;ve been avoiding Flash since before Steve Jobs made it cool to do so. I have to say, there is more and more that jQuery can do that Flash used to only do. I recently came across one great example of this while researching button effects for a personal project (release coming soon). Addy from AddyOsmani.com posted this great article about a shine effect using jQuery called <a href="http://addyosmani.com/blog/shinetime/" target="_blank">&#8220;ShineTime – A Kick-Ass New jQuery &amp; CSS3 Gallery With Animated Shine Effects.&#8221;</a> The best part of the effect is that it&#8217;s so simple to implement and if you&#8217;re at all comfortable with jQuery and CSS, the method used with background-position opens up a world of possibility with other effects other than shine, which at least I wasn&#8217;t aware of. Check out <a href="http://www.addyosmani.com/resources/shinetime" target="_blank">his demo</a> to see the effect in action.</p>
<p>The entire thing really boils down to a few lines of jQuery Javascript code and some CSS. When a event happens, such as a hover or a page load, a shine PNG image is changed from a background position of off the screen to one that crosses to the other side off the screen. With a little modification, I made the effect display a few seconds after the page loads using setTimeout, rather than when you hover over an element, which produced a great little embellishment for a button or a logo when a visitors comes to the site. It&#8217;s a great little effect that you used to only be able to do with Flash.</p>
<img src="http://www.technoholic.ca/?ak_action=api_record_view&id=207&type=feed" alt="" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.technoholic.ca%2Fjquery-shine-animation-effect%2F&amp;title=jQuery%20Shine%20animation%20effect" id="wpa2a_10"><img src="http://www.technoholic.ca/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.technoholic.ca/jquery-shine-animation-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Partial Fix to your iGoogle for iPhone problems</title>
		<link>http://www.technoholic.ca/partial-fix-to-your-igoogle-for-iphone-problems/</link>
		<comments>http://www.technoholic.ca/partial-fix-to-your-igoogle-for-iphone-problems/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 21:29:20 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.technoholic.ca/?p=187</guid>
		<description><![CDATA[Evidently, I&#8217;m not the only person totally pissed off about Google&#8217;s move to get rid of the iPhone version of iGoogle. From the looks of things, Google has no intention of turning back the clock on this one. I guess &#8230; <a href="http://www.technoholic.ca/partial-fix-to-your-igoogle-for-iphone-problems/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Evidently, I&#8217;m not the only person totally pissed off about Google&#8217;s move to get rid of the iPhone version of iGoogle. From the looks of things, Google has no intention of turning back the clock on this one. I guess there still hasn&#8217;t been enough public outcry. I have, however, found a partial fix to your iGoogle for iPhone problem.</p>
<p>In mobileSafari, go to the following address:<br />
<strong>www.google.com/ig/i?source=mofe</strong></p>
<p>That should allow you to load the proper iPhone optimized version of iGoogle. The only problem is that all my descriptions come up with &#8220;Information is temporarily unavailable.&#8221; I&#8217;m not sure if it&#8217;s going to stay that way, or if you&#8217;ll have different results, but at least this is better than using the standard mobile version of iGoogle.</p>
<p>Hope that helps someone out there.</p>
<img src="http://www.technoholic.ca/?ak_action=api_record_view&id=187&type=feed" alt="" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.technoholic.ca%2Fpartial-fix-to-your-igoogle-for-iphone-problems%2F&amp;title=Partial%20Fix%20to%20your%20iGoogle%20for%20iPhone%20problems" id="wpa2a_12"><img src="http://www.technoholic.ca/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.technoholic.ca/partial-fix-to-your-igoogle-for-iphone-problems/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iGoogle for iPhone is gone: Google, you suck</title>
		<link>http://www.technoholic.ca/igoogle-for-iphone-is-gone-google-you-suck/</link>
		<comments>http://www.technoholic.ca/igoogle-for-iphone-is-gone-google-you-suck/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 09:25:56 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.technoholic.ca/?p=182</guid>
		<description><![CDATA[Well, it seems that what I thought was a revision to iGoogle for the iPhone was in fact just Google redirecting everyone to the standard iGoogle mobile version, dropping the iPhone version completely. I also don&#8217;t seem to be the &#8230; <a href="http://www.technoholic.ca/igoogle-for-iphone-is-gone-google-you-suck/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well, it seems that what <a href="http://www.technoholic.ca/google-releases-revised-iphone-version-of-igoogle/">I thought was a revision to iGoogle for the iPhone</a> was in fact just Google redirecting everyone to the standard iGoogle mobile version, dropping the iPhone version completely. I also don&#8217;t seem to be the only person completely pissed off about it and swearing Google&#8217;s name.</p>
<p>I found the following explanation from a Google employee on the <a href="http://www.google.com/support/forum/p/Web+Search/thread?tid=6ff62ce418848f69&amp;hl=en" target="_blank">Google support pages</a>, which had a lot of angry people sounding off:</p>
<blockquote><p>Hey everyone, I have an update for you. We&#8217;ve decided to direct iPhone users to the standard mobile iGoogle page. We&#8217;ve found that people hit iGoogle from lots of different phones &#8212; we want to ensure you&#8217;ll all see the same version.</p>
<p>Most or all of your existing content should translate over to the standard mobile version. The only exception would be any gadgets that aren&#8217;t compatible with most mobile browsers.</p></blockquote>
<p>Honestly, Google, if you&#8217;re listening, this was the stupidest decision I&#8217;ve seen you make yet. Your iPhone support had been so great and suddenly you fuck all of us iPhone users without even any notice. Not only am I pissed off because we&#8217;re losing some great functionality that I used on a daily basis, but also because it tarnishes my view of Google, which up until now, I believed could do no wrong. Well, you did wrong Google. You really fucked it up on this one. As I was discussing with someone on Twitter, more people need to get angry about this and they need to create some visible public outcry.</p>
<p>If you&#8217;re as pissed off as I am about this majorly bone-headed move my Google that basically tells us iPhone users that we don&#8217;t matter anymore, then go over to <a href="http://www.google.com/support/forum/p/Web+Search/thread?tid=6ff62ce418848f69&amp;hl=en" target="_blank">this discussion and tell Google how upset you are</a>.</p>
<p>P.S. Google, your new favicon also sucks!</p>
<p><strong>UPDATE: I found a partial fix, <a href="http://www.technoholic.ca/partial-fix-to-your-igoogle-for-iphone-problems/" target="_self">check it out</a>.</strong></p>
<img src="http://www.technoholic.ca/?ak_action=api_record_view&id=182&type=feed" alt="" /><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.technoholic.ca%2Figoogle-for-iphone-is-gone-google-you-suck%2F&amp;title=iGoogle%20for%20iPhone%20is%20gone%3A%20Google%2C%20you%20suck" id="wpa2a_14"><img src="http://www.technoholic.ca/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.technoholic.ca/igoogle-for-iphone-is-gone-google-you-suck/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

