<?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>IF IT IS CREATIVE</title>
	<atom:link href="http://ifitiscreative.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ifitiscreative.com</link>
	<description>DESIGN - PHOTOGRAPHY - TECHNOLOGY</description>
	<lastBuildDate>Tue, 24 Apr 2012 03:27:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Biscus Bloom</title>
		<link>http://ifitiscreative.com/2012/04/24/biscus-bloom/</link>
		<comments>http://ifitiscreative.com/2012/04/24/biscus-bloom/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 03:21:01 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[Artistic]]></category>

		<guid isPermaLink="false">http://ifitiscreative.com/?p=820</guid>
		<description><![CDATA[Biscus Bloom &#8211; another Piece done in Corel Paint oil bristle.]]></description>
			<content:encoded><![CDATA[<p>Biscus Bloom &#8211; another Piece done in Corel Paint oil bristle.</p>
<div class="figure"><img class="alignnone size-medium wp-image-821 colorbox-820" title="biscus-bloom" src="http://ifitiscreative.com/wp-content/uploads/2012/04/biscus-bloom-600x397.jpg" alt="" width="600" height="397" /></div>
]]></content:encoded>
			<wfw:commentRss>http://ifitiscreative.com/2012/04/24/biscus-bloom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Biscus Paint</title>
		<link>http://ifitiscreative.com/2012/04/24/biscus-flower/</link>
		<comments>http://ifitiscreative.com/2012/04/24/biscus-flower/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 02:59:35 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[Artistic]]></category>

		<guid isPermaLink="false">http://ifitiscreative.com/?p=815</guid>
		<description><![CDATA[Biscus Flower &#8211; Hibiscus flower digital oil in Corel Painter 12, Wacom Intuos 5 (small) original shot with a Nikon D7000]]></description>
			<content:encoded><![CDATA[<p>Biscus Flower &#8211; Hibiscus flower digital oil in Corel Painter 12, Wacom Intuos 5 (small) original shot with a Nikon D7000</p>
<div class="figure"><img class="alignnone size-medium wp-image-816 colorbox-815" title="biscus-flower" src="http://ifitiscreative.com/wp-content/uploads/2012/04/biscus-flower-600x905.jpg" alt="" width="600" height="905" /></div>
]]></content:encoded>
			<wfw:commentRss>http://ifitiscreative.com/2012/04/24/biscus-flower/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Breaking The WordPress &#8220;Lock In Effect&#8221;</title>
		<link>http://ifitiscreative.com/2012/02/06/breaking-the-wordpress-lock-in-effect/</link>
		<comments>http://ifitiscreative.com/2012/02/06/breaking-the-wordpress-lock-in-effect/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 03:31:48 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://ifitiscreative.com/?p=797</guid>
		<description><![CDATA[Kovshenin.com, recent post on the theme lock in effect, made me take a look at my own in-house theme process, to see if I was guilty of the &#8220;Lock In&#8221;. GUILTY? Sorry, but I can&#8217;t give you a yes or no answer. The truth is after my first couple of themes I got really tired [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://kovshenin.com/2012/01/about-the-lock-in-effect-in-wordpress-themes-and-plugins-3750/" target="_blank">Kovshenin.com</a>, recent post on the theme lock in effect, made me take a look at my own in-house theme process, to see if I was guilty of the &#8220;Lock In&#8221;.</p>
<h3>GUILTY?</h3>
<p>Sorry, but I can&#8217;t give you a yes or no answer. The truth is after my first couple of themes I got really tired of the unecessary code repetition, and l went to a plugin based solution.</p>
<p>While the plugin solution did help, it did not completely break my lock in problem.</p>
<h3>THE PROBLEM!</h3>
<p>The &#8220;lock in effect&#8221; in WordPress is unique; unlike those that occur between competing vendors that are world&#8217;s apart as in the Gimp &#8211; Photoshop example . WordPress themes and plugins all have access to the same code base and data core, so it should be pretty simple to reuse or access any code or data.</p>
<p>I looked at my code again and I realised the problem, I was mixing my layout, code and data together, a pattern I had adopted from WordPress very early in my development cycle. The practice made it impossible to access and use any code or data in one theme without breaking the other unless I rewrote the code over and over.</p>
<h3>WHATS THE SOLUTION</h3>
<p>Custom Post Types, options, data etc, are all part of the WordPress core, so unless it&#8217;s deleted on theme de-activation it&#8217;s usually there to access. To believe that your theme will automatically be able to access it on installation is wrong. Even when using the settings API, accessing and updating options stored in multidimensional arrays are not out-of-the-box functions yet.</p>
<p>I have started separating code/layout and data to make them easier to access by my other themes. The adoption of a MVC like pattern has helped a lot in this cause.</p>
<p>The get<em>template</em>part() function is definitely a step in the right direction but there must be greater initiative by community leaders to move WordPress to better Object Oriented design patterns to really solve the problem. In the meantime the rest of us can do a little more to brush up on the PHP skills, WordPress is running with the big boys now and it is no longer OK to contimue copying and pasting code in to apps.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://ifitiscreative.com/2012/02/06/breaking-the-wordpress-lock-in-effect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AL Manager : WordPress Plugin</title>
		<link>http://ifitiscreative.com/2012/02/02/al-manager-wordpress-plugin/</link>
		<comments>http://ifitiscreative.com/2012/02/02/al-manager-wordpress-plugin/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 16:36:52 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://ifitiscreative.com/?p=762</guid>
		<description><![CDATA[A simple PHP( class / interface)  auto-load manager for WordPress, built with PHP-Autoload-Manager by http://bashar.alfallouji.com/php-autoload-manager/. AL-Manager allows you to easily extend the power of WordPress using Object Oriented PHP, classes and libraries. Now you can easily add some of the great PHP classes available on the web to you projects. I built a class after reading post [...]]]></description>
			<content:encoded><![CDATA[<p><a href="https://github.com/shawnsandy/AL-MANAGER" target="_blank"><img class="alignnone size-medium wp-image-763 colorbox-762" title="Screenshot_108" src="http://ifitiscreative.com/wp-content/uploads/2012/02/Screenshot_108-600x272.jpg" alt="" width="600" height="272" /></a><br />
A simple PHP( class / interface)  auto-load manager for WordPress, built with PHP-Autoload-Manager by http://bashar.alfallouji.com/php-autoload-manager/. AL-Manager allows you to easily extend the power of WordPress using Object Oriented PHP, classes and libraries. Now you can easily add some of the great PHP classes available on the web to you projects.</p>
<p>I built a class after reading post on the web about optimizing WordPress plugins and themes, as proof of concept to demonstrate the possibility of adding and extending WP by leveraging &#8220;OO PHP&#8221;, making it easier to reuse code and reduce a lot of the code repetition that can sometimes be found in WP.</p>
<p>The first release is really simple and includes a Paypal and Facebook  php library, I plan to add more soon. It uses the WP filter function (alm_filter) to add class paths to the auto-loader.</p>
<p>Download the class : <a href="https://github.com/shawnsandy/AL-MANAGER">https://github.com/shawnsandy/AL-MANAGER</a></p>
<p>To use, install/upload and activate the plugin, use WP add_filter() function (alm_filter) to add your class folder check the sample code below.</p>
<pre class="brush: php; gutter: true; first-line: 1">/**
 * --- AL-Manager -----
 */

//check if ALM is loaded and add filter
if(class_exists('al_manager')) add_filter('alm_filter', 'al_paths');

//sample fliter adds 'inc' dir to the autoload paths
function al_paths($folders) {
    $p = array(your_DIR . '/inc/');
    $folders = array_merge($p, $folders);
    return $folders;
}

//use any class in the folder no need to add includes
$class = new Your_class_name();
$class = new Another_class_name();

//end********************</pre>
<blockquote>
<p class="brush: php; gutter: true; first-line: 1">A simple PHP classes / interface auto-load manager for wordpress, built with PHP-Autoload-Manager by <a href="http://bashar.alfallouji.com/php-autoload-manager/">http://bashar.alfallouji.com/php-autoload-manager/</a>. AL-Manager allows you to easily extend the power of WordPress using Object Oriented PHP, classes and libraries. =Developer Info = The AutoLoad Manager is a generic autoloader that can be used with any PHP framework or library. Using the PHP tokenizer mechanism, it will parse folder(s) and discover the different classes and interfaces defined. The big advantage of using this autoloadManager is that it will allow you to implement whatever naming rules you want and may have mutliple classes in one file (if you want to have a such feature). So basically, you don’t have anymore to implement some complex naming rules between the filename and the classname. You may organize the way you want your API (may have as many subfolders as you want, you may have multiple API folders, etc.). (<a href="http://bashar.alfallouji.com/php-autoload-manager/">http://bashar.alfallouji.com/php-autoload-manager/</a>).&#8221;</p>
</blockquote>
<p class="brush: php; gutter: true; first-line: 1">More info will be available soon, stay tuned!</p>
<p class="brush: php; gutter: true; first-line: 1">
]]></content:encoded>
			<wfw:commentRss>http://ifitiscreative.com/2012/02/02/al-manager-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyundai &#8211; Black &amp; White</title>
		<link>http://ifitiscreative.com/2012/01/17/hyundai-black-white/</link>
		<comments>http://ifitiscreative.com/2012/01/17/hyundai-black-white/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 00:02:32 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Lightroom]]></category>

		<guid isPermaLink="false">http://ifitiscreative.com/?p=753</guid>
		<description><![CDATA[Hyundai Black &#38; White &#8211; Re-Edit of the Hyundai posted recently.]]></description>
			<content:encoded><![CDATA[<div class="figure"><a href="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7988-309-310.jpg"><img class="alignnone size-medium wp-image-754 colorbox-753" title="_DSC7988-309-310" src="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7988-309-310-600x397.jpg" alt="" width="600" height="397" /></a></div>
<p>Hyundai Black &amp; White &#8211; Re-Edit of the Hyundai posted recently.</p>
]]></content:encoded>
			<wfw:commentRss>http://ifitiscreative.com/2012/01/17/hyundai-black-white/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyundai &#8211; Lightroom 4 Before and After</title>
		<link>http://ifitiscreative.com/2012/01/15/hyundai-lightroom-4-before-and-after/</link>
		<comments>http://ifitiscreative.com/2012/01/15/hyundai-lightroom-4-before-and-after/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 05:46:50 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://ifitiscreative.com/?p=722</guid>
		<description><![CDATA[Grabbed this shot at the grocery parking lot, the lines on the Hyundai really give the car a sleek amazing look I have been wanting to shoot one. Post-processing was done in the new Lightroom 4 Beta, the controls in the development module have been seriously improved, check the before and after. I still need Photoshop to [...]]]></description>
			<content:encoded><![CDATA[<div class="figure"><a href="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7986-4.jpg"><img class="alignnone size-medium wp-image-724 colorbox-722" title="_DSC7986-4" src="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7986-4-600x397.jpg" alt="" width="600" height="397" /></a></div>
<p>Grabbed this shot at the grocery parking lot, the lines on the Hyundai really give the car a sleek amazing look I have been wanting to shoot one. Post-processing was done in the new Lightroom 4 Beta, the controls in the development module have been seriously improved, check the before and after.</p>
<p><span id="more-722"></span></p>
<div class="figure"><a href="http://ifitiscreative.com/wp-content/uploads/2012/01/hundayi.png"><img class="alignnone size-medium wp-image-723 colorbox-722" title="hundayi" src="http://ifitiscreative.com/wp-content/uploads/2012/01/hundayi-600x327.png" alt="" width="600" height="327" /></a></div>
<p>I still need Photoshop to remove the car in the and stop sign in the background behind the car trust me that&#8217;s a lot less Photoshop when compared to my LR3 Workflow!</p>
<p>Another shot without the car in the background, I still prefer the composition of the first one.</p>
<div class="figure"><a href="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7988.jpg"><img class="alignnone size-medium wp-image-740 colorbox-722" title="_DSC7988" src="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7988-600x397.jpg" alt="" width="600" height="397" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://ifitiscreative.com/2012/01/15/hyundai-lightroom-4-before-and-after/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nikon D4 &#8211; Man Would I Love To!</title>
		<link>http://ifitiscreative.com/2012/01/12/nikon-d4-man-would-i-love-to/</link>
		<comments>http://ifitiscreative.com/2012/01/12/nikon-d4-man-would-i-love-to/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 17:47:10 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://ifitiscreative.com/?p=646</guid>
		<description><![CDATA[Man would I love to own this baby, the new Nikon D4, the specs on the are crazy, I can practically feel my mouth watering, oh baabeeee! LOL. Look I hear the talk about the camera does not matter too, but to be frank I don&#8217;t really give a F**K, cause; #1 Concept has nothing [...]]]></description>
			<content:encoded><![CDATA[<div class="figure"><a title="Nikon D4" href="http://www.nikonusa.com/Nikon-Products/Product/Digital-SLR-Cameras/25482/D4.html" target="_blank"><img class="alignnone size-medium wp-image-648 colorbox-646" title="Screenshot_102" src="http://ifitiscreative.com/wp-content/uploads/2012/01/Screenshot_102-600x389.jpg" alt="" width="600" height="389" /></a></div>
<p>Man would I love to own this baby, the new Nikon D4, the specs on the are crazy, I can practically feel my mouth watering, oh baabeeee! LOL.</p>
<p>Look I hear the talk about the camera does not matter too, but to be frank I don&#8217;t really give a F**K, cause;</p>
<blockquote><p>#1 Concept has nothing to do with gear never has never will, the debate is pointless and it&#8217;s time it stopped, if you don&#8217;t wan&#8217;t too I have no problems getting mine!</p>
<p>#2 The guys who speak the loudest, all got the best gear in their bags!</p>
<p>#3 You are lying to yourself if you believe you 2k camera is a good as this baby, no freaking way in hell!</p></blockquote>
<p>I know you going to compare Jeremy Cowart or JoeyL and their years of experience, to me a regular joe, but pit them against each other and I bet someone is bound to shout advantage.</p>
<p>Seriously, the advantages of owning better gear is what I focus on, what will this camera, light meter (oh I need one of those too) etc add to my work flow, how does it make my job easier, faster and by extension better at it, these are the questions you need to ask yourself when buying more gear. The truth is cheap gear will not make you creative either!</p>
<p>I plan to follow this post up with one on some of the reason I plan to upgrade my gear, so stay tuned!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://ifitiscreative.com/2012/01/12/nikon-d4-man-would-i-love-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lightroom 5 Beta, Impressive!</title>
		<link>http://ifitiscreative.com/2012/01/12/lightroom-5-beta-impressive/</link>
		<comments>http://ifitiscreative.com/2012/01/12/lightroom-5-beta-impressive/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 13:33:13 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Lightroom]]></category>

		<guid isPermaLink="false">http://ifitiscreative.com/?p=624</guid>
		<description><![CDATA[I have been playing with the Adobe&#8217;s new  Lightroom 4 ( beta ) and I must say I am really impressed with the power of the processing module, both of these test photos were processed in the beta and I&#8217;m telling I would have had to leave Lightroom to Photoshop to get the same results. [...]]]></description>
			<content:encoded><![CDATA[<p>I have been playing with the Adobe&#8217;s new  Lightroom 4 ( beta ) and I must say I am really impressed with the power of the processing module, both of these test photos were processed in the beta and I&#8217;m telling I would have had to leave Lightroom to Photoshop to get the same results. The new controls in the develop module are amazing, I am truly impressed and I have not even used the book module.</p>
<div class="figure"><a href="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7944.jpg"><img class="alignnone size-medium wp-image-627 colorbox-624" title="_DSC7944" src="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7944-600x906.jpg" alt="" width="600" height="906" /></a></div>
<div class="figure"><a href="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7944.jpg"><span id="more-624"></span></a></p>
<p><a href="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7952.jpg"><img class="alignnone size-medium wp-image-628 colorbox-624" title="_DSC7952" src="http://ifitiscreative.com/wp-content/uploads/2012/01/DSC7952-600x397.jpg" alt="" width="600" height="397" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://ifitiscreative.com/2012/01/12/lightroom-5-beta-impressive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shawn Sandy</title>
		<link>http://ifitiscreative.com/2012/01/11/shawn-sandy-2/</link>
		<comments>http://ifitiscreative.com/2012/01/11/shawn-sandy-2/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 11:14:05 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://ifitiscreative.com/?p=620</guid>
		<description><![CDATA[WordPress: Themes need to be designed to Function and not just with functions!]]></description>
			<content:encoded><![CDATA[<p>WordPress: Themes need to be designed to Function and not just with functions!</p>
]]></content:encoded>
			<wfw:commentRss>http://ifitiscreative.com/2012/01/11/shawn-sandy-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Optimize plugin and theme loading!</title>
		<link>http://ifitiscreative.com/2012/01/10/optimize-plugin-and-theme-loading/</link>
		<comments>http://ifitiscreative.com/2012/01/10/optimize-plugin-and-theme-loading/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 16:03:53 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://ifitiscreative.com/?p=606</guid>
		<description><![CDATA[I have been listening to a lot of the discussion(s) going on across the inter-webs surrounding WordPress plugin and theme optimization, none of them has been as on the ball as Dev4Press post on plugin optimization (How to optimize plugin loading) by Milan Petrovic. After testing 35 plugins and how they affect WordPress in terms of loading and resource usage (Measuring impact [...]]]></description>
			<content:encoded><![CDATA[<div class="figure"><a href="http://ifitiscreative.com/wp-content/uploads/2012/01/Screenshot_96.jpg"><img class="alignnone size-medium wp-image-611 colorbox-606" title="Screenshot_96" src="http://ifitiscreative.com/wp-content/uploads/2012/01/Screenshot_96-600x434.jpg" alt="" width="600" height="434" /></a></div>
<p>I have been listening to a lot of the discussion(s) going on across the inter-webs surrounding WordPress plugin and theme optimization, none of them has been as on the ball as Dev4Press post on plugin optimization (<a title="Dev4Press" href="http://www.dev4press.com/2011/tutorials/wordpress/practical/how-to-optimize-plugin-loading/" target="_blank">How to optimize plugin loading</a>) by Milan Petrovic.</p>
<p>After testing 35 plugins and how they affect WordPress in terms of loading and resource usage (<a href="http://www.dev4press.com/2011/blog/benchmark/measuring-impact-of-plugins-on-wordpress-loading/" target="_blank">Measuring impact of pluginson WordPress  loading</a> ) , revealing that plugins do affect performance and overhead, some more than others. They followed up with a great post on how to optimize plugin loading, while geared at plugin developers it&#8217;s a great read for theme developers and anyone working in WordPress in general.</p>
<p>After using Frameworks like Zend, Kohana and Codeigniter, I think it&#8217;s time for WP developers to embrace a more object oriented php approach to plugins and themes. Funny thing is I recently commented on a post by <cite><a href="http://kovshenin.com/" rel="external nofollow" target="_blank">Konstantin</a></cite> about a similar subject; <a href="http://kovshenin.com/2012/01/plugins-vs-without-a-plugin-3745/" target="_blank">http://kovshenin.com/2012/01/plugins-vs-without-a-plugin-3745/</a>, it something that really needs to be explored.</p>
]]></content:encoded>
			<wfw:commentRss>http://ifitiscreative.com/2012/01/10/optimize-plugin-and-theme-loading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

