<?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>Joe Motacek</title>
	<atom:link href="http://joemotacek.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://joemotacek.com</link>
	<description></description>
	<lastBuildDate>Fri, 27 Apr 2012 16:30:47 +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>Joomla 2.5 Extension Development – Developing the View</title>
		<link>http://joemotacek.com/?p=540</link>
		<comments>http://joemotacek.com/?p=540#comments</comments>
		<pubDate>Wed, 18 Apr 2012 16:00:25 +0000</pubDate>
		<dc:creator>Moto</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[JoomSuite]]></category>
		<category><![CDATA[NetSuite PHP Toolkit]]></category>
		<category><![CDATA[Joomla Development]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://joemotacek.ergecreative.com/?p=540</guid>
		<description><![CDATA[Now that my plugin is in a solid beta stage and I have populated my database with NetSuite data related to my customer I need to start building my views. The first step I have is pulling the necessary date out of my database and putting it into read able objects for my view to [...]]]></description>
		<wfw:commentRss>http://joemotacek.com/?feed=rss2&#038;p=540</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetSuite PHP Toolkit – Search Pagination</title>
		<link>http://joemotacek.com/?p=535</link>
		<comments>http://joemotacek.com/?p=535#comments</comments>
		<pubDate>Fri, 13 Apr 2012 18:55:35 +0000</pubDate>
		<dc:creator>Moto</dc:creator>
				<category><![CDATA[JoomSuite]]></category>
		<category><![CDATA[NetSuite PHP Toolkit]]></category>
		<category><![CDATA[NetSuite]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://joemotacek.ergecreative.com/?p=535</guid>
		<description><![CDATA[I wanted to give everyone an example of how to I use the search pagination with the PHP Toolkit. In this example I am taking the results of a transaction search and paging through it. This technique can be very helpful if you start hitting script timeouts. The key parts to look at here are: [...]]]></description>
		<wfw:commentRss>http://joemotacek.com/?feed=rss2&#038;p=535</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetSuite PHP Toolkit – Working with Custom Fields</title>
		<link>http://joemotacek.com/?p=529</link>
		<comments>http://joemotacek.com/?p=529#comments</comments>
		<pubDate>Fri, 13 Apr 2012 18:35:34 +0000</pubDate>
		<dc:creator>Moto</dc:creator>
				<category><![CDATA[JoomSuite]]></category>
		<category><![CDATA[NetSuite PHP Toolkit]]></category>
		<category><![CDATA[NetSuite]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://joemotacek.ergecreative.com/?p=529</guid>
		<description><![CDATA[I&#8217;m hoping someone out there can tell me that there is a better way to access custom fields than this. It seems that when working with custom fields there is an easy way and a hard way. If your working with most custom field types you can use the example on the last line but [...]]]></description>
		<wfw:commentRss>http://joemotacek.com/?feed=rss2&#038;p=529</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetSuite PHP Toolkit &#8211; Working with Date Fields in Searches</title>
		<link>http://joemotacek.com/?p=523</link>
		<comments>http://joemotacek.com/?p=523#comments</comments>
		<pubDate>Mon, 09 Apr 2012 20:30:37 +0000</pubDate>
		<dc:creator>Moto</dc:creator>
				<category><![CDATA[JoomSuite]]></category>
		<category><![CDATA[NetSuite PHP Toolkit]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://joemotacek.ergecreative.com/?p=523</guid>
		<description><![CDATA[Well I am still working on my plugin to pull my data from NetSuite and today was fun. The more I work with this ToolKit the more I think &#8220;How very un-intuitive!&#8221; This was obviously written by someone who primarily develops in another language. Any who&#8230; enough ranting. One of the struggles I ran into [...]]]></description>
		<wfw:commentRss>http://joemotacek.com/?feed=rss2&#038;p=523</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying the content of an Object</title>
		<link>http://joemotacek.com/?p=519</link>
		<comments>http://joemotacek.com/?p=519#comments</comments>
		<pubDate>Wed, 04 Apr 2012 21:16:36 +0000</pubDate>
		<dc:creator>Moto</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[JoomSuite]]></category>
		<category><![CDATA[NetSuite]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://joemotacek.ergecreative.com/?p=519</guid>
		<description><![CDATA[Have you ever used var_dump or print_r only to see next nothing in your echo? I was reading articles all day on how to display the contents of an object in readable human form. I am working with NetSuite&#8217;s PHP ToolKit right now and their WebService returns some interesting objects that rely on NetSuite&#8217;s variable [...]]]></description>
		<wfw:commentRss>http://joemotacek.com/?feed=rss2&#038;p=519</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla 2.5 Extension Development &#8211; Working with the NetSuite Webservice</title>
		<link>http://joemotacek.com/?p=510</link>
		<comments>http://joemotacek.com/?p=510#comments</comments>
		<pubDate>Tue, 03 Apr 2012 18:34:32 +0000</pubDate>
		<dc:creator>Moto</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[JoomSuite]]></category>
		<category><![CDATA[NetSuite]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://joemotacek.ergecreative.com/?p=510</guid>
		<description><![CDATA[Well I finally got my demo account from NetSuite over the week end. So now I can get back to developing my plugin. This is a continuation of my post on creating a plugin.  It&#8217;s a good thing that I had a break to create my components tables though because now I&#8217;m ready to start [...]]]></description>
		<wfw:commentRss>http://joemotacek.com/?feed=rss2&#038;p=510</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla 2.5 Extension Development – Setting Up a Database</title>
		<link>http://joemotacek.com/?p=499</link>
		<comments>http://joemotacek.com/?p=499#comments</comments>
		<pubDate>Mon, 02 Apr 2012 14:18:52 +0000</pubDate>
		<dc:creator>Moto</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[JoomSuite]]></category>
		<category><![CDATA[Extension Development]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://joemotacek.ergecreative.com/?p=499</guid>
		<description><![CDATA[Since I&#8217;m waiting for NetSuite to hook up my demo I&#8217;ve decided to come back to my component and further develop my orderlist. This is a continuation of my post on Getting started with MVC. Alright since I want to show my customers a list of their current orders and order history and I&#8217;ll be getting that [...]]]></description>
		<wfw:commentRss>http://joemotacek.com/?feed=rss2&#038;p=499</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla 2.5 Extension Development &#8211; Creating a Plug-In</title>
		<link>http://joemotacek.com/?p=491</link>
		<comments>http://joemotacek.com/?p=491#comments</comments>
		<pubDate>Wed, 28 Mar 2012 21:28:21 +0000</pubDate>
		<dc:creator>Moto</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[JoomSuite]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://joemotacek.ergecreative.com/?p=491</guid>
		<description><![CDATA[Well I&#8217;ve gotten my plan for my extension done and I&#8217;ve setup my core component structure but before I can start processing data in my component I need to get my data from NetSuite.  So our first big hurdle will be connecting to the NetSuite WebService and pulling the data we want out of the database and populating our [...]]]></description>
		<wfw:commentRss>http://joemotacek.com/?feed=rss2&#038;p=491</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Joomla 2.5 Extension Development &#8211; Understanding MVC</title>
		<link>http://joemotacek.com/?p=475</link>
		<comments>http://joemotacek.com/?p=475#comments</comments>
		<pubDate>Thu, 22 Mar 2012 20:18:47 +0000</pubDate>
		<dc:creator>Moto</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[MCV]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://joemotacek.ergecreative.com/?p=475</guid>
		<description><![CDATA[One of the things that I still struggle with even after having done it once is the Model, View Controller design pattern.   I think it&#8217;s great that Joomla is moving all the code to MVC but coming from an Agile development environment/mindset the break down and placement of code didn&#8217;t make sense to me at first.  Once you understand MVC it [...]]]></description>
		<wfw:commentRss>http://joemotacek.com/?feed=rss2&#038;p=475</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Joomla 2.5 Extension Development &#8211; Planning your Extension</title>
		<link>http://joemotacek.com/?p=479</link>
		<comments>http://joemotacek.com/?p=479#comments</comments>
		<pubDate>Thu, 22 Mar 2012 15:16:30 +0000</pubDate>
		<dc:creator>Moto</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[JoomSuite]]></category>
		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://joemotacek.ergecreative.com/?p=479</guid>
		<description><![CDATA[You do need to understand where your going so you know what you need to build.  Some people like to start by making something work and putting it into a design pattern later.  I&#8217;m going to try and plan out what I need and build the code I need in to the pattern from the get go.  So&#8230; &#160; So as [...]]]></description>
		<wfw:commentRss>http://joemotacek.com/?feed=rss2&#038;p=479</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

