<?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>Interactive Logic</title>
	<atom:link href="http://interactivelogic.net/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://interactivelogic.net/wp</link>
	<description>Evan K. Stone on iOS Development and UX Design and Engineering</description>
	<lastBuildDate>Fri, 22 Mar 2013 17:22:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Super-Easy Date Formatting in Objective-C [#iosdev]</title>
		<link>http://interactivelogic.net/wp/2013/03/super-easy-date-formatting-in-objective-c/</link>
		<comments>http://interactivelogic.net/wp/2013/03/super-easy-date-formatting-in-objective-c/#comments</comments>
		<pubDate>Fri, 22 Mar 2013 17:22:26 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=421</guid>
		<description><![CDATA[Available since iOS 4, the localizedStringFromDate:dateStyle:timeStyle: class method provides an extremely convenient way of formatting a date as a string. All you have to do is provide your NSDate object that you wish to convert, and pass the appropriate NSDateFormatterStyle value for the types of formats you would like for your date and time parts of the date. If you [...]]]></description>
				<content:encoded><![CDATA[<div style="margin: 0px; padding: 0px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;">Available since iOS 4, the <span style="line-height: 1.428571em; font-family: Menlo; font-size: 11px; color: #3d1d81;">localizedStringFromDate</span><span style="line-height: 1.428571em; font-family: Menlo; font-size: 11px;">:</span><span style="line-height: 1.428571em; font-family: Menlo; font-size: 11px; color: #3d1d81;">dateStyle</span><span style="line-height: 1.428571em; font-family: Menlo; font-size: 11px;">:</span><span style="line-height: 1.428571em; font-family: Menlo; font-size: 11px; color: #3d1d81;">timeStyle</span><span style="line-height: 1.428571em; font-family: Menlo; font-size: 11px;">: </span><strong>class method</strong> provides an extremely convenient way of formatting a date as a string. All you have to do is provide your NSDate object that you wish to convert, and pass the appropriate <span style="line-height: 1.428571em; color: #3d1d81; font-family: Menlo; font-size: 11px;">NSDateFormatterStyle</span> value for the types of formats you would like for your date and time parts of the date. If you use <span style="line-height: 1.428571em; color: #3d1d81; font-family: Menlo; font-size: 11px;">NSDateFormatterNoStyle</span> then the particular part will not be rendered. The other good news is that it&#8217;s generating a localized string, so the format is taken care of by the framework, which, honestly, is exactly how it should work in the first place.</div>
<div style="margin: 0px; padding: 0px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;"></div>
<div style="margin: 0px; padding: 0px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;">Example:</div>
<div style="margin: 0px; padding: 0px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;"></div>
<div style="margin: 0px; padding: 0px 0px 0px 30px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;"><span style="line-height: 1.428571em; font-size: 11px; font-family: Menlo;">[</span><span style="line-height: 1.428571em; font-size: 11px; font-family: Menlo; color: #703daa;">NSDateFormatter </span><span style="line-height: 1.428571em; font-size: 11px; font-family: Menlo;"><span style="line-height: 1.428571em; color: #3d1d81;">localizedStringFromDate</span>:myDate<span style="line-height: 1.428571em; color: #4f8187;"> </span><span style="line-height: 1.428571em; color: #3d1d81;">dateStyle</span>:<span style="line-height: 1.428571em; color: #3d1d81;">NSDateFormatterShortStyle </span><span style="line-height: 1.428571em; color: #3d1d81;">timeStyle</span>:<span style="line-height: 1.428571em; color: #3d1d81;">NSDateFormatterNoStyle</span>];</span></div>
<div style="margin: 0px; padding: 0px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;"></div>
<div style="margin: 0px; padding: 0px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;">The generates &#8220;3/22/13&#8243; in my locale (US), but if I switch my device to Portugal, for instance (of course), the date becomes &#8220;21/03/13&#8243;.</div>
<div style="margin: 0px; padding: 0px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;"></div>
<div style="margin: 0px; padding: 0px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;">Here&#8217;s a link to the Apple Developer docs:</div>
<div style="margin: 0px; padding: 0px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;"></div>
<div style="margin: 0px; padding: 0px; border: 0px; font-family: Helvetica, Arial, 'Droid Sans', sans-serif; line-height: 19.984375px;"><a style="margin: 0px; padding: 0px; border: 0px; color: #047ac6;" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html%23//apple_ref/occ/clm/NSDateFormatter/localizedStringFromDate:dateStyle:timeStyle:" target="_blank">https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSDateFormatter_Class/Reference/Reference.html%23//apple_ref/occ/clm/NSDateFormatter/localizedStringFromDate:dateStyle:timeStyle:</a></div>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2013/03/super-easy-date-formatting-in-objective-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BLOKK Wireframing Font</title>
		<link>http://interactivelogic.net/wp/2013/02/blokk-wireframing-font/</link>
		<comments>http://interactivelogic.net/wp/2013/02/blokk-wireframing-font/#comments</comments>
		<pubDate>Thu, 21 Feb 2013 17:45:46 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=410</guid>
		<description><![CDATA[BLOKK font gives you a nice fill text for mock-ups and wireframing without the lorem ipsum. The new and better wireframing font. &#8220;BLOKK is a font for quick mock-ups and wireframing for clients who do not understand latin.&#8221; I&#8217;ve actually wanted something like this for a while. -e]]></description>
				<content:encoded><![CDATA[<p><a href="http://blokkfont.com/">BLOKK font gives you a nice fill text for mock-ups and wireframing without the lorem ipsum. The new and better wireframing font.</a></p>
<blockquote><p>&#8220;BLOKK is a font for quick mock-ups and wireframing for clients who do not understand latin.&#8221;</p>
</blockquote>
<p>I&#8217;ve actually wanted something like this for a while. </p>
<p>-e</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2013/02/blokk-wireframing-font/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to conceal UIWebView&#8217;s initial white loading view [#iosdev]</title>
		<link>http://interactivelogic.net/wp/2012/11/how-to-conceal-uiwebviews-initial-white-loading-view-iosdev/</link>
		<comments>http://interactivelogic.net/wp/2012/11/how-to-conceal-uiwebviews-initial-white-loading-view-iosdev/#comments</comments>
		<pubDate>Fri, 16 Nov 2012 18:44:46 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=406</guid>
		<description><![CDATA[Thanks to this StackOverflow thread, I was able to conceal UIWebView&#8217;s intial white, &#8220;blank page&#8221; look while it was loading. iphone uiwebview inital white view &#8211; Stack Overflow One thing you can try is put a UIView with the color you want and position it above the UIWebView with the same width and height. Then [...]]]></description>
				<content:encoded><![CDATA[<p>Thanks to this StackOverflow thread, I was able to conceal UIWebView&#8217;s intial white, &#8220;blank page&#8221; look while it was loading.</p>
<blockquote><p><a href="http://stackoverflow.com/questions/2531621/iphone-uiwebview-inital-white-view">iphone uiwebview inital white view &#8211; Stack Overflow</a></p>
<p>One thing you can try is put a UIView with the color you want and position it above the UIWebView with the same width and height. Then in the webViewDidFinishLoad method, set the UIView to hidden.</p>
</blockquote>
<p>Hope it proves useful to someone else.</p>
<p>-e</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2012/11/how-to-conceal-uiwebviews-initial-white-loading-view-iosdev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iterating through NSDictionary [#iosdev]</title>
		<link>http://interactivelogic.net/wp/2012/11/iterating-through-nsdictionary-iosdev/</link>
		<comments>http://interactivelogic.net/wp/2012/11/iterating-through-nsdictionary-iosdev/#comments</comments>
		<pubDate>Fri, 16 Nov 2012 18:34:30 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=404</guid>
		<description><![CDATA[This was very helpful to me recently&#8230; Iterating through NSDictionary Iteration through NSDictionary could be achieved at least in two ways: using NSArray with [NSDictionary allKeys] or NSEnumerator. Method 1: NSArray *keyArray = [bigUglyDictionary allKeys]; int count = [keyArray count]; for (int i=0; i &#60; count; i++) { NSDictionary *tmp = [bigUglyDictionary objectForKey:[ keyArray objectAtIndex:i]]; [...]]]></description>
				<content:encoded><![CDATA[<p>This was very helpful to me recently&#8230;</p>
<p><a href="http://foobarpig.com/iphone/iterating-through-nsdictionary.html">Iterating through NSDictionary</a></p>
<blockquote><p>Iteration through NSDictionary could be achieved at least in two ways: using NSArray with [NSDictionary allKeys] or NSEnumerator.</p>
<p>Method 1:</p>
<pre>NSArray *keyArray =  [bigUglyDictionary allKeys];
int count = [keyArray count];
for (int i=0; i &lt; count; i++) {
  NSDictionary *tmp = [bigUglyDictionary objectForKey:[ keyArray objectAtIndex:i]];
}
</pre>
<p>Method 2:</p>
<pre>NSEnumerator *enumerator = [bigUglyDictionary keyEnumerator];
id key;
while ((key = [enumerator nextObject])) {
  NSDictionary *tmp = [bigUglyDictionary objectForKey:key];
}
</pre>
<p>Second way is a little bit faster, so if you work with huge dictionaries and have no need of array with their keys &ndash; use it.</p>
</blockquote>
<p>&nbsp;</p>
<p>Hope it helps someone else too!</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2012/11/iterating-through-nsdictionary-iosdev/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tip: Generate a File List in TextWrangler [#devtips]</title>
		<link>http://interactivelogic.net/wp/2012/11/tip-generate-a-file-list-in-textwrangler-devtips/</link>
		<comments>http://interactivelogic.net/wp/2012/11/tip-generate-a-file-list-in-textwrangler-devtips/#comments</comments>
		<pubDate>Thu, 01 Nov 2012 19:53:00 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=391</guid>
		<description><![CDATA[Here&#8217;s a really easy way to generate a list of files using TextWrangler: Open a new window in TextWrangler. Navigate to the folder you want in Finder. Drag that folder from the Finder window to the TextWrangler window. TextWrangler generates a cleanly-formatted listing of all the contents of that folder, including all sub-folders and their [...]]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a <strong>really easy</strong> way to generate a list of files using <a title="Bare Bones Software - TextWrangler" href="http://www.barebones.com/products/textwrangler/" target="_blank">TextWrangler</a>:</p>
<ol>
<li>Open a new window in TextWrangler.</li>
<li>Navigate to the folder you want in Finder.</li>
<li>Drag that folder from the Finder window to the TextWrangler window.</li>
<li>TextWrangler generates a cleanly-formatted listing of all the contents of that folder, including all sub-folders and their contents.</li>
</ol>
<p>I would imagine this would work in BBEdit as well, but I have not tested it.</p>
<p>Source:&nbsp;See <strong>Post #17</strong> here:&nbsp;<a title="Mac Rumors - How to print a list of files in a folder" href="http://forums.macrumors.com/showthread.php?t=586589" target="_blank">Mac Rumors &#8211; How to print a list of files in a folder</a>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2012/11/tip-generate-a-file-list-in-textwrangler-devtips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[self shoot:foot]; (#iosdev #xcode, #ios6)</title>
		<link>http://interactivelogic.net/wp/2012/10/self-shootfoot-iosdev-xcode-ios6/</link>
		<comments>http://interactivelogic.net/wp/2012/10/self-shootfoot-iosdev-xcode-ios6/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 15:28:12 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=385</guid>
		<description><![CDATA[If you need to stay with Xcode 4.3 and you&#8217;re not ready to make the 4.5 jump, be very careful when upgrading your devices to iOS 6 (i.e. consider not doing it). Yesterday, I upgraded my iPhone 4 to iOS 6 and now my current version of Xcode (4.3.3) cannot deploy to it.&#160; I completely [...]]]></description>
				<content:encoded><![CDATA[<p>If you need to stay with Xcode 4.3 and you&#8217;re not ready to make the 4.5 jump, be very careful when upgrading your devices to iOS 6 (i.e. consider not doing it).</p>
<p>Yesterday, I upgraded my iPhone 4 to iOS 6 and now my current version of Xcode (4.3.3) cannot deploy to it.&nbsp;</p>
<p>I completely forgot that Xcode has this limitation.&nbsp;It&#8217;s similar to a situation that I encountered a while back when I upgraded my devices to iOS 5, but that was worse because at that time I couldn&#8217;t upgrade to Xcode 4.3 because my MacBook Pro had a Core Duo processor and could not be upgraded to Lion (Xcode 4.3 required Lion).&nbsp;Unfortunately, the development team I&#8217;m working with is sticking with Xcode 4.3 for the time being so that means my iPhone can&#8217;t be used for testing now.</p>
<p>This is really annoying.</p>
<div>The good news is that I have an iPad that is on iOS 5.1, and it can&#8217;t be upgraded.&nbsp;The bad news is that we&#8217;re working on a product <strong>for&nbsp;iPhone</strong>. The experience feels a bit different when using it on iPad, but I&#8217;ll just have to use the simulator most of the time and then the iPad when I need to do on-device testing.</div>
<div></div>
<div>Be careful out there.</div></p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2012/10/self-shootfoot-iosdev-xcode-ios6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git Tip: How to Delete a Remote Branch</title>
		<link>http://interactivelogic.net/wp/2012/09/git-tip-how-to-delete-a-remote-branch/</link>
		<comments>http://interactivelogic.net/wp/2012/09/git-tip-how-to-delete-a-remote-branch/#comments</comments>
		<pubDate>Tue, 04 Sep 2012 20:57:38 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=381</guid>
		<description><![CDATA[This is one of the many git functions I always have to look up, and it always makes me insane at its non-intuitiveness. However, as it is a necessary evil, I thought it useful to capture it here. Believe it or not, you have to use git push to delete. You heard that right. Stop gawking. Jaw [...]]]></description>
				<content:encoded><![CDATA[<p>This is one of the many git functions I <strong>always</strong> have to look up, and it always makes me insane at its non-intuitiveness. However, as it is a necessary evil, I thought it useful to capture it here.</p>
<p>Believe it or not, you have to use <span style="font-family: 'courier new', courier;">git push</span> to delete. You heard that right. Stop gawking. Jaw closed.</p>
<p>OK so here&#8217;s how you do it:</p>
<blockquote><p><span style="font-family: 'courier new', courier;">git push origin :[name of branch]</span></p></blockquote>
<p>As a concrete, though perhaps not entirely realistic example:</p>
<blockquote><p><span style="font-family: 'courier new', courier;">git push origin :my-awesome-feature</span></p></blockquote>
<p>Thanks to the following blogs for their constant assistance in helping me remember (or not remember) this function:</p>
<p><a title="git ready : push and delete remote branches" href="http://gitready.com/beginner/2009/02/02/push-and-delete-branches.html">git ready : push and delete remote branches</a><br />
<a href="http://yuji.wordpress.com/2010/06/11/git-delete-remote-branch/">Yuji Tomita : Git — Delete Remote Branch</a></p>
<p>Thanks guys!</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2012/09/git-tip-how-to-delete-a-remote-branch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generate a UUID string with ARC enabled and __bridge_transfer [#iosdev]</title>
		<link>http://interactivelogic.net/wp/2012/07/generate-a-uuid-string-with-arc-enabled-and-__bridge_transfer-iosdev-bridge/</link>
		<comments>http://interactivelogic.net/wp/2012/07/generate-a-uuid-string-with-arc-enabled-and-__bridge_transfer-iosdev-bridge/#comments</comments>
		<pubDate>Thu, 26 Jul 2012 21:52:00 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=376</guid>
		<description><![CDATA[Needed to safely generate a GUID in iOS using ARC, which, unfortunately, requires the use of Core Foundation classes, so this Stack Overflow post was very helpful: Generate a UUID string with ARC enabled CFUUIDRef uuid = CFUUIDCreate(NULL); NSString *uuidStr = (__bridge_transfer NSString *)CFUUIDCreateString(NULL, uuid); CFRelease(uuid);]]></description>
				<content:encoded><![CDATA[<p>Needed to safely generate a GUID in iOS using ARC, which, unfortunately, requires the use of Core Foundation classes, so this Stack Overflow post was very helpful:</p>
<blockquote><p><a href="http://stackoverflow.com/questions/8684551/generate-a-uuid-string-with-arc-enabled">Generate a UUID string with ARC enabled</a></p>
<pre>
CFUUIDRef uuid = CFUUIDCreate(NULL);
NSString *uuidStr = (__bridge_transfer NSString *)CFUUIDCreateString(NULL, uuid);
CFRelease(uuid);
</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2012/07/generate-a-uuid-string-with-arc-enabled-and-__bridge_transfer-iosdev-bridge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to delete all .svn folders in Linux / Mac [#iosdev #git #svn]</title>
		<link>http://interactivelogic.net/wp/2012/07/how-to-delete-all-svn-folders-in-linux-mac-iosdev-git-svn/</link>
		<comments>http://interactivelogic.net/wp/2012/07/how-to-delete-all-svn-folders-in-linux-mac-iosdev-git-svn/#comments</comments>
		<pubDate>Thu, 26 Jul 2012 15:04:30 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=374</guid>
		<description><![CDATA[I found this useful recently when receiving a batch of code from a client who still uses Subversion&#8230; How to delete all .svn folders in Linux / Mac? &#8211; Techie Corner To delete all .svn folder in Linux just follow the steps below: Start Terminal Change your current directory to your project folder (ex: /Users/me/Sites/project_a) [...]]]></description>
				<content:encoded><![CDATA[<p>I found this useful recently when receiving a batch of code from a client who still uses Subversion&#8230;</p>
<blockquote><p><a href="http://www.techiecorner.com/154/how-to-delete-all-svn-folder-in-linux-mac/">How to delete all .svn folders in Linux / Mac? &#8211; Techie Corner</a></p>
<p>To delete all .svn folder in Linux just follow the steps below:</p>
<ul>
<li>Start Terminal</li>
<li>Change your current directory to your project folder (ex: /Users/me/Sites/project_a)</li>
<li>Enter the following into Terminal:&nbsp;<span style="font-family: 'courier new', courier;">find ./ -name &#8220;.svn&#8221; | xargs rm -Rf</span>&nbsp;</li>
</ul>
</blockquote>
<p>That should take care of it. In my tests I found one or two that still remained but this took most of the pain out of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2012/07/how-to-delete-all-svn-folders-in-linux-mac-iosdev-git-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Github Tip: What to do if Github is asking for Username and Password</title>
		<link>http://interactivelogic.net/wp/2012/07/github-tip-what-to-do-if-github-is-asking-for-username-and-password/</link>
		<comments>http://interactivelogic.net/wp/2012/07/github-tip-what-to-do-if-github-is-asking-for-username-and-password/#comments</comments>
		<pubDate>Thu, 12 Jul 2012 19:59:42 +0000</pubDate>
		<dc:creator>Evan K. Stone</dc:creator>
				<category><![CDATA[iOS Development]]></category>

		<guid isPermaLink="false">http://interactivelogic.net/wp/?p=372</guid>
		<description><![CDATA[Recently I had a strange thing happen with a new project hosted by Github, by which every transaction with the server requried a username and password. Thankfully,&#160;this Stackoverflow post helped me resolve it. If Github is constantly asking for your credentials when you do a clone, pull, or push, and you know you have your [...]]]></description>
				<content:encoded><![CDATA[<p>Recently I had a strange thing happen with a new project hosted by Github, by which every transaction with the server requried a username and password. Thankfully,&nbsp;<a title="Git keeps prompting me for password" href="http://stackoverflow.com/questions/7773181/git-keeps-prompting-me-for-password" target="_blank">this Stackoverflow post</a> helped me resolve it.</p>
<p>If Github is constantly asking for your credentials when you do a clone, pull, or push, and you know you have your SSH key already in your Github profile, check to see if you set up your local repository with the HTTPS version of the repository when you cloned it instead of the SSH version. If you can remember.</p>
<p>In either case, do the following:</p>
<ol>
<li>Blow away (or rename safely) your current repository directory.</li>
<li>Go to the Github page of your project.</li>
<li>Next to the text box that contains the URL for your repository to use for cloning purposes, click &#8220;SSH&#8221; to activate it. You will see the address change from &#8220;https://&#8230;&#8221; to &#8220;git@github.com&#8230;&#8221;.</li>
<li>Copy the new address and use that to re-clone your repository in a fresh directory.</li>
</ol>
<p>Hope that helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://interactivelogic.net/wp/2012/07/github-tip-what-to-do-if-github-is-asking-for-username-and-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
