<?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>My Mac Journal</title>
	<atom:link href="http://www.mymacjournal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mymacjournal.com</link>
	<description>From a 20-in. aluminum iMac to a 2.4 GHz, 15-in. MacBook Pro (2008) and 2.93 GHz iMac (2009)</description>
	<lastBuildDate>Sun, 30 Oct 2011 09:55:50 +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>Easily Copy Selected Text to a Text File using a Custom Automator Service on the Mac</title>
		<link>http://www.mymacjournal.com/easily-copy-selected-text-to-a-text-file-using-a-custom-automator-service-on-the-mac/</link>
		<comments>http://www.mymacjournal.com/easily-copy-selected-text-to-a-text-file-using-a-custom-automator-service-on-the-mac/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 09:55:50 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/?p=329</guid>
		<description><![CDATA[My primary method of collecting research information while browsing the Internet on my Mac is to clip them as rich text or save links and URLs to Evernote. There are times however, when I just want a quick way to copy and paste whatever information I select as pure text into a simple text file. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>My primary method of collecting research information while browsing the Internet on my Mac is to clip them as rich text or save links and URLs to <a href="http://www.evernote.com/">Evernote</a>.</p>
<p>There are times however, when I just want a quick way to copy and paste whatever information I select as pure text into a simple text file. In this instance, the text file acts as one big, giant clipboard (let&#8217;s call it &#8220;Clipboard.txt&#8221;) that gets a constant stream of new text incrementally added to the top, a collection point for my rapid-fire copy and paste activity in the browser.</p>
<p>I&#8217;d also want to perform this copy-and-paste activity without having to constantly switch between the browser (say, Safari) and the text editor. My text editor of choice for this kind of work is <a href="http://brettterpstra.com/project/nvalt/">nvALT</a> (a brilliant, Markdown-enhanced fork of <a href="http://notational.net/">Notational Velocity</a>), which is able to instantaneously display the updated contents of Clipboard.txt, and syncs with <a href="http://simplenoteapp.com/">Simplenote</a> to boot.</p>
<p>It turns out that a free solution exists on the Mac, in the form of <a href="http://support.apple.com/kb/ht2488">Automator</a>, for exactly this kind of requirement.</p>
<p>Please note that if you want to view the generated Clipboard.txt text file in nvALT, the nvALT note storage option `Store and read notes on disk as:` must be set as `Plain Text Files`.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6122216813/" title="Note storage option in nvALT by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6202/6122216813_69158658d9_z.jpg" width="482" height="598" alt="Note storage option in nvALT"></a></p>
<p>The following are the 7 steps required to construct such a solution, which we&#8217;ll name &#8220;<strong>Send text to nvALT</strong>&#8220;.</p>
<h2 id="stepstoconstructthesendtexttonvaltautomatorservice">Steps to construct the &#8220;Send text to nvALT&#8221; Automator service</h2>
<p><strong>Step 1 – Launch the Automator app.</strong> I prefer to just invoke <strong>Spotlight</strong> with <code>command+spacebar</code>, type the first few characters of the app&#8217;s name, and hit <code>return</code> after the app is selected from the list.</p>
<p><a title="The Automator app on the Mac by ** David Chin **, on Flickr" href="http://www.flickr.com/photos/davidchinphoto/6081636120/"><img src="http://farm7.static.flickr.com/6082/6081636120_45fb00ca7e_m.jpg" alt="The Automator app on the Mac" width="175" height="213" /></a></p>
<p><strong>Step 2 – Choose the Service document type.</strong> We&#8217;re building a workflow that can be called in any application with a keyboard shortcut or selected in a contextual menu brought up with a right mouse click, so select the Service icon and click the <code>Choose</code> button.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6081652508/" title="Select the Service document in Automator by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6202/6081652508_b6e2116307.jpg" width="500" height="483" alt="Select the Service document in Automator"></a></p>
<p><strong>Step 3 &#8211; Add the Run Shell Script action.</strong> Make sure <code>Actions</code> is selected (this is the default), then search for &#8220;shell&#8221;. Alternatively, click on &#8220;Utilities&#8221; in the Library column, then click on the &#8220;Run Shell Script&#8221; action and drag it to the workflow area.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6081140463/" title="Using the Run Shell Script Automator action by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6077/6081140463_d81e5cb0a9.jpg" width="500" height="445" alt="Using the Run Shell Script Automator action"></a></p>
<p><strong>Step 4 – Paste the following code in the Run Shell Script action.</strong> I&#8217;ll explain in a bit about the script and file choices. Please replace with your own preferred folder and files.</p>
<pre><code>cat &gt; ~/My\ Stuff/@NV/dlc_temp.txt
printf "\n" &gt;&gt; ~/My\ Stuff/@NV/dlc_temp.txt
cat ~/My\ Stuff/@NV/Clipboard.txt &gt;&gt; ~/My\ Stuff/@NV/dlc_temp.txt
mv ~/My\ Stuff/@NV/dlc_temp.txt ~/My\ Stuff/@NV/Clipboard.txt</code></pre>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6081725778/" title="Shell sript to send selected text to nvALT by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6188/6081725778_a051637894.jpg" width="500" height="357" alt="Shell sript to send selected text to nvALT"></a></p>
<p>More details:</p>
<ol>
<li>Folder: (User Home)/My Stuff/@NV. Notice in the code that &#8220;My Stuff&#8221; is entered as &#8220;<code>My\ Stuff</code>&#8220;. The script that runs in the shell expects literal spaces to be escaped with the backslash (&#8220;\&#8221;) character.</li>
<li>Temporary file: dlc_temp.txt. This file is required because I want the most recently-pasted item to appear at the top of my clipboard file. The UNIX shell command <code>cat</code> that&#8217;s used in the code is only able to append (or add) information to the end of an existing file. So I&#8217;ll be using &#8220;dlc_temp.txt&#8221; to paste in the most recent item, followed by a line feed, then the entire contents of the existing &#8220;Clipboard.txt&#8221;. The script will then rename &#8220;dlc_temp.txt&#8221; to &#8220;Clipboard.txt&#8221; and replace the old &#8220;Clipboard.txt&#8221;.</li>
<li>Clipboard file: Clipboard.txt. This will be the name of the main file that stores all my clipped textual information. Although not necessary, I&#8217;ll keep this file open in nvALT so that I can take random peeks at the information that&#8217;s been copied so far.</li>
</ol>
<p><strong>Step 5. Save the service and give it a name.</strong> Use <code>command+s</code> or <code>File &gt; Save…</code>. I&#8217;m going to call it &#8220;Send text to nvALT&#8221;.</p>
<p><a title="Save the Automator service by ** David Chin **, on Flickr" href="http://www.flickr.com/photos/davidchinphoto/6081739510/"><img src="http://farm7.static.flickr.com/6187/6081739510_580244236b.jpg" alt="Save the Automator service" width="320" height="128" /></a></p>
<p><strong>Step 6. Assign a keyboard shortcut.</strong> With a keyboard shortcut, all I&#8217;d need to do to add new information is to select some text in the browser (or in any other application for that matter &#8211; could also be a PDF in Preview) and hit the shortcut. Go to System Preferences &gt; Keyboard &gt; Keyboard Shortcuts (I usually just search for &#8220;keyboard&#8221; in Spotlight).</p>
<p>Click on &#8220;Services&#8221; in the left column, then scroll the list on the right until you see the service you&#8217;ve just created. Double-click the empty space just to the right of the service name, and press the keys for the desired keyboard shortcut. In my case, it&#8217;s <code>control+command+v</code>.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6081782542/" title="Assign keyboard shortcut to a Service workflow by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6200/6081782542_84601c7f37.jpg" width="500" height="455" alt="Assign keyboard shortcut to a Service workflow"></a></p>
<p>There are two issues to look out for in this step:</p>
<ol>
<li>Ensure that the assigned keyboard shortcut does not clash with any existing combination that&#8217;s in use by other applications. In my case, <code>control+command+v</code> clashes with the &#8220;Paste to Evernote&#8221; shortcut, so I disabled its use in Evernote.</li>
<li>It might be a bug, but I noticed that whenever I assign a keyboard shortcut in this window, the check mark on the left hand side of the service would disappear, effectively disabling the service. Make sure you check the box, if required, after you assign the shortcut.</li>
</ol>
<p><strong>Step 7. Use the new service.</strong> Open up a web page in your favorite browser or a PDF document in Preview.</p>
<p>Select some text. Clip the text to the text file using one of the following:</p>
<ol>
<li><code>Right mouse click &gt; Services (this step is sometimes unnecessary, depending on the application) &gt; Send text to nvALT</code>, or…</li>
<li><code>Name of app in the menu bar &gt; Services &gt; Send text to nvALT</code>, or…</li>
<li>Simply hit <code>control+command+v</code>. Repeat this as many times as desired.</li>
</ol>
<p>Open your Clipboard.txt text file in nvALT, a text editor such as <a href="http://macromates.com/">TextMate</a>, or in Quick Look (accessed by pressing <code>Spacebar</code> once Clipboard.txt is selected, this window remains open in Mac OS X Lion even after you&#8217;ve switched to another app). If you&#8217;re on Lion, do not view Clipboard.txt in TextEdit as the displayed content doesn&#8217;t get automatically refreshed with the addition of new content.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6082181078/" title="Selected text in browser being incrementally copied to Clipbord.txt using a custom Automator service by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6201/6082181078_c668a55cac.jpg" width="500" height="386" alt="Selected text in browser being incrementally copied to Clipbord.txt using a custom Automator service"></a></p>
<h2 id="summary">Summary</h2>
<p>It&#8217;s pretty easy to build a custom Automator service to incrementally copy new information to the top of a text file. With a keyboard shortcut assigned to perform the copy, paste and file update in one stroke, you&#8217;ll save yourself from having to perform lots of tedious and repetitive keystrokes in clipping large amounts of textual information into a text file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/easily-copy-selected-text-to-a-text-file-using-a-custom-automator-service-on-the-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Safari 5.1 &#8211; Find or Search a Partial Word or Text Substring</title>
		<link>http://www.mymacjournal.com/safari-5-1-find-or-search-a-partial-word-or-text-substring/</link>
		<comments>http://www.mymacjournal.com/safari-5-1-find-or-search-a-partial-word-or-text-substring/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 09:47:32 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/?p=328</guid>
		<description><![CDATA[The new, default Safari 5.1 behavior for finding text on a webpage (keyboard shortcut command+f) is &#8220;Starts With&#8221;, and not &#8220;Contains&#8221; like it was in older versions. This means that if you&#8217;re looking for the word &#8220;Expression&#8221;, you&#8217;d have to begin by typing &#8220;Exp&#8221;. Entering a portion of the word by starting somewhere in the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The new, default Safari 5.1 behavior for finding text on a webpage (keyboard shortcut <code>command+f</code>) is &#8220;Starts With&#8221;, and not &#8220;Contains&#8221; like it was in older versions.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6031276087/" title="Safari 5.1 - Find Text - &quot;Starts With&quot; by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6069/6031276087_eceb89fac5.jpg" width="316" height="111" alt="Safari 5.1 - Find Text - &quot;Starts With&quot;"></a></p>
<p>This means that if you&#8217;re looking for the word &#8220;Expression&#8221;, you&#8217;d have to begin by typing &#8220;Exp&#8221;.</p>
<p>Entering a portion of the word by starting somewhere in the middle, for instance &#8220;xp&#8221; or &#8220;ess&#8221;, would simply give you a &#8220;Not found&#8221; result.</p>
<p>To revert to the old Safari behavior, simply start a Find operation, then click on the magnifying glass and select the &#8220;Contains&#8221; option. Safari remembers your choice until the next time you manually change it again.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6031281281/" title="Safari 5.1 - Find Text - &quot;Contains&quot; by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6195/6031281281_f49eafff14.jpg" width="316" height="111" alt="Safari 5.1 - Find Text - &quot;Contains&quot;"></a></p>
<p>If you feel like using a more technical method to force &#8220;Contains&#8221; to be the default behavior, follow this <a href="http://www.brunerd.com/blog/2011/08/10/make-safari-find-substring-matches-by-default/">plist hacking tutorial by brunerd</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/safari-5-1-find-or-search-a-partial-word-or-text-substring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show the sidebar in Preview</title>
		<link>http://www.mymacjournal.com/show-the-sidebar-in-preview/</link>
		<comments>http://www.mymacjournal.com/show-the-sidebar-in-preview/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 07:53:26 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/?p=327</guid>
		<description><![CDATA[In Mac OS X Lion, when you open a single PDF document in Preview, you won&#8217;t see the sidebar. This is the default behavior in Lion, unlike in older versions of Mac OS X where the sidebar is visible, showing the table of contents or thumbnail images representing the individual pages of the document. To [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In Mac OS X Lion, when you open a single PDF document in Preview, you won&#8217;t see the sidebar.</p>
<p>This is the default behavior in Lion, unlike in older versions of Mac OS X where the sidebar is visible, showing the table of contents or thumbnail images representing the individual pages of the document.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6114630954/" title="In Mac OS X Lion, a single PDF document opens in Preview with no sidebar by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6082/6114630954_fc4b944f95.jpg" width="471" height="500" alt="In Mac OS X Lion, a single PDF document opens in Preview with no sidebar"></a></p>
<p>To change this default behavior so that you&#8217;re always able to see the sidebar whenever you open a PDF, you&#8217;ll need to change a preference option.</p>
<p>Call up Preferences by clicking on <code>Preview &gt; Preferences…</code> in the menu or pressing the keyboard shortcut <code>command+,</code>.</p>
<p>In the Preferences window, click on PDF, and check the option <code>On opening documents: Show sidebar when opening single file</code>.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6114101287/" title="Preference option to show the sidebar in Preview by default by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6184/6114101287_a941f48c61.jpg" width="500" height="368" alt="Preference option to show the sidebar in Preview by default"></a></p>
<p>Your PDF documents should now open with the sidebar displayed by default.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6114111923/" title="Sidebar in Preview is now displayed by default by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6074/6114111923_528e2fd095.jpg" width="471" height="500" alt="Sidebar in Preview is now displayed by default"></a></p>
<p>You can also control the display of the sidebar with the view control buttons located in the toolbar.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6114330145/" title="View controls in Preview by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6202/6114330145_7669b82433.jpg" width="500" height="269" alt="View controls in Preview"></a></p>
<p>From left to right, the view control buttons are:</p>
<ol>
<li>Content Only – no sidebar will be shown.</li>
<li>Thumbnails – sidebar is visible, showing thumbnail representations of the pages in the PDF.</li>
<li>Table of Contents – sidebar shows a list of topics which, when clicked on, takes you directly to the relevant page.</li>
<li>Contact Sheet – no sidebar or content is shown in this mode, but a grid of thumbnails of the document pages is displayed.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/show-the-sidebar-in-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The apps featured in the iPad ad, &#8220;Learn&#8221;</title>
		<link>http://www.mymacjournal.com/the-apps-featured-in-the-ipad-ad-learn/</link>
		<comments>http://www.mymacjournal.com/the-apps-featured-in-the-ipad-ad-learn/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 05:01:59 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/?p=326</guid>
		<description><![CDATA[Have you watched the new iPad advertisement, &#8220;Learn&#8221;? There are a couple of interesting apps that appear in that promo video. Here&#8217;s the complete list, with direct links to the US iTunes App Store where you can view ratings and read the user reviews: TED Chinagram iBooks Skeleton System Pro II (NOVA Series) Solar Walk [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Have you watched the new iPad advertisement, &#8220;Learn&#8221;?</p>
<p><iframe width="500" height="254" src="http://www.youtube.com/embed/_5i1Dyj5k1A" frameborder="0" allowfullscreen></iframe></p>
<p>There are a couple of interesting apps that appear in that promo video.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/6118601379/" title="Apps featured in the iPad ad &quot;Learn&quot; by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6083/6118601379_89a63b28aa.jpg" width="500" height="230" alt="Apps featured in the iPad ad &quot;Learn&quot;"></a></p>
<p>Here&#8217;s the complete list, with direct links to the US iTunes App Store where you can view ratings and read the user reviews:</p>
<ol>
<li><a href="http://itunes.apple.com/us/app/ted/id376183339?mt=8">TED</a></li>
<li><a href="http://itunes.apple.com/us/app/chinagram-chinese-writing/id426200988?mt=8">Chinagram</a></li>
<li><a href="http://itunes.apple.com/us/app/ibooks/id364709193?mt=8">iBooks</a></li>
<li><a href="http://itunes.apple.com/us/app/skeleton-system-pro-ii-nova/id364694031?mt=8">Skeleton System Pro II (NOVA Series)</a></li>
<li><a href="http://itunes.apple.com/us/app/solar-walk-3d-solar-system/id347546771?mt=8">Solar Walk &#8211; 3D Solar System model</a> &#8211; Pay once for a universal app that runs on both the iPad and iPhone.</li>
<li><a href="http://itunes.apple.com/us/app/t-chess-pro/id295445501?mt=8">t Chess Pro</a> &#8211; tChess Pro is a universal app – buy it once and run it on your iPad, iPhone and iPod Touch. The Learn Chess mode fetured in the ad is only available on the paid Pro version in the Actions menu – <a href="http://itunes.apple.com/us/app/t-chess-lite/id296756437?mt=8">tChess Lite</a> does not have it. But to enjoy just the Learn Chess feature, you can download <a href="http://itunes.apple.com/us/app/chess-learn-chess/id305309870?mt=8">Learn Chess</a> by the same developer, and it&#8217;s free.</li>
<li><a href="http://itunes.apple.com/us/app/garageband/id408709785?mt=8">Garage Band for the iPad</a></li>
<li><a href="http://itunes.apple.com/us/app/mathboard/id373909837?mt=8">MathBoard for the iPad</a> &#8211; I think I&#8217;ll need to get this for my kids to practice their addition, subtraction, multiplication and division math.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/the-apps-featured-in-the-ipad-ad-learn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keyboard Shortcuts to Move Files in Finder</title>
		<link>http://www.mymacjournal.com/keyboard-shortcuts-to-move-files-in-finder/</link>
		<comments>http://www.mymacjournal.com/keyboard-shortcuts-to-move-files-in-finder/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 04:03:35 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Finder]]></category>
		<category><![CDATA[Keyboard Shortcuts]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/keyboard-shortcuts-to-move-files-in-finder/</guid>
		<description><![CDATA[Since switching from Windows to the Mac in late 2007, I&#8217;d always wanted a way to cut and paste files from one folder (or directory, in Windows parlance) using keyboard shortcuts. In Windows: You first select one or more files. Press Ctrl+X to &#8220;cut&#8221; those files. Navigate to the destination directory. Press Ctrl+V to &#8220;paste&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Since switching from Windows to the Mac in late 2007, I&#8217;d always wanted a way to cut and paste files from one folder (or directory, in Windows parlance) using keyboard shortcuts.</p>
<p>In Windows:</p>
<ol>
<li>You first select one or more files.</li>
<li>Press <code>Ctrl+X</code> to &#8220;cut&#8221; those files.</li>
<li>Navigate to the destination directory.</li>
<li>Press <code>Ctrl+V</code> to &#8220;paste&#8221; the files there.</li>
</ol>
<p>Prior to Mac OS X Lion, to perform the same on the Mac, I&#8217;ve had to open and arrange two Finder windows, one is the source folder where I want to copy the files from, and the other is the destination folder where I want to move the files to. Having selected the files, I&#8217;d then drag them from one folder across to the other.</p>
<p><a title="Drag and Drop Files in Finder by ** David Chin **, on Flickr" href="http://www.flickr.com/photos/davidchinphoto/6054365319/"><img src="http://farm7.static.flickr.com/6072/6054365319_26105f1281.jpg" alt="Drag and Drop Files in Finder" width="500" height="381" /></a></p>
<p>With the just-released Mac Lion 10.7, you can now use keyboard shortcuts to &#8220;<strong>move</strong> the files&#8221; from one folder location to the other.</p>
<p>No, we don&#8217;t use the term &#8220;cut and paste files&#8221; over here in the Mac world.</p>
<p>Here&#8217;s how you move files on the Mac:</p>
<ol>
<li>Select the file or files you want to move. I&#8217;ve selected two files in the example below.
<p><a title="Two files selected in Finder by ** David Chin **, on Flickr" href="http://www.flickr.com/photos/davidchinphoto/6054416965/"><img src="http://farm7.static.flickr.com/6086/6054416965_03af380180.jpg" alt="Two files selected in Finder" width="439" height="155" /></a></li>
<li>Press <code>command+c</code> to copy the files.</li>
<li>Navigate to the destination folder.</li>
<li>Press <code>option+command+v</code> to move the files there. The screen capture below shows the two files already moved to the destination folder.
<p><a title="Two files moved to the final destination in Finder by ** David Chin **, on Flickr" href="http://www.flickr.com/photos/davidchinphoto/6054977668/"><img src="http://farm7.static.flickr.com/6203/6054977668_20c1c28389.jpg" alt="Two files moved to the final destination in Finder" width="439" height="155" /></a></li>
</ol>
<p>Windows habits die hard, and I personally find the system-wide &#8220;cut and paste&#8221; concept more consistent and easier to work with. On the Mac, you have <code>command+x</code> –&gt; <code>command+v</code> for cutting and pasting document data, while having to remember to use a different set of key combinations – <code>command+c</code> –&gt; <code>option+command+v</code> – to copy and move files.</p>
<p>I&#8217;m confident though, that it&#8217;s just a matter of time before muscle memory sets in and I should be able to deftly move files with my keyboard without having to think too hard about the whole process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/keyboard-shortcuts-to-move-files-in-finder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bootcamp 4 Supports Windows 7 Only</title>
		<link>http://www.mymacjournal.com/bootcamp-4-supports-windows-7-only/</link>
		<comments>http://www.mymacjournal.com/bootcamp-4-supports-windows-7-only/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 14:57:46 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Bootcamp]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/bootcamp-4-supports-windows-7-only/</guid>
		<description><![CDATA[Gregg Keizer, for Infoworld.com: All new installations of Mac OS X 10.7 Lion are equipped with Boot Camp 4, which runs only Windows 7. The older Vista and even-creakier Windows XP do not work in Boot Camp 4. According to Apple, Boot Camp 4 requires &#8220;an authentic, single, full-installation, 32-bit or 64-bit Microsoft Windows 7 [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.infoworld.com/d/applications/mac-os-x-lion-requires-windows-7-boot-camp-168705">Gregg Keizer, for Infoworld.com</a>:</p>
<blockquote><p>All new installations of Mac OS X 10.7 Lion are equipped with Boot Camp 4, which runs only Windows 7. The older Vista and even-creakier Windows XP do not work in Boot Camp 4.</p>
<p>According to Apple, Boot Camp 4 requires &#8220;an authentic, single, full-installation, 32-bit or 64-bit Microsoft Windows 7 Home Premium, Professional, or Ultimate disc.&#8221;</p>
<p>But Mac users who are upgrading to Lion or migrating an older pre-Lion machine to new hardware powered by Lion can retain the older Boot Camp 3 and thus the ability to run Vista or Windows XP, Apple said. Those customers cannot upgrade to Boot Camp 4. &#8220;If your Mac has a Boot Camp partition with Windows XP or Windows Vista, you can continue to use your Boot Camp partition, but you can&#8217;t upgrade to Boot Camp 4.0,&#8221; Apple said in the online document.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/bootcamp-4-supports-windows-7-only/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari Web Content Process (Safari 5.1, Mac OS X Lion)</title>
		<link>http://www.mymacjournal.com/safari-web-content-process-safari-5-1-mac-os-x-lion/</link>
		<comments>http://www.mymacjournal.com/safari-web-content-process-safari-5-1-mac-os-x-lion/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 03:56:29 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/safari-web-content-process-safari-5-1-mac-os-x-lion/</guid>
		<description><![CDATA[Launch Activity Monitor, show All Processes, filter on &#8220;saf&#8221;, and you&#8217;ll notice that Safari 5.1 now has a new running process named Safari Web Content. [Click for a larger image] The reason for this is described well in this article titled &#8220;Major overhaul makes OS X Lion king of security&#8220;: With virtually all browser exploits [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Launch Activity Monitor, show All Processes, filter on &#8220;saf&#8221;, and you&#8217;ll notice that Safari 5.1 now has a new running process named Safari Web Content.</p>
<p>[Click for a larger image]<br />
<a href="http://www.flickr.com/photos/davidchinphoto/5965524437/sizes/o/in/photostream/" title="Safari Web Content in Activity Monitor (Safari 5.1, Mac OS X Lion) by ** David Chin **, on Flickr"><img src="http://farm7.static.flickr.com/6007/5965524437_5ce9afc490.jpg" width="500" height="393" alt="Safari Web Content in Activity Monitor (Safari 5.1, Mac OS X Lion 10.7)"></a></p>
<p>The reason for this is described well in this article titled &#8220;<a href="http://www.theregister.co.uk/2011/07/21/mac_os_x_lion_security/">Major overhaul makes OS X Lion king of security</a>&#8220;:</p>
<blockquote><p>With virtually all browser exploits targeting the way the program parses web content, Apple engineers have tightly locked down the new process, called Safari Web Content. The design is intended to limit the damage that can be done in the event an attacker is able to exploit a buffer overflow or other bug in the browser.</p>
<p>&#8220;Now, you end up inside this restricted process that only does the web parsing, and you can&#8217;t do other things you might want to do as an attacker, such as write files or read a person&#8217;s documents,&#8221; Miller explained. “Even when you get code execution, you no longer have free rein to do whatever you want. You can do only what the sandbox allows you to do.&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/safari-web-content-process-safari-5-1-mac-os-x-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Doesn&#8217;t Pay Dividends? Here&#8217;s a Better Idea to Earn an Income Stream off AAPL.</title>
		<link>http://www.mymacjournal.com/apple-doesnt-pay-dividends-heres-a-better-idea-to-earn-an-income-stream-off-aapl/</link>
		<comments>http://www.mymacjournal.com/apple-doesnt-pay-dividends-heres-a-better-idea-to-earn-an-income-stream-off-aapl/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 02:37:48 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/apple-doesnt-pay-dividends-heres-a-better-idea-to-earn-an-income-stream-of-aapl/</guid>
		<description><![CDATA[Since AAPL doesn&#8217;t pay dividends, here&#8217;s a better idea for generating an additional stream of income off the Apple stocks you already own &#8211; Covered Calls. This idea came to me from a comment by &#8220;Peter&#8221; to the article &#8220;Why Apple shares are dirt cheap&#8220;. Peter writes: Seriously? The dividend argument? This is 2011, not [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Since AAPL doesn&#8217;t pay dividends, here&#8217;s a better idea for generating an additional stream of income off the Apple stocks you already own &#8211; Covered Calls.</p>
<p>This idea came to me from a comment by &#8220;Peter&#8221; to the article &#8220;<a href="http://tech.fortune.cnn.com/2011/04/19/why-apple-shares-are-dirt-cheap/">Why Apple shares are dirt cheap</a>&#8220;. Peter writes:</p>
<blockquote><p>Seriously? The dividend argument? This is 2011, not 1971.</p>
<p>Write covered calls against the common stock. Even with extremely conservative strikes that will never be exercised, you can easily earn 2-5x the dividend return of other shares.</p>
<p>You cannot generate the same returns on those other dividend shares precisely because their boring growth rates do not generate enough IV to make CCs worth the effort.</p>
<p>70% institutional ownership. Who do you think is writing options every week and month, and then pinning it nearly every week and month at max pain? Dividends are peanuts compared to this income stream.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/apple-doesnt-pay-dividends-heres-a-better-idea-to-earn-an-income-stream-off-aapl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple vs Other Large-Cap Tech Stocks</title>
		<link>http://www.mymacjournal.com/apple-vs-other-large-cap-tech-stocks/</link>
		<comments>http://www.mymacjournal.com/apple-vs-other-large-cap-tech-stocks/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 02:23:14 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/apple-vs-other-large-cap-tech-stocks/</guid>
		<description><![CDATA[By Andy M. Zaky writes a fantastic analysis of the growth potential of Apple (AAPL) stock price at Fortune Tech CNN: The fundamental difference between other large cap tech stocks and Apple is Apple&#8217;s unique cash generating abilities, its cash position, and its extraordinary 70% growth. Apple trades at a lower cash multiple than any [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>By Andy M. Zaky writes a fantastic analysis of the <a href="http://tech.fortune.cnn.com/2011/04/19/why-apple-shares-are-dirt-cheap/">growth potential of Apple (AAPL) stock price</a> at Fortune Tech CNN:</p>
<blockquote><p>The fundamental difference between other large cap tech stocks and Apple is Apple&#8217;s unique cash generating abilities, its cash position, and its extraordinary 70% growth. Apple trades at a lower cash multiple than any other large cap tech stock and has more net cash on the balance sheet than any other company in the S&#038;P 500. At a $305 billion market capitalization, Apple trades at only five times its cash. Remove that cash from its market capitalization, and Apple trades at only a $245 billion enterprise value, or $268 a share &#8212; that&#8217;s only 14 times earnings.</p>
<p>But even more impressive is Apple&#8217;s ability to generate cash. In the last four fiscal quarters alone, Apple&#8217;s total cash rose 50% from $39.8 billion to $60 billion &#8212; a jump from $43.26 in cash per share to $64 in cash per share. Based on very realistic projections, Apple will probably end the year with $81 billion in cash, or $86 in cash per share. For the 2012 fiscal year, it will likely post at least $120 billion in cash or $125 in cash per share.</p>
<p><a href="http://www.flickr.com/photos/davidchinphoto/5636698452/" title="Apple Cash Growth - Fortune Tech CNN by David Chin of DPNotes.com, on Flickr"><img src="http://farm6.static.flickr.com/5183/5636698452_aa7b68cd3b_m.jpg" width="240" height="170" alt="Apple Cash Growth - Fortune Tech CNN"></a></p>
<p>In fact, it is very likely that Apple will have more cash than its current market capitalization in less than five years. Once Wall Street begins to catch on to this reality, Apple shares should see a major upside correction. And this is precisely why Apple shouldn&#8217;t trade below a 20 P/E ratio over the next several years.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/apple-vs-other-large-cap-tech-stocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Apple TV2 is Great for Streaming Photos and Ambient Music</title>
		<link>http://www.mymacjournal.com/the-apple-tv2-is-great-for-streaming-photos-and-ambient-music/</link>
		<comments>http://www.mymacjournal.com/the-apple-tv2-is-great-for-streaming-photos-and-ambient-music/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 23:14:53 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/the-apple-tv2-is-great-for-streaming-photos-and-ambient-music/</guid>
		<description><![CDATA[christopher126 wrote the following about the Apple TV2: Guys&#8230;if you have a Mac, a large flat screen HDTV and a lot of photos&#8230;believe me the streaming/slide show with some internet jazz playing in the background is worth the price of admission. I don&#8217;t even edit photos anymore&#8230;I just delete the bad ones and put all [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>christopher126 wrote the following about the <a href="http://forums.appleinsider.com/showpost.php?p=1850388&#038;postcount=33">Apple TV2</a>:</p>
<blockquote><p>Guys&#8230;if you have a Mac, a large flat screen HDTV and a lot of photos&#8230;believe me the streaming/slide show with some internet jazz playing in the background is worth the price of admission.</p>
<p>I don&#8217;t even edit photos anymore&#8230;I just delete the bad ones and put all the rest of them over to AppleTV. When I invite friends or family over for dinner they just love to see photos of themselves. </p>
<p>It&#8217;s so elegant. Typical Apple!</p>
<p>Don&#8217;t get me wrong, I don&#8217;t invite them over to watch a boring old slide show like years gone by. I just have it on sort of in the background and it&#8217;s like a fireplace or aquarium. </p>
<p>I put it on in the evenings and my GF loves it. We view our photos more this way than if they were on the computer or certainly in an album or shoebox!</p>
<p>I mean it guys, your GF&#8217;s, wives (or both) will think you are a genius.</p>
<p>I have not shown it to anyone that has not been extremely impressed by it!</p>
<p>I know TV speakers aren&#8217;t the best&#8230;but they are ok for ambient music&#8230;with AppleTV, I got rid of all my stereo equipment and speakers. No wires, power bricks. This and in the car or running is the only way I listen to music anymore.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/the-apple-tv2-is-great-for-streaming-photos-and-ambient-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

