<?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>Skillachie - Chewing Bits and Bytes At a Time</title>
	<atom:link href="http://skillachie.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://skillachie.com</link>
	<description>Chewing Bits and Bytes At a Time</description>
	<lastBuildDate>Sun, 21 Apr 2013 01:15:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Ruby on Rails Note To Self  &#8211; File Upload App</title>
		<link>http://skillachie.com/?p=855</link>
		<comments>http://skillachie.com/?p=855#comments</comments>
		<pubDate>Fri, 20 Apr 2012 00:12:55 +0000</pubDate>
		<dc:creator>Dwayne V Campbell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://skillachie.com/?p=855</guid>
		<description><![CDATA[Wow, this article has been long overdue. I have been learning so much, but have not given this blog the priority it deserves. I refuse to use the excuse of &#8220;not enough time&#8221; Even though , the full code is in my GitHub. This post is a reminder and a compilation of the resources , [...]]]></description>
				<content:encoded><![CDATA[<p>Wow, this article has been long overdue. I have been learning so much, but have not given this blog the priority it deserves. I refuse to use the excuse of &#8220;not enough time&#8221; <img src='http://skillachie.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Even though , the full code is in my GitHub. This post is a reminder and a compilation of the resources , I used to complete my first webapp using Ruby on Rails.</p>
<p>The File Upload App currently allows a user to upload and save any file type, download the files belonging to that user and of course deleting the uploaded files if necessary. It also has a small admin mode, where the user with administrator privileges can see all files uploaded by all users and has the ability to delete both users and files uploaded.</p>
<p>I used the following to develop the complete WebApp</p>
<ol>
<li>1. Twitter Bootstrap for UI etc.</li>
<li>2. Devise for authentication</li>
<li>3. Paperclip for handling uploads</li>
<li>4.Annotate for detailed model info</li>
</ol>
<p>&nbsp;</p>
<h2><span style="text-decoration: underline;">Listing All Users Registered Using Devise</span></h2>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;">rails generate controller user index show</pre></td></tr></table></div>

<p>Add the following to your users_controller to get all the users.</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">def</span> index
   <span style="color:#0066ff; font-weight:bold;">@users</span> = User.<span style="color:#9900CC;">all</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></td></tr></table></div>

<p><span id="more-855"></span></p>
<p>Now ensure that your route.rb files has the following:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;">devise_for <span style="color:#ff3333; font-weight:bold;">:users</span>
resources <span style="color:#ff3333; font-weight:bold;">:users</span></pre></td></tr></table></div>

<p>You can always check the avialable routes in your RoR app by running</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;">rake routes</pre></td></tr></table></div>

<p>Now edit the &#8220;users/index.html.erb&#8221; to display the users currently registered</p>
<p>&nbsp;</p>
<h1>All Users</h1>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#006600; font-weight:bold;">&amp;</span>lt;<span style="color:#006600; font-weight:bold;">%</span> <span style="color:#0066ff; font-weight:bold;">@users</span>.<span style="color:#9900CC;">each</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>user<span style="color:#006600; font-weight:bold;">|</span> <span style="color:#006600; font-weight:bold;">%&amp;</span>gt;</pre></td></tr></table></div>

<ul>
<li>&lt;%= link_to user.email, user %&gt;<br />
&lt;% if current_user.admin? %&gt;<br />
| &lt;%= link_to &#8220;Delete&#8221;,user, :confirm =&gt; &#8220;Are you sure?&#8221;, :method =&gt; :delete %&gt;&lt;% end %&gt;</li>
</ul>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#006600; font-weight:bold;">&amp;</span>lt;<span style="color:#006600; font-weight:bold;">%</span> <span style="color:#9966CC; font-weight:bold;">end</span> <span style="color:#006600; font-weight:bold;">%&amp;</span>gt;</pre></td></tr></table></div>

<p><span style="text-decoration: underline;"><br />
</span></p>
<h2><span style="text-decoration: underline;">ActiveRecord</span></h2>
<p>When a relationship is created using active record. For example in this case a has_many and belongs_to relationship between uploads and users, certain methods are created. A user has_many uploads and a upload belongs_to a user. In this case the following methods were created by using the above relationship:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">class</span> User <span style="color:#006600; font-weight:bold;">&amp;</span>lt; <span style="color:#6666ff; font-weight:bold;">ActiveRecord::Base</span>
   has_many <span style="color:#ff3333; font-weight:bold;">:uploads</span>,:foreign_key =<span style="color:#006600; font-weight:bold;">&amp;</span>gt; <span style="color:#996600;">'user_id'</span>,:dependent =<span style="color:#006600; font-weight:bold;">&amp;</span>gt; <span style="color:#ff3333; font-weight:bold;">:destroy</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">class</span> Upload <span style="color:#006600; font-weight:bold;">&amp;</span>lt; <span style="color:#6666ff; font-weight:bold;">ActiveRecord::Base</span>
   belongs_to <span style="color:#ff3333; font-weight:bold;">:user</span></pre></td></tr></table></div>

<p>If for example however you do not use those methods created by the relationship such as</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;"> user.<span style="color:#9900CC;">upload</span></pre></td></tr></table></div>

<p>to upload a book, but instead use</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;">Upload.<span style="color:#9900CC;">new</span></pre></td></tr></table></div>

<p>, the user_id in the uploads table will not be populated with the id of the corresponding user. This is because</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;"> Uploads.<span style="color:#9900CC;">new</span></pre></td></tr></table></div>

<p>has no association with the current user and as a result the user_id is left nill everytime you upload files. Note to self, double check methods called , no foreign key or the &#8220;magic&#8221; of rails will help here.</p>
<h2><span style="text-decoration: underline;">Routes</span></h2>
<p>The controller and its action assigned to that specific route is configured in routes.rb. You can specify GET, DELETE,POST or PUT as methods from your view in rails, this is not to be confused with the methods you have available in your controllers. GET, DELETE,POST and PUT should be seen as actions invoked by the user over HTTP that matches back to methods in the controllers to prevent confusion.</p>
<p>I learned a lot more stuff, will try to blog more frequently about my next Webapp project as I progress rather than trying to brain dump after I am done.<br />
Github: https://github.com/skillachie/File-Upload-App</p>
<p>Links</p>
<p>http://ruby.railstutorial.org/ruby-on-rails-tutorial-book</p>
<p>http://railscasts.com/episodes/209-introducing-devise</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT%2B%2540skillachie%2B%253A%2B%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=6&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-orkut">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=247&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=61&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=46&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=204&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://www.shareaholic.com/api/share/?title=Ruby+on+Rails+Note+To+Self++-+File+Upload+App+&amp;link=http://skillachie.com/?p=855&amp;notes=Wow%2C%20this%20article%20has%20been%20long%20overdue.%20I%20have%20been%20learning%20so%20much%2C%20but%20have%20not%20given%20this%20blog%20the%20priority%20it%20deserves.%20I%20refuse%20to%20use%20the%20excuse%20of%20%22not%20enough%20time%22%20%3A%28%0D%0A%0D%0AEven%20though%20%2C%20the%20full%20code%20is%20in%20my%20GitHub.%20This%20post%20is%20a%20reminder%20and%20a%20compilation%20of%20the%20resources%20%2C%20I%20used%20to%20comp&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=54&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="https://shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://skillachie.com/?feed=rss2&#038;p=855</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Service For Your Web Application (Amazon SES)</title>
		<link>http://skillachie.com/?p=884</link>
		<comments>http://skillachie.com/?p=884#comments</comments>
		<pubDate>Sun, 25 Mar 2012 14:19:00 +0000</pubDate>
		<dc:creator>Dwayne V Campbell</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://skillachie.com/?p=884</guid>
		<description><![CDATA[Considering the wide variety of email services currently available and the task of keeping all the moving parts of a start up running. For sending emails why not use one of the services already available ? What did you say &#8230; you want to save money ? ..you want do be super &#8220;lean&#8221; ? Well [...]]]></description>
				<content:encoded><![CDATA[<p>Considering the wide variety of email services currently available and the task of keeping all the moving parts of a start up running.  For sending emails  why not use one of the services already available ?  What did you say &#8230; you want to save money ? ..you want do be super &#8220;lean&#8221; ?  Well I wasted a lot of time trying to get my emails  from being routed to the spam folder amongst other things.</p>
<ul>
<li>Metrics around your email</li>
<li>One less infrastructure based service to maintain</li>
<li>Fewer rejects and as a result higher conversions</li>
</ul>
<p><span id="more-884"></span></p>
<p>The last thing you would want is for your users to not be albe to sign up for web application at launch because they are not aware that the confirmation is in the spam folder or worst didn&#8217;t even reach their inbox.</p>
<p>Using one of the email services available such as  Amazon SES, SendGrid and others would more than likely be  saving you  time and effort  and as a result money.</p>
<p>I have decided to use Amazon SES mainly because its much cheaper than all the other services. Configuring Amazon SES is relatively straight forward. In this post I will be configuring a rails application to use Amazon SES.</p>
<p>1. Register the email that you will be using with Amazon SES  in your web application and verify it inside your Amazon Console.</p>
<p>2. Configure your application to use SES by installing the aws-ses gem.  You will need to create this file</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;"> config<span style="color:#006600; font-weight:bold;">/</span>initializers<span style="color:#006600; font-weight:bold;">/</span>amazon_ses.<span style="color:#9900CC;">rb</span></pre></td></tr></table></div>

<p>it is not created by default. Also do not confuse the {username and password}  for{ access key and the secret key }.</p>
<p>See the gem documentation for details.</p>
<p style="padding-left: 30px;"><a href="https://github.com/drewblas/aws-ses">AWS SES</a></p>
<p>3. Ensure to enable this option in environments/$ENV.rb file  .</p>
<p>This will allow you to immediately know if the email was sent or not, it raises an error, helpful in troubleshooting.</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="ruby" style="font-family:monospace;"> config.<span style="color:#9900CC;">action_mailer</span>.<span style="color:#9900CC;">raise_delivery_errors</span> = <span style="color:#0000FF; font-weight:bold;">true</span></pre></td></tr></table></div>

<p>Once all the above is done test sending registration and confirmations emails. If no error was raised above, you should be in the clear. Wait a few and refresh your Amazon console to see the results  and check your inbox. The only thing left to do now is request production acces.</p>
<p><a href="http://skillachie.com/wp-content/uploads/2012/03/ses.png"><img class="alignleft size-large wp-image-894" title="ses" src="http://skillachie.com/wp-content/uploads/2012/03/ses-1024x512.png" alt="" width="600" height="512" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT%2B%2540skillachie%2B%253A%2B%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=6&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-orkut">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=247&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=61&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=46&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=204&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://www.shareaholic.com/api/share/?title=Email+Service+For+Your+Web+Application+%28Amazon+SES%29&amp;link=http://skillachie.com/?p=884&amp;notes=Considering%20the%20wide%20variety%20of%20email%20services%20currently%20available%20and%20the%20task%20of%20keeping%20all%20the%20moving%20parts%20of%20a%20start%20up%20running.%20%20For%20sending%20emails%20%20why%20not%20use%20one%20of%20the%20services%20already%20available%20%3F%20%20What%20did%20you%20say%20...%20you%20want%20to%20save%20money%20%3F%20..you%20want%20do%20be%20super%20%22lean%22%20%3F%20%20Well%20I%20waste&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=54&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="https://shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://skillachie.com/?feed=rss2&#038;p=884</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source Antivirus Protection for Macs</title>
		<link>http://skillachie.com/?p=11</link>
		<comments>http://skillachie.com/?p=11#comments</comments>
		<pubDate>Sun, 25 Mar 2012 14:17:23 +0000</pubDate>
		<dc:creator>Dwayne V Campbell</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://skillachie.com/?p=11</guid>
		<description><![CDATA[[23 March  2012]  Seems I had this rant in my draft In my humble opinion, it is absolutely necessary to have basic antivirus protection installed on your Mac regardless of the number of virus currently out there for the Mac. &#8220;It wasn&#8217;t raining when Noah built the ark.&#8221; &#8211; Howard Ruff In short its about [...]]]></description>
				<content:encoded><![CDATA[<p>[23 March  2012]  Seems I had this rant in my draft</p>
<p>In my humble opinion, it is absolutely necessary to have basic antivirus protection installed on your Mac regardless of the number of virus currently out there for the Mac.</p>
<p>&#8220;It wasn&#8217;t raining when Noah built the ark.&#8221; &#8211; Howard Ruff</p>
<p>In short its about being prepared</p>
<p>No personal computer exists in a vacuum. As elegantly designed as Macs are, a connected world means that their popularity attracts the attention of malware writers and virus engineers. Not only can malware and other threats attack the Mac OS X platform directly, but Macs can also serve as a carrier of Windows or Linux-based threats. Network shares, email and removable media like USB keys are easy ways for multiplatform malware to spread undetected. Additionally, third party applications which are not consistently patched and updated, are prime targets for hackers to gain control of user systems.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT%2B%2540skillachie%2B%253A%2B%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=6&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-orkut">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=247&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=61&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=46&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=204&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://www.shareaholic.com/api/share/?title=Open+Source+Antivirus+Protection+for+Macs&amp;link=http://skillachie.com/?p=11&amp;notes=%5B23%20March%20%C2%A02012%5D%20%C2%A0Seems%20I%20had%20this%20rant%20in%20my%20draft%0D%0A%0D%0AIn%20my%20humble%20opinion%2C%20it%20is%20absolutely%20necessary%20to%20have%20basic%20antivirus%20protection%20installed%20on%20your%20Mac%20regardless%20of%20the%20number%20of%20virus%20currently%20out%20there%20for%20the%20Mac.%0D%0A%0D%0A%22It%20wasn%27t%20raining%20when%20Noah%20built%20the%20ark.%22%20-%20Howard%20Ruff%0D%0A%0D%0AIn%20sh&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=54&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="https://shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://skillachie.com/?feed=rss2&#038;p=11</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iterm2 + Homebrew + Htop + MacVim =  Awesomeness</title>
		<link>http://skillachie.com/?p=831</link>
		<comments>http://skillachie.com/?p=831#comments</comments>
		<pubDate>Wed, 22 Jun 2011 04:33:23 +0000</pubDate>
		<dc:creator>Dwayne V Campbell</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://skillachie.com/?p=831</guid>
		<description><![CDATA[To get  &#8221;awesomeness&#8221;  you will need to install the following: Iterm2  &#8211; http://www.iterm2.com/#/section/home Homebrew &#8211; http://mxcl.github.com/homebrew/ Htop -  http://htop.sourceforge.net/ Iterm2  is basically a  replacement/alternative for Terminal on the Mac OS X with mad cool features. A few of the features that I like so far are: Homebrew is a package manager for the Mac OS [...]]]></description>
				<content:encoded><![CDATA[<p>To get  &#8221;awesomeness&#8221;  you will need to install the following:</p>
<ul>
<li>Iterm2  &#8211; http://www.iterm2.com/#/section/home</li>
<li>Homebrew &#8211; http://mxcl.github.com/homebrew/</li>
<li>Htop -  <a href="http://htop.sourceforge.net/">http://htop.sourceforge.net/</a></li>
</ul>
<p><span id="more-831"></span><br />
Iterm2  is basically a  replacement/alternative for Terminal on the Mac OS X with mad cool features. A few of the features that I like so far are:<br />

		<div class='et-custom-list'>
			<ul>
<li>Expose Tabs</li>
<li>256 color  - makes coding much easier to follow</li>
<li>Autocomplete</li>
<li>Among others</li>
</ul>
		</div> <!-- .et-custom-list --><br />
Homebrew is a package manager for the Mac OS X that allows you to install  other linux/unix packages that are not included in OS X such as wget or Htop which  I am going to install today</p>
<p>Htop  is the process viewer that I have been looking for . Now I no longer use atMonitor (sorry guys). I am a  poweruser and as a result I always  check like to have an overview of my resources, specifically   memory. Now I use Htop within Iterm</p>
<p>MacVim is really just vim for OS X</p>
<h4>Installing  Homebrew</h4>

<div class="wp_syntax"><table><tr><td class="code"><pre class="language" style="font-family:monospace;"> ruby -e &quot;$(curl -fsSL https://raw.github.com/gist/323731)&quot;</pre></td></tr></table></div>

<p>Yup that’s it, the script does all the work</p>
<h4>Install Htop</h4>

<div class="wp_syntax"><table><tr><td class="code"><pre class="language" style="font-family:monospace;"> brew install htop</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="code"><pre class="language" style="font-family:monospace;">sudo htop</pre></td></tr></table></div>

<h4>Installing MacVim</h4>

<div class="wp_syntax"><table><tr><td class="code"><pre class="language" style="font-family:monospace;">brew install macvim</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="code"><pre class="language" style="font-family:monospace;">mvim file.rb</pre></td></tr></table></div>

<p>And that’s all folks, now back to learning/development</p>
<p><a href="http://www.youtube.com/watch?v=8qq5po2iRsc">httpv://www.youtube.com/watch?v=8qq5po2iRsc</a></p>
<h4>Additional Links</h4>
<p>Themes for Iterm2  -  <a href="http://code.google.com/p/iterm2/wiki/ColorGallery">http://code.google.com/p/iterm2/wiki/ColorGallery</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT%2B%2540skillachie%2B%253A%2B%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=6&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-orkut">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=247&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=61&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=46&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=204&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://www.shareaholic.com/api/share/?title=Iterm2+%2B+Homebrew+%2B+Htop+%2B+MacVim+%3D++Awesomeness+&amp;link=http://skillachie.com/?p=831&amp;notes=To%20get%20%C2%A0%22awesomeness%22%20%C2%A0you%20will%20need%20to%20install%20the%20following%3A%0D%0A%0D%0A%09Iterm2%C2%A0%20-%20http%3A%2F%2Fwww.iterm2.com%2F%23%2Fsection%2Fhome%0D%0A%09Homebrew%20-%20http%3A%2F%2Fmxcl.github.com%2Fhomebrew%2F%0D%0A%09Htop%20-%C2%A0%20http%3A%2F%2Fhtop.sourceforge.net%2F%0D%0A%0D%0A%0D%0AIterm2%C2%A0%20is%20basically%20a%C2%A0%20replacement%2Falternative%20for%20Terminal%20on%20the%20Mac%20OS%20X%20with%20mad%20cool&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=54&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="https://shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://skillachie.com/?feed=rss2&#038;p=831</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Using VI Over SSH From Mac OS  to  Remote Solaris Machine Terminal Error</title>
		<link>http://skillachie.com/?p=58</link>
		<comments>http://skillachie.com/?p=58#comments</comments>
		<pubDate>Sun, 07 Nov 2010 06:32:24 +0000</pubDate>
		<dc:creator>Dwayne V Campbell</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Vi]]></category>

		<guid isPermaLink="false">http://skillachie.com/?p=58</guid>
		<description><![CDATA[When trying to use VI on a remote machine in my case Solaris from Mac,I got the following error  xterm-color: Unknown terminal type I don't know what kind of terminal you are on - all I have is 'xterm-color'. [Using open mode] Fix export TERM='vt100' Share this on del.icio.us Tweet This! Share this on Facebook Email this via [...]]]></description>
				<content:encoded><![CDATA[<p>When trying to use VI on a remote machine in my case Solaris from Mac,I got the following error  xterm-color:<br />
<span id="more-58"></span></p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="language" style="font-family:monospace;">Unknown terminal type I don't know what kind of terminal you
are on  - all I have is 'xterm-color'. [Using open mode]</pre></td></tr></table></div>

<p>Fix<br />

		<div class='et-custom-list'>
			<ul>
<li>Simple change  the  ”declare terminal as” to vt100</li>
<li>Set the TERM environment variable on the remote machine to “vt100″ by using the following command</li>
</ul>
		</div> <!-- .et-custom-list --></p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="language" style="font-family:monospace;">export TERM='vt100'</pre></td></tr></table></div>



<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT%2B%2540skillachie%2B%253A%2B%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=6&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-orkut">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=247&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=61&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=46&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=204&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://www.shareaholic.com/api/share/?title=Using+VI+Over+SSH+From+Mac+OS++to++Remote+Solaris+Machine+Terminal+Error&amp;link=http://skillachie.com/?p=58&amp;notes=When%20trying%20to%20use%20VI%20on%20a%20remote%20machine%20in%20my%20case%20Solaris%20from%20Mac%2CI%20got%20the%20following%20error%E2%80%A8%E2%80%A8xterm-color%3A%0D%0A%0D%0AUnknown%20terminal%20type%E2%80%A8I%20don%27t%20know%20what%20kind%20of%20terminal%20you%0D%0Aare%20on%20%20-%20all%20I%20have%20is%20%27xterm-color%27.%E2%80%A8%5BUsing%20open%20mode%5D%0D%0AFix%0D%0A%0D%0Aexport%20TERM%3D%27vt100%27&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=54&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="https://shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://skillachie.com/?feed=rss2&#038;p=58</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>OS X is NOT Bullet Proof (Mac Viruses &#8211; Fiction or Fact)</title>
		<link>http://skillachie.com/?p=8</link>
		<comments>http://skillachie.com/?p=8#comments</comments>
		<pubDate>Sun, 07 Nov 2010 00:50:50 +0000</pubDate>
		<dc:creator>Dwayne V Campbell</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://skillachie.com/?p=8</guid>
		<description><![CDATA[&#160; As most of us know, Macs have a  &#8221;renowned&#8221;  virus free reputation at least to the society at large.Mac&#8217;s aren&#8217;t immune to viruses  and there is no reason to believe that they will now and forever be &#8220;virus free&#8221; .. unless they had some form of super dupper force field that magically protects them, which [...]]]></description>
				<content:encoded><![CDATA[<p>&nbsp;</p>
<p>As most of us know, Macs have a  &#8221;renowned&#8221;  virus free reputation at least to the society at large.Mac&#8217;s aren&#8217;t immune to viruses  and there is no reason to believe that they will now and forever be &#8220;virus free&#8221; .. unless they had some form of super dupper force field that magically protects them, which unfortunately they dont.</p>
<p>I am sure there are other  reasons why  the Mac appears to be virus free.However one of the main reasons  <span id="more-8"></span><!--more-->why viruses aren&#8217;t popping up left, right and center in the wild for Macs is  based solely on market share. MAC&#8217;s are only 5% of the current market  while Windows still has over 90% market share. (see figure below). Its all about statistics, in the eyes of a  malware/virus writer stands a better chance writing malicious software for Windows in this case simple because there is a better chance of success of more machines becoming infected. Hey if I wanted my own <a href="http://en.wikipedia.org/wiki/Botnet">botnet</a> I would be creating malware for the OS with the largest market share.</p>
<p>&nbsp;</p>
<p><!-- You may change the values of width and height above to resize the chart --></p>
<p>Source: <a href="http://gs.statcounter.com/#os-ww-monthly-201005-201105-bar">StatCounter Global Stats &#8211; Operating System Market Share</a></p>
<p><script src="http://www.statcounter.com/js/FusionCharts.js" type="text/javascript"></script><script src="http://gs.statcounter.com/chart.php?os-ww-monthly-201005-201105-bar" type="text/javascript"></script></p>
<p>The relationship between viruses for the Mac and Apples market share can be said to be directly proportional. You can expect the number of vulnerabilities for the Mac to increase as Apple gets a bigger piece of the pie, it is as simple as that.</p>
<p>BTW did I mention I love my MacBook Pro <img src='http://skillachie.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and OS X. Dont get me wrong the Mac OS is one of the most secure, and as I clearly said other factors/reasons contribute to why the Mac has a virus free reputation, however I believe the market share is one of the stronger factors.</p>
<p>I am just very tired of hearing people say &#8220;Macs dont get viruses&#8221;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
For your reading</p>
<p><a href="http://macviruscom.files.wordpress.com/2010/01/eicar-apple-security.pdf">Perception, Security and Worms in the Apple</a><br />
<a href="http://nakedsecurity.sophos.com/2010/11/04/new-variant-of-cross-platform-boonana-malware-discovered/">New variant of cross-platform Boonana malware discovered 2010</a><br />
<a href="http://macviruscom.wordpress.com/">Mac Viruses</a><br />
<a href="http://www.google.com">Google for more</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT%2B%2540skillachie%2B%253A%2B%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=6&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-orkut">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=247&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=61&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=46&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=204&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://www.shareaholic.com/api/share/?title=OS+X+is+NOT+Bullet+Proof+%28Mac+Viruses+-+Fiction+or+Fact%29&amp;link=http://skillachie.com/?p=8&amp;notes=%26nbsp%3B%0D%0A%0D%0AAs%20most%20of%20us%20know%2C%20Macs%20have%20a%20%C2%A0%22renowned%22%20%C2%A0virus%20free%20reputation%20at%20least%20to%20the%20society%20at%20large.Mac%27s%C2%A0aren%27t%20immune%20to%20viruses%20%C2%A0and%20there%20is%20no%20reason%20to%20believe%20that%20they%20will%20now%20and%20forever%20be%20%22virus%20free%22%20..%20unless%20they%20had%20some%20form%20of%20super%20dupper%20force%20field%20that%20magically%20p&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=54&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="https://shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://skillachie.com/?feed=rss2&#038;p=8</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Packaging Applications Benefits and Deploying Applications using Windows Server 2003</title>
		<link>http://skillachie.com/?p=26</link>
		<comments>http://skillachie.com/?p=26#comments</comments>
		<pubDate>Mon, 20 Sep 2010 02:14:26 +0000</pubDate>
		<dc:creator>Dwayne V Campbell</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Group Policy]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://skillachie.com/?p=26</guid>
		<description><![CDATA[eploying and maintaining applications across multiple PC&#8217;s  across an organization is  demanding and time consuming especially  when machines are constantly being refreshed. Packaging applications, provides a centralized location to automatically manage, deploy, repair and patch applications. A Few of the benefits of packaging applications are: &#160; &#160; There are much more benefits to application packaging, however [...]]]></description>
				<content:encoded><![CDATA[<p><span class='et-dropcap' style="”font-size:">D</span>eploying and maintaining applications across multiple PC&#8217;s  across an organization is  demanding and time consuming especially  when machines are constantly being refreshed. Packaging applications, provides a centralized location to automatically manage, deploy, repair and patch applications. A Few of the benefits of packaging applications are:<br />
<span id="more-26"></span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>

		<div class='et-custom-list'>
			<ul>
<li> Reduce end user support cost – The same application can be administered and deployed to multiple users</li>
<li>Minimize user disruption &#8211; Automated installation, applications can be installed on a users PC, in the background without interrupting or prompting the user.</li>
<li>Version Control – Ensures that the same version of an application is distributed throughout the organization., which reduces compatibility issues .This also contributes to reducing end user support</li>
<li>Application Inventory – Basically knowing collectively what applications have been deployed, which applications are on a specific group of PC’s etc</li>
</ul>
		</div> <!-- .et-custom-list --><br />
There are much more benefits to application packaging, however I believe I have listed the main ones.</p>
<h3>Packaging Using WinInstall MSI</h3>
<h4>Requirements</h4>
<p>1.        Scalable Software <a href="http://www.scalable.com/Reg.aspx?prod=winMSI">WinINSTALL MSI Packager Professional</a> (Installed)</p>
<p>2.       Windows Server 2003  &#8211; domain controller , active directory etc.</p>
<p>Please click on the link below to download the PDF tutorial.</p>
<p><a href="http://skillachie.com/wp-content/uploads/2010/09/packaging-applications-to-be-deployed-in-an-enterprise-environment-using-the-group-policy-in-windows-server.pdf">Packaging Applications to Be Deployed in an Enterprise Environment Using  Wise WinInstall</a></p>
<p>I will blog about using VMware ThinApp( <a title="VMware ThinApp" href="http://www.vmware.com/products/thinapp/">http://www.vmware.com/products/thinapp</a>/ )instead of WinInstall MSI Packager to package  and deploy your applications in another blog post</p>
<p>***From my old blog. The logo in the document below, will say babyadministrator. I once blogged from babyadministrator.com but decided the name was too long and might not be conveying the message I want. I allowed that domain to expire, it is now been sold for over $1800. I will definitely not make such a mistake again. That was off track, you can download the pdf tutorial by clicking on the link above.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT%2B%2540skillachie%2B%253A%2B%2524%257Btitle%257D%2B-%2B%2524%257Bshort_link%257D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=52&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=74&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=88&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=6&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=39&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-orkut">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=247&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=61&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=46&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=204&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://www.shareaholic.com/api/share/?title=Packaging+Applications+Benefits+and+Deploying+Applications+using+Windows+Server+2003&amp;link=http://skillachie.com/?p=26&amp;notes=eploying%20and%20maintaining%20applications%20across%20multiple%20PC%27s%20%C2%A0across%20an%20organization%20is%20%C2%A0demanding%20and%20time%20consuming%20especially%20%C2%A0when%20machines%20are%20constantly%20being%20refreshed.%C2%A0Packaging%20applications%2C%20provides%20a%20centralized%20location%20to%20automatically%20manage%2C%20deploy%2C%20repair%20and%20patch%20applications.%20A%20&amp;short_link=&amp;shortener=google&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=54&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="https://shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://skillachie.com/?feed=rss2&#038;p=26</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
