<?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>Jeffikus &#187; Projects</title>
	<atom:link href="http://www.jeffikus.com/category/projects/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeffikus.com</link>
	<description>A Voice Crying in the WordPress Wilderness</description>
	<lastBuildDate>Wed, 08 Sep 2010 09:31:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>CodeIgniter Learning</title>
		<link>http://www.jeffikus.com/2010/08/16/codeigniter-learning/</link>
		<comments>http://www.jeffikus.com/2010/08/16/codeigniter-learning/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 08:02:05 +0000</pubDate>
		<dc:creator>jeffikus</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://www.jeffikus.com/?p=288</guid>
		<description><![CDATA[Something I found useful while brushing up on my PHP MVC knowledge was this book by Packt Publishing. It&#8217;s called CodeIgniter 1.7 and takes you through the fundamental concepts of MVC within the CodeIgniter framework including a chapter on basic CRUD functions. I&#8217;m a big fan of this framework, having worked on a custom MVC [...]]]></description>
			<content:encoded><![CDATA[<p>Something I found useful while brushing up on my PHP MVC knowledge was <a title="CodeIgniter 1.7" href="https://www.packtpub.com/improve-coding-productivity-with-codeigniter-1-7/book" target="_blank">this book</a> by Packt Publishing. It&#8217;s called CodeIgniter 1.7 and takes you through the fundamental concepts of MVC within the <a title="CodeIgniter" href="http://www.codeigniter.com" target="_blank">CodeIgniter</a> framework including a chapter on basic CRUD functions. <span id="more-288"></span>I&#8217;m a big fan of this framework, having worked on a custom MVC framework and CakePHP in my web app building days, and I find it a really great framework to keep my skills sharp while not being frustrated with a steep learning curve.</p>
<p>Check it out: CodeIgniter 1.7 &#8211; <a title="CodeIgniter 1.7" href="https://www.packtpub.com/improve-coding-productivity-with-codeigniter-1-7/book" target="_blank">https://www.packtpub.com/improve-coding-productivity-with-codeigniter-1-7/book</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffikus.com/2010/08/16/codeigniter-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Keyboard Input</title>
		<link>http://www.jeffikus.com/2010/07/06/jquery-keyboard-input/</link>
		<comments>http://www.jeffikus.com/2010/07/06/jquery-keyboard-input/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 10:38:58 +0000</pubDate>
		<dc:creator>jeffikus</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.jeffikus.com/?p=247</guid>
		<description><![CDATA[I was working on some jQuery today in a WordPress theme I&#8217;m working on, and I wanted to simulate a keyboard input so that I could force a jQuery plugin to work in the way I wanted it to without hacking its core.  Here&#8217;s how you do it: First figure out the e.which code for [...]]]></description>
			<content:encoded><![CDATA[<p>I was working on some <a title="jQuery" href="http://jquery.com/" target="_blank">jQuery</a> today in a <a title="WordPress" href="http://wordpress.org" target="_blank">WordPress</a> theme I&#8217;m working on, and I wanted to simulate a keyboard input so that I could force a jQuery plugin to work in the way I wanted it to <strong>without hacking its core</strong>.  Here&#8217;s how you do it<span id="more-247"></span>:<br />
<!--JavaScript Tag // Tag for network 972: Afrigator // Website: http://jeffikus.com/ // Page: ROS // Placement: ROS-top-468 x 60 (2791965) // created at: Jul 20, 2010 4:46:08 PM--><br />
<script language="javascript"><!--
document.write('<scr'+'ipt language="javascript1.1" src="http://adserver.adtech.de/addyn/3.0/972/2791965/0/1/ADTECH;loc=100;target=_blank;grp=[group];misc='+new Date().getTime()+'"></scri'+'pt>');
//-->
</script><noscript><a href="http://adserver.adtech.de/adlink/3.0/972/2791965/0/1/ADTECH;loc=300;grp=[group]" target="_blank"><img src="http://adserver.adtech.de/adserv/3.0/972/2791965/0/1/ADTECH;loc=300;grp=[group]" border="0" width="468" height="60"></a></noscript><br />
<!-- End of JavaScript Tag --></p>
<ol>
<li>First figure out the <strong><a title="jQuery e.which" href="http://api.jquery.com/event.which/" target="_blank">e.which</a></strong> code for what key you want to &#8216;fake&#8217; being pushed using <strong><a title="jQuery Keydown Event" href="http://api.jquery.com/keydown/" target="_blank">this tool</a></strong>.</li>
<li>Then create the jQuery (in your <strong><a title="jQuery Tutorial" href="http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery" target="_blank">document ready</a></strong> or wherever you are going to use it) to simulate the keydown <strong><a title="jQuery Events" href="http://api.jquery.com/category/events/" target="_blank">event</a></strong>
<pre>	//create event var
	e = jQuery.Event("keydown");
	//set which key is being pressed
	e.which = 40 ;
	//trigger the event
	jQuery("#my-element-id").trigger(e);
</pre>
</li>
</ol>
<p>Beautiful isn&#8217;t it <img src='http://www.jeffikus.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffikus.com/2010/07/06/jquery-keyboard-input/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FlagTag WordPress Plugin</title>
		<link>http://www.jeffikus.com/2010/06/03/flagtag-wordpress-plugi/</link>
		<comments>http://www.jeffikus.com/2010/06/03/flagtag-wordpress-plugi/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 12:54:42 +0000</pubDate>
		<dc:creator>jeffikus</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[world cup]]></category>

		<guid isPermaLink="false">http://www.jeffikus.com/?p=242</guid>
		<description><![CDATA[Seeing as how I&#8217;m big on getting behind your sports team, I saw an initiative by White Wall Web (Disclaimer: I used to work for them) to get the internet into the World Cup Feva by adding what they call a FlagTag to your site.  I think it&#8217;s fantastic, see my FlagTag on the right [...]]]></description>
			<content:encoded><![CDATA[<p>Seeing as how I&#8217;m big on getting behind your sports team, I saw an  initiative by <a title="White Wall Web" href="http://www.whitewallweb.com/" target="_blank">White Wall Web</a> (Disclaimer: I used to work for them) to get the internet into the  World Cup Feva by adding what they call a <a title="FlagTag" href="http://www.flagtag.co.za/" target="_blank">FlagTag</a> to your site.  I think it&#8217;s fantastic, see  my FlagTag on the right of the site.  But what most people (who cant  code) don&#8217;t know how to do is add the code to their website.  So I  thought, let&#8217;s use my <a title="WordPress" href="http://wordpress.org/" target="_blank">WordPress</a> experience  and slap together a plugin.  <strong>No code editing</strong>, just a simple  download and upload, activate the plugin, and choose your flag! It&#8217;s  that easy.</p>
<p><strong>Download it <a title="FlagTag WordPress Plugin" href="http://www.jeffikus.com/downloads/flagtag-wordpress-plugin/">here</a> or <a title="FlagTag" href="http://www.flagtag.co.za">here</a>.</strong><span id="more-242"></span><br />
<!--JavaScript Tag // Tag for network 972: Afrigator // Website: http://jeffikus.com/ // Page: ROS // Placement: ROS-top-468 x 60 (2791965) // created at: Jul 20, 2010 4:46:08 PM--><br />
<script>// <![CDATA[
document.write('<scr'+'ipt language="javascript1.1" src="http://adserver.adtech.de/addyn/3.0/972/2791965/0/1/ADTECH;loc=100;target=_blank;grp=[group];misc='+new Date().getTime()+'"></scri'+'pt>');
// ]]&gt;</script><noscript><a href="http://adserver.adtech.de/adlink/3.0/972/2791965/0/1/ADTECH;loc=300;grp=[group]" target="_blank"><img src="http://adserver.adtech.de/adserv/3.0/972/2791965/0/1/ADTECH;loc=300;grp=[group]" border="0" width="468" height="60"></a></noscript><br />
<!-- End of JavaScript Tag --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffikus.com/2010/06/03/flagtag-wordpress-plugi/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Filter your WordPress RSS Feed</title>
		<link>http://www.jeffikus.com/2009/11/02/filter-your-wordpress-rss-feed/</link>
		<comments>http://www.jeffikus.com/2009/11/02/filter-your-wordpress-rss-feed/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 11:14:48 +0000</pubDate>
		<dc:creator>jeffikus</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.jeffikus.com/?p=138</guid>
		<description><![CDATA[I was working on a project last week and needed to use the categories in WordPress to separate content, but also needed to provide an RSS Feed of only one of the 2 categories.   So I did a quick Google and found this :]]></description>
			<content:encoded><![CDATA[<p>I was working on a project last week and needed to use the categories in WordPress to seperate content, but also needed to provide an RSS Feed of only one of the 2 categories.   So I did a quick <a href="http://www.google.com">Google</a> &#8211; because I figured someone else has probably done this before &#8211; and sure enough I found <a href="http://zeo.unic.net.my/exclude-category-in-wordpress/">this</a> :</p>
<p><span id="more-138"></span> </p>
<p><code>function nameOfFunction($query) {<br />
	if ($query->is_feed) {<br />
		$query->set('cat','-1');<br />
	}<br />
return $query;<br />
}<br />
add_filter('pre_get_posts','nameOfFunction');</code></p>
<p><!--JavaScript Tag // Tag for network 972: Afrigator // Website: http://jeffikus.com/ // Page: ROS // Placement: ROS-top-468 x 60 (2791965) // created at: Jul 20, 2010 4:46:08 PM--><br />
<script language="javascript"><!--
document.write('<scr'+'ipt language="javascript1.1" src="http://adserver.adtech.de/addyn/3.0/972/2791965/0/1/ADTECH;loc=100;target=_blank;grp=[group];misc='+new Date().getTime()+'"></scri'+'pt>');
//-->
</script><noscript><a href="http://adserver.adtech.de/adlink/3.0/972/2791965/0/1/ADTECH;loc=300;grp=[group]" target="_blank"><img src="http://adserver.adtech.de/adserv/3.0/972/2791965/0/1/ADTECH;loc=300;grp=[group]" border="0" width="468" height="60"></a></noscript><br />
<!-- End of JavaScript Tag --></p>
<p><strong>Note </strong>: the -1 is the category id, I didnt try it but I suppose you could change the <a href="http://codex.wordpress.org/Template_Tags/query_posts#Category_Parameters">category parameters</a> where it says <em>cat </em>to something like <em>category_name</em> and still get the same result.</p>
<p>You could also just change the <em>is_feed</em> to some of the other <a href="http://codex.wordpress.org/Conditional_Tags">conditional tags</a> that <a href="http://wordpress.org">WordPress</a> has for a different effect.</p>
<p>Thanks to <a href="http://twitter.com/munyah">Lucas</a> for suggesting I share this!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffikus.com/2009/11/02/filter-your-wordpress-rss-feed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress JQuery Accordion</title>
		<link>http://www.jeffikus.com/2009/10/17/wordpress-jquery-accordion/</link>
		<comments>http://www.jeffikus.com/2009/10/17/wordpress-jquery-accordion/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 21:11:23 +0000</pubDate>
		<dc:creator>jeffikus</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[accordian]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.jeffikus.com/?p=81</guid>
		<description><![CDATA[So I&#8217;ve been tinkering with JQuery this weekend and have built a function for WordPress to display a JQuery accordion of a certain number of posts from a certain category &#8211; Title and Excerpt details. It also can be used across both pages and posts using a shortcode. Update &#8211; I have built a WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been tinkering with <a href="http://jquery.com/">JQuery </a>this weekend and have built a function for <a href="http://wordpress.org">WordPress </a>to display a JQuery accordion of a certain number of posts from a certain category &#8211; Title and Excerpt details.<br />
It also can be used across both pages and posts using a shortcode.<br />
<strong>Update</strong> &#8211; I have built a WordPress plugin to run this function and shortcode, and have created <a href="http://www.jeffikus.com/downloads/wordpress-jquery-accordion-plugin/">its own page here for download</a> and instructions.<br />
<!--JavaScript Tag // Tag for network 972: Afrigator // Website: http://jeffikus.com/ // Page: ROS // Placement: ROS-top-468 x 60 (2791965) // created at: Jul 20, 2010 4:46:08 PM--><br />
<script language="javascript"><!--
document.write('<scr'+'ipt language="javascript1.1" src="http://adserver.adtech.de/addyn/3.0/972/2791965/0/1/ADTECH;loc=100;target=_blank;grp=[group];misc='+new Date().getTime()+'"></scri'+'pt>');
//-->
</script><noscript><a href="http://adserver.adtech.de/adlink/3.0/972/2791965/0/1/ADTECH;loc=300;grp=[group]" target="_blank"><img src="http://adserver.adtech.de/adserv/3.0/972/2791965/0/1/ADTECH;loc=300;grp=[group]" border="0" width="468" height="60"></a></noscript><br />
<!-- End of JavaScript Tag --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffikus.com/2009/10/17/wordpress-jquery-accordion/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>My Projects</title>
		<link>http://www.jeffikus.com/2009/10/05/my-projects/</link>
		<comments>http://www.jeffikus.com/2009/10/05/my-projects/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 19:49:10 +0000</pubDate>
		<dc:creator>jeffikus</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Ministry]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://www.jeffikus.com/?p=31</guid>
		<description><![CDATA[Just thought I&#8217;d add a quick post just to keep the content rolling while try make my domain mapping with WordPress Mu article a little easier to read. So I thought I&#8217;d tell you about some of the stuff I&#8217;ve been working on&#8230; Firstly, I&#8217;ve made several sites, unfortunately some of them I can&#8217;t share [...]]]></description>
			<content:encoded><![CDATA[<p>Just thought I&#8217;d add a quick post just to keep the content rolling while try make my domain mapping with <a href="http://wordpress.org">WordPress </a>Mu article a little easier to read.  So I thought I&#8217;d tell you about some of the stuff I&#8217;ve been working on&#8230;<br />
<span id="more-31"></span><br />
Firstly, I&#8217;ve made several sites, unfortunately some of them I can&#8217;t share due to certain conflicts of interest/confidentiality rules, but here are some of my currently active projects:</p>
<p><a href="http://www.capegospel.com"><strong>CapeGospel.com</strong></a> &#8211; this one is quite a lot of fun for me because it is a <a href="http://www.joomla.org">Joomla </a>site and I get to try out several plugins I&#8217;ve been wanting to try for ages.  I built this site for Elohim Ministries and <a href="http://www.capegospel.com/Listings/speakers/preston-jongbloed.html">Preston Jongbloed</a>, and pretty soon it will be undergoing to pretty major changes (great ones &#8211; check back soon for the update).  But the thing about it I&#8217;m most proud of, technically, is that it is my first fully converted theme from WordPress to Joomla.  I used <a href="http://www.studiopress.com/themes/lifestyle">Revolution Lifestyle</a> (now a commercial WordPress theme by <a href="http://www.studiopress.com/">StudioPress</a>) and converted it to Joomla. I use the WordPress version on a regular basis and highly recommend it.</p>
<p><a href="http://www.jeffikus.com"><strong>Jeffikus.com</strong></a> &#8211; I finally decided to launch after about 2 years of procrastination.  I ended up choosing WordPress because of the sheer joy I get writing code for it.  I gotta say, of all the CMS/frameworks I&#8217;ve worked with, this one is by far the most enjoyable and most powerful (in my opinion).</p>
<p><strong>Custom vs CMS Challenge</strong> &#8211; This one is coming soon.  I will be taking on 2 of my workmates <a href="http://twitter.com/munyah">@munyah</a> and <a href="http://twitter.com/hlashbrooke">@hlashbrooke</a> in a challenge&#8230;it&#8217;s Joomla vs WordPress vs Custom&#8230;watch this space and them, they have great tips on Joomla and web development in general.</p>
<p><strong>Music Venture</strong> &#8211; All the groundwork has been made for this venture and expect a launch before year end.  This is real team effort from several of my best mates and I, and is one I&#8217;m really looking forward to.</p>
<p>There are many many more in development ideas/prototypes &#8211; too many to mention right now &#8211; so just watch this space for some great addition to the World Wide Web! Oh yes&#8230;and I&#8217;m busy learning a little bit <a href="http://www.symfony-project.org/">Symfony </a>and <a href="http://cakephp.org/">CakePHP</a>&#8230;just to keep my PHP and MVC skills sharp&#8230;.</p>
<p><a href="http://www.jeffikus.com/wp-content/uploads/2009/09/Jeffikus-Signature.png"><img class="alignnone size-full wp-image-16" title="Jeffikus Signature" src="http://www.jeffikus.com/wp-content/uploads/2009/09/Jeffikus-Signature.png" alt="Jeffikus Signature" width="130" height="70" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffikus.com/2009/10/05/my-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
