<?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>Reinventar &#187; Blog</title>
	<atom:link href="http://reinventar.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://reinventar.com</link>
	<description></description>
	<lastBuildDate>Tue, 05 Apr 2011 13:25:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Install Imagemagick on Ubuntu with delegates</title>
		<link>http://reinventar.com/2011/04/05/install-imagemagick-on-ubuntu-with-delegates/</link>
		<comments>http://reinventar.com/2011/04/05/install-imagemagick-on-ubuntu-with-delegates/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 13:18:51 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=1083</guid>
		<description><![CDATA[Installing imagemagick on Ubuntu for use with your Rails application (if you user Paperclip for example) should be pretty easy using apt-get: sudo apt-get install libmagickwand-dev sudo apt-get install imagemagick librmagick-ruby1.8 librmagick-ruby-doc libfreetype6-dev xml-core -y so now it&#8217;s done. Unfortunately during one of my instalations, I ran into a problem where the delegate libraries for [...]]]></description>
			<content:encoded><![CDATA[<p>Installing imagemagick on Ubuntu for use with your Rails application (if you user Paperclip for example) should be pretty easy using apt-get:<br />
<span id="more-1083"></span></p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libmagickwand-dev<br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> imagemagick librmagick-ruby1.8 librmagick-ruby-doc libfreetype6-dev xml-core <span style="color: #660033;">-y</span></div></div>
<p>so now it&#8217;s done.<br />
Unfortunately during one of my instalations, I ran into a problem where the delegate libraries for jpg, png, etc where not being picked up. ex:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">convert <span style="color: #660033;">-list</span> configure</div></div>
<p>The solution for this is to install Imagemagick by hand, ex:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #7a0874; font-weight: bold;">source</span><br />
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #7a0874; font-weight: bold;">source</span><br />
<span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #c20cb9; font-weight: bold;">ftp</span>:<span style="color: #000000; font-weight: bold;">//</span>ftp.imagemagick.org<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>ImageMagick<span style="color: #000000; font-weight: bold;">/</span>ImageMagick.tar.gz<br />
<span style="color: #c20cb9; font-weight: bold;">tar</span> xvfz ImageMagick.tar.gz<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> ImageMagick-6.6.5-<span style="color: #000000;">8</span><br />
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--disable-shared</span><br />
<span style="color: #c20cb9; font-weight: bold;">make</span><br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<p>and now you should be able to use the identify or the convert command successfully on your image files.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2011/03/04/install-imagemagick-on-centos-5-5/" rel="bookmark" class="crp_title">Install Imagemagick on Centos 5.5</a></li><li><a href="http://reinventar.com/2011/03/04/install-git-on-centos-5/" rel="bookmark" class="crp_title">Install GIT on CENTOS 5</a></li><li><a href="http://reinventar.com/2008/02/16/rmagick-on-mac-os-x-made-simple/" rel="bookmark" class="crp_title">RMagick on Mac OS X made simple</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2011/04/05/install-imagemagick-on-ubuntu-with-delegates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>April Fools</title>
		<link>http://reinventar.com/2011/04/04/april-fools/</link>
		<comments>http://reinventar.com/2011/04/04/april-fools/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 09:27:14 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think Orange]]></category>
		<category><![CDATA[april fools]]></category>
		<category><![CDATA[joke]]></category>
		<category><![CDATA[think orange]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=1077</guid>
		<description><![CDATA[April 1st became a fun, repeatable event everywhere on the internet. Some jokes go all the way, with video, webpages and even some real testemonials, while others try to go for something more simple. Here&#8217;s the Think Orange homepage for April 1st which reflected a drastic change of business direction: Related Posts:Don&#8217;t miss SHiFT on [...]]]></description>
			<content:encoded><![CDATA[<p>April 1st became a fun, repeatable event everywhere on the internet. Some jokes go all the way, with video, webpages and even some real testemonials, while others try to go for something more simple.</p>
<p>Here&#8217;s the Think Orange homepage for April 1st which reflected a drastic change of business direction:<span id="more-1077"></span></p>
<p><a href="http://reinventar.com/wp-content/uploads/2011/04/april_1st_2011.png"><img onError="javascript: wp_404_images_fix = window.wp_404_images_fix || function(){}; wp_404_images_fix(this);"  class="aligncenter size-medium wp-image-1078" title="april_1st_2011" src="http://reinventar.com/wp-content/uploads/2011/04/april_1st_2011-300x191.png" alt="" width="300" height="191" /></a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2010/04/13/dont-miss-shift-on-the-16th-and-17th-april/" rel="bookmark" class="crp_title">Don&#8217;t miss SHiFT on the 16th/17th April</a></li><li><a href="http://reinventar.com/2010/01/15/shift-2010-is-live/" rel="bookmark" class="crp_title">SHiFT 2010 is live</a></li><li><a href="http://reinventar.com/2010/11/17/mechanical-pomodoro-options-screen/" rel="bookmark" class="crp_title">Mechanical Pomodoro Options Screen</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2011/04/04/april-fools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ways to promote yourself</title>
		<link>http://reinventar.com/2011/03/24/ways-to-promote-yourself/</link>
		<comments>http://reinventar.com/2011/03/24/ways-to-promote-yourself/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 16:02:34 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=1072</guid>
		<description><![CDATA[If you&#8217;re a designer build some icons and share them, make some textures, draw a template, invent a grid system or build a theme for your favorite CMS. If you&#8217;re a illustrator start a blog, share a drawing everyday, dribbble, give advice or create a web comic. If you&#8217;re a photographer share photos on a photo blog, [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re a designer build some icons and share them, make some textures, draw a template, invent a grid system or build a theme for your favorite CMS.</p>
<p>If you&#8217;re a illustrator start a blog, share a drawing everyday, dribbble, give advice or create a web comic.<span id="more-1072"></span></p>
<p>If you&#8217;re a photographer share photos on a photo blog, give some freebies, if you have time, sell some photos at Stock Photo websites and create an online portfolio.</p>
<p>If you&#8217;re a programmer, build stuff, write tutorials, record screencasts, speak at conferences, attend events, share insights, techniques and code.</p>
<p>And so on&#8230;</p>
<p>There&#8217;s more ways to show your skills and talent that just sending out CV&#8217;s and waiting for a job to land. Be creative and don&#8217;t sit around.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2007/03/14/you-want-to-build-a-startup/" rel="bookmark" class="crp_title">you want to build a startup?</a></li><li><a href="http://reinventar.com/2011/03/22/do-it/" rel="bookmark" class="crp_title">Do it</a></li><li><a href="http://reinventar.com/2006/11/20/entrepreneurial-proverbs/" rel="bookmark" class="crp_title">Entrepreneurial Proverbs</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2011/03/24/ways-to-promote-yourself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do it</title>
		<link>http://reinventar.com/2011/03/22/do-it/</link>
		<comments>http://reinventar.com/2011/03/22/do-it/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 17:29:50 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[entrepeneur]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=1067</guid>
		<description><![CDATA[Stop what you&#8217;re doing tonight. Get out of the couch, turn off the tv, don&#8217;t watch a show about some interesting imaginary life, this is your opportunity. Instead, have some coffee or tea and work on something you wanted to do on a long time. Go pick those ideas you have kept on a piece [...]]]></description>
			<content:encoded><![CDATA[<p>Stop what you&#8217;re doing tonight.</p>
<p>Get out of the couch, turn off the tv, don&#8217;t watch a show about some interesting imaginary life, this is your opportunity.</p>
<p><span id="more-1067"></span>Instead, have some coffee or tea and work on something you wanted to do on a long time.</p>
<p>Go pick those ideas you have kept on a piece of napkin or in a paper-sheet in your drawer and build something tonight.<br />
Don&#8217;t wait any longer, you&#8217;re going to be sleepy tomorrow but much happier.</p>
<p>Write, draw, design, program, build something tonight. Go!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2010/01/27/conan-obrien-goodbye-message/" rel="bookmark" class="crp_title">Conan O&#8217;Brien&#8217;s Goodbye message</a></li><li><a href="http://reinventar.com/2011/03/24/ways-to-promote-yourself/" rel="bookmark" class="crp_title">Ways to promote yourself</a></li><li><a href="http://reinventar.com/2009/08/18/work-life/" rel="bookmark" class="crp_title">Work life</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2011/03/22/do-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Imagemagick on Centos 5.5</title>
		<link>http://reinventar.com/2011/03/04/install-imagemagick-on-centos-5-5/</link>
		<comments>http://reinventar.com/2011/03/04/install-imagemagick-on-centos-5-5/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 13:17:14 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=1054</guid>
		<description><![CDATA[Another quick post with some tips on installing the ImageMagick library on CENTOS 5. First, install some needed libraries with yum: sudo yum install tcl-devel libpng-devel libjpeg-devel ghostscript-devel bzip2-devel freetype-devel libtiff-devel Then create a directory and download the latest source. mkdir sources cd /sources wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.6.7-0.tar.gz Untar the compressed file and compile it using dark [...]]]></description>
			<content:encoded><![CDATA[<p>Another quick post with some tips on installing the ImageMagick library on CENTOS 5.<span id="more-1054"></span></p>
<p>First, install some needed libraries with yum:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">sudo</span> yum <span style="color: #c20cb9; font-weight: bold;">install</span> tcl-devel libpng-devel libjpeg-devel ghostscript-devel bzip2-devel freetype-devel libtiff-devel</div></div>
<p>Then create a directory and download the latest source.</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> sources<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>sources<br />
<span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #c20cb9; font-weight: bold;">ftp</span>:<span style="color: #000000; font-weight: bold;">//</span>ftp.imagemagick.org<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>ImageMagick<span style="color: #000000; font-weight: bold;">/</span>ImageMagick-6.6.7-<span style="color: #000000;">0</span>.tar.gz</div></div>
<p>Untar the compressed file and compile it using dark magic:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">tar</span> zxvf ImageMagick-6.6.7-<span style="color: #000000;">0</span>.tar.gz<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> ImageMagick-6.6.7-<span style="color: #000000;">0</span></div></div>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">local</span> <span style="color: #660033;">--with-bzlib</span>=<span style="color: #c20cb9; font-weight: bold;">yes</span> <span style="color: #660033;">--with-fontconfig</span>=<span style="color: #c20cb9; font-weight: bold;">yes</span> <span style="color: #660033;">--with-freetype</span>=<span style="color: #c20cb9; font-weight: bold;">yes</span> <span style="color: #660033;">--with-gslib</span>=<span style="color: #c20cb9; font-weight: bold;">yes</span> <span style="color: #660033;">--with-gvc</span>=<span style="color: #c20cb9; font-weight: bold;">yes</span> <span style="color: #660033;">--with-jpeg</span>=<span style="color: #c20cb9; font-weight: bold;">yes</span> <span style="color: #660033;">--with-jp2</span>=<span style="color: #c20cb9; font-weight: bold;">yes</span> <span style="color: #660033;">--with-png</span>=<span style="color: #c20cb9; font-weight: bold;">yes</span> <span style="color: #660033;">--with-tiff</span>=<span style="color: #c20cb9; font-weight: bold;">yes</span><br />
<span style="color: #c20cb9; font-weight: bold;">make</span> clean<br />
<span style="color: #c20cb9; font-weight: bold;">make</span><br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<p>grab a coffee while it&#8217;s doing it&#8217;s work and that&#8217;s it.</p>
<p>To test if it works run:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">run identify <span style="color: #660033;">-version</span></div></div>
<p>and it should confirm that it&#8217;s installed.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2011/03/04/install-git-on-centos-5/" rel="bookmark" class="crp_title">Install GIT on CENTOS 5</a></li><li><a href="http://reinventar.com/2011/04/05/install-imagemagick-on-ubuntu-with-delegates/" rel="bookmark" class="crp_title">Install Imagemagick on Ubuntu with delegates</a></li><li><a href="http://reinventar.com/2008/02/16/rmagick-on-mac-os-x-made-simple/" rel="bookmark" class="crp_title">RMagick on Mac OS X made simple</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2011/03/04/install-imagemagick-on-centos-5-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install GIT on CENTOS 5</title>
		<link>http://reinventar.com/2011/03/04/install-git-on-centos-5/</link>
		<comments>http://reinventar.com/2011/03/04/install-git-on-centos-5/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 13:13:38 +0000</pubDate>
		<dc:creator>Pedro Sousa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://reinventar.com/?p=1052</guid>
		<description><![CDATA[Quick post with some notes on how to install GIT on CENTOS 5 easily. First install some needed libraries for dev: sudo yum -y install zlib-devel openssl-devel cpio expat-devel gettext-devel Create a directory, switch to it and download the latest git source. mkdir sources cd /sources wget http://kernel.org/pub/software/scm/git/git-1.6.6.tar.gz Untar the compressed file, switch to the [...]]]></description>
			<content:encoded><![CDATA[<p>Quick post with some notes on how to install GIT on CENTOS 5 easily.</p>
<p><span id="more-1052"></span></p>
<p>First install some needed libraries for dev:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">sudo</span> yum <span style="color: #660033;">-y</span> <span style="color: #c20cb9; font-weight: bold;">install</span> zlib-devel openssl-devel <span style="color: #c20cb9; font-weight: bold;">cpio</span> expat-devel gettext-devel</div></div>
<p>Create a directory, switch to it and download the latest git source.</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> sources<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>sources<br />
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>kernel.org<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>software<span style="color: #000000; font-weight: bold;">/</span>scm<span style="color: #000000; font-weight: bold;">/</span>git<span style="color: #000000; font-weight: bold;">/</span>git-1.6.6.tar.gz</div></div>
<p>Untar the compressed file, switch to the folder and compile it manually.</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">tar</span> xvzf git-1.6.6.tar.gz<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> git-1.6.6</div></div>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.<span style="color: #000000; font-weight: bold;">/</span>configure<br />
<span style="color: #c20cb9; font-weight: bold;">make</span><br />
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></div></div>
<p>and that&#8217;s it. Now, something as simple as:</p>
<div class="codecolorer-container bash blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> testgit<br />
<span style="color: #7a0874; font-weight: bold;">cd</span> testgit<br />
<span style="color: #c20cb9; font-weight: bold;">git</span> init</div></div>
<p>should work and you just created your first local repository.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://reinventar.com/2011/03/04/install-imagemagick-on-centos-5-5/" rel="bookmark" class="crp_title">Install Imagemagick on Centos 5.5</a></li><li><a href="http://reinventar.com/2011/04/05/install-imagemagick-on-ubuntu-with-delegates/" rel="bookmark" class="crp_title">Install Imagemagick on Ubuntu with delegates</a></li><li><a href="http://reinventar.com/2008/02/16/rmagick-on-mac-os-x-made-simple/" rel="bookmark" class="crp_title">RMagick on Mac OS X made simple</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://reinventar.com/2011/03/04/install-git-on-centos-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

