<?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>Yarnpad! Blog</title>
	<atom:link href="http://yarnpad.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://yarnpad.com/blog</link>
	<description>Yarnpad updates...</description>
	<lastBuildDate>Wed, 04 Aug 2010 19:55:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Maintain a Versioning System in your work environment</title>
		<link>http://yarnpad.com/blog/2010/08/04/maintain-a-versioning-system-in-your-work-environment/</link>
		<comments>http://yarnpad.com/blog/2010/08/04/maintain-a-versioning-system-in-your-work-environment/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 19:55:30 +0000</pubDate>
		<dc:creator>lanre</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://yarnpad.com/blog/?p=28</guid>
		<description><![CDATA[if you have issues(like When did you upload it &#124;&#124;  it not redirecting anymore &#124;&#124; it worked yesterday&#124;&#124; not sure what i did wrong ) { Then this post would serve as a relieve for you } else { if (you are a developer &#124;&#124; you are a system administrator){ you can switch your job } [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F08%2F04%2Fmaintain-a-versioning-system-in-your-work-environment%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F08%2F04%2Fmaintain-a-versioning-system-in-your-work-environment%2F&amp;source=yarnpad&amp;style=normal&amp;service=retwt.me" height="61" width="50" /><br />
			</a>
		</div>
<p>if you have issues(like When did you upload it ||  it not redirecting anymore || it worked yesterday|| not sure what i did wrong )</p>
<p>{</p>
<p>Then this post would serve as a relieve for you</p>
<p>}</p>
<p>else {</p>
<p>if (you are a developer || you are a system administrator){</p>
<p>you can switch your job</p>
<p>}</p>
<p>}</p>
<p>This post would help you get started with subversion Source code management. for more information about subversion check <a href="http://subversion.tigris.org/">http://subversion.tigris.org/</a></p>
<p>You would need to download subversion server <a href="http://subversion.apache.org/packages.html">http://subversion.apache.org/packages.html</a>. Then you can connect to the server using you favorite IDE (Netbeans,Eclipse,Virtual Studio ).</p>
<p>In this post i would take you through how to install subversion on your windows 7 O/S using Netbeans 6.8</p>
<p>Subversion support various protocol (File, HTTP,HTTPS,SSH,SVN), but i would be install subversion as a window service using svnserve.exe.</p>
<p>1 install the subversion server ( set the subversion port number to 3790 )</p>
<p>## this explains how to create a subversion repository</p>
<p>## make sure the subversion server path as been added to your windows path so that you can call subversion from anywhere in your cmd<br />
## start-&gt;right click on computer-&gt;properties-&gt;Advanced System Setup-&gt;Environment Variables-&gt;path-&gt;edit-&gt;add C:\Program Files\CollabNet\Subversion Server to the path variables assuming you installed the subversion server in this path</p>
<p>## this create a sub version repository in the following</p>
<p>## it create 4 folders (hooks,conf,look,db) in your repository</p>
<p>2 svnadmin create &#8220;c:\Subversion\svn&#8221;</p>
<p>## edit conf files so that you can authtenticate users that can access your subversion system<br />
3 open the folder where you created  the repository &#8220;c:\Subversion\svn\conf&#8221;<br />
   open the file svnserve.conf<br />
   uncomment the following lines<br />
   anon-access = read<br />
   auth-access = write<br />
   password-db = passwd</p>
<p>## add a user lanre with password lanre </p>
<p> ## add username and password</p>
<p>##format username= password</p>
<p>4 open the file passwd in the folder &#8220;c:\Subversion\svn\conf&#8221;<br />
   lanre= lanre<br />
## create a window service<br />
##called svnserver<br />
## with exe path C:\Program Files\CollabNet\Subversion Server\svnserve.exe<br />
## with root folder c:\Subversion<br />
## that listen at port 3790 (the port that you specified when installing subversion on the server)<br />
## host server address localhost<br />
## with display name Subversion Repository<br />
## and depend on tcpip protocol<br />
## service start auto<br />
5  sc create svnserver binPath= &#8220;\&#8221;C:\Program Files\CollabNet\Subversion Server\svnserve.exe\&#8221; &#8211;service &#8211;root c:\Subversion\svn &#8211;listen-port=3790 &#8211;listen-host=localhost&#8221; DisplayName= &#8220;Subversion Repository&#8221; depend= Tcpip start= auto</p>
<p>6 open you subversion client  (make sure the subversion server is up -&gt; start the service &#8220;Subversion Repository&#8221; from your windows services  )</p>
<p>## open you netbeans IDE -&gt;team-&gt;subversion -&gt;download the subversion plugin</p>
<p>4 connect to the repository using svn://localhost/snv<br />
   Enter the username and password to the server.</p>
<p>then checkout your project .</p>
]]></content:encoded>
			<wfw:commentRss>http://yarnpad.com/blog/2010/08/04/maintain-a-versioning-system-in-your-work-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yarnpad Photos!!!</title>
		<link>http://yarnpad.com/blog/2010/07/30/yarnpad-photos/</link>
		<comments>http://yarnpad.com/blog/2010/07/30/yarnpad-photos/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 11:59:26 +0000</pubDate>
		<dc:creator>vsylva</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://yarnpad.com/blog/?p=23</guid>
		<description><![CDATA[Hurray photos have been added to yarnpad. now you can upload your photos to yarnpad and share with your friends.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F07%2F30%2Fyarnpad-photos%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F07%2F30%2Fyarnpad-photos%2F&amp;source=yarnpad&amp;style=normal&amp;service=retwt.me" height="61" width="50" /><br />
			</a>
		</div>
<p>Hurray photos have been added to yarnpad. now you can upload your photos to yarnpad and share with your friends. </p>

<a href='http://yarnpad.com/blog/2010/07/30/yarnpad-photos/photo-update/' title='photo-update'><img width="150" height="150" src="http://yarnpad.com/blog/wp-content/uploads/2010/07/photo-update-150x150.gif" class="attachment-thumbnail" alt="photo-update" title="photo-update" /></a>
<a href='http://yarnpad.com/blog/2010/07/30/yarnpad-photos/photo-update-2/' title='photo-update'><img width="150" height="150" src="http://yarnpad.com/blog/wp-content/uploads/2010/07/photo-update1-150x150.gif" class="attachment-thumbnail" alt="photo-update" title="photo-update" /></a>

]]></content:encoded>
			<wfw:commentRss>http://yarnpad.com/blog/2010/07/30/yarnpad-photos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Introducing the Yarnpad API</title>
		<link>http://yarnpad.com/blog/2010/07/30/introducing-the-yarnpad-api/</link>
		<comments>http://yarnpad.com/blog/2010/07/30/introducing-the-yarnpad-api/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 11:34:52 +0000</pubDate>
		<dc:creator>vsylva</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://yarnpad.com/blog/?p=19</guid>
		<description><![CDATA[Some smart folks out there on the that series of tubes we call the Internet have been putting together interesting projects like this portal without any help from us so we thought it was high time to release an API. Image found at BoingBoing The Yarnpad API exposes some of our internal workings using JSON [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F07%2F30%2Fintroducing-the-yarnpad-api%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F07%2F30%2Fintroducing-the-yarnpad-api%2F&amp;source=yarnpad&amp;style=normal&amp;service=retwt.me" height="61" width="50" /><br />
			</a>
		</div>
<p>Some smart folks out there on the that series of tubes we call the  Internet have been putting together interesting projects like <a href="http://jobberman.com/">this portal</a> without any help from us so we  thought it was high time to release an API.</p>
<p><a href="http://yarnpad.com/api.php"><img src="http://eightchainedourangoutangs.com/tubes/internettubes.jpg" alt="" width="300" /></a><br />
<small>Image found at <a href="http://www.boingboing.net/2006/07/03/tshirt_design_the_in.html">BoingBoing</a></small><br />
<a title="The Yarnpad API" href="http://yarnpad.com/api.php" target="_blank">The Yarnpad API</a> exposes some of  our internal workings using JSON and XML. Note to developers: All of the  methods (except for the public timeline) require user authentication  via Basic Auth. The username is the email address you have stored on Yarnpad, the password, your password.</p>
]]></content:encoded>
			<wfw:commentRss>http://yarnpad.com/blog/2010/07/30/introducing-the-yarnpad-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yarnpad Updates</title>
		<link>http://yarnpad.com/blog/2010/05/25/yarnpad-updates/</link>
		<comments>http://yarnpad.com/blog/2010/05/25/yarnpad-updates/#comments</comments>
		<pubDate>Tue, 25 May 2010 21:45:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[whats new]]></category>

		<guid isPermaLink="false">http://yarnpad.com/blog/?p=7</guid>
		<description><![CDATA[Today we&#8217;re launching new features at Yarnpad. Most noticeable is a visual redesign of the web site. Other new features and conveniences include the following. Easier Invitations &#8211; We made it so you can invite friends from the web. To invite lots of friends at once click on &#8220;add friends&#8221; or &#8220;Invite!&#8221; at Yarnpad.com and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F05%2F25%2Fyarnpad-updates%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F05%2F25%2Fyarnpad-updates%2F&amp;source=yarnpad&amp;style=normal&amp;service=retwt.me" height="61" width="50" /><br />
			</a>
		</div>
<p>Today we&#8217;re launching new features at Yarnpad. Most noticeable is a visual redesign of the web site. Other new features and conveniences include the following.</p>
<p>Easier Invitations &#8211; We made it so you can invite friends from the web. To invite lots of friends at once click on &#8220;add friends&#8221; or &#8220;Invite!&#8221; at Yarnpad.com and enter some email addresses.</p>
]]></content:encoded>
			<wfw:commentRss>http://yarnpad.com/blog/2010/05/25/yarnpad-updates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Text And Drive</title>
		<link>http://yarnpad.com/blog/2010/05/25/dont-text-and-drive/</link>
		<comments>http://yarnpad.com/blog/2010/05/25/dont-text-and-drive/#comments</comments>
		<pubDate>Tue, 25 May 2010 20:21:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Texting]]></category>

		<guid isPermaLink="false">http://yarnpad.com/blog/?p=3</guid>
		<description><![CDATA[Today&#8217;s news about a kid in Michigan who smashed into a police car because he was texting while driving is a sobering reminder: Don&#8217;t text and drive. Yarn responsibly.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F05%2F25%2Fdont-text-and-drive%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F05%2F25%2Fdont-text-and-drive%2F&amp;source=yarnpad&amp;style=normal&amp;service=retwt.me" height="61" width="50" /><br />
			</a>
		</div>
<p>Today&#8217;s news about<a href="http://www.freep.com/apps/pbcs.dll/article?AID=/20060828/NEWS99/60828004" target="_blank"> a kid in Michigan who smashed into a police car because he was texting while driving</a> is a sobering reminder: Don&#8217;t text and drive. Yarn responsibly.</p>
]]></content:encoded>
			<wfw:commentRss>http://yarnpad.com/blog/2010/05/25/dont-text-and-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to Yarnpad.com’s Blog!</title>
		<link>http://yarnpad.com/blog/2010/05/25/welcome-to-yarnpad/</link>
		<comments>http://yarnpad.com/blog/2010/05/25/welcome-to-yarnpad/#comments</comments>
		<pubDate>Tue, 25 May 2010 15:38:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://localhost/yarnpad/blog/?p=1</guid>
		<description><![CDATA[Dear Yarner, Welcome to Yarnpad.com’s official blog! Yarnpad is a real-time information network powered by people all around the world that lets you share and discover what’s happening now. Yarnpad asks “what’s happening” and makes the answer spread across the globe to millions, immediately. We look forward to seeing what you’ll bring to the table! [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F05%2F25%2Fwelcome-to-yarnpad%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fyarnpad.com%2Fblog%2F2010%2F05%2F25%2Fwelcome-to-yarnpad%2F&amp;source=yarnpad&amp;style=normal&amp;service=retwt.me" height="61" width="50" /><br />
			</a>
		</div>
<div>
<p>Dear Yarner,</p>
<p>Welcome to Yarnpad.com’s official blog!</p>
<h2>Yarnpad is a real-time information network powered by  people all around the world that lets you share and discover what’s  happening now.</h2>
<p>Yarnpad asks “what’s happening” and makes the answer  spread across the globe to millions, immediately.</p>
<p>We look forward to seeing what you’ll bring to the table!</p>
<p>The Yarnpad.com Team</p>

</div>
]]></content:encoded>
			<wfw:commentRss>http://yarnpad.com/blog/2010/05/25/welcome-to-yarnpad/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

