<?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>Just Another Dang Blog &#187; Blogs</title>
	<atom:link href="http://blog.lopau.com/category/blogs/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lopau.com</link>
	<description>A tech blog about web development, graphic designs, freelancing, cloud computing, mobile development, innovations and seo.</description>
	<lastBuildDate>Thu, 06 Oct 2011 03:01:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Create rewrite rules for friendly url for WordPress plugin custom queries</title>
		<link>http://blog.lopau.com/create-rewrite-rules-for-friendly-url-for-wordpress-plugin-custom-queries/</link>
		<comments>http://blog.lopau.com/create-rewrite-rules-for-friendly-url-for-wordpress-plugin-custom-queries/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 05:23:42 +0000</pubDate>
		<dc:creator>lopau</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[rewrite rules]]></category>

		<guid isPermaLink="false">http://blog.lopau.com/?p=1473</guid>
		<description><![CDATA[I have this personal web application that was built from scratch last year and has already been considerably indexed by google. I used some Apache mod rewrite to make the urls friendly. Last week I decided it would be faster/easier to jumpstart the project again if I just focus on my application and just use [...]]]></description>
			<content:encoded><![CDATA[<p>I have this personal web application that was built from scratch last year and has already been considerably indexed by google. I used some Apache mod rewrite to make the urls friendly. Last week I decided it would be faster/easier to jumpstart the project again if I just focus on my application and just use a framework to handle other intracacies like abstractions, security and etc. I was aiming for CodeIgniter but got a glimpse on BuddyPress for WordPress(not a framework) which has most of the features I want for my app. So long story short I ended up porting my application to be a plugin for WordPress.</p>
<p><span id="more-1473"></span></p>
<p>
<!-- Begin Google Adsense code -->
<div class="googleads">
<script type="text/javascript"><!--
google_ad_client = "pub-4515932012590505";
/* 200x200, created 10/29/08 */
google_ad_slot = "3929428513";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<!-- End Google Adsense code -->
<br />
One thing that got me stuck for awhile was how to recreate my old URLs. Posting some tips for an example on how I got the issue solved.</p>
<p>Target: Make WordPress rewrite this URLs</p>
<blockquote>
<p>http://www.thesite.com/mypage/food/</p>
<p>to </p>
<p>http://www.thesite.com/mypage/?ingredients=food</p>
<p>http://www.thesite.com/mypage/food/asia/</p>
<p>to </p>
<p>http://www.thesite.com/mypage/?ingredients=food&#038;origin=asia</p>
</blockquote>
<p>1. Create your plugin and create a shortcode </p>
<blockquote>
<p>(eg. add_shortcode(&#8216;myapp&#8217;, &#8216;myfunction&#8217;); )</p>
</blockquote>
<p>2. Create a new Page and add the shortcode </p>
<blockquote>
<p>[myapp]</p>
</blockquote>
<p>With Permalinks off your page looks like</p>
<blockquote><p>http://www.thesite.com/?page_id=5</p></blockquote>
<p>And is basically the same as </p>
<blockquote><p>http://www.thesite.com/index.php?page_id=5</p></blockquote>
<p>With Permalinks on</p>
<blockquote><p>http://www.thesite.com/mypage/</p></blockquote>
<p>3. If you pass a query on your app the URL may look like this, Im passing the queries on the URL</p>
<blockquote><p>http://www.thesite.com/mypage/?ingredients=food</p></blockquote>
<p>or</p>
<blockquote><p>http://www.thesite.com/mypage/?ingredients=food&#038;origin=asia</p></blockquote>
<p>Depending on the queries passed the contents on your page changes.</p>
<p>4. Now to rewrite the URLs to be friendly you need to add a filter and use query_vars</p>
<blockquote>
<p>add_filter(&#8216;query_vars&#8217;, &#8216;my_query_vars&#8217;);<br />
function my_query_vars($public_query_vars) {<br />
	$public_query_vars[] = &#8220;ingredients&#8221;;<br />
	$public_query_vars[] = &#8220;origin&#8221;;<br />
	return $public_query_vars;<br />
}</p>
</blockquote>
<p>This ensure that when WordPress parses the URL, the <em>ingredients </em> and <em>origin </em> gets saved in the query variables.</p>
<p>4. Next is create your rewrite rules and store in an array</p>
<blockquote><p>
add_filter(&#8216;generate_rewrite_rules&#8217;, &#8216;my_rewrite&#8217;);</p>
<p>function my_rewrite($wp_rewrite) {<br />
	$wp_rewrite->rules =<br />
	array_merge(array<br />
	(<br />
	&#8216;^mypage/([^/]+)/?$&#8217; => &#8216;index.php?page_id=5e&#038;ingredients=$matches[1]&#8216;,<br />
	&#8216;^mypage/([^/]+)/([^/]+)/?$&#8217; => &#8216;index.php?page_id=5&#038;ingredients=$matches[1]&#038;origin=$matches[2]&#8216;</p>
<p>	), $wp_rewrite->rules);<br />
}
</p></blockquote>
<p>Note: That you are rewriting to the original URL of the page. You are storing each rewrite rule to an array and finally adding them to a filter by generate_rewrite_rules.</p>
<p>5. To get the variables back just call the get_query_vars function on your plugin.</p>
<blockquote><p>echo get_query_var(&#8216;ingredients&#8217;); </p></blockquote>
<p>So this is how I got my problem solved. Hopefully it would be a great help to others. Happy rewriting and coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lopau.com/create-rewrite-rules-for-friendly-url-for-wordpress-plugin-custom-queries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five Star Bus Liner Free Wifi</title>
		<link>http://blog.lopau.com/five-star-bus-liner-free-wifi/</link>
		<comments>http://blog.lopau.com/five-star-bus-liner-free-wifi/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 10:56:28 +0000</pubDate>
		<dc:creator>lopau</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://blog.lopau.com/?p=1328</guid>
		<description><![CDATA[First time to ride a bus with free WIFI, given that chance I&#8217;m writing this post from the bus. Beats just watching the lame dvd showing. These type of facility is a welcome upgrade to the transport system. From my research this started last year JAC Bus Liners 2010 and it seems it has catched [...]]]></description>
			<content:encoded><![CDATA[<p>First time to ride a bus with free WIFI, given that chance I&#8217;m writing this post from the bus. Beats just watching the lame dvd showing. These type of facility is a welcome upgrade to the transport system. From my research this started last year JAC Bus Liners 2010 and it seems it has catched on to other bus liners.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lopau.com/five-star-bus-liner-free-wifi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hit by Xoom Remittance to the Philippines</title>
		<link>http://blog.lopau.com/hit-by-xoom-remittance-to-the-phillipines/</link>
		<comments>http://blog.lopau.com/hit-by-xoom-remittance-to-the-phillipines/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 06:44:04 +0000</pubDate>
		<dc:creator>lopau</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[xoom]]></category>

		<guid isPermaLink="false">http://blog.lopau.com/?p=841</guid>
		<description><![CDATA[Seems alot of people are complaining on the new policy of Xoom. Xoom recently announced that they would stop remittance to the Philippines from non US credit cards or accounts. http://blog.xoom.com/2010/03/new-minimum-send-amounts-payment-source.html And later confirmed by an email I sent to their customer service. Thank you for contacting Xoom Customer Service. Firstly, I would like to [...]]]></description>
			<content:encoded><![CDATA[<p>Seems alot of people are complaining on the new policy of Xoom. Xoom recently announced that they would stop remittance to the Philippines from non US credit cards or accounts. </p>
<p><img src="http://blog.lopau.com/wp-content/uploads/2010/03/logo_xoom.gif" alt="logo_xoom" title="logo_xoom" width="151" height="29" class="aligncenter size-full wp-image-842" /><br />
<a href="http://blog.xoom.com/2010/03/new-minimum-send-amounts-payment-source.html">http://blog.xoom.com/2010/03/new-minimum-send-amounts-payment-source.html</a></p>
<p>And later confirmed by an email I sent to their customer service.</p>
<blockquote><p>Thank you for contacting Xoom Customer Service.</p>
<p>Firstly, I would like to apologize for inconvenience caused to you regarding this issue. Please be advised that in order to send money to the Philippines you need to have an US Bank account or a US Debit/Credit Card.<br />
Apart from  Philippines you can use International Credit card or US bank Account to transfer funds.</p>
<p>Currently we do not have any expected date of re-instating the services; but would encourage you to keep visiting our web-site for any update.</p>
<p>Thank you again for choosing Xoom.com &#8211; the Smarter Way to Send Money</p></blockquote>
<p>Which means my employer in Dubai can no longer send with his local card and account on UAE.</p>
<p>Seems alot of people are hit by this change. Xoom has been actively stopping fraud transactions being done using their service and it has affected even those that uses their service for legit remittance.<br />

<!-- Begin Google Adsense code -->
<div class="googleads">
<script type="text/javascript"><!--
google_ad_client = "pub-4515932012590505";
/* 200x200, created 10/29/08 */
google_ad_slot = "3929428513";
google_ad_width = 200;
google_ad_height = 200;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<!-- End Google Adsense code -->
<br />
I like the service alot for it is fast and can get the transaction done within the day. But time to search for an alternative. Any suggestions besides Paypal to bank transfer (which is normally 2-4 business days) and Western Union?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lopau.com/hit-by-xoom-remittance-to-the-phillipines/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>I keep losing Pagerank</title>
		<link>http://blog.lopau.com/i-keep-losing-pagerank/</link>
		<comments>http://blog.lopau.com/i-keep-losing-pagerank/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 05:38:47 +0000</pubDate>
		<dc:creator>lopau</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://blog.lopau.com/?p=828</guid>
		<description><![CDATA[I just noticed that I lost my pagerank on this blog again &#8220;Pagerank not Available&#8221;. Actually it has been on and off since last year. Check my post last year when my page rank disappered and then came back. Wierd, as I&#8217;m not doing any duplicate content and actually this blog hasnt that been active [...]]]></description>
			<content:encoded><![CDATA[<p>I just noticed that I lost my pagerank on this blog again &#8220;Pagerank not Available&#8221;. Actually it has been on and off since last year. Check my post last year when my <a href="http://blog.lopau.com/where-did-my-homepage-pr-go/">page rank disappered</a> and then <a href="http://blog.lopau.com/my-pagerank-is-back/">came back.</a>  Wierd, as I&#8217;m not doing any duplicate content and actually this blog hasnt that been active since my busy work schedule. I&#8217;ll look deep into this when I get some free time and keep this post updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lopau.com/i-keep-losing-pagerank/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Looking back at 2009</title>
		<link>http://blog.lopau.com/looking-back-at-2009/</link>
		<comments>http://blog.lopau.com/looking-back-at-2009/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 06:56:26 +0000</pubDate>
		<dc:creator>lopau</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://blog.lopau.com/?p=808</guid>
		<description><![CDATA[Wow time flies real fast. Before anything else I want to greet everybody a happy holiday and hope you have a blast last Christmas. This year has been good to me specially after my car accident last February where I wrecked our car but came out with just just some minor bruise and a couple [...]]]></description>
			<content:encoded><![CDATA[<p>Wow time flies real fast. Before anything else I want to greet everybody a happy holiday and hope you have a blast last Christmas. </p>
<p>This year has been good to me specially after my car accident last February where I wrecked our car but came out with just just some minor bruise and a couple of loose teeth. Since then I have been more keen to just focus on working instead and it turned out well by being blessed with projects. </p>
<p>On skill side what I was hoping to get certified with PHP within the year is yet again shifted to next year. I&#8217;ve been quite busy with client projects and learning new skills particulary salesforce.com which we will be using on our next big project. </p>
<p>On business side I have registered myself as a company and would be coming up with a new product a sort of a social network business directory. I would still be sticking with my client but work on this new product as a source of passive income. Something that would generate me some money even if I&#8217;m not working I&#8217;m earning. Is this possible? Hehe. Some found out how to do it so you will never know if it would work out unless you try. So I&#8217;m pushing ahead with this goal hopefully January of 2010.</p>
<p>I have a lot more to look forward to in 2010 but I also have a lot of things that &#8220;could have&#8221;, &#8220;would have&#8221; for 2009. I just learn from the past and move forward and be more productive in 2010. Hope you guys do the same too. Let&#8217;s go.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lopau.com/looking-back-at-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sticky Footer</title>
		<link>http://blog.lopau.com/sticky-footer/</link>
		<comments>http://blog.lopau.com/sticky-footer/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 11:20:00 +0000</pubDate>
		<dc:creator>lopau</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://blog.lopau.com/?p=739</guid>
		<description><![CDATA[Here is a neat trick to an old age problem with designing sites and having the footer to always stick to the bottom of the screen regardless if there is content on not on the page. This website solely covers that topic and the URL talks for itself.  http://www.cssstickyfooter.com/ I&#8217;ve been drafting some new designs for [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a neat trick to an old age problem with designing sites and having the footer to always stick to the bottom of the screen regardless if there is content on not on the page. This website solely covers that topic and the URL talks for itself.  <a href="http://www.cssstickyfooter.com/">http://www.cssstickyfooter.com/</a></p>
<p>I&#8217;ve been drafting some new designs for my new startup company. Yep I&#8217;m moving away from being freelance to owning a company. So stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lopau.com/sticky-footer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Managed</title>
		<link>http://blog.lopau.com/getting-managed/</link>
		<comments>http://blog.lopau.com/getting-managed/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 05:22:06 +0000</pubDate>
		<dc:creator>lopau</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://blog.lopau.com/?p=735</guid>
		<description><![CDATA[It&#8217;s been awhile since I updated this blog and specially my  personal finance blog. These past 3 days I&#8217;ve been integrating a new daily work flow to balance my personal time in blogging, reviewing, learning new skills and time for work.  I&#8217;ve been talking about preparing for taking the PHP Zend Certified exam for several [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been awhile since I updated this blog and specially my  <a href="http://getrichtalks.com">personal finance blog</a>. These past 3 days I&#8217;ve been integrating a new daily work flow to balance my personal time in blogging, reviewing, learning new skills and time for work.  I&#8217;ve been talking about preparing for taking the PHP Zend Certified exam for several months now but I always get tied up with work load.  Working at home has a lot of pros and  alot of cons.  I won&#8217;t be diving into the the pros and cons topic here of working at home, just pointing one example is when working at home it can eat up your personal time unlike in the office 9-5 scene once you leave the office your &#8220;kinda free&#8221;.</p>
<p>On top of my list daily work flow is to start blogging again to get back into the scene, mastering <a href="http://codeigniter.com">CodeIgniter</a>, review and learn some new skills like photography with my recent acquisition of a <a href="http://blog.lopau.com/taking-up-photography/">DSLR </a>.  And so far based on the recent 3 days I&#8217;ve been managing my work flow it is working like a charm.  So expect this blog to be revived with new entries and tutorials this coming days. (I know I said that before but this time it&#8217;s for real. LOL).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lopau.com/getting-managed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter take down by a russian hacker</title>
		<link>http://blog.lopau.com/twitter-take-down-by-a-russian-hacker/</link>
		<comments>http://blog.lopau.com/twitter-take-down-by-a-russian-hacker/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 04:34:01 +0000</pubDate>
		<dc:creator>lopau</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.lopau.com/?p=724</guid>
		<description><![CDATA[Apparently the cause of Twitter&#8217;s downtime yesterday was caused by a denial of service(DOS) attack perpertrated by a Russian hacker. Read more on the story here. http://www.v3.co.uk/v3/news/2247497/russian-hackers-took-twitter]]></description>
			<content:encoded><![CDATA[<p>Apparently the cause of Twitter&#8217;s downtime yesterday was caused by a denial of service(DOS) attack perpertrated by a Russian hacker. Read more on the story here.</p>
<p><a href="http://www.v3.co.uk/v3/news/2247497/russian-hackers-took-twitter">http://www.v3.co.uk/v3/news/2247497/russian-hackers-took-twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lopau.com/twitter-take-down-by-a-russian-hacker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Wave is coming</title>
		<link>http://blog.lopau.com/google-wave-is-coming/</link>
		<comments>http://blog.lopau.com/google-wave-is-coming/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 18:58:08 +0000</pubDate>
		<dc:creator>lopau</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://blog.lopau.com/?p=661</guid>
		<description><![CDATA[Google definitely has alot of tricks rolled up their sleeves, the upcoming Google Chrome OS announced last two weeks ago, which they target to roll out prebundled with netbooks next year. Here is an upcoming online tool that I&#8217;m anxious to try &#8211; Google Wave which was announced earlier and planned to be released within [...]]]></description>
			<content:encoded><![CDATA[<p>Google definitely has alot of tricks rolled up their sleeves, the upcoming <a href="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html">Google Chrome OS</a> announced last two weeks ago, which they target to roll out prebundled with netbooks next year. Here is an upcoming online tool that I&#8217;m anxious to try &#8211; Google Wave which was announced <a href="http://googleblog.blogspot.com/2009/05/went-walkabout-brought-back-google-wave.html"> earlier </a> and planned to be released within this year.</p>
<p><a href="http://blog.lopau.com/wp-content/uploads/2009/07/Google_Wave_snapshots_inbox.png"><img src="http://blog.lopau.com/wp-content/uploads/2009/07/Google_Wave_snapshots_inbox-300x195.png" alt="Google_Wave_snapshots_inbox" title="Google_Wave_snapshots_inbox" width="300" height="195" class="aligncenter size-medium wp-image-662" /></a></p>
<p>Quoted from Google:</p>
<blockquote><p>Google Wave is a new tool for communication and collaboration on the web</p></blockquote>
<p>How does it work?</p>
<blockquote><p>In Google Wave you create a wave and add people to it. Everyone on your wave can use richly formatted text, photos, gadgets, and even feeds from other sources on the web. They can insert a reply or edit the wave directly. It&#8217;s concurrent rich-text editing, where you see on your screen nearly instantly what your fellow collaborators are typing in your wave. That means Google Wave is just as well suited for quick messages as for persistent content — it allows for both collaboration and communication. You can also use &#8220;playback&#8221; to rewind the wave and see how it evolved.</p></blockquote>
<p>Being a freelance web designer and developer this kind of tool is something I can use, Currently I use <a href="http://www.basecamphq.com/">BaseCamp</a> for Project Management and like it. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lopau.com/google-wave-is-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programming skill level</title>
		<link>http://blog.lopau.com/programming-skill-level/</link>
		<comments>http://blog.lopau.com/programming-skill-level/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 03:11:48 +0000</pubDate>
		<dc:creator>lopau</dc:creator>
				<category><![CDATA[Blogs]]></category>

		<guid isPermaLink="false">http://blog.lopau.com/?p=504</guid>
		<description><![CDATA[Saw this blog post from 2005 about identifying your skill level in any programming language, the post still remains relevant and hits the points right on. Author stated it would take you 10 years to become an expert programmer, but that I think is debatable which is the only thing I don&#8217;t agree with his [...]]]></description>
			<content:encoded><![CDATA[<p>Saw this blog post from 2005 about identifying your skill level in any programming language, the post still remains relevant and hits the points right on. Author stated it would take you 10 years to become an expert programmer, but that I think is debatable which is the only thing I don&#8217;t agree with his post. </p>
<p>Which skill level do you think you have?</p>
<p>Quoted from <a href=" http://www.procata.com/blog/archives/2005/05/10/expert-programmers/">procata.com</a></p>
<blockquote><p>    Level 1: Beginner</p>
<p>        * Little or no previous experience<br />
        * Doesn’t want to learn: wants to accomplish a goal<br />
        * No discretionary judgement<br />
        * Rigid adherence to rules</p>
<p>    Level 2: Advanced Beginner</p>
<p>        * Starts trying tasks on their own<br />
        * Has difficulty troubleshooting<br />
        * Wants information fast<br />
        * Can place some advice in context required<br />
        * Uses guidelines, but without holisitic understanding</p>
<p>    Level 3: Competent</p>
<p>        * Develops conceptual models<br />
        * Troubleshoots on their own<br />
        * Seeks out expert advice<br />
        * Sees actions at least partially in terms of long-term plans and goals</p>
<p>    Level 4: Proficient</p>
<p>        * Guided by maxims applied to the current situation<br />
        * Sees situations holistically<br />
        * Will self-correct based on previous performance<br />
        * Learns from the experience of others<br />
        * Frustrated by oversimplified information</p>
<p>    Level 5: Expert</p>
<p>        * No longer relies on rules, guidelines, or maxims<br />
        * Works primarily from intuition<br />
        * Analytic approaches only used in novel situations or when problems occur<br />
        * When forced to follow set rules, performance is degraded</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.lopau.com/programming-skill-level/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

