<?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 &#187; Mac</title>
	<atom:link href="http://www.mymacjournal.com/category/mac/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>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>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>Snow Leopard 10.6.7 Combo Update and Update for Early 2011 MacBook Pro</title>
		<link>http://www.mymacjournal.com/snow-leopard-10-6-7-combo-update/</link>
		<comments>http://www.mymacjournal.com/snow-leopard-10-6-7-combo-update/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 05:48:20 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/snow-leopard-10-6-7-combo-update/</guid>
		<description><![CDATA[The current version of Mac OS X is 10.6.7. If you wish to reinstall Snow Leopard on your machine and your installation DVDs contain the older version of Snow Leopard, you&#8217;ll need to download Mac OS X v10.6.5 Update (Combo) to bring your clean installation up to the latest version of Mac OS X. A [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The current version of Mac OS X is 10.6.7.</p>
<p>If you wish to reinstall Snow Leopard on your machine and your installation DVDs contain the older version of Snow Leopard, you&#8217;ll need to <a href="http://support.apple.com/kb/DL1361">download Mac OS X v10.6.5 Update (Combo)</a> to bring your clean installation up to the latest version of Mac OS X.<br />
<img src="http://farm6.static.flickr.com/5227/5548867491_49d5acfed8_z.jpg" width="517" height="422" alt="Snow Leopard Mac OS X v10.6.7 Update (Combo)" /></p>
<p>A special version of the <a href="http://support.apple.com/kb/DL1368">10.6.7 update is available for early 2011 MacBook Pro machines</a>.<br />
<img src="http://farm6.static.flickr.com/5052/5548869485_27c71cea38_z.jpg" width="517" height="519" alt="Mac OS X v10.6.7 Update for early 2011 MacBook Pro" /></p>
<p>Here are two links to forum posts that explain why you&#8217;d want to download the Combo Update rather than letting Software Update on your Mac download the smaller file:</p>
<ol>
<li><a href="http://forums.appleinsider.com/showpost.php?p=1832606&#038;postcount=47">&#8220;nuvolino&#8221; writes</a>:<br />
<blockquote><p>&#8230; what it does it ensures that all parts of the update will be installed not just the parts that are perceived as &#8220;extra and changed&#8221; what this means is that its almost like a fresh install it completely over write all files so you have a nice default update &#8230; what this also means is if there was any left over corrupted files or any part of the OS that may have been previously installed that may be out of whack it gets replaced too so you know nothing has been left out</p></blockquote>
</li>
<li><a href="http://forums.appleinsider.com/showpost.php?p=1832631&#038;postcount=48">&#8220;Graeme&#8221; writes</a>:<br />
<blockquote><p>if you have a few macs to update e.g a MacPro, Macbook Pro, iMac, Mini Mac and a Macbook Air or a few different generations of the same type of mac then you only need to download one update (the Combo) and it does the job for all of them.</p></blockquote>
</li>
</ol>
<p>See more <a href="http://support.apple.com/downloads/#macosx106">Mac OS X 10.6 Snow Leopard downloads</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/snow-leopard-10-6-7-combo-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard 10.6.5 Combo Update</title>
		<link>http://www.mymacjournal.com/snow-leopard-10-6-5-combo-update/</link>
		<comments>http://www.mymacjournal.com/snow-leopard-10-6-5-combo-update/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 03:39:26 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/snow-leopard-10-6-5-combo-update/</guid>
		<description><![CDATA[The current version of Mac OS X is 10.6.5. If you wish to reinstall Snow Leopard on your machine and your installation DVDs contain the older version of Snow Leopard, you&#8217;ll need to download Mac OS X v10.6.5 Update (Combo) to bring your clean installation up to the latest version of Mac OS X. See [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The current version of Mac OS X is 10.6.5.</p>
<p>If you wish to reinstall Snow Leopard on your machine and your installation DVDs contain the older version of Snow Leopard, you&#8217;ll need to <a href="http://support.apple.com/kb/DL1324">download Mac OS X v10.6.5 Update (Combo)</a> to bring your clean installation up to the latest version of Mac OS X.</p>
<p><img src="http://farm5.static.flickr.com/4042/5165961444_9cfcde16ff_b.jpg" width="517" height="644" alt="Snow Leopard Mac OS X v10.6.5 Update (Combo)" /></p>
<p>See more <a href="http://support.apple.com/downloads/#macosx106">Mac OS X 10.6 Snow Leopard downloads</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/snow-leopard-10-6-5-combo-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X 10.6.4 Snow Leopard Combo Update</title>
		<link>http://www.mymacjournal.com/snow-leopard-combo-update/</link>
		<comments>http://www.mymacjournal.com/snow-leopard-combo-update/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 03:41:43 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/snow-leopard-combo-update/</guid>
		<description><![CDATA[The current version of Mac OS X is 10.6.4. If you wish to reinstall Snow Leopard on your machine and your installation DVDs contain the older version of Snow Leopard, you&#8217;ll need to download Mac OS X v10.6.4 Update (Combo) to bring your clean installation up to the latest version of Mac OS X.]]></description>
			<content:encoded><![CDATA[<p></p><p>The current version of Mac OS X is 10.6.4.</p>
<p>If you wish to reinstall Snow Leopard on your machine and your installation DVDs contain the older version of Snow Leopard, you&#8217;ll need to <a href="http://support.apple.com/kb/DL1048">download Mac OS X v10.6.4 Update (Combo)</a> to bring your clean installation up to the latest version of Mac OS X.</p>
<p><img src="http://farm2.static.flickr.com/1095/5134717542_00a3029c7f_z.jpg" width="500" height="510" alt="Mac OS X Snow Leopard v10.6.4 Update (Combo)" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/snow-leopard-combo-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing multiple monitors, secondary screens and the command menu on the Mac</title>
		<link>http://www.mymacjournal.com/managing-multiple-monitors-secondary-screens-command-menu-mac/</link>
		<comments>http://www.mymacjournal.com/managing-multiple-monitors-secondary-screens-command-menu-mac/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 03:17:59 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/managing-multiple-monitors-secondary-screens-command-menu-mac/</guid>
		<description><![CDATA[&#8220;noexpectations&#8221; made the following comment on AppleInsider: MAC OS X is a pain for concurrent, multiple monitors. I move my app to the secondary screen but the command menu is stuck on top of the first screen. Is there a fix for this? &#8220;DocNo42&#8243; proposed the two solutions, as well as a vs. comparison to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>&#8220;noexpectations&#8221; made the following comment on AppleInsider:</p>
<blockquote><p>MAC OS X is a pain for concurrent, multiple monitors. I move my app to the secondary screen but the command menu is stuck on top of the first screen. Is there a fix for this?</p></blockquote>
<p>&#8220;DocNo42&#8243; proposed the <a href="http://forums.appleinsider.com/showthread.php?p=1731974#post1731974">two solutions</a>, as well as a vs. comparison to the experience on the Windows platform:</p>
<blockquote><p>If you want to experience real pain, try two monitors on Windows. And if your really frisky, try three. Then try to mirror two displays on one while having a separate third. Trivial on the Mac (option drag one screen on top of another to mirror those two while leaving the third alone). Stuff I have taken for granted for *decades* on the Mac that Windows, even Windows 7, struggles to do well. I still run across video cards that won&#8217;t play video embedded in PowerPoint on the second display. Freaking 2010 and some video cards/drivers choke on this under Windows. Yeah &#8220;diversity&#8221;!</p>
<p>BTW &#8211; here is an excellent solution for you: <a href="http://www.macupdate.com/info.php/id/33264/secondbar">http://www.macupdate.com/info.php/id/33264/secondbar</a>.</p>
<p>Although personally I prefer this solution, pioneered by early Mac accessory maker E Machines when people complained about having to go to the top of the screen for the menu bar on the first of the large 21&#8243; high resolution monitors back in the day &#8211; convert the menubar to a contextual menu: <a href="http://mac.brothersoft.com/dejamenu.html">http://mac.brothersoft.com/dejamenu.html</a>.</p>
<p>Works even better than the menubar in every menu that Windows does, and ironically is how the NeXT OS that OSX is based on worked. Middle mouse button FTW.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/managing-multiple-monitors-secondary-screens-command-menu-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Keyboard Shortcut For Accessing Help</title>
		<link>http://www.mymacjournal.com/mac-keyboard-shortcut-help/</link>
		<comments>http://www.mymacjournal.com/mac-keyboard-shortcut-help/#comments</comments>
		<pubDate>Wed, 26 May 2010 08:01:35 +0000</pubDate>
		<dc:creator>David Chin</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.mymacjournal.com/mac-keyboard-shortcut-help/</guid>
		<description><![CDATA[The keyboard shortcut to access the Help menu on the Mac is shift+command+/.]]></description>
			<content:encoded><![CDATA[<p></p><p>The keyboard shortcut to access the Help menu on the Mac is <strong><code>shift+command+/</code></strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mymacjournal.com/mac-keyboard-shortcut-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

