<?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>Paper Canopy &#187; Site and Company News</title>
	<atom:link href="http://papercanopy.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://papercanopy.com</link>
	<description>Web development and WordPress</description>
	<lastBuildDate>Mon, 22 Nov 2010 15:59:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Announcing: PMProPlus!</title>
		<link>http://papercanopy.com/2010/03/25/announcing-pmproplus/</link>
		<comments>http://papercanopy.com/2010/03/25/announcing-pmproplus/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 14:56:29 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Applications and programming]]></category>
		<category><![CDATA[Project News]]></category>
		<category><![CDATA[Site and Company News]]></category>

		<guid isPermaLink="false">http://papercanopy.com/?p=90</guid>
		<description><![CDATA[The day has finally arrived. We&#8217;re launching our own project. Without further ado let us proudly introduce PMProPlus, a project management and time tracking web application, straight from the Paper Canopy factory. We&#8217;ve been using PMProPlus around here to manage all of our time tracking and project management needs for the past  year now. The [...]]]></description>
			<content:encoded><![CDATA[<p>The day has finally arrived. We&#8217;re launching our own project.</p>
<p>Without further ado let us proudly introduce <a href="http://www.pmproplus.com" target="_blank">PMProPlus</a>, a project management and time tracking web application, straight from the Paper Canopy factory.<span id="more-90"></span></p>
<p>We&#8217;ve been using PMProPlus around here to manage all of our <a href="http://pmproplus.com/tour/time-tracking/" target="_blank">time tracking</a> and <a href="http://pmproplus.com/tour/management/" target="_blank">project management</a> needs for the past  year now. The time tracking has been our most used piece, but <a href="http://pmproplus.com/tour/extranet/" target="_blank">the extranet is a life-saver</a> when it comes to posting large files for the client, especially if there is more than one version floating around!</p>
<p>Take a look and let us know what you think. There&#8217;s a 30 day free trial, and enough tiers so that price shouldn&#8217;t be an option to give it a try! And definitely head back here to tell us about some of your favorite features and what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://papercanopy.com/2010/03/25/announcing-pmproplus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using jQuery to make your designs more interactive</title>
		<link>http://papercanopy.com/2010/01/27/using-jquery-to-make-your-designs-more-interactive/</link>
		<comments>http://papercanopy.com/2010/01/27/using-jquery-to-make-your-designs-more-interactive/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:29:10 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Site and Company News]]></category>

		<guid isPermaLink="false">http://papercanopy.com/?p=68</guid>
		<description><![CDATA[Most of my work entails taking flat Photoshop files and turning them into functioning interactive web sites. One of the bigger issues is I usually don&#8217;t know what the page is supposed to actually do. Falling back on a few years experience helps, and some stuff is pretty obvious (click here, go there), but most of the [...]]]></description>
			<content:encoded><![CDATA[<p>Most of my work entails taking flat Photoshop files and turning them into functioning interactive web sites. One of the bigger issues is I usually don&#8217;t know what the page is supposed to actually <em>do</em>. Falling back on a few years experience helps, and some stuff is pretty obvious (click here, go there), but most of the time I&#8217;d much rather be lazy and have someone just tell me what it needs to do.<span id="more-68"></span></p>
<p>The easy thing to do would be just to ask the designer. And most of the time I do, and it works out great. But I&#8217;ve found that there&#8217;s this gap between a designer and the producer where the designer doesn&#8217;t necessarily know what the producer can actually build (and what&#8217;s not impossible to do) and the producer doesn&#8217;t know what to suggest because he doesn&#8217;t know what the designer really wants, and around and around we go.</p>
<p>So here we are, trying to bridge that gap a bit. It&#8217;s a little instruction on what can be done, and where to go for inspiration for people who  may not necessarily know what&#8217;s interactively possible.</p>
<p>Let me introduce you to <a href="http://www.jquery.com" target="_blank">jQuery</a>.</p>
<p>jQuery is a JavaScript library. And JavaScript is what powers most if not all of the client side interaction on a web page. So: jQuery is a library of JavaScript code that lets you do interactive things quickly and esaily.</p>
<p>A JavaScript library is nice because different browsers (*cough* IE *cough*) do things differently and sometimes with weird effect. For example if you want to get the current year in javascript Firefox returns 2010, but IE returns 110. So you have to add 1900 to the number in IE. So you do browser tests, and add code just to find out the year. Yeah, then try to get the next or previous day or month or if it&#8217;s the last day of the month or if it&#8217;s the last day of the year&#8230; Snowballs quickly eh?</p>
<p>jQuery is nice because it’s base code with all that weirdness done for you. You just ask jQuery for the year and it does all the aggravating cross browser stuff automatically. As a disclosure, there are plenty of other JavaScript libraries out there. Yahoo! has one, Moo Tools, and plenty others. jQuery is just my flavor of choice.</p>
<p>That’s a simple example, but when you get into more complicated stuff like navigating the Document Object Model (divs, classes, ids, HTML elements) it starts getting super frustrating to deal with all the browsers. jQuery does all that for you.</p>
<p>To build on that, jQuery has tons and tons of code that does really complicated stuff so all you have to do is call the function. They break them up into modules called Plugins.</p>
<p>For example, making a calendar pop up when you click in a text box is a plugin.</p>
<p>You just download the plugin code, include it on your page, and call one line of JavaScript to make that text box open up a calendar when it&#8217;s clicked.</p>
<p>Usually plugins come with some css, some javascript, and a bit of documentation to tell you how to use it. But the takeaway is they do really powerful things, are extremely easy to use, and take infinitely less time to get going than writing the whole thing from scratch.</p>
<p>Some plugins are pretty awesome and graduate into core functionality. One example is jQueryUI. A collection of pretty useful plugins for User Interaction: <a href="http://jqueryui.com/demos/">http://jqueryui.com/demos/</a></p>
<p>Some examples: <a href="http://papercanopy.com/projects/codesamples/order-lists.php" target="_blank">Drag and drop</a>, resize, <a href="http://papercanopy.com/2009/10/23/ordering-lists-ui-example/" target="_blank">sorting unordered lists</a>, carousel slideshows</p>
<p>That&#8217;s basically how it works. Now it&#8217;s just a matter of finding plugins that do cool stuff and sending on the link to your production guys to ask &#8220;can we make it work like this?&#8221;</p>
<p>Here are some good resources to get you started:</p>
<ul>
<li>jQuery User Interaction plugin: <a href="http://jqueryui.com/demos/">http://jqueryui.com/demos/</a></li>
<li>other jQuery plugins (some interactive, some not) <a href="http://plugins.jquery.com/">http://plugins.jquery.com/</a></li>
<li>Ajax Rain &#8211; This includes a lot of other javascript libraries outside of jQuery, but for the most part cool things get spread out pretty wide: <a href="http://www.ajaxrain.com/tag?tag=jquery">http://www.ajaxrain.com/tag?tag=jquery</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://papercanopy.com/2010/01/27/using-jquery-to-make-your-designs-more-interactive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delicious WordPress</title>
		<link>http://papercanopy.com/2010/01/18/delicious-wordpress/</link>
		<comments>http://papercanopy.com/2010/01/18/delicious-wordpress/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 16:28:23 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Site and Company News]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://papercanopy.com/?p=65</guid>
		<description><![CDATA[I always just assume most new web apps are mostly used by little guys. Take Twitter for example. Out of the gate it just seems like a way to post your status to the web and interact with your friends. Nothing big. Well, until the celebs and branding experts realized the potential&#8230; So it&#8217;s always [...]]]></description>
			<content:encoded><![CDATA[<p>I always just assume most new web apps are mostly used by little guys. Take Twitter for example. Out of the gate it just seems like a way to post your status to the web and interact with your friends. Nothing big. Well, until the celebs and branding experts realized the potential&#8230;<span id="more-65"></span></p>
<p>So it&#8217;s always fun to see how big corporations or people use this stuff. Like Oprah with Skype, or the military with Google Earth.</p>
<p>One cool discovery I made was how <a href="http://delicious.com/OracleTechnologyNetwork/" target="_blank">Oracle was using Delicious</a>. Basically they linked all their documentation and help files that they had on the web through Delicious bookmarks. The benefits seem pretty obvious: Tagging, descriptions, organization of their site. Seems like a great way to organize a lot of links and data, but extend the organization beyond a simple site map by using Delicious&#8217;s system for bookmarks.</p>
<p>All that to say I&#8217;m trying to follow in their footsteps.</p>
<p>I noticed that I had started to amass a good amount of WordPress links. Links to plugins, themes, official documentation, and articles that have turned out to be pretty useful. But only about half were uploaded to <a href="http://delicious.com/papercanopy/" target="_blank">my Delicious account</a>.</p>
<p>So I spent a bit of time organizing my links, and set up a &#8220;corporate&#8221; Delicious account. Right now it&#8217;s mostly WordPress, but I&#8217;m sure I&#8217;ll be updating with links to notable documentation on this site as well as other arenas.</p>
<p>So for the time being, <a href="http://delicious.com/papercanopy/WordPress">take a look at my WordPress tagged links</a>, I&#8217;m sure there are a few things you might find useful in there.</p>
]]></content:encoded>
			<wfw:commentRss>http://papercanopy.com/2010/01/18/delicious-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maker&#8217;s and Managers</title>
		<link>http://papercanopy.com/2009/07/28/makers-and-managers/</link>
		<comments>http://papercanopy.com/2009/07/28/makers-and-managers/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 15:15:42 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Site and Company News]]></category>

		<guid isPermaLink="false">http://papercanopy.com/?p=41</guid>
		<description><![CDATA[I found this article by Paul Graham about maker&#8217;s schedule vs. Manager&#8217;s schedule. Most powerful people are on the manager&#8217;s schedule. It&#8217;s the schedule of command. But there&#8217;s another way of using time that&#8217;s common among people who make things, like programmers and writers. They generally prefer to use time in units of half a [...]]]></description>
			<content:encoded><![CDATA[<p>I found this article by Paul Graham about <a title="Maker's schedule vs. Manager's Schedule" href="http://www.paulgraham.com/makersschedule.html" target="_blank">maker&#8217;s schedule vs. Manager&#8217;s schedule</a>.</p>
<blockquote><p>Most powerful people are on the manager&#8217;s schedule. It&#8217;s the schedule of  command. But there&#8217;s another way of using time that&#8217;s common among people who  make things, like programmers and writers. They generally prefer to use time in  units of half a day at least. You can&#8217;t write or program well in units of an  hour. That&#8217;s barely enough time to get started.</p></blockquote>
<p>It&#8217;s a good read, and I found a lot of good points especially from the maker&#8217;s side of things.</p>
<p>Mostly he talks from the angle of meetings, but for me this goes for <em>any</em> type of interruption. Conference calls, emails, IMs, tweets, text messages, letter, anything.</p>
<p>Anyway, it&#8217;s a good reference, especially if you&#8217;ve called me and I&#8217;ve seemed a bit distracted on the phone ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://papercanopy.com/2009/07/28/makers-and-managers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First!</title>
		<link>http://papercanopy.com/2009/05/29/hello-world/</link>
		<comments>http://papercanopy.com/2009/05/29/hello-world/#comments</comments>
		<pubDate>Fri, 29 May 2009 17:49:12 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Site and Company News]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to Papercanopy.com. The site is still in its startup phase, but look to see all my ramblings on web development, WordPress (MU) and recent wins in the web development world.]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://papercanopy.com/">Papercanopy.com</a>. The site is still in its startup phase, but look to see all my ramblings on web development, WordPress (MU) and recent wins in the web development world.</p>
]]></content:encoded>
			<wfw:commentRss>http://papercanopy.com/2009/05/29/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

