<?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"
	>

<channel>
	<title>socialplasm.com</title>
	<atom:link href="http://socialplasm.com/socialplasm/feed/" rel="self" type="application/rss+xml" />
	<link>http://socialplasm.com/socialplasm</link>
	<description></description>
	<pubDate>Sat, 16 Aug 2008 08:30:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Hide WordPress Pages from the Navigation Menu</title>
		<link>http://socialplasm.com/socialplasm/hide-wordpress-pages-from-the-navigation-menu/</link>
		<comments>http://socialplasm.com/socialplasm/hide-wordpress-pages-from-the-navigation-menu/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 04:39:20 +0000</pubDate>
		<dc:creator>socialplasm</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[The Nerdery]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[blogging]]></category>

		<category><![CDATA[blogs]]></category>

		<category><![CDATA[theme editing]]></category>

		<category><![CDATA[themes]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://socialplasm.com/socialplasm/?p=27</guid>
		<description><![CDATA[Many WordPress themes create navigation buttons based on the blog pages that you create in WordPress. This trick will help you to hide any pages that you don't want turned into nav buttons.<script type="text/javascript">SHARETHIS.addEntry({ title: "Hide WordPress Pages from the Navigation Menu", url: "http://socialplasm.com/socialplasm/hide-wordpress-pages-from-the-navigation-menu/" });</script>]]></description>
			<content:encoded><![CDATA[<p><em>Update: I have added instructions below on hiding sub-pages from the navigation menus as well.</em></p>
<p>I spent a little time tonight looking over several WordPress blog themes/skins and noticed that several of them create a site-wide navigation on the blog based on the pages that the user creates in the WordPress admin section.</p>
<p>This is a great feature and saves tons of time from having to hard-code buttons that link to your pages.</p>
<h2>Hiding Pages from the Nav</h2>
<h5><span style="color: #999999;">Tutorial Level of Difficulty: Medium</span></h5>
<p>What if you want to hide a pages from the nav? How can you hide a page so it doesn&#8217;t become a nav button automatically?</p>
<p><strong>Here&#8217;s how <em>(NOTE: the colors don&#8217;t matter, they are just added to show the different sections of code in the explanation).</em><br />
</strong></p>
<p>1. In the Wordpress theme editor, open up the header.php file and find the following line:<br />
<span style="color: #ff6600;">&lt;?php $children = wp_list_pages(&#8217;sort_column=menu_order&amp;depth=1&amp;title_li=&#8217;);?&gt;</span></p>
<p>2. We will be adding the following bit of code after the last &#8216;=&#8217; sign:<br />
<span style="color: #008000;">&amp;exclude=</span></p>
<p>3. Now the code should look like this (colors are just for display purposes):<br />
<span style="color: #ff6600;">&lt;?php $children = wp_list_pages(&#8217;sort_column=menu_order&amp;depth=1&amp;title_li=<span style="color: #008000;">&amp;exclude=</span>&#8216;);?&gt;</span></p>
<p>4. Now, all you have to do is add the page ID numbers that you want to hide after the &#8216;&amp;exclude=&#8217;&#8230; make sure to separate with commas.</p>
<p>Example: If I wanted to hide page ID&#8217;s 1, 2 &amp; 3 from the nav then the code would look like this:<br />
<span style="color: #ff6600;">&lt;?php $children = wp_list_pages(&#8217;sort_column=menu_order&amp;depth=1&amp;title_li=<span style="color: #008000;">&amp;exclude=</span><span style="color: #0000ff;">1,2,3</span>&#8216;);?&gt;</span></p>
<p><em>(note: commas are used to separate page ID&#8217;s, but if you are only entering a single ID instead of several then you will not need to add a comma)</em></p>
<p><strong>Hiding sub-pages (Pages that are assigned to a &#8216;Parent Page&#8217;)<br />
</strong></p>
<p>1. If you want to hide a sub page, scroll down to the bottom of the same file (header.php) and find the following bit of code:</p>
<p><span style="color: #800000;">&lt;div id=&#8221;subnav&#8221;&gt;<br />
&lt;ul&gt;</span><br />
<span style="color: #ff6600;">&lt;?php wp_list_pages(&#8217;sort_column=menu_order&amp;depth=1&amp;title_li=&amp;child_of=&#8217;. $parent_id); ?&gt;</span><br />
<span style="color: #800000;">&lt;/ul&gt;<br />
&lt;/div&gt;&lt;!&#8211; /sub nav &#8211;&gt;</span></p>
<p>2. Directly after the part that says <span style="color: #ff6600;">&amp;title_li= <span style="color: #000000;">add:</span></span></p>
<p><span style="color: #008000;">&amp;exclude=</span></p>
<p>3. Now, all you have to do is add the page ID numbers that you want to hide after the &#8216;&amp;exclude=&#8217;&#8230; make sure to separate with commas.<br />
Example: If I wanted to hide sub-page ID 47 and 117 from the sub-nav then the code would look like this:</p>
<p><span style="color: #ff6600;">&lt;?php wp_list_pages(&#8217;sort_column=menu_order&amp;depth=1&amp;title_li=</span><span style="color: #008000;">&amp;exclude=<span style="color: #0000ff;">47,117</span></span><span style="color: #ff6600;">&amp;child_of=&#8217;. $parent_id); ?&gt;</span></p>
<p><em>(note: commas are used to separate page ID&#8217;s, but if you are only entering a single ID instead of several then you will not need to add a comma)</em></p>
<p><strong>How can I find my page ID&#8217;s?</strong><br />
By default, WordPress blogs create links for the pages you add. These links are each given a unique ID found in the URL. You can either use your browser or the WordPress &#8216;Manage Pages&#8217; admin section to browse to a page you have created and copy/paste the ID&#8217;s into the code we just made.</p>
<p><strong>What if I am using text links (pretty permalinks) instead of page IDs?</strong><br />
You can still find the page ID for each page by mousing over each page link in the &#8216;Manage Pages&#8217; section of your WordPress admin.<br />
The status bar is the bottom bar in your browser that displays the hyperlink when you mouse over a link on a page.<br />
Don&#8217;t see the status bar? Turn it on by opening up your browser and going to View, click on &#8216;Status Bar&#8217; if there isn&#8217;t already a check mark next to it.<br />
Now that the status bar is turned on, go back to your WordPress admin and navigate to Manage &gt; Pages, and mouse over the links to the pages that you would like to hide from the nav. The status bar will show the original hyperlink to that page including the page ID (look for the part of the link that says &#8216;ID=&#8217; &#8230; the ID is the number that follows the &#8216;=&#8217; sign).</p>
<p>Hiding pages came in helpful for me recently, hopefully a few of you find it useful as well.</p>
<p>This has been successfully tested on the following blog themes:</p>
<ul>
<li><a href="https://www.e-junkie.com/ecom/gb.php?ii=68185&amp;c=ib&amp;aff=16359&amp;ev=18b0d66ed5" target="ejejcsingle">Revolution Themes - by Brian Gardner</a></li>
<li><a title="i3Theme" href="http://www.mangoorange.com/resources/i3theme/" target="_blank">i3Theme - by MangoOrange</a></li>
<li><a title="Natural Essence Theme" href="http://templates.arcsin.se/natural-essence-wordpress-theme/" target="_blank">Natural Essence Theme - by Arcsin</a></li>
<li><a title="GraphPaperPress Themes" href="http://graphpaperpress.com/" target="_blank">All Themes by GraphPaperPress</a></li>
</ul>
<p>Has it worked on your theme? Leave a comment and I&#8217;ll add it to the list.</p>
<p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=6f2b79c1-a4bd-4c94-afe4-7a9dd1e4dd2d&amp;title=Hide+WordPress+Pages+from+the+Navigation+Menu&amp;url=http%3A%2F%2Fsocialplasm.com%2Fsocialplasm%2Fhide-wordpress-pages-from-the-navigation-menu%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://socialplasm.com/socialplasm/hide-wordpress-pages-from-the-navigation-menu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Generating Product Demand</title>
		<link>http://socialplasm.com/socialplasm/generating-product-demand/</link>
		<comments>http://socialplasm.com/socialplasm/generating-product-demand/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 16:28:18 +0000</pubDate>
		<dc:creator>socialplasm</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Adobe cs4]]></category>

		<category><![CDATA[cs4]]></category>

		<guid isPermaLink="false">http://socialplasm.com/socialplasm/?p=26</guid>
		<description><![CDATA[Generating demand for your product or service has become much more complicated than the standard method of giving it away. Companies like Adobe are starting to narrow the gates to a smaller number of privileged previewers and close the gates on beta testers faster.<script type="text/javascript">SHARETHIS.addEntry({ title: "Generating Product Demand", url: "http://socialplasm.com/socialplasm/generating-product-demand/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Companies have been sampling products to their potential customers for ever. When you can give them a nibble of your product or service and add to that a sense of urgency, you may be on to something.</p>
<p>Recently, Adobe released public preview versions of some of their upcoming programs that will be available in the Creative Suite 4 (CS4).</p>
<p>That they released preview versions of their software isn&#8217;t all that new &#8230; but the time-limit they put on the installed preview, before the program is disabled is quite surprising &#8230; two days!</p>
<p>With the standard software trial period being 30 days, or in some cases unlimited time - limited features, Adobe has played a unique hand that has many people in the graphic community scratching their heads; why offer a trial of their software that only lasts two days?</p>
<p><strong>Exclusivity and Urgency</strong></p>
<p>When google first released Gmail, they made it available to only a select few. Those that got an account were given a handful of invites to give out to their friends. You started with one invite and a little message above your invites indicated that you would get more eventually.</p>
<p>This limited supply caused the invites to be cherished like gold; you only gave them out sparingly. It also created an automatic <a title="The haves, and the have-nots." href="http://en.wikipedia.org/wiki/Digital_divide" target="_blank">digital divide</a> between those that had, and those that had not. There was a sense of pride in the fact that you got a Gmail account and that through your mercy, you could freely share this rare resource with those you liked the most.</p>
<p>The demand and short supply fueled the social media fires; the word that Gmail was out became very viral.</p>
<p>Adobe has provided fuel for a similar type of fire by allowing a very short window of time to preview their apps. There is also a sense of hiearchy being built between those with registered copies of CS3 ( wo can enter in their CS3 serial numbers and keep the CS4 versions alive, and those who don&#8217;t have CS3.</p>
<p>Two days is a very narrow window to dig into a program, but the hope that it will generate some buzz, a sense of demand for the new features and more peviews to come seems to be working. The graphic community has brought it upon themselves to blaze, like Paul Revere, through every graphic forum, user group and chat room to announce that the betas are available.</p>
<p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=6f2b79c1-a4bd-4c94-afe4-7a9dd1e4dd2d&amp;title=Generating+Product+Demand&amp;url=http%3A%2F%2Fsocialplasm.com%2Fsocialplasm%2Fgenerating-product-demand%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://socialplasm.com/socialplasm/generating-product-demand/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adobe Fireworks CS4 New Features</title>
		<link>http://socialplasm.com/socialplasm/adobe-fireworks-cs4-new-features/</link>
		<comments>http://socialplasm.com/socialplasm/adobe-fireworks-cs4-new-features/#comments</comments>
		<pubDate>Sat, 31 May 2008 19:11:32 +0000</pubDate>
		<dc:creator>socialplasm</dc:creator>
		
		<category><![CDATA[Graphics]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Adobe cs4]]></category>

		<category><![CDATA[cs4]]></category>

		<category><![CDATA[fireworks]]></category>

		<category><![CDATA[graphics]]></category>

		<guid isPermaLink="false">http://socialplasm.com/socialplasm/?p=25</guid>
		<description><![CDATA[Fireworks CS4 has updated the 9 slice feature to include the capability to be applied to raster images in addition to vector graphics.<script type="text/javascript">SHARETHIS.addEntry({ title: "Adobe Fireworks CS4 New Features", url: "http://socialplasm.com/socialplasm/adobe-fireworks-cs4-new-features/" });</script>]]></description>
			<content:encoded><![CDATA[<p>Part 1 in some of the new features in the latest version of Adobe&#8217;s Creative Suite 4 applications.</p>
<p>The new <a title="Get the Fireworks CS4 Beta." href="http://labs.adobe.com/technologies/fireworkscs4/" target="_blank">beta of Fireworks CS4</a> is giving us some insight into the upcoming features that will release with the retail version; not all features are present and you only get a 2-day trial to mess with it!<br />
If you&#8217;re like me, Fireworks may not be one of your most common tools in your workflow. However, there are some new features that are making Fireworks a potential favorite for designers who are looking into breaking into Flex designing and speeding up their design process.<br />
<strong><br />
Fireworks CS4 - 9 Slice</strong></p>
<p><strong></strong>Fireworks CS3 introduced the 9 Slice (9slice, Scale9) functionality. In CS3 this feature was only applicable to vector objects. But in CS4 this feature will be extended to raster images as well.</p>
<p>Below, I&#8217;ll cover a couple of the attributes of this updated feature and how to get some predictable results from it.</p>
<p><strong>9 Slice preserves your corners</strong></p>
<p>One of the main reasons that 9 slice was developed was to preserve rounded corners in a more dynamic way than pushing around vector points.</p>
<p>9 Slice does this by preserving the scale and dimension of your designated corner areas. All other areas of your graphic are scaled according to the &#8217;slice&#8217; that they end up residing within. The graphic below shows how each slice is scaled when an image has 9 slice applied to it and then is manipulated:</p>
<p><img style="vertical-align: middle;" src="http://socialplasm.com/socialplasm/wp-content/uploads/2008/5/9Slice/9slice.jpg" alt="How 9 SLice Works" width="495" height="599" /></p>
<p><strong>9 Slice Limitations</strong></p>
<p>Because 9 slice preserves only the corner slices and scales the other five slices it tends to work the best when used on an image or vector where there is a clean horizontal and vertical area that can be stretched/scaled and not look too warped.</p>
<p>In our example above, the fill area is a clean, horizontal gradient. If we were to rotate that gradient out of a horizontal or vertical alignment, apply 9 slice, and then change the horizontal scale of the object, we start to see how 9 slice affects the 5 un-preserved slices:</p>
<p><img style="vertical-align: middle;" src="http://socialplasm.com/socialplasm/wp-content/uploads/2008/5/9Slice/angleGrad.jpg" alt="9 slice distortion" width="495" height="352" /></p>
<p><strong>9 Slice for Images</strong></p>
<p>However, if you are working with an image that can handle the scaling distortion, or you are looking to make subtle adjustments in scale to your raster image, then 9 slice is a great solution for an otherwise time consuming problem. In the example below you can see that Fireworks CS4&#8217;s 9 slice function can really come in handy when adjusting the scale or dimensions of certain raster images, while preserving the subtle corner shapes:</p>
<p><img style="vertical-align: middle;" src="http://socialplasm.com/socialplasm/wp-content/uploads/2008/5/9Slice/reflector.jpg" alt="Using 9 slice on a raster image." width="495" height="352" /></p>
<p>More to come soon on the new features of the Adobe CS4 suite!</p>
<p>Enjoy!</p>
<p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=6f2b79c1-a4bd-4c94-afe4-7a9dd1e4dd2d&amp;title=Adobe+Fireworks+CS4+New+Features&amp;url=http%3A%2F%2Fsocialplasm.com%2Fsocialplasm%2Fadobe-fireworks-cs4-new-features%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://socialplasm.com/socialplasm/adobe-fireworks-cs4-new-features/feed/</wfw:commentRss>
		</item>
		<item>
		<title>From Word to Nerd</title>
		<link>http://socialplasm.com/socialplasm/from-word-to-nerd/</link>
		<comments>http://socialplasm.com/socialplasm/from-word-to-nerd/#comments</comments>
		<pubDate>Sat, 24 May 2008 02:22:57 +0000</pubDate>
		<dc:creator>socialplasm</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Beginners]]></category>

		<category><![CDATA[beginner]]></category>

		<category><![CDATA[blogging]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://socialplasm.com/socialplasm/?p=24</guid>
		<description><![CDATA[
Recently I wrote about how many programmers would kill for the ability to work uninterrupted by clients.
Well, the flip-side of that is that not all business-type people think that working with developers is a walk down happy time lane either.
The truth is that there are distinct types of personalities that fit the role of programmer/developer [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "From Word to Nerd", url: "http://socialplasm.com/socialplasm/from-word-to-nerd/" });</script>]]></description>
			<content:encoded><![CDATA[<div><img src="http://socialplasm.com/socialplasm/wp-content/uploads/2008/5/wordToNerd/doesNotCompute.jpg" alt="Old Skool" align="middle" /></div>
<p>Recently I wrote about how <a title="The Client Free World" href="http://socialplasm.com/socialplasm/a-programmers-dream-the-client-free-world/" target="_blank">many programmers would kill for the ability to work uninterrupted by clients.</a></p>
<p>Well, the flip-side of that is that not all business-type people think that working with developers is a walk down happy time lane either.</p>
<p>The truth is that there are distinct types of personalities that fit the role of programmer/developer and there are certain character traits that make up the general population of business-type people; both sides have exceptions to the rule, of course. But the generalizations do hold some water.</p>
<p>Fact of the matter? Most business people don&#8217;t have the time to learn the ins-and-outs of Microsoft Word let alone what it takes to put together a website. Most don&#8217;t have the capacity to learn to speak in one&#8217;s and zero&#8217;s; we&#8217;re talking about specialized skills on both sides of the line.</p>
<h2>&#8216;Tech&#8217; was out of reach for many &#8230; until now</h2>
<p>There has been a drastic change in the accessibility of web development since the introduction of blogging technology.</p>
<p>Blogs enabled anyone to have a presence on the web. Shortly after the concept took off, companies like WordPress made it even easier for those less technically inclined to get in the game.</p>
<p>WordPress and other content management systems (CMS&#8217;s) made it very easy to bridge the gap between having to know how to program and wanting to have a web presence.</p>
<p>In addition to the technology being easy for public consumption, many in the development world realized that there was a whole new niche of development to be had; develop programs open-source and give them away. The return for the programmer? High levels of visibility, access to new and unique projects and jobs based on the business community&#8217;s interaction with your free and accessible plugins and applications and a new working environment; a client-free development model.</p>
<h2>What Does this Mean for the Non-Programmer?</h2>
<p>The majority of the people in the blogging community are just regular people; not uber-geeks who can create things out of one&#8217;s and zero&#8217;s.</p>
<p>How did they get started? How do they make it look like they know how to build a website?</p>
<p><strong>Here&#8217;s a recipe for building a FREE website:</strong></p>
<ol>
<li><a title="Sign Up for a FREE Website" href="http://wordpress.com/signup/" target="_blank">Go and sign up for a WordPress account.</a> A WordPress account will set you up with your own, free, easy to manage website.</li>
<li>Make it pretty by choosing a new theme for it. A theme is a fast and free way of &#8217;skinning&#8217; your site with a new look and feel. <a title="Log in once you've signed up." href="https://wordpress.com/wp-login.php" target="_blank">Log into your free wordpress account</a> and you can search and install any one of thousands of free themes.</li>
<li>Log in start and writing blog posts.</li>
<li>There you go! You have a FREE Internet presence!</li>
</ol>
<h2>Thanks, but I am a little more motivated. I want my site to Rock!</h2>
<p>Ok, read on&#8230;</p>
<p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=6f2b79c1-a4bd-4c94-afe4-7a9dd1e4dd2d&amp;title=From+Word+to+Nerd&amp;url=http%3A%2F%2Fsocialplasm.com%2Fsocialplasm%2Ffrom-word-to-nerd%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://socialplasm.com/socialplasm/from-word-to-nerd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Programmer&#8217;s Dream: The Client-Free World</title>
		<link>http://socialplasm.com/socialplasm/a-programmers-dream-the-client-free-world/</link>
		<comments>http://socialplasm.com/socialplasm/a-programmers-dream-the-client-free-world/#comments</comments>
		<pubDate>Fri, 23 May 2008 21:46:17 +0000</pubDate>
		<dc:creator>socialplasm</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[The Nerdery]]></category>

		<category><![CDATA[beginner]]></category>

		<category><![CDATA[blogging]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://socialplasm.com/socialplasm/?p=23</guid>
		<description><![CDATA[I know many programmers who confess that the best business opportunity they could imagine would be one where they weren&#8217;t constantly bothered by their clients.
I don&#8217;t build in order to have clients. I have clients in order to build.
-Ayn Rand
Enter, a new business relationship: coding for open source platforms. That&#8217;s right, programmers that have caught [...]<script type="text/javascript">SHARETHIS.addEntry({ title: "A Programmer&#8217;s Dream: The Client-Free World", url: "http://socialplasm.com/socialplasm/a-programmers-dream-the-client-free-world/" });</script>]]></description>
			<content:encoded><![CDATA[<p>I know many programmers who confess that the best business opportunity they could imagine would be one where they weren&#8217;t constantly bothered by their clients.</p>
<blockquote><p>I don&#8217;t build in order to have clients. I have clients in order to build.<br />
-Ayn Rand</p></blockquote>
<p>Enter, a new business relationship: coding for open source platforms. That&#8217;s right, programmers that have caught on to the vision that if they write code, plugins, themes or other elements for platforms such as WordPress &#8230; for free &#8230; that they actually make as much money, if not more, as they would working on a more transactional client-based list of projects.</p>
<div><img src="http://www.socialplasm.com/socialplasm/wp-content/uploads/2008/5/clientFreeWorld/projectConvo.jpg" alt="Old Skool" align="middle" /></div>
<p>The old school model of development projects for clients <em>(client approaches developer, developer does work, client pays for work)</em> is still strong, and probably won&#8217;t go away any time soon. This new client-free model can supplement, and in some cases, completely replace the project-to-project routine that many programmers and developers find themselves in.</p>
<div><img src="http://www.socialplasm.com/socialplasm/wp-content/uploads/2008/5/clientFreeWorld/oldSkool.jpg" alt="Old Skool" align="middle" /></div>
<h2>The Programmer&#8217;s Pay-off</h2>
<div><strong>Here are 10 steps</strong> to how the new method of developing free or low-cost projects for the open source community can impact a programmers pocket book. We&#8217;ll use programming a free plugin for WordPress as an example:</div>
<div>
<ol>
<li>(Identify) Programmer sees a need within the WordPress blogging platform</li>
<li>(Contribute)Programmer takes 3 hours on a Tuesday night and writes a nifty plugin for use within the WordPress community to fill the need</li>
<li>(Announce) She posts it on WordPress&#8217; page to let the community know it&#8217;s out there and available for download</li>
<li>(Distribute) She creates a page on her own blog, puts the plugin on there for download</li>
<li>(Communicate) She goes out to the communities where she can tell people that her plugin can fill their needs</li>
<li>People follow her links back to her blog and download the plugin</li>
<li>Over a short bit of time the plugin gains some traction and a community of users and supporters is built</li>
<li>As a result, businesses contact her about writing a similar app, with some tweaks, for their internal website</li>
<li>She contacts them and provides a proposal</li>
<li>Project approved, she takes the check to the bank</li>
</ol>
</div>
<div>This type of development means that a developer can program something once and have the influence felt more wide-spread than if they were to develop &#8216;for&#8217; an individual entity.</div>
<div><img src="http://www.socialplasm.com/socialplasm/wp-content/uploads/2008/5/clientFreeWorld/newSkool.jpg" alt="Old Skool" align="middle" /></div>
<div>It may seem like an over-simplification of the process; &#8216;build it once, benefit the masses&#8217; &#8230; but the idea is that by contributing and distributing in small, measured efforts to the open source community, or pro-bono for a widely-used platform like WordPress, your mad skillz have the potential to gain exponential visibility amongst those that are looking for good developers for their own projects.</div>
<div>Additionally, your free plugin may become the &#8216;lite&#8217; version of a more robust plugin or app that you choose to build down the road based on the success of the free version.</div>
<p><a href="http://sharethis.com/item?&wp=2.5.1&amp;publisher=6f2b79c1-a4bd-4c94-afe4-7a9dd1e4dd2d&amp;title=A+Programmer%26%238217%3Bs+Dream%3A+The+Client-Free+World&amp;url=http%3A%2F%2Fsocialplasm.com%2Fsocialplasm%2Fa-programmers-dream-the-client-free-world%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://socialplasm.com/socialplasm/a-programmers-dream-the-client-free-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
