<?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>RepeatGeek &#187; Tools</title>
	<atom:link href="http://repeatgeek.com/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://repeatgeek.com</link>
	<description>Helping geeks achieve success</description>
	<lastBuildDate>Mon, 19 Dec 2011 22:30:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<meta name="generator" content="deStyle 0.9.3" />
		<item>
		<title>Using Git with Xcode, Part I</title>
		<link>http://repeatgeek.com/tools/using-git-with-xcode-part-i/</link>
		<comments>http://repeatgeek.com/tools/using-git-with-xcode-part-i/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 22:30:24 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[Repository]]></category>
		<category><![CDATA[scm]]></category>
		<category><![CDATA[source control]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=749</guid>
		<description><![CDATA[A few years ago I wrote a series of posts about getting Subversion working with Xcode. Now that the latest versions of Xcode now support Git, I figured I would put together a tutorial about getting Git working with Xcode. Having worked with Git for only a short while, I find it is a much [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/tools/how-to-enter-standard-input-in-xcode-debugger-console/' rel='bookmark' title='How to Enter Standard Input in Xcode Debugger Console'>How to Enter Standard Input in Xcode Debugger Console</a></li>
<li><a href='http://repeatgeek.com/tools/five-steps-for-wordpress-preparation/' rel='bookmark' title='5 Steps for WordPress Preparation'>5 Steps for WordPress Preparation</a></li>
<li><a href='http://repeatgeek.com/tools/using-subversion-with-xcode-part-iii/' rel='bookmark' title='Using Subversion with Xcode, Part III'>Using Subversion with Xcode, Part III</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A few years ago I wrote a series of posts about getting <a href="http://repeatgeek.com/tools/using-subversion-with-xcode-part-i/">Subversion working with Xcode</a>. Now that the latest versions of Xcode now support Git, I figured I would put together a tutorial about getting Git working with Xcode. Having worked with Git for only a short while, I find it is a much easier source control management system to work with compared to Subversion and others. </p>
<h2>Getting Started with Git</h2>
<p>If you are brand new to Git, you can get a quick overview of the product and download it by visiting the <a href="http://git-scm.com">Git official website</a>. One of the best overviews and tutorials that I have found is at the <a href="http://gitref.org/">Git Reference website</a>. The tutorial walks you through how Git was conceived and introduces you to some of the most common commands.   </p>
<h2>Creating a Local Git Repository for NEW Xcode Projects</h2>
<p>The easiest way to put a new Xcode project under version control within Git is to select the <em>Create local git repository for this project</em> check box when creating your project in Xcode. You can verify that this project is under version control by looking for the <em>.git</em> directory under the project. You will need to use Terminal to browse to your project folder and perform a <em>ls -a</em> to see the directory. </p>
<p><img src="http://repeatgeek.com/wp-content/uploads/2011/12/XcodeLocalGit-300x44.png" alt="Xcode Local Git Repository" title="Xcode Local Git Repository" width="300" height="44" class="aligncenter size-medium wp-image-751" /></p>
<h2>Creating a Local Git Repository for Existing Xcode Projects</h2>
<p>To add an existing project to a new local Git repository will require you to use the command line. Open Terminal and navigate to your project directory. You should first create a <em>.gitignore</em> file in your project directory. This file will tell Git to not track certain file patterns. </p>
<p>Here is a sample .gitignore file for Xcode projects:</p>
<div class="codesnip-container" ># Sample .gitignore file for Xcode Projects<br />
.DS_Store<br />
*.swp<br />
*~.nib</p>
<p>build/</p>
<p>*.pbxuser<br />
*.perspective<br />
*.perspectivev3</p>
<p>xcuserdata</p></div>
<p>If you walked-through the tutorial I mentioned above in Getting Started with Git, these commands should be familiar to you.</p>
<h3>1. Initialize a new Git repository</h3>
<div class="codesnip-container" >$ git init</div>
<h3>2. Add project files to Git repository</h3>
<div class="codesnip-container" >$ git add .</div>
<h3>3. Perform an initial commit of files to Git repository</h3>
<div class="codesnip-container" >$ git commit -m &#8220;Initial Commit&#8221;</div>
<h3>4. Add repository to Xcode</h3>
<p>Your code should now be under version control; however, now we need to tell Xcode about the local repository we just created. Open Xcode and from the Window menu, open the <em>Organizer</em>. </p>
<p><img src="http://repeatgeek.com/wp-content/uploads/2011/12/WindowOrganizer.png" alt="Xcode Window Menu" title="Xcode Window Menu" width="217" height="237" class="aligncenter size-full wp-image-754" /></p>
<p>The Organizer lists all registered devices, projects, snapshots, documentation and version control repositories. Click on the <em>Repositories</em> icon. </p>
<p>You need to create a new repository, click on the plus (+) in the bottom left of the window and select <em>Add Repository&#8230;</em></p>
<p><img src="http://repeatgeek.com/wp-content/uploads/2011/12/RepositoryOptions.png" alt="Xcode Repository Options" title="Xcode Repository Options" width="245" height="88" class="aligncenter size-full wp-image-753" /></p>
<p>In the Add a Repository wizard, enter the following:</p>
<ol>
<li>1. <strong>Name</strong> &#8211; This is typically the name of the project or collection of projects. </li>
<li>2. <strong>Location</strong> &#8211; Since we are adding a local repository, this the absolute path of your local repository or project. </li>
<li>3. <strong>Type</strong> &#8211; This should be Git in this situation. </li>
</ol>
<p><img src="http://repeatgeek.com/wp-content/uploads/2011/12/AddRepository-300x202.png" alt="Add a Repository Window" title="Add a Repository Window" width="300" height="202" class="aligncenter size-medium wp-image-756" /></p>
<p>After you click Next, your local repository should be listed on the left-hand side of the screen. Clicking on it, should list an entry for your initial (or subsequent) commits and the files modified. </p>
<p>You should now be able to make changes to your project within Xcode and commit your changes using the Xcode GUI. In the follow up posts to this series, I will walk you through using the Xcode GUI to commit changes and also show you how to setup a remote repository on <a href="https://bitbucket.org/">BitBucket</a>.</p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/tools/how-to-enter-standard-input-in-xcode-debugger-console/' rel='bookmark' title='How to Enter Standard Input in Xcode Debugger Console'>How to Enter Standard Input in Xcode Debugger Console</a></li>
<li><a href='http://repeatgeek.com/tools/five-steps-for-wordpress-preparation/' rel='bookmark' title='5 Steps for WordPress Preparation'>5 Steps for WordPress Preparation</a></li>
<li><a href='http://repeatgeek.com/tools/using-subversion-with-xcode-part-iii/' rel='bookmark' title='Using Subversion with Xcode, Part III'>Using Subversion with Xcode, Part III</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/using-git-with-xcode-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Books to Inspire Creativity in Programmers</title>
		<link>http://repeatgeek.com/tools/6-books-to-inspire-creativity-in-programmers/</link>
		<comments>http://repeatgeek.com/tools/6-books-to-inspire-creativity-in-programmers/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 12:59:11 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Andy Hunt]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[Brainstorming]]></category>
		<category><![CDATA[Building]]></category>
		<category><![CDATA[Creative]]></category>
		<category><![CDATA[creativity]]></category>
		<category><![CDATA[David Silverstein]]></category>
		<category><![CDATA[Genius]]></category>
		<category><![CDATA[growth]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[innovator]]></category>
		<category><![CDATA[Larry Corby]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Michael Michalko]]></category>
		<category><![CDATA[Neil DeCarlo]]></category>
		<category><![CDATA[Philip Samuel]]></category>
		<category><![CDATA[Pragmatic]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[secrets]]></category>
		<category><![CDATA[success]]></category>
		<category><![CDATA[Techniques]]></category>
		<category><![CDATA[thinker]]></category>
		<category><![CDATA[thinking]]></category>
		<category><![CDATA[Toolkit]]></category>
		<category><![CDATA[Walt Disney]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=645</guid>
		<description><![CDATA[I mentioned in a previous post that the secret to success as a programmer is original and creative thinking. So what if you are not creative? Don&#8217;t worry, you&#8217;re not alone. In fact, most programmers you meet lack creativity. The reason being is that creativity requires a different type of thought compared to the objective, [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/personal/the-secret-to-being-a-successful-programmer/' rel='bookmark' title='The Secret to Being a Successful Programmer'>The Secret to Being a Successful Programmer</a></li>
<li><a href='http://repeatgeek.com/technical/10-resources-for-design-challenged-programmers/' rel='bookmark' title='10 Resources for Design-Challenged Programmers'>10 Resources for Design-Challenged Programmers</a></li>
<li><a href='http://repeatgeek.com/tools/more-programming-books-recommended-by-readers/' rel='bookmark' title='More Programming Books Recommended By Readers'>More Programming Books Recommended By Readers</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I mentioned in a previous post that the <a href="http://repeatgeek.com/personal/the-secret-to-being-a-successful-programmer/">secret to success as a programmer</a> is original and creative thinking. </p>
<p>So what if you are not creative? Don&#8217;t worry, you&#8217;re not alone. In fact, most programmers you meet lack creativity. The reason being is that creativity requires a different type of thought compared to the objective, logical thought of programming. </p>
<p>Luckily, creative thinking is something that can be learned. I have chosen a list of books to inspire your creativity. </p>
<p>Note: This list has no particular order.</p>
<hr/>
<h2>Pragmatic Thinking and Learning: Refactor Your Wetware</h2>
<h3>Andy Hunt</h3>
<p>This is a creativity book specifically made for programmers, by a programmer (one of the authors of The Pragmatic Programmer: From Journeyman to Master). </p>
<p><a href="http://www.amazon.com/gp/product/1934356050?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1934356050"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2009/11/PragmaticThinking.jpg"></a></p>
<hr/>
<h2>Thinkertoys: A Handbook of Creative-Thinking Techniques</h2>
<h3>Michael Michalko</h3>
<p>Michael Michalko takes you through several visual puzzles to force you to change your way of thinking. This can often be difficult task for those with little creativity.</p>
<p><a href="http://www.amazon.com/gp/product/1580087736?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1580087736"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2010/10/ThinkerToys.jpg"></a></p>
<hr/>
<h2>Thinkpak: A Brainstorming Card Deck</h2>
<h3>Michael Michalko</h3>
<p>Ok, so this one isn&#8217;t really a book. Building upon the skills learned in Thinkertoys, Michael Michalko created a deck of cards that you can use to inspire creative thinking and transform your ideas into solutions. </p>
<p><a href="http://www.amazon.com/gp/product/1580087728?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1580087728"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2010/10/ThinkPak.jpg"></a></p>
<hr/>
<h2>Cracking Creativity: The Secrets of Creative Genius</h2>
<h3>Michael Michalko</h3>
<p>The last of three books (resources) by Michael Michalko. This time around, Michael focuses on how to think like the creative geniuses of history, including Leonardo da Vinci and Walt Disney. </p>
<p><a href="http://www.amazon.com/gp/product/1580083110?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1580083110"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2010/10/CrackingCreativity.jpg"></a></p>
<hr/>
<h2>How to Get Ideas</h2>
<h3>Jack Foster, Larry Corby</h3>
<p>Part of being creative is having an original idea, but where does this idea come from? This book will tell you how to inspire new ideas so you can take them to the next level. </p>
<p><a href="http://www.amazon.com/gp/product/1576754308?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1576754308"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2010/10/HowToGetIdeas.jpg"></a></p>
<hr/>
<h2>The Innovator&#8217;s Toolkit: 50+ Techniques for Predictable and Sustainable Organic Growth</h2>
<h3>David Silverstein, Philip Samuel, Neil DeCarlo</h3>
<p>Innovation goes hand-in-hand with technology. Just look at companies like Apple or Google &#8211; who are constantly innovating computer hardware and software. This book by Silverstein, et al. is an excellent reference book for those who are innovators. To be a successful innovator, you also need to be a creative thinker. </p>
<p><a href="http://www.amazon.com/gp/product/0470345357?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0470345357"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2010/10/InnovatorsToolkit.jpg"></a></p>
<hr/>
<p>Programming is the easy part, if you are reading this blog you are probably self-sufficient in at least one programming language. Now you know how to get to the next level: be creative!</p>
<p>If there are any other books that have inspired you to become a creative innovator, please share below in the comments.</p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/personal/the-secret-to-being-a-successful-programmer/' rel='bookmark' title='The Secret to Being a Successful Programmer'>The Secret to Being a Successful Programmer</a></li>
<li><a href='http://repeatgeek.com/technical/10-resources-for-design-challenged-programmers/' rel='bookmark' title='10 Resources for Design-Challenged Programmers'>10 Resources for Design-Challenged Programmers</a></li>
<li><a href='http://repeatgeek.com/tools/more-programming-books-recommended-by-readers/' rel='bookmark' title='More Programming Books Recommended By Readers'>More Programming Books Recommended By Readers</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/6-books-to-inspire-creativity-in-programmers/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Do-It-Yourself Free XML Tool Suite</title>
		<link>http://repeatgeek.com/tools/do-it-yourself-free-xml-tool-suite/</link>
		<comments>http://repeatgeek.com/tools/do-it-yourself-free-xml-tool-suite/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 19:16:14 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Schema]]></category>
		<category><![CDATA[syntax]]></category>
		<category><![CDATA[validation]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XMLNotepad]]></category>
		<category><![CDATA[XPath]]></category>
		<category><![CDATA[XPathVisualizer]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=496</guid>
		<description><![CDATA[If you ever had to work with XML documents and XML schemas, it can be pretty challenging if you don&#8217;t have the right tools. If you are creating/modifying XML through code (e.g. XML Web Services), it can especially be difficult searching XML nodes or trying to create a validated XML document. Personally, I believe that [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/a-list-of-coding-standard-websites/' rel='bookmark' title='A List of Coding Standard Websites'>A List of Coding Standard Websites</a></li>
<li><a href='http://repeatgeek.com/technical/9-useful-websites-for-thematic-child-theme-development/' rel='bookmark' title='9 Useful Websites for Thematic Child Theme Development'>9 Useful Websites for Thematic Child Theme Development</a></li>
<li><a href='http://repeatgeek.com/personal/finding-time-for-learning/' rel='bookmark' title='How to Find Time for Learning'>How to Find Time for Learning</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you ever had to work with XML documents and XML schemas, it can be pretty challenging if you don&#8217;t have the right tools. If you are creating/modifying XML through code (e.g. XML Web Services), it can especially be difficult searching XML nodes or trying to create a validated XML document.</p>
<p>Personally, I believe that <a href="http://www.altova.com/download/xmlspy/xml_editor_enterprise.html">XMLSpy</a> from Altova Software is one of the best tools available if you are going to be dealing with a lot of XML documents. However, this tool does come at a price. A few years ago, they used to offer a free community edition of their software &#8211; this has since been discontinued.</p>
<p>I&#8217;ve recently needed to create and modify some XML and was searching for some tools that fit the criteria:</p>
<ul>
<li>Windows Based</li>
<li>Non-Trial Editions of Software</li>
<li><strong>Free</strong></li>
</ul>
<p>I have come up with a list of three tools that perform a majority of the tasks in commercial products like XMLSpy and are a good alternative.</p>
<h2>1. <a href="http://www.microsoft.com/downloads/details.aspx?familyid=72d6aa49-787d-4118-ba5f-4f30fe913628&#038;displaylang=en">XML Notepad</a></h2>
<p><a href="http://repeatgeek.com/wp-content/uploads/2010/07/XMLNotepad.png"></p>
<p><img src="http://repeatgeek.com/wp-content/uploads/2010/07/XMLNotepad-300x224.png" alt="XML Notepad 2007" title="XMLNotepad" width="300" height="224" class="aligncenter size-medium wp-image-499" /></a></p>
<p>XML notepad makes it easy to edit XML nodes without the need to edit the XML syntax directly. By attaching an XML Schema, your XML document is checked for validation as you input values. </p>
<p>Although this tool has not seen an update since 2007, it is still one of the better free XML editors with a simple, yet powerful interface.</p>
<h2>2. <a href="http://xpathvisualizer.codeplex.com/">XPath Visualizer</a></h2>
<p><a href="http://repeatgeek.com/wp-content/uploads/2010/07/XPathVisualizer.png"></p>
<p><img src="http://repeatgeek.com/wp-content/uploads/2010/07/XPathVisualizer-300x225.png" alt="XPath Visualizer" title="XPathVisualizer" width="300" height="225" class="aligncenter size-medium wp-image-500" /></a></p>
<p>If you&#8217;ve ever had the need to query XML to find specific nodes, XPath Visualizer provides a way to test XPath queries against an XML document. With the ability to include XML namespaces, the XPath expressions can easily be imported into code environments like Visual Studio. </p>
<h2>3. <a href="http://msdn.microsoft.com/en-us/library/aa302296.aspx">XML Sample Generator</a></h2>
<p>You have an XML Schema, but now you need to create an XML document based off this schema. If you don&#8217;t have a tool that helps you visualize a schema graphically, it can be a daunting task to traverse an XML Schema and create an XML document manually. Thanks to the XML Sample Generator, you can import your XML Schema and export a well-formed, validated, XML document. </p>
<p>XML Sample Generator provides a good starting point if you need to start from square one. </p>
<p>Do you have a free tool that you use? Please share in the comments.</p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/a-list-of-coding-standard-websites/' rel='bookmark' title='A List of Coding Standard Websites'>A List of Coding Standard Websites</a></li>
<li><a href='http://repeatgeek.com/technical/9-useful-websites-for-thematic-child-theme-development/' rel='bookmark' title='9 Useful Websites for Thematic Child Theme Development'>9 Useful Websites for Thematic Child Theme Development</a></li>
<li><a href='http://repeatgeek.com/personal/finding-time-for-learning/' rel='bookmark' title='How to Find Time for Learning'>How to Find Time for Learning</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/do-it-yourself-free-xml-tool-suite/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>More Programming Books Recommended By Readers</title>
		<link>http://repeatgeek.com/tools/more-programming-books-recommended-by-readers/</link>
		<comments>http://repeatgeek.com/tools/more-programming-books-recommended-by-readers/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 13:55:07 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[object oriented programming]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[programming book]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=362</guid>
		<description><![CDATA[Due the overwhelming success of one of my previous posts: 6 Books Every Programmer Should Own, I wanted to compile a list of books suggested by readers. These books are programming-language neutral and are an effective tool to writing succinct code. Clean Code: A Handbook of Agile Software Craftsmanship Robert C. Martin This book covers [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/tools/6-books-to-inspire-creativity-in-programmers/' rel='bookmark' title='6 Books to Inspire Creativity in Programmers'>6 Books to Inspire Creativity in Programmers</a></li>
<li><a href='http://repeatgeek.com/general/how-do-you-decide-which-books-to-buy/' rel='bookmark' title='How Do You Decide Which Books to Buy?'>How Do You Decide Which Books to Buy?</a></li>
<li><a href='http://repeatgeek.com/career/what-ive-learned-from-teaching-programming/' rel='bookmark' title='What I&#8217;ve Learned from Teaching Programming'>What I&#8217;ve Learned from Teaching Programming</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Due the overwhelming success of one of my previous posts: <a href="http://repeatgeek.com/tools/6-books-every-programmer-should-own/">6 Books Every Programmer Should Own</a>, I wanted to compile a list of books suggested by readers.</p>
<p>These books are programming-language neutral and are an effective tool to writing succinct code. </p>
<h2>Clean Code: A Handbook of Agile Software Craftsmanship</h2>
<h4>Robert C. Martin</h4>
<p>This book covers the best practices, case studies and first hand experiences with creating &#8220;clean&#8221; code.</p>
<p><a href="http://www.amazon.com/gp/product/0132350882?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0132350882"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2010/01/CleanCode.jpg"></a></p>
<p><em>Recommended by: <a href="http://blog.seanja.com/">Squirrel Hacker</a>, <a href="http://www.noroctal.com/">Noroctal Labs</a> and kodeninja</em></p>
<hr/>
<h2>Refactoring: Improving the Design of Existing Code</h2>
<h4>Martin Fowler, Kent Beck, John Brant, William Opdyke, and Don Roberts</h4>
<p>This book covers the best practices in modifying existing code. </p>
<p><a href="http://www.amazon.com/gp/product/0201485672?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0201485672"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2010/01/Refactoring.jpg"></a></p>
<p><em>Recommended by: kodeninja</em></p>
<hr/>
<h2>How To Design Programs: An Introduction to Programming and Computing</h2>
<h4>Matthias Felleisen, Robert Bruce Findler, Matthew Flatt, and Shriram Krishnamurthi</h4>
<p>This book is geared to the beginning programmer and focuses on the design and creation of programs.</p>
<p><a href="http://www.amazon.com/gp/product/0262062186?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0262062186"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2010/01/HTDP.jpg"></a></p>
<p><em>Recommended by: Dave</em></p>
<hr/>
<h2>Structure and Interpretation of Computer Programs</h2>
<h4>Harold Abelson, Gerald Jay Sussman, Julie Sussman</h4>
<p>Picking up where <em>How To Design Programs</em> left off, this book explores ways to look at code from an object-oriented point of view.</p>
<p><a href="http://www.amazon.com/gp/product/0070004846?ie=UTF8&#038;tag=link0e-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0070004846"><img border="0" src="http://repeatgeek.com/wp-content/uploads/2010/01/SICP.jpg"></a></p>
<p><em>Recommended by: Dave</em></p>
<hr/>
<p>If you were the original commenter, please contact me and I will provide a backlink to your website or blog.</p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/tools/6-books-to-inspire-creativity-in-programmers/' rel='bookmark' title='6 Books to Inspire Creativity in Programmers'>6 Books to Inspire Creativity in Programmers</a></li>
<li><a href='http://repeatgeek.com/general/how-do-you-decide-which-books-to-buy/' rel='bookmark' title='How Do You Decide Which Books to Buy?'>How Do You Decide Which Books to Buy?</a></li>
<li><a href='http://repeatgeek.com/career/what-ive-learned-from-teaching-programming/' rel='bookmark' title='What I&#8217;ve Learned from Teaching Programming'>What I&#8217;ve Learned from Teaching Programming</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/more-programming-books-recommended-by-readers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Books Every Programmer Should Own</title>
		<link>http://repeatgeek.com/tools/6-books-every-programmer-should-own/</link>
		<comments>http://repeatgeek.com/tools/6-books-every-programmer-should-own/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 22:02:29 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[knowledge]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[programming book]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=237</guid>
		<description><![CDATA[I&#8217;ve seen many lists about the best programming books and I am sure there are a lot of books that are specific to a programming knowledge or technology &#8211; that I have not included in my list. The books I have chosen are those that are meant to inspire, increase productivity and improve your programming [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/tools/6-books-to-inspire-creativity-in-programmers/' rel='bookmark' title='6 Books to Inspire Creativity in Programmers'>6 Books to Inspire Creativity in Programmers</a></li>
<li><a href='http://repeatgeek.com/personal/the-secret-to-being-a-successful-programmer/' rel='bookmark' title='The Secret to Being a Successful Programmer'>The Secret to Being a Successful Programmer</a></li>
<li><a href='http://repeatgeek.com/technical/10-websites-on-how-to-be-a-better-programmer/' rel='bookmark' title='10 Websites On How To Be A Better Programmer'>10 Websites On How To Be A Better Programmer</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen many lists about the best programming books and I am sure there are a lot of books that are specific to a programming knowledge or technology &#8211; that I have not included in my list.</p>
<p>The books I have chosen are those that are meant to inspire, increase productivity and improve your programming design skills.</p>
<p>Note: This list has no particular order.</p>
<h2>Code Complete 2</h2>
<h4>Steve McConnell</h4>
<p>The main focus of this book to help you improve your programming design skills.</p>
<p><a href="http://www.amazon.com/gp/product/0735619670?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0735619670"><img src="http://repeatgeek.com/wp-content/uploads/2009/11/CodeComplete2.jpg" border="0" alt="" /></a><img class=" jfzrfmdroowroqyfgxbr jfzrfmdroowroqyfgxbr" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=link0e-20&amp;l=as2&amp;o=1&amp;a=0735619670" border="0" alt="" width="1" height="1" /></p>
<hr/>
<h2>The Pragmatic Programmer: From Journeyman to Master</h2>
<h4>Andrew Hunt and David Thomas</h4>
<p>This book focuses on the best practices of programming (i.e. what you should and should not do). </p>
<p><a href="http://www.amazon.com/gp/product/020161622X?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=020161622X"><img src="http://repeatgeek.com/wp-content/uploads/2009/11/PragmaticProgrammer.jpg" border="0" alt="" /></a><img class=" jfzrfmdroowroqyfgxbr jfzrfmdroowroqyfgxbr" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=link0e-20&amp;l=as2&amp;o=1&amp;a=020161622X" border="0" alt="" width="1" height="1" /></p>
<hr/>
<h2>Pragmatic Thinking and Learning: Refactor Your Wetware</h2>
<h4>Andy Hunt</h4>
<p>From the author of The Pragmatic Programmer, this book takes one-step back from programming and focuses on your everyday thinking and problem solving skills.</p>
<p><a href="http://www.amazon.com/gp/product/1934356050?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1934356050"><img src="http://repeatgeek.com/wp-content/uploads/2009/11/PragmaticThinking.jpg" border="0" alt="" /></a><img class=" jfzrfmdroowroqyfgxbr jfzrfmdroowroqyfgxbr" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=link0e-20&amp;l=as2&amp;o=1&amp;a=1934356050" border="0" alt="" width="1" height="1" /></p>
<hr/>
<h2>The Productive Programmer</h2>
<h4>Neal Ford and David Bock</h4>
<p>This book will teach you different tools that you can use to make your programming life more productive.</p>
<p><a href="http://www.amazon.com/gp/product/0596519788?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0596519788"><img src="http://repeatgeek.com/wp-content/uploads/2009/11/ProductiveProgrammer.jpg" border="0" alt="" /></a><img class=" jfzrfmdroowroqyfgxbr jfzrfmdroowroqyfgxbr" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=link0e-20&amp;l=as2&amp;o=1&amp;a=0596519788" border="0" alt="" width="1" height="1" /></p>
<hr/>
<h2>Algorithms in a Nutshell</h2>
<h4>George T Heineman, Gary Pollice and Stanley Selkow</h4>
<p>Unless you&#8217;ve memorized the implementation of every algorithm, this book is a handy desktop reference with pseudocode examples.</p>
<p><a href="http://www.amazon.com/gp/product/059651624X?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=059651624X"><img src="http://repeatgeek.com/wp-content/uploads/2009/11/AlgorithmsNutshell.jpg" border="0" alt="" /></a><img class=" jfzrfmdroowroqyfgxbr jfzrfmdroowroqyfgxbr" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=link0e-20&amp;l=as2&amp;o=1&amp;a=059651624X" border="0" alt="" width="1" height="1" /></p>
<h3>Alternate: Introduction to Algorithms</h3>
<h4> Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein</h4>
<p>This book has become a staple in many undergraduate computer science programs. Containing much more information and details on algorithms.</p>
<p><a href="http://www.amazon.com/gp/product/0262033844?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0262033844"><img src="http://repeatgeek.com/wp-content/uploads/2009/11/IntroAlgorithms.jpg" border="0" alt="" /></a><img class=" jfzrfmdroowroqyfgxbr jfzrfmdroowroqyfgxbr" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=link0e-20&amp;l=as2&amp;o=1&amp;a=0262033844" border="0" alt="" width="1" height="1" /></p>
<hr/>
<h2>Head First Design Patterns</h2>
<h4>Lisabeth Freeman, Eric Freeman, Bert Bates, and Kathy Sierra</h4>
<p>The people at Head First have a way of explaining things in a straight-forward, non-technical approach &#8211; a good tutorial and desktop reference.</p>
<p><a href="http://www.amazon.com/gp/product/0596007124?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0596007124"><img src="http://repeatgeek.com/wp-content/uploads/2009/11/HeadFirstDesignPatterns.jpg" border="0" alt="" /></a><img class=" jfzrfmdroowroqyfgxbr jfzrfmdroowroqyfgxbr" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=link0e-20&amp;l=as2&amp;o=1&amp;a=0596007124" border="0" alt="" width="1" height="1" /></p>
<h3>Alternate: Design Patterns: Elements of Reusable Object-Oriented Software</h3>
<h4>Erich Gamma, Richard Helm, Ralph Johnson, and John M. Vlissides</h4>
<p>Also a common computer science textbook by the Gang of Four (GOF), this book has much more information and more detail on design patterns.</p>
<p><a href="http://www.amazon.com/gp/product/0201633612?ie=UTF8&amp;tag=link0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0201633612"><img src="http://repeatgeek.com/wp-content/uploads/2009/11/GOFDesignPatterns.jpg" border="0" alt="" /></a><img class=" jfzrfmdroowroqyfgxbr jfzrfmdroowroqyfgxbr" style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=link0e-20&amp;l=as2&amp;o=1&amp;a=0201633612" border="0" alt="" width="1" height="1" /></p>
<hr/>
<p>If you are interested in exploring other programming books and reading reviews, check out <a href="http://www.programmingbooks.org/">ProgrammingBooks.org</a>.</p>
<p>What book inspires you to be a better programmer?</p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/tools/6-books-to-inspire-creativity-in-programmers/' rel='bookmark' title='6 Books to Inspire Creativity in Programmers'>6 Books to Inspire Creativity in Programmers</a></li>
<li><a href='http://repeatgeek.com/personal/the-secret-to-being-a-successful-programmer/' rel='bookmark' title='The Secret to Being a Successful Programmer'>The Secret to Being a Successful Programmer</a></li>
<li><a href='http://repeatgeek.com/technical/10-websites-on-how-to-be-a-better-programmer/' rel='bookmark' title='10 Websites On How To Be A Better Programmer'>10 Websites On How To Be A Better Programmer</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/6-books-every-programmer-should-own/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>How to Enter Standard Input in Xcode Debugger Console</title>
		<link>http://repeatgeek.com/tools/how-to-enter-standard-input-in-xcode-debugger-console/</link>
		<comments>http://repeatgeek.com/tools/how-to-enter-standard-input-in-xcode-debugger-console/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 17:00:56 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Console]]></category>
		<category><![CDATA[Debugger]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[scanf]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=233</guid>
		<description><![CDATA[I was having an issue when I ran a program in Xcode Debugger Console that utilized scanf() the program would just hang. The program would work correctly when run directly from the Terminal. The only solutions that I could find online were to install a previous version of Xcode. Solution When entering standard input, you [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/tools/using-git-with-xcode-part-i/' rel='bookmark' title='Using Git with Xcode, Part I'>Using Git with Xcode, Part I</a></li>
<li><a href='http://repeatgeek.com/technical/a-list-of-coding-standard-websites/' rel='bookmark' title='A List of Coding Standard Websites'>A List of Coding Standard Websites</a></li>
<li><a href='http://repeatgeek.com/tools/using-subversion-with-xcode-part-iii/' rel='bookmark' title='Using Subversion with Xcode, Part III'>Using Subversion with Xcode, Part III</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I was having an issue when I ran a program in Xcode Debugger Console that utilized scanf() the program would just hang. </p>
<p>The program would work correctly when run directly from the Terminal.</p>
<p>The only solutions that I could find online were to install a previous version of Xcode.</p>
<p><strong>Solution</strong></p>
<p>When entering standard input, you need to terminate your string with the forward slash &#8216;/&#8217;.  </p>
<p>Example:</p>
<div class="codesnip-container" >
<div class="bash codesnip" style="font-family:monospace;">Enter an integer:</p>
<p><span class="nu0">4556</span><span class="sy0">/</span> <span class="sy0">&lt;</span>&#8212;- This is what you input</p>
<p>Sum of <span class="nu0">4556</span> = <span class="nu0">21</span></div>
</div>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/tools/using-git-with-xcode-part-i/' rel='bookmark' title='Using Git with Xcode, Part I'>Using Git with Xcode, Part I</a></li>
<li><a href='http://repeatgeek.com/technical/a-list-of-coding-standard-websites/' rel='bookmark' title='A List of Coding Standard Websites'>A List of Coding Standard Websites</a></li>
<li><a href='http://repeatgeek.com/tools/using-subversion-with-xcode-part-iii/' rel='bookmark' title='Using Subversion with Xcode, Part III'>Using Subversion with Xcode, Part III</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/how-to-enter-standard-input-in-xcode-debugger-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Choose your Next Domain with Visual Thesaurus</title>
		<link>http://repeatgeek.com/tools/how-to-choose-your-next-domain-with-visual-thesaurus/</link>
		<comments>http://repeatgeek.com/tools/how-to-choose-your-next-domain-with-visual-thesaurus/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 17:00:28 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[choosing the right domain name]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[dictionary words]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[keyword searches]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[list of synonyms]]></category>
		<category><![CDATA[niche]]></category>
		<category><![CDATA[visual representation]]></category>
		<category><![CDATA[visual thesaurus]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=189</guid>
		<description><![CDATA[You have an idea for a blog or a website but how do you go about choosing the right domain name with the highest possible impact? The Rules When it came to choosing my domain name for this website, there were a few things I was looking for - The name had to be short [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/keyword-counts-of-popular-programming-languages/' rel='bookmark' title='Keyword Counts of Popular Programming Languages'>Keyword Counts of Popular Programming Languages</a></li>
<li><a href='http://repeatgeek.com/technical/10-problems-with-hello-world/' rel='bookmark' title='10 Problems with &#8216;Hello World!&#8217;'>10 Problems with &#8216;Hello World!&#8217;</a></li>
<li><a href='http://repeatgeek.com/general/5-blogging-mistakes/' rel='bookmark' title='5 Blogging Mistakes'>5 Blogging Mistakes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>You have an idea for a blog or a website but how do you go about choosing the right domain name with the highest possible impact?</p>
<h2>The Rules</h2>
<p>When it came to choosing my domain name for this website, there were a few things I was looking for -</p>
<ol>
<li>The name had to be short enough to memorize.</li>
<li>The name didn&#8217;t contain any non-dictionary words.</li>
<li>The name had to be descriptive of the web site content.</li>
<li>The name didn&#8217;t contain any hyphens.</li>
<li>The .com needed to be available.</li>
</ol>
<h2>The Discovery Process</h2>
<p>I know I wanted the word <em>geek</em> in my domain, since it was my intention to gear my blog towards <em>computer geeks</em> as my readers, as well as, categorize my blog with others in my niche.</p>
<p><strong>Other blogs catering to geeks:</strong></p>
<ul>
<li><a href="http://www.geekgirlblogs.com/">Geek Girl Blogs &#8211; http://www.geekgirlblogs.com/</a></li>
<li><a href="http://www.howtogeek.com/">How-To Geek &#8211; http://www.howtogeek.com/</a></li>
<li><a href="http://geekswithblogs.net/">Geeks With Blogs &#8211; http://geekswithblogs.net/</a></li>
</ul>
<h2>The Missing Link</h2>
<p>Now that I&#8217;ve decided on part of my domain name, I needed the right word to append to my chosen word: <em>geek</em>, but would also fit within my subscribed set of rules.</p>
<p>There are a few sites that will generate a domain name for you based upon user-specified keywords or categories.</p>
<p><strong>Domain Generator Websites</strong></p>
<ul>
<li><a href="http://www.dotomator.com/">Dot-o-mator</a></li>
<li><a href="http://www.makewords.com/">Make Words</a></li>
<li><a href="http://www.makewords.com/">Nameboy</a></li>
</ul>
<p>I started to compile a list of keywords that would best represent the content of this site: ideas, improvement, success, planning, achievement and learning.</p>
<p>Using these keywords along with <em>geek</em>, I looked at the availability of possible domain names. Although the domain generation sites are great resources for checking the availability of a domain name and discovering preliminary results &#8211; the results generated didn&#8217;t always adhere to my list of rules.</p>
<h2>Discovering Visual Thesaurus</h2>
<p><a href="http://dictionary.reference.com/">Dictionary.com</a> will provide a list of synonyms (for most keyword searches) at the bottom the keyword entry page. I noticed a new visual representation during my keyword searches â€“ which proved to be a valuable tool: <strong>The Visual Thesaurus</strong>.</p>
<p>The Visual Thesaurus recursively connects your keyword to all related synonyms and allows you to interactively rebuild the synonym tree by choosing different words.</p>
<p>Manipulating the tree is both fun and useful, you can quickly drill-down on relevant keywords without the need to perform additional searches.</p>
<p><strong>Note:</strong> <em>Visual Thesaurus only allows you to use the interactivity functionality on a trial basis; however, you are able to drill-down to six levels using the free trial. If you find the tool useful you can subscribe for as low as $2.95/month.</em><strong> </strong>Most keyword searches will allow you to view a static representation of the Visual Thesaurus tree<strong> at no cost.</strong></p>
<p>Overall, the Visual Thesaurus is a great resource for quickly identifying keywords for your domain name.</p>
<p>After a few passes looking at related words with the Visual Thesaurus, I decided upon <em>repeat</em> as the word to append to <em>geek</em>.</p>
<h2>Compile Your Short-List</h2>
<p>By using a combination of site content keywords, domain name generators and the Visual Thesaurus, you should have a comprehensive list of possible domain names choices.</p>
<p>Compare each against your list of rules and decide which one will become your next domain.</p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/keyword-counts-of-popular-programming-languages/' rel='bookmark' title='Keyword Counts of Popular Programming Languages'>Keyword Counts of Popular Programming Languages</a></li>
<li><a href='http://repeatgeek.com/technical/10-problems-with-hello-world/' rel='bookmark' title='10 Problems with &#8216;Hello World!&#8217;'>10 Problems with &#8216;Hello World!&#8217;</a></li>
<li><a href='http://repeatgeek.com/general/5-blogging-mistakes/' rel='bookmark' title='5 Blogging Mistakes'>5 Blogging Mistakes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/how-to-choose-your-next-domain-with-visual-thesaurus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Steps for WordPress Preparation</title>
		<link>http://repeatgeek.com/tools/five-steps-for-wordpress-preparation/</link>
		<comments>http://repeatgeek.com/tools/five-steps-for-wordpress-preparation/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 22:15:34 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[development environment]]></category>
		<category><![CDATA[ftp client]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[revision control system]]></category>
		<category><![CDATA[scm]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[source control]]></category>
		<category><![CDATA[source files]]></category>
		<category><![CDATA[source version]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=14</guid>
		<description><![CDATA[If you are self-hosting your WordPress blog (not using WordPress.com), it is a good idea to setup an instance on your local computer. Setting up a local instance of WordPress and a development environment will help you tweaking theme source files, test upgraded WordPress installations and test plugins &#8211; without making changes on your live [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/tools/using-git-with-xcode-part-i/' rel='bookmark' title='Using Git with Xcode, Part I'>Using Git with Xcode, Part I</a></li>
<li><a href='http://repeatgeek.com/general/repeatgeek-theme-update/' rel='bookmark' title='RepeatGeek Theme Update'>RepeatGeek Theme Update</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-ii/' rel='bookmark' title='How To Master a Programming Language II'>How To Master a Programming Language II</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you are self-hosting your WordPress blog (not using WordPress.com), it is a good idea to setup an instance on your local computer.</p>
<p>Setting up a local instance of WordPress and a development environment will help you tweaking theme source files, test upgraded WordPress installations and test plugins &#8211; without making changes on your live site. You won&#8217;t be using the local instance for posting, but you might want to post a few dummy posts.</p>
<p><strong>Step One: Installing WordPress locally</strong></p>
<p>WordPress has some tutorials on how you can <a href="http://codex.wordpress.org/Installing_WordPress#Installing_WordPress_on_your_own_Computer">setup a local version of WordPress</a> using tools such as MAMP, XAMPP, etc. depending on your operating system.</p>
<ul>
<li><a href="http://www.tamba2.org.uk/wordpress/xampp/">Windows XP with XAMPP</a></li>
<li><a href="http://blogbuildingu.com/wordpress/install-wordpress-wemp">Windows XP and Vista with WEMP</a></li>
<li><a href="http://blogbuildingu.com/wordpress/install-wordpress-wlmp">WIndows XP and Vista with WLMP</a></li>
<li><a href="http://wojciechbednarski.com/articles/installing-wordpress-locally-on-gentoo-linux">Gentoo Linux</a></li>
<li><a href="http://sharealike.org/index.php/2007/04/07/multiple-wordpress-blogs-on-a-debian-server/">Debian Etch Linux</a></li>
<li><a href="http://www.supriyadisw.net/2006/08/wordpress-on-debian-linux">Debian Linux</a></li>
<li><a href="http://techiecat.catsgarden.net/article/install-wordpress-locally-on-fedora.html">Fedora Linux</a></li>
<li><a href="http://www.supriyadisw.net/2006/12/wordpress-installation-on-ubuntu-with-lamp">Ubuntu Linux with LAMP</a></li>
<li><a href="http://codex.wordpress.org/Installing_WordPress_Locally_on_Your_Mac_With_MAMP">Mac OSX with MAMP</a></li>
</ul>
<p><strong>Step Two: Install a (source/version/revision) control system </strong></p>
<p>It&#8217;s unlikely that you will like everything about a WordPress theme, so before you start editing the theme source files, establish a source control repository to keep track of your revision history.</p>
<p>You can use the SCM of your choosing &#8211; Smashing Magazine has a review of the <a href="http://www.smashingmagazine.com/2008/09/18/the-top-7-open-source-version-control-systems/">7 most popular revision control systems in use today</a>:</p>
<ul>
<li><a href="http://www.nongnu.org/cvs/">CVS</a></li>
<li><a href="http://subversion.tigris.org/">Subversion (SVN)</a></li>
<li><a href="http://git-scm.com/">Git</a></li>
<li><a href="http://www.selenic.com/mercurial/wiki/">Mercurial</a></li>
<li><a href="http://bazaar-vcs.org/">Bazaar</a></li>
<li><a href="http://dev.libresource.org/">LibreSource</a></li>
<li><a href="http://monotone.ca/">Monotone</a></li>
</ul>
<p><strong>Step 3: Test all your plugins locally</strong></p>
<p>Before you activate any plugins on your live site, install and test any plugins locally. Some plugins may make modifications to your database and potentially corrupt your WordPress installation. Other plugins may not be compatible with your version of WordPress or behave well with your selected theme.</p>
<p><strong>Step 4: Install an IDE (and a FTP client)</strong></p>
<p>The Appearance Editor within the WordPress Admin site is not the most user-friendly for editing and formatting source code. It is better to use a Text Editor or an IDE that supports syntax highlighting. Some of the better IDE include a built-in FTP/SFTP so you don&#8217;t need to switch applications when deploying your files.</p>
<p><strong>Editors with Built-In SFTP/FTP</strong></p>
<ul>
<li><a href="http://www.activestate.com/komodo_edit/">ActiveState Komodo Edit</a></li>
<li><a href="http://www.eclipse.org/">Eclipse</a></li>
<li><a href="http://www.jedit.org/">jEdit</a></li>
</ul>
<p>Even if your IDE supports SFTP/FTP, I would still recommend installing a FTP client such as <a href="http://filezilla-project.org/">Filezilla</a>.</p>
<p>Edit your files that are under version control and when you are ready to deploy, FTP them to your local WordPress directory.</p>
<p><strong>Step 5: Install WordPress on your web-host</strong></p>
<p>Most web-host will have some sort of one-click WordPress installation through cpanel or GoDaddy&#8217;s Hosting Control Center. These make it relatively easy to setup on your web-host without the need of transferring and configuring WordPress files.</p>
<p>Once, WordPress is installed on your web-host, add the FTP server information for your web-host to your FTP client and IDE.</p>
<p><strong>Note:</strong> Once you have WordPress deployed on your webhost,  I recommend that you backup your WordPress database regularly &#8211; this will preserve your posts. See this post from ProBlogger: <a href="http://www.problogger.net/archives/2009/10/10/how-to-backup-your-wordpress-blog-in-three-easy-steps/">How to Backup Your WordPress Blog In Three Easy Steps</a>.</p>
<p>* WordPress Icon provided by <a href="http://www.blogperfume.com/">BlogPerfume.com</a></p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/tools/using-git-with-xcode-part-i/' rel='bookmark' title='Using Git with Xcode, Part I'>Using Git with Xcode, Part I</a></li>
<li><a href='http://repeatgeek.com/general/repeatgeek-theme-update/' rel='bookmark' title='RepeatGeek Theme Update'>RepeatGeek Theme Update</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-ii/' rel='bookmark' title='How To Master a Programming Language II'>How To Master a Programming Language II</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/five-steps-for-wordpress-preparation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Output PDF Binary to Browser in ASP.NET</title>
		<link>http://repeatgeek.com/tools/output-pdf-binary-to-browser-in-asp-net/</link>
		<comments>http://repeatgeek.com/tools/output-pdf-binary-to-browser-in-asp-net/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 22:15:32 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[adobe reader]]></category>
		<category><![CDATA[application pdf]]></category>
		<category><![CDATA[asp code]]></category>
		<category><![CDATA[aspx page]]></category>
		<category><![CDATA[byte array]]></category>
		<category><![CDATA[content disposition]]></category>
		<category><![CDATA[page directive]]></category>
		<category><![CDATA[vbnet]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=30</guid>
		<description><![CDATA[Here is the code to output PDF Binary to the browser using ASP.NET / VB.NET. Note: This code assumes that you already have the PDF binary data stored in a byte() array called data. Response.ClearHeaders&#40;&#41; Response.ClearContent&#40;&#41; Response.ContentType = &#34;application/pdf&#34; Response.BinaryWrite&#40;buffer&#41; Response.End&#40;&#41; To add an Open / Save dialog window: Response.AddHeader&#40;&#34;content-disposition&#34;,&#34;attachment;filename=report.pdf&#34;&#41; If you encounter errors in [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/a-list-of-coding-standard-websites/' rel='bookmark' title='A List of Coding Standard Websites'>A List of Coding Standard Websites</a></li>
<li><a href='http://repeatgeek.com/technical/asp-net-access-to-path-is-denied/' rel='bookmark' title='ASP.NET &#8211; Access To Path is Denied'>ASP.NET &#8211; Access To Path is Denied</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-iv/' rel='bookmark' title='How To Master a Programming Language IV'>How To Master a Programming Language IV</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Here is the code to output PDF Binary to the browser using ASP.NET / VB.NET.</p>
<p>Note: This code assumes that you already have the PDF binary data stored in a byte() array called data.</p>
<div class="codesnip-container" >
<div class="vbnet codesnip" style="font-family:monospace;">Response.<span class="me1">ClearHeaders</span><span class="br0">&#40;</span><span class="br0">&#41;</span><br />
Response.<span class="me1">ClearContent</span><span class="br0">&#40;</span><span class="br0">&#41;</span><br />
Response.<span class="me1">ContentType</span> <span class="sy0">=</span> <span class="st0">&quot;application/pdf&quot;</span><br />
Response.<span class="me1">BinaryWrite</span><span class="br0">&#40;</span>buffer<span class="br0">&#41;</span><br />
Response.<span class="kw6">End</span><span class="br0">&#40;</span><span class="br0">&#41;</span></div>
</div>
<p>To add an Open / Save dialog window: </p>
<div class="codesnip-container" >
<div class="vbnet codesnip" style="font-family:monospace;">Response.<span class="me1">AddHeader</span><span class="br0">&#40;</span><span class="st0">&quot;content-disposition&quot;</span>,<span class="st0">&quot;attachment;filename=report.pdf&quot;</span><span class="br0">&#41;</span></div>
</div>
<p>If you encounter errors in Adobe Reader, make sure that your aspx page contains only the page directive:</p>
<div class="codesnip-container" >
<div class="asp codesnip" style="font-family:monospace;"><span class="sy1">&lt;%</span> <span class="sy0">@</span> Page Language<span class="sy0">=</span><span class="st0">&quot;vb&quot;</span> &#8230; <span class="sy1">%&gt;</span></div>
</div>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/technical/a-list-of-coding-standard-websites/' rel='bookmark' title='A List of Coding Standard Websites'>A List of Coding Standard Websites</a></li>
<li><a href='http://repeatgeek.com/technical/asp-net-access-to-path-is-denied/' rel='bookmark' title='ASP.NET &#8211; Access To Path is Denied'>ASP.NET &#8211; Access To Path is Denied</a></li>
<li><a href='http://repeatgeek.com/technical/how-to-master-a-programming-language-iv/' rel='bookmark' title='How To Master a Programming Language IV'>How To Master a Programming Language IV</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/output-pdf-binary-to-browser-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Overview of Microsoft PowerShell</title>
		<link>http://repeatgeek.com/tools/discovering-microsoft-powershell/</link>
		<comments>http://repeatgeek.com/tools/discovering-microsoft-powershell/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 22:15:08 +0000</pubDate>
		<dc:creator>dhirschl</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[alias]]></category>
		<category><![CDATA[cmdlet]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[shell scripts]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://repeatgeek.com/?p=28</guid>
		<description><![CDATA[I decided to install SQL Server 2008 Express and while I was resolving my prerequisite issues I noticed that one of the requirements was to have Windows PowerShell installed. I have to admit, I have never heard of Windows PowerShell at this point, I just passed this off as another utility that was included as [...]
Related posts:<ol>
<li><a href='http://repeatgeek.com/social/steve-jobs-wwdc-keynote-speeches/' rel='bookmark' title='Steve Jobs&#8217; WWDC Keynote Speeches'>Steve Jobs&#8217; WWDC Keynote Speeches</a></li>
<li><a href='http://repeatgeek.com/tools/6-books-every-programmer-should-own/' rel='bookmark' title='6 Books Every Programmer Should Own'>6 Books Every Programmer Should Own</a></li>
<li><a href='http://repeatgeek.com/tools/using-subversion-with-xcode-part-iii/' rel='bookmark' title='Using Subversion with Xcode, Part III'>Using Subversion with Xcode, Part III</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I decided to install <a href="http://www.microsoft.com/express/sql/download/">SQL Server 2008 Express</a> and while I was resolving my prerequisite issues I noticed that one of the requirements was to have Windows PowerShell installed. I have to admit, I have never heard of <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/download.mspx">Windows PowerShell</a> at this point, I just passed this off as another utility that was included as a part of Visual Studio. Since it was a requirement for SQL Server, I installed it. A few days later as I was exploring my Programs folder I noticed an entry for Windows PowerShell, so I decided to take a look.</p>
<p>My first impressions were that it looked a lot like the command window (cmd.exe), until I did a &#8220;dir&#8221; command; the output was Unix/Linux-like. I then tried a couple of Unix commands such as &#8220;ls&#8221; and &#8220;ps&#8221; and surprisingly they worked! Other commands such as &#8220;grep&#8221; and &#8220;who&#8221; did not work. It looks like Microsoft had developed a shell comparable to those found on Unix/Linux and they also borrowed a lot.</p>
<p style="text-align: center;">
<p><a href="http://repeatgeek.com/wp-content/uploads/2009/10/powershell.jpg"><img class="aligncenter size-medium wp-image-121" title="Power Shell" src="http://repeatgeek.com/wp-content/uploads/2009/10/powershell-300x192.jpg" alt="Power Shell" width="300" height="192" /></a></p>
<h2>PowerShell Resources</h2>
<p>I was determined to test-drive PowerShell to see what it was capable of, and surprisingly found out that PowerShell had already been out since late 2006 and there was a lot of documentation and tutorials available. Frank Koch (Infrastructure Architect at Microsoft) developed some workshops and documentation for learning PowerShell that are available for download in both <a href="http://download.microsoft.com/download/4/7/1/47104ec6-410d-4492-890b-2a34900c9df2/Workshops-EN.zip">English</a> and <a href="http://download.microsoft.com/download/4/7/1/47104ec6-410d-4492-890b-2a34900c9df2/Workshops-DE.zip">German</a>. I walked through the first of his tutorials  and discovered most of what you can accomplish in the shells of Unix (e.g. ksh, bash), can be accomplished with PowerShell and the syntax is very similar. Most of the commands (called cmdlets)  will utilize pipes &#8216;|&#8217; to redirect the output of a command to another or to a file. PowerShell also supports looping, and formatted output (i.e. csv, xml, html).</p>
<p>Another great site for PowerShell tutorials and resources is <a href="http://www.powershellpro.com/">PowerShell Pro!</a> One of the more useful features of the site is the Script Library,  a forum where users can find/post shell scripts.</p>
<p>When starting to learn PowerShell commands, you will find that there is a lot more typing involved. Many of the commands will use a &#8220;verb-noun&#8221; context, for example, the equivalent of the &#8220;kill&#8221; command is &#8220;Stop-Process&#8221;.  Fortunately, like in Unix, PowerShell supports the use of aliases and by default will map most of the known Unix Shell commands to their respective cmdlet. Here is a list of the built-in aliases:</p>
<table border="0">
<tbody>
<tr>
<th> Alias</th>
<th>Cmdlet</th>
</tr>
<tr>
<td>ac</td>
<td>Add-Content</td>
</tr>
<tr>
<td>asnp</td>
<td>Add-PSSnapin</td>
</tr>
<tr>
<td>clc</td>
<td>Clear-Content</td>
</tr>
<tr>
<td>cli</td>
<td>Clear-Item</td>
</tr>
<tr>
<td>clp</td>
<td>Clear-ItemProperty</td>
</tr>
<tr>
<td>clv</td>
<td>Clear-Variable</td>
</tr>
<tr>
<td>cpi</td>
<td>Copy-Item</td>
</tr>
<tr>
<td>cpp</td>
<td>Copy-ItemProperty</td>
</tr>
<tr>
<td>cvpa</td>
<td>Convert-Path</td>
</tr>
<tr>
<td>diff</td>
<td>Compare-Object</td>
</tr>
<tr>
<td>epal</td>
<td>Export-Alias</td>
</tr>
<tr>
<td>epcsv</td>
<td>Export-Csv</td>
</tr>
<tr>
<td>fc</td>
<td>Format-Custom</td>
</tr>
<tr>
<td>fl</td>
<td>Format-List</td>
</tr>
<tr>
<td>foreach</td>
<td>ForEach-Object</td>
</tr>
<tr>
<td>ft</td>
<td>Format-Table</td>
</tr>
<tr>
<td>fw</td>
<td>Format-Wide</td>
</tr>
<tr>
<td>gal</td>
<td>Get-Alias</td>
</tr>
<tr>
<td>gc</td>
<td>Get-Content</td>
</tr>
<tr>
<td>gci</td>
<td>Get-ChildItem</td>
</tr>
<tr>
<td>gcm</td>
<td>Get-Command</td>
</tr>
<tr>
<td>gdr</td>
<td>Get-PSDrive</td>
</tr>
<tr>
<td>ghy</td>
<td>Get-History</td>
</tr>
<tr>
<td>gi</td>
<td>Get-Item</td>
</tr>
<tr>
<td>gl</td>
<td>Get-Location</td>
</tr>
<tr>
<td>gm</td>
<td>Get-Member</td>
</tr>
<tr>
<td>gp</td>
<td>Get-ItemProperty</td>
</tr>
<tr>
<td>gps</td>
<td>Get-Process</td>
</tr>
<tr>
<td>group</td>
<td>Group-Object</td>
</tr>
<tr>
<td>gsv</td>
<td>Get-Service</td>
</tr>
<tr>
<td>gsnp</td>
<td>Get-PSSnapin</td>
</tr>
<tr>
<td>gu</td>
<td>Get-Unique</td>
</tr>
<tr>
<td>gv</td>
<td>Get-Variable</td>
</tr>
<tr>
<td>gwmi</td>
<td>Get-WmiObject</td>
</tr>
<tr>
<td>iex</td>
<td>Invoke-Expression</td>
</tr>
<tr>
<td>ihy</td>
<td>Invoke-History</td>
</tr>
<tr>
<td>ii</td>
<td>Invoke-Item</td>
</tr>
<tr>
<td>ipal</td>
<td>Import-Alias</td>
</tr>
<tr>
<td>ipcsv</td>
<td>Import-Csv</td>
</tr>
<tr>
<td>mi</td>
<td>Move-Item</td>
</tr>
<tr>
<td>mp</td>
<td>Move-ItemProperty</td>
</tr>
<tr>
<td>nal</td>
<td>New-Alias</td>
</tr>
<tr>
<td>ndr</td>
<td>New-PSDrive</td>
</tr>
<tr>
<td>ni</td>
<td>New-Item</td>
</tr>
<tr>
<td>nv</td>
<td>New-Variable</td>
</tr>
<tr>
<td>oh</td>
<td>Out-Host</td>
</tr>
<tr>
<td>rdr</td>
<td>Remove-PSDrive</td>
</tr>
<tr>
<td>ri</td>
<td>Remove-Item</td>
</tr>
<tr>
<td>rni</td>
<td>Rename-Item</td>
</tr>
<tr>
<td>rnp</td>
<td>Rename-ItemProperty</td>
</tr>
<tr>
<td>rp</td>
<td>Remove-ItemProperty</td>
</tr>
<tr>
<td>rsnp</td>
<td>Remove-PSSnapin</td>
</tr>
<tr>
<td>rv</td>
<td>Remove-Variable</td>
</tr>
<tr>
<td>rvpa</td>
<td>Resolve-Path</td>
</tr>
<tr>
<td>sal</td>
<td>Set-Alias</td>
</tr>
<tr>
<td>sasv</td>
<td>Start-Service</td>
</tr>
<tr>
<td>sc</td>
<td>Set-Content</td>
</tr>
<tr>
<td>select</td>
<td>Select-Object</td>
</tr>
<tr>
<td>si</td>
<td>Set-Item</td>
</tr>
<tr>
<td>sl</td>
<td>Set-Location</td>
</tr>
<tr>
<td>sleep</td>
<td>Start-Sleep</td>
</tr>
<tr>
<td>sort</td>
<td>Sort-Object</td>
</tr>
<tr>
<td>sp</td>
<td>Set-ItemProperty</td>
</tr>
<tr>
<td>spps</td>
<td>Stop-Process</td>
</tr>
<tr>
<td>spsv</td>
<td>Stop-Service</td>
</tr>
<tr>
<td>sv</td>
<td>Set-Variable</td>
</tr>
<tr>
<td>tee</td>
<td>Tee-Object</td>
</tr>
<tr>
<td>where</td>
<td>Where-Object</td>
</tr>
<tr>
<td>write</td>
<td>Write-Output</td>
</tr>
<tr>
<td>cat</td>
<td>Get-Content</td>
</tr>
<tr>
<td>cd</td>
<td>Set-Location</td>
</tr>
<tr>
<td>clear</td>
<td>Clear-Host</td>
</tr>
<tr>
<td>cp</td>
<td>Copy-Item</td>
</tr>
<tr>
<td>h</td>
<td>Get-History</td>
</tr>
<tr>
<td>history</td>
<td>Get-History</td>
</tr>
<tr>
<td>kill</td>
<td>Stop-Process</td>
</tr>
<tr>
<td>lp</td>
<td>Out-Printer</td>
</tr>
<tr>
<td>ls</td>
<td>Get-ChildItem</td>
</tr>
<tr>
<td>mount</td>
<td>New-PSDrive</td>
</tr>
<tr>
<td>mv</td>
<td>Move-Item</td>
</tr>
<tr>
<td>popd</td>
<td>Pop-Location</td>
</tr>
<tr>
<td>ps</td>
<td>Get-Process</td>
</tr>
<tr>
<td>pushd</td>
<td>Push-Location</td>
</tr>
<tr>
<td>pwd</td>
<td>Get-Location</td>
</tr>
<tr>
<td>r</td>
<td>Invoke-History</td>
</tr>
<tr>
<td>rm</td>
<td>Remove-Item</td>
</tr>
<tr>
<td>rmdir</td>
<td>Remove-Item</td>
</tr>
<tr>
<td>echo</td>
<td>Write-Output</td>
</tr>
<tr>
<td>cls</td>
<td>Clear-Host</td>
</tr>
<tr>
<td>chdir</td>
<td>Set-Location</td>
</tr>
<tr>
<td>copy</td>
<td>Copy-Item</td>
</tr>
<tr>
<td>del</td>
<td>Remove-Item</td>
</tr>
<tr>
<td>dir</td>
<td>Get-ChildItem</td>
</tr>
<tr>
<td>erase</td>
<td>Remove-Item</td>
</tr>
<tr>
<td>move</td>
<td>Move-Item</td>
</tr>
<tr>
<td>rd</td>
<td>Remove-Item</td>
</tr>
<tr>
<td>ren</td>
<td>Rename-Item</td>
</tr>
<tr>
<td>set</td>
<td>Set-Variable</td>
</tr>
<tr>
<td>type</td>
<td>Get-Content</td>
</tr>
</tbody>
</table>
<p>If you use PowerShell regularly, what tasks do you find it is best suited for?</p>
<p>Related posts:<ol>
<li><a href='http://repeatgeek.com/social/steve-jobs-wwdc-keynote-speeches/' rel='bookmark' title='Steve Jobs&#8217; WWDC Keynote Speeches'>Steve Jobs&#8217; WWDC Keynote Speeches</a></li>
<li><a href='http://repeatgeek.com/tools/6-books-every-programmer-should-own/' rel='bookmark' title='6 Books Every Programmer Should Own'>6 Books Every Programmer Should Own</a></li>
<li><a href='http://repeatgeek.com/tools/using-subversion-with-xcode-part-iii/' rel='bookmark' title='Using Subversion with Xcode, Part III'>Using Subversion with Xcode, Part III</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://repeatgeek.com/tools/discovering-microsoft-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

