<?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>Work. Play. Innovate. &#187; Open Source</title>
	<atom:link href="http://danielshipton.com/tag/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://danielshipton.com</link>
	<description>following open source principles in a not so open world</description>
	<lastBuildDate>Tue, 26 Jan 2010 22:46:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Strive for Rings of Inclusion</title>
		<link>http://danielshipton.com/strive-for-rings-of-inclusion/70/</link>
		<comments>http://danielshipton.com/strive-for-rings-of-inclusion/70/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 07:02:11 +0000</pubDate>
		<dc:creator>dshipton</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Coworking]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Community Building]]></category>
		<category><![CDATA[inclusion]]></category>
		<category><![CDATA[rings]]></category>
		<category><![CDATA[rings of inclusion]]></category>
		<category><![CDATA[working]]></category>

		<guid isPermaLink="false">http://danielshipton.com/?p=70</guid>
		<description><![CDATA[This is the first post in a series of posts that show how common the roots of coworking and Open Source are. Illustrating the commonalities was the focus of my talk at Highlight Midwest and I believe it is worth writing some of those thoughts and concepts down.
Coworking and Open Source communities are built around [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first post in a series of posts that show how common the roots of coworking and Open Source are. Illustrating the commonalities was the focus of my talk at Highlight Midwest and I believe it is worth writing some of those thoughts and concepts down.</p>
<p>Coworking and Open Source communities are built around including people.  A closer look reveals that there is different levels or rings associated with being included in a coworking or Open Source community.</p>
<h2>Rings of Inclusion in an Open Source Project</h2>
<p>Core developers make up the innermost ring on most Open Source projects. Non-core developers, active forum members, outspoken mailing list participants, and power users make up the next ring or rings.  The outer rings of the project are made up by users who attempt to stay informed about the project or those who are not users but simply keep abreast of its ongoings.</p>
<h2>Rings of Inclusion in a Coworking Space</h2>
<p>Full-time desks and the space owner are usually at the middle of most coworking communities. The next level out is the part-timers and others that frequent the space during the day.  Another ring out are those participating in events held at the coworking spaces. A good example of coworking Rings of Inclusion is found in the <a title="Citizen Space Plan and Pricing Information" href="http://citizenspace.us/pricing/" target="_blank">plan descriptions of Citizen Space</a>.</p>
<p>Allowing participation at many different levels is one way that coworking and Open Source create thriving communities.  Utilize the Rings of Inclusion concept for your community. You won&#8217;t be disappointed.</p>
]]></content:encoded>
			<wfw:commentRss>http://danielshipton.com/strive-for-rings-of-inclusion/70/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working With GIT&#039;s Subversion Support</title>
		<link>http://danielshipton.com/working-with-git-svn-subversion-support/134/</link>
		<comments>http://danielshipton.com/working-with-git-svn-subversion-support/134/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 23:20:15 +0000</pubDate>
		<dc:creator>dshipton</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[conflicts]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[git-svn]]></category>
		<category><![CDATA[merge]]></category>
		<category><![CDATA[rebase]]></category>
		<category><![CDATA[stash]]></category>
		<category><![CDATA[working]]></category>

		<guid isPermaLink="false">http://danielshipton.com/?p=3</guid>
		<description><![CDATA[1. Checkout source:
git-svn clone svn+ssh://path/to/trunk
2. Work Work Work then:
git commit (/path/to/file/or/dir/ or -a)
or
git add /path/to/file.extension
git commit (/path/to/file/or/dir/ or -a)
3. Repeat  Step 2 Ad nauseum
4. Sync up with svn repository again or to sync up any time(see 7 for stashing uncommitted changes):
git-svn rebase
5. If there are conflicts:
Fix offending file/files
git-add offending file/files
git-rebase --continue
6. Commit work back to [...]]]></description>
			<content:encoded><![CDATA[<p>1. Checkout source:</p>
<pre>git-svn clone svn+ssh://path/to/trunk</pre>
<p>2. Work Work Work then:</p>
<pre>git commit (/path/to/file/or/dir/ or -a)</pre>
<p>or</p>
<pre>git add /path/to/file.extension</pre>
<pre>git commit (/path/to/file/or/dir/ or -a)</pre>
<p>3. Repeat  Step 2 Ad nauseum</p>
<p>4. Sync up with svn repository again or to sync up any time(see 7 for stashing uncommitted changes):</p>
<pre>git-svn rebase</pre>
<p>5. If there are conflicts:<br />
Fix offending file/files</p>
<pre>git-add offending file/files</pre>
<pre>git-rebase --continue</pre>
<p>6. Commit work back to svn repository</p>
<pre> git-svn dcommit</pre>
<p>7. To sync with uncommitted local changes (stash, sync, restore stashed changes and delete stash)</p>
<pre> git-stash</pre>
<pre> git-svn rebase</pre>
<pre> git-stash apply</pre>
<pre> git-stash clear</pre>
]]></content:encoded>
			<wfw:commentRss>http://danielshipton.com/working-with-git-svn-subversion-support/134/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meet Daniel</title>
		<link>http://danielshipton.com/about-2/</link>
		<comments>http://danielshipton.com/about-2/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 21:57:25 +0000</pubDate>
		<dc:creator>dshipton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Coworking]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Impromptu Studio]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[working]]></category>

		<guid isPermaLink="false">http://danielshipton.wpblogs.bitmethod.com/about-2/</guid>
		<description><![CDATA[The Scoop
Daniel Shipton is an entrepreneur and leader who is not afraid to carve out his own destiny. He is passionate about creating usable technology and engaging people in digital and real life communities.


Current Projects
His interest in streamlining the business side of small business coupled with his love for Open Source inspired him to open a [...]]]></description>
			<content:encoded><![CDATA[<h3>The Scoop</h3>
<p style="text-align: center">Daniel Shipton is an <strong>entrepreneur</strong> and <strong>leader</strong> who is <span style="text-decoration: underline">not afraid</span> to carve out his own destiny. He is passionate about creating <strong>usable technology</strong> and <strong>engaging people</strong> in digital and real life communities.</p>
<p style="text-align: center"><a href="http://danielshipton.com"><img class="size-full wp-image-26 aligncenter" style="border: 0pt none" title="Daniel Shipton" src="http://danielshipton.com/files/2008/10/danielshiptonlookingup.gif" alt="" width="300" height="394" /></a></p>
<p style="text-align: center">
<h3>Current Projects</h3>
<p><a href="http://impromptustudio.com"><img class="size-medium wp-image-28 alignleft" style="border: 0pt none" title="Impromptu Studio" src="http://danielshipton.com/wp-content/uploads/2008/10/impromptulogo-300x71.jpg" alt="" width="300" height="71" /></a>His interest in streamlining the business side of small business coupled with his love for <a title="Open Source Initiative" href="http://opensource.org/" target="_blank">Open Source</a> inspired him to open a <a title="Coworking Wiki" href="http://coworking.pbwiki.com/" target="_blank">coworking</a> facility called <a title="Impromptu Studio" href="http://impromptustudio.com" target="_blank">Impromptu Studio</a> in <a title="City of Des Moines" href="http://www.ci.des-moines.ia.us/" target="_blank">Des Moines, Iowa</a>. Impromptu Studio opened its doors August 4th, 2008 and has been recognized as a hub for Des Moines entrepreneurs.</p>
<p><a href="http://bitmethod.com"><img class="size-full wp-image-174  alignright" style="border: 0pt none" title="bitmethod_logo" src="http://danielshipton.com/files/2009/09/bitmethod_logo.png" alt="BitMethod" width="300" height="97" /></a></p>
<p>Daniel&#8217;s background is rooted in the high-performance computing world which allows him to have a unique 30,000 foot view of technology. Identifying trends in the undercurrents of technology and society to create high-value partnerships is his strong suit. The avenue he found for applying these talents came when he co-founded a web service driven firm in called <a title="BitMethod" href="http://bitmethod.com" target="_blank">BitMethod</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://danielshipton.com/about-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
