<?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>Just2us &#187; mac</title>
	<atom:link href="http://blog.just2us.com/tag/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.just2us.com</link>
	<description>discuss on technology &#38; application development</description>
	<lastBuildDate>Sat, 04 Feb 2012 06:55:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>OS X Lion can install on multiple Mac with a single purchase</title>
		<link>http://blog.just2us.com/2011/07/os-x-lion-can-install-on-multiple-mac-with-a-single-purchase/</link>
		<comments>http://blog.just2us.com/2011/07/os-x-lion-can-install-on-multiple-mac-with-a-single-purchase/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 14:24:27 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://blog.just2us.com/2011/07/os-x-lion-can-install-on-multiple-mac-with-a-single-purchase/</guid>
		<description><![CDATA[
			
				
			
		
In case you are wondering if you need to pay $29.99 for every Mac that you own, you don’t.
Purchase a single copy using the same iTunes account, and all your authorized Macs would be able to install. This was actually mentioned in WWDC 2011 keynote.

So, go Mac App Store and download Lion now!
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F07%2Fos-x-lion-can-install-on-multiple-mac-with-a-single-purchase%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F07%2Fos-x-lion-can-install-on-multiple-mac-with-a-single-purchase%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>In case you are wondering if you need to pay $29.99 for every Mac that you own, you don’t.</p>
<p>Purchase a single copy using the same iTunes account, and all your authorized Macs would be able to install. This was actually mentioned in WWDC 2011 keynote.</p>
<p><a href="http://osxdaily.com/2011/06/07/single-purchase-of-lion-installs-on-all-macs/"><img src="http://osxdaily.com/wp-content/uploads/2011/06/lion-buy-once-install-all-macs.jpg" /></a></p>
<p>So, go Mac <a href="http://itunes.apple.com/app/os-x-lion/id444303913?mt=12">App Store and download Lion</a> now!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2011/07/os-x-lion-can-install-on-multiple-mac-with-a-single-purchase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting PATH variable in Mac permanently</title>
		<link>http://blog.just2us.com/2011/05/setting-path-variable-in-mac-permanently/</link>
		<comments>http://blog.just2us.com/2011/05/setting-path-variable-in-mac-permanently/#comments</comments>
		<pubDate>Mon, 30 May 2011 00:59:00 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://blog.just2us.com/2011/05/setting-path-variable-in-mac-permanently/</guid>
		<description><![CDATA[
			
				
			
		
This post I will highlight 3 ways to change to your PATH variable. 
&#160;
1. The quick way
Firstly, check your current PATH
echo $PATH

If the directory (eg. /my/new/path/) you want to add is not already in your current PATH, then you can easily add with the command
export PATH=$PATH:/my/new/path/

Done. Right?
It’s not really done, if you would like the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F05%2Fsetting-path-variable-in-mac-permanently%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2011%2F05%2Fsetting-path-variable-in-mac-permanently%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This post I will highlight 3 ways to change to your <a href="http://linux.about.com/cs/linux101/g/path.htm">PATH variable</a>. </p>
<p>&#160;</p>
<h3>1. The quick way</h3>
<p>Firstly, check your current PATH</p>
<blockquote><p>echo $PATH</p>
</blockquote>
<p>If the directory (eg. <em>/my/new/path/</em>) you want to add is not already in your current PATH, then you can easily add with the command</p>
<blockquote><p>export PATH=$PATH:/my/new/path/</p>
</blockquote>
<p>Done. Right?</p>
<p>It’s not really done, if you would like the PATH to change permanently (which is usually the case). This quick method only change the PATH for that bash session. If you close the terminal or open a new terminal, the PATH reverts back.</p>
<p>&#160;</p>
<h3>2. Set permanently for a user</h3>
<p>This brings us to the second way of setting PATH permanently for a user.</p>
<p>Edit the user’s bash profile (replace USERNAME)</p>
<blockquote><p>pico ~USERNAME/.bash_profile</p>
</blockquote>
<p>Insert (or edit) this line</p>
<blockquote><p>PATH=$PATH:/my/new/path/</p>
</blockquote>
<p>Press <em>ctrl-x</em>, then <em>ctrl-y</em>, to save the file.</p>
<p>Done.</p>
<p>&#160;</p>
<h3>3. Set for all users</h3>
<p>As a bonus, if you want the PATH to change for <em>all users</em></p>
<blockquote><p>sudo pico /etc/paths</p>
</blockquote>
<p>Enter your superuser password to edit, and insert or edit this link</p>
<blockquote><p>PATH=$PATH:/my/new/path/</p>
</blockquote>
<p>That’s it! Enjoy your path!</p>
<p>&#160;</p>
<p><a href="http://blog.just2us.com/wp-content/uploads/2011/05/beautiful-biking-path.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px" title="beautiful biking path" border="0" alt="beautiful biking path" src="http://blog.just2us.com/wp-content/uploads/2011/05/beautiful-biking-path_thumb.jpg" width="603" height="454" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2011/05/setting-path-variable-in-mac-permanently/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Snow Leopard and integrity</title>
		<link>http://blog.just2us.com/2009/09/snow-leopard-and-integrity/</link>
		<comments>http://blog.just2us.com/2009/09/snow-leopard-and-integrity/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 15:44:32 +0000</pubDate>
		<dc:creator>samwize</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://just2us.com/2009/09/snow-leopard-and-integrity/</guid>
		<description><![CDATA[
			
				
			
		
 Apple latest OS X 10.6, otherwise better known as Snow Leopard, is selling in a few flavors &#8211; $29 for single user upgrade, $59 for family pack upgrade and $169 for single user full boxed set.
But no matter which you buy, you get the same disc. You can install it over an existing Mac, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.just2us.com%2F2009%2F09%2Fsnow-leopard-and-integrity%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.just2us.com%2F2009%2F09%2Fsnow-leopard-and-integrity%2F&amp;source=samwize&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://just2us.com/site/wp-content/uploads/2009/09/love-leaves.jpg"><img style="border-right: 0px; border-top: 0px; margin: 0px 25px 0px 0px; border-left: 0px; border-bottom: 0px" height="193" alt="love leaves" src="http://just2us.com/site/wp-content/uploads/2009/09/love-leaves_thumb.jpg" width="244" align="left" border="0"></a> Apple latest OS X 10.6, otherwise better known as Snow Leopard, is selling in a few flavors &#8211; $29 for single user upgrade, $59 for family pack upgrade and $169 for single user full boxed set.
<p>But no matter which you buy, you get the same disc. You can install it over an existing Mac, or even over a Windows. You can install it once, or one hundred times. It doesn&#8217;t matter.
<p>Apple playing the software game in a modern way.
<p>Apple has do away with license keys or other worthless preventive measures. It is now based on only EULA (license agreement) and your integrity.
<p>Apple new policy: Reward honest people with a hassle-free product rather than trying to punish dishonest people by treating everyone like a criminal. Nice policy, I reckon.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.just2us.com/2009/09/snow-leopard-and-integrity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

