<?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"
	>

<channel>
	<title>BYU Mac Users Group &#187; Wade Preston Shearer</title>
	<atom:link href="http://mac.byu.edu/author/wade/feed/" rel="self" type="application/rss+xml" />
	<link>http://mac.byu.edu</link>
	<description>A better way</description>
	<pubDate>Mon, 31 Mar 2008 02:35:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Automator Workflow to convert a file path</title>
		<link>http://mac.byu.edu/2007/05/17/automator-workflow-to-convert-a-file-path/</link>
		<comments>http://mac.byu.edu/2007/05/17/automator-workflow-to-convert-a-file-path/#comments</comments>
		<pubDate>Thu, 17 May 2007 18:47:57 +0000</pubDate>
		<dc:creator>Wade Preston Shearer</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://mac.byu.edu/2007/05/17/automator-workflow-to-convert-a-file-path/</guid>
		<description><![CDATA[For the creative department that I manage, we have a file server where we place comps and proofs of artwork for business owners to review. What&#8217;s slick is that Apache is running on the file server and the volume that I am referencing is within web root of a virtualhost subdomain that has been set [...]]]></description>
			<content:encoded><![CDATA[<p>For the creative department that I manage, we have a file server where we place comps and proofs of artwork for business owners to review. What&#8217;s slick is that <a href="http://apache.org/">Apache</a> is running on the file server and the volume that I am referencing is within web root of a virtualhost subdomain that has been set up. This allows me to email a URL to the business owner that loads the comp or proof up instantly in their default web browser. In the past, I have used the contextual menu item <a href="http://www.bergenstreetsoftware.com/">PathSnagger</a> or dragged the file from the Finder into Safari to get the file path and then manually change the begginning from&hellip;</p>
<pre><code>/Volumes/GROUP/projects/56465/proofs/example_file.png</code></pre>
<p>&hellip;or&hellip;</p>
<pre><code>file:///Volumes/GROUP/projects/56465/proofs/example_file.png</code></pre>
<p>&hellip;(respectively) to&hellip;</p>
<pre><code>http://projects.example.com/56465/proofs/example_file.png</code></pre>
<p>Well, I do this a lot throughout the day and finally tired of it enough to be motivated to write an <a href="http://www.apple.com/macosx/features/automator/">Automator</a> workflow to do the URL conversion automatically. </p>
<p><img id="image225" src="http://mac.byu.edu/wp-content/uploads/2007/05/workflow.jpg" alt="workflow.jpg" /></p>
<p>This allows me now to simply right-click on the file, select my workflow from the Automator contextual submenu, and then paste the converted path into an email.</p>
<p><img id="image224" src="http://mac.byu.edu/wp-content/uploads/2007/05/contextual_menu.jpg" alt="contextual_menu.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://mac.byu.edu/2007/05/17/automator-workflow-to-convert-a-file-path/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using SSHKeyChain for SSH key management</title>
		<link>http://mac.byu.edu/2007/05/07/using-sshkeychain-for-ssh-key-management/</link>
		<comments>http://mac.byu.edu/2007/05/07/using-sshkeychain-for-ssh-key-management/#comments</comments>
		<pubDate>Mon, 07 May 2007 18:19:16 +0000</pubDate>
		<dc:creator>Wade Preston Shearer</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://mac.byu.edu/2007/05/07/using-sshkeychain-for-ssh-key-management/</guid>
		<description><![CDATA[Richard Miller wrote me and asked for an article discussing the benefits of using the utility SSHKeyChain for SSH key management. The following information assumes that you are familiar with SSH and remote server management via a terminal or other SSH/SFTP/SCP-enabled applcations.
Consider it this:
With SSH alone, you come to the door, present your password to [...]]]></description>
			<content:encoded><![CDATA[<p>Richard Miller wrote me and asked for an article discussing the benefits of using the utility <a href="http://www.sshkeychain.org/">SSHKeyChain</a> for SSH key management. The following information assumes that you are familiar with <a href="http://en.wikipedia.org/wiki/Secure_Shell">SSH</a> and remote server management via a terminal or other SSH/SFTP/SCP-enabled applcations.</p>
<p>Consider it this:</p>
<p>With SSH alone, you come to the door, present your password to the security guard and if authorized, are granted access. </p>
<p>With an SSH-key, you don&#8217;t have to interact with the guard because you have your own key. You can use your key to open the door and get in.</p>
<p>For security however, SSH keys are encrypted and require a password to decrypt them. So, following the same analogy, you now have a key, but the key has a combination lock on it that has to be unlocked before it can be used. This is for good reason as keys in the wrong hands can be a big security risk.</p>
<p>If you are logging in and out of a server frequently however or using SCP to copy files repeatedly, entering your password to decrypt your key again and again becomes very tedious.</p>
<p>Enter SSHKeyChain. What this utility does is &#8220;holds your key open in a decrypted state&#8221; (by entering your decryption password once) for a specific amount of time or until certain events occur. You can have it hold the key open in a decrypted state indefinately, but this is dangerous unless you are absolutely confident of physical access to the terminal/workstation that you are running it on as anyone that sits down will have access to the remote server. For example, one of SSHKeyChain&#8217;s features is the ability to store your decryption password in your Mac OS Key Chain. I would strongly recommend against this however since I like the extra layer of security. I would also strongly recommend locking your workstation whenever you step away if you are using SSHKeyChain. I have my preferences set to remove the keys from SSHKeyChain whenever the system goes to sleep or is rebooted.</p>
]]></content:encoded>
			<wfw:commentRss>http://mac.byu.edu/2007/05/07/using-sshkeychain-for-ssh-key-management/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Backup and archive with rsync</title>
		<link>http://mac.byu.edu/2007/04/16/backup-and-archive-with-rsync/</link>
		<comments>http://mac.byu.edu/2007/04/16/backup-and-archive-with-rsync/#comments</comments>
		<pubDate>Tue, 17 Apr 2007 04:46:27 +0000</pubDate>
		<dc:creator>Wade Preston Shearer</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://mac.byu.edu/2007/04/16/backup-and-archhive-with-rsync/</guid>
		<description><![CDATA[Rsync is a powerful and quick utility. It provides you the ability to synchronize two directories and archive the differences. (Note that I consider a &#8220;backup&#8221; an identical copy and &#8220;archive&#8221; a history of changes; while rsync calls the changed/deleted files a &#8220;backup.&#8221;) Following a discussion on the mailing list about adding an archiving solution [...]]]></description>
			<content:encoded><![CDATA[<p>Rsync is a powerful and quick utility. It provides you the ability to synchronize two directories and archive the differences. (Note that I consider a &#8220;backup&#8221; an identical copy and &#8220;archive&#8221; a history of changes; while rsync calls the changed/deleted files a &#8220;backup.&#8221;) Following a discussion on the mailing list about adding an archiving solution to your backup system, I answered a question about rysnc with the following examples.</p>
<p>Beginning with the basics&hellip;</p>
<pre><code>rsync A B</pre>
<p></code></p>
<p>&hellip;would ensure that directory B has copies of all of the files in A. This does not necessarily mean that they will be identical however (B could have more files then A). If you want B to be an exact back up of A, then you must purge the difference out of B:</p>
<pre><code>rsync --delete A B</pre>
<p></code></p>
<p>You will also want to add recursion so that it will include all sub directories:</p>
<pre><code>rsync -r --delete A B</pre>
<p></code></p>
<p>If you are going to use the recursive flag, you might as well use archive instead though as it executes &#8220;rlptgoD&#8221; (which is what you want and more—check the manual for what each do) all at the same time:</p>
<pre><code>rsync -a --delete A B</pre>
<p></code></p>
<p>And, while we&#8217;re at it, we might as well toss in the zip (to make things quick) and the extended attributes (realizing that Mac OS support isn&#8217;t 100%, but it&#8217;s better then not trying) flags as well:</p>
<pre><code>rsync -azE --delete A B</pre>
<p></code></p>
<p>So, now that we have an identical backup (and hopefully two or three), we need to start archiving the changes instead of allowing theme to be overwritten or deleted. This is done with the backup flag:</p>
<pre><code>rsync -azEb --delete A B</pre>
<p></code></p>
<p>Running that with default settings will save a copy of the old file (next to the one that was just updated in the backup), appended with a tilde (so that the filenames are different… so that it isn&#8217;t overwriting the backup). Saving this archived version into the backup is no good though since we are using the delete flag! So, we need to specify an alternate location for the archived files to be saved:</p>
<pre><code>rsync -azEb --delete --backup-dir=/path/to/archive/ A B</pre>
<p></code></p>
<p>Another benefit of saving the archived files in a separate location is that they do not need to be renamed to &#8220;file.txt~&#8221;.</p>
<p>We almost have it now but there is one more important point. If we run the above command as is, we will have a source, a backup, and a one step back archive. Each time a file is changed (and the command is then run), the file will be synchronized to the backup and the changes that were overwritten or deleted will be copied to the archive… but, when they are copied to the archive, they will overwrite the previous archival and although a better solution then no archive at all, it&#8217;s not a good one since you cannot reach very far back in time.</p>
<p>Thus, we take advantage of the suffix flag. With the suffix flag, we can append a string of our choice to the end of an archived file. (We could have used this earlier to replace the tilde with something else of our choosing.) Simply appending something to the end of the file (file.txt.old) isn&#8217;t sufficient however; the suffix must be unique each time the script runs (such as the date and time).</p>
<p>Thus, the command that I would recommend for a backup and archive solution using rsync, is:</p>
<pre><code>rsync -azEb --delete --backup-dir=/path/to/archive/
--suffix=.2007-04-16_07-22-03 /path/to/source/ /path/to/backup/</pre>
<p></code></p>
<p>If you are like me and like to see what it&#8217;s doing, I would also recommend throwing in the progress, verbose, and stats flags as well:</p>
<pre><code>rsync -azEbv --progress --stats --delete
--backup-dir=/path/to/archive/ --suffix=.2007-04-16_07-22-03
/path/to/source/ /path/to/backup/</pre>
<p></code></p>
<p>And, if you do not want to have to manually update the date in the suffix flag each time you run the command (if you are using launchd or cron to run it for example), you will want to replace the suffix value with a variable that is set in a shell script, like this:</p>
<pre><code>#!/bin/sh

right_now=$(date +"%y-%m-%d_%H-%M-%S")

rsync -azEbv --progress --stats --delete --backup-dir=archive
--suffix=.$right_now files backup</pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://mac.byu.edu/2007/04/16/backup-and-archive-with-rsync/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Utah Graphic Artists Forum launched</title>
		<link>http://mac.byu.edu/2007/04/02/utah-graphic-artists-forum-launched/</link>
		<comments>http://mac.byu.edu/2007/04/02/utah-graphic-artists-forum-launched/#comments</comments>
		<pubDate>Tue, 03 Apr 2007 05:01:05 +0000</pubDate>
		<dc:creator>Wade Preston Shearer</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://mac.byu.edu/2007/04/02/utah-graphic-artists-forum-launched/</guid>
		<description><![CDATA[I am excited to announce the launch of the Utah Graphic Artists Forum. For years I have longed for a place where I could interactive with and meet new local artists. Having participated in many technical groups, I have grown to rely on and take for granted both the camaraderie and invaluable resource of information [...]]]></description>
			<content:encoded><![CDATA[<p>I am excited to announce the launch of the <a href="http://ugaf.org">Utah Graphic Artists Forum</a>. For years I have longed for a place where I could interactive with and meet new local artists. Having participated in many technical groups, I have grown to rely on and take for granted both the camaraderie and invaluable resource of information that such communities provide. Often frustrated by the lack of an official forum for art related questions however, I vowed to someday create the resource I longed for.</p>
<p>Officially launching tomorrow, I present the Utah Graphic Artists Forum, a gathering place for local graphic artists. My purpose is to promote and support the development and expression of graphic arts and to facilitating and ecouraging conversations and interaction between graphic artists in Utah, in an environment free of dues or obligations. I hope to provide something of value to members involved in all forms of the graphic arts, including illustrators, photographers, graphic designers, typographers, user interface designers, and web developers.</p>
<p>Both working professionals and students are welcome and encouraged to participate, discussing current events and trends, historical topics, theory, techniques, technology, business, and/or employment.</p>
<p>Features include a forum, mailing lists, an IRC channel for chat, job announcements, RSS feeds, syndicated calendar events, and plans to meet periodically for socials and workshops. Membership is free and open to anyone interested.</p>
<p>I encourage you to visit the site, register an account, and participate in the forum.</p>
]]></content:encoded>
			<wfw:commentRss>http://mac.byu.edu/2007/04/02/utah-graphic-artists-forum-launched/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Publish multiple calendars as one with iCal</title>
		<link>http://mac.byu.edu/2007/03/27/publish-multiple-calendars-as-one-with-ical/</link>
		<comments>http://mac.byu.edu/2007/03/27/publish-multiple-calendars-as-one-with-ical/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 22:45:50 +0000</pubDate>
		<dc:creator>Wade Preston Shearer</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://mac.byu.edu/2007/03/27/publish-multiple-calendars-as-one-with-ical/</guid>
		<description><![CDATA[iCal receives a lot of criticism, but I think that it is an excellent application. It has a few usibility issues and interface quirks, but I think that it&#8217;s swell overall. It is a simple, ellegant mail application that is pleasant to look at and simple to use. It&#8217;s implementation of and support for the [...]]]></description>
			<content:encoded><![CDATA[<p>iCal receives a lot of criticism, but I think that it is an excellent application. It has a few usibility issues and interface quirks, but I think that it&#8217;s swell overall. It is a simple, ellegant mail application that is pleasant to look at and simple to use. It&#8217;s implementation of and support for the standard icalendar file format is one of the strongest places where it shines though. Good work, Apple, for continuing your efforts to embrace, support, and promote  standards. Here&#8217;s to hoping that iCal 3.0 fixes some of the outstanding issues and surprizes us with some slick, new features.</p>
<p>My reason for writing today however isn&#8217;t just to sing iCal&#8217;s general praise, but to specifically point out it&#8217;s powerful publish feature. I manage several user groups and publish calendars for each to a remote server with iCal. This process is quick, efficient, and seamless. I add to and edit the calendars locally in iCal and the changes are then automatically synchronized to the server. Group members can either view the calendar in the web-based PHP iCalendar viewer or subscribe to the feed locally in their own copy of iCal. What a powerful and proficient use of technology! This (syndication and web-enabled applications) is what I believe to be one of the most exciting and useful uses of the internet.</p>
<p>For a new project that I am working on though, I was looking to publish a calendar of events from several different sources. Agregating this isn&#8217;t something that I wanted to do manually. Well, I am pleased to report that iCal didn&#8217;t let me down. Using a Calendar Group (basically a folder containing one or more calendars), I was able to combine both local calendars that I created myself (and here&#8217;s the beautiful part) <em>and</em> syndicated calendars that I had subscribed to <em>and then</em> re/publish the entire thing as one combined calendar!</p>
]]></content:encoded>
			<wfw:commentRss>http://mac.byu.edu/2007/03/27/publish-multiple-calendars-as-one-with-ical/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Minimalistic Mail</title>
		<link>http://mac.byu.edu/2007/03/23/minimalistic-mail/</link>
		<comments>http://mac.byu.edu/2007/03/23/minimalistic-mail/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 14:31:13 +0000</pubDate>
		<dc:creator>Wade Preston Shearer</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://mac.byu.edu/2007/03/23/minimalistic-mail/</guid>
		<description><![CDATA[Being one who cherishes unobtrusiveness and minimalism (I collapse the toolbar on all OS applications), I was sad when version 2 of Mail came out and the drawer was replaced by a sidebar. With the new version I was unable to hide the drawer (with a quick and easy keystroke) as I was used to [...]]]></description>
			<content:encoded><![CDATA[<p>Being one who cherishes unobtrusiveness and minimalism (I collapse the toolbar on all OS applications), I was sad when version 2 of Mail came out and the drawer was replaced by a sidebar. With the new version I was unable to hide the drawer (with a quick and easy keystroke) as I was used to when it wasn&#8217;t needed. For most of the day I don&#8217;t need to see my folders as inbox is where all the action happens. When I needed to pull something out of the trash or look up a sent item, I would slide the drawer out, get what I needed, and then slide it back. This provided a simply, clean window that only displayed line-item messages.</p>
<p>With Mail 2&#8217;s new sidebar though, it is impossible to collapse it however. I have resized it before but not until last night had I discovered that it can be shrunk to the point where only the folder icons are visible. Although not ideal, it is closer to what I had before.</p>
<p><img id="image214" src="http://mac.byu.edu/wp-content/uploads/2007/03/mail_smallsidebar.jpg" alt="mail_smallsidebar.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://mac.byu.edu/2007/03/23/minimalistic-mail/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Send text messages via the command line</title>
		<link>http://mac.byu.edu/2006/09/18/send-text-messages-via-the-command-line/</link>
		<comments>http://mac.byu.edu/2006/09/18/send-text-messages-via-the-command-line/#comments</comments>
		<pubDate>Mon, 18 Sep 2006 22:36:56 +0000</pubDate>
		<dc:creator>Wade Preston Shearer</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://mac.byu.edu/2006/09/18/send-text-messages-via-the-command-line/</guid>
		<description><![CDATA[A member of the group posted a request on the mailing list today for more detailed instructions on how to implement the use of a command line script as described in a recent post on Mac OS X Hints. The script describes how to send text messages to Cingular subscribers via the command line.
First, it [...]]]></description>
			<content:encoded><![CDATA[<p>A member of the group posted a request on the <a href="/mailing-lists/">mailing list</a> today for more detailed instructions on how to implement the use of a command line script as described in a <a href="http://www.macosxhints.com/article.php?story=20060913202617195">recent post</a> on <a href="http://www.macosxhints.com">Mac OS X Hints</a>. The script describes how to send text messages to Cingular subscribers via the command line.</p>
<p>First, it is important to understand how this process works and what the script is doing. The script is not generating the text message. The script is simply interacting with a script on Cingular&#8217;s server; one that normally receives it&#8217;s information from a &#8220;send a text message&#8221; web form hosted on Cingular&#8217;s website. This by-passing-the-web-form-without-human-interaction is done with a command line application called Curl. Curl posts the necessary values to the script, virtually &#8220;submitting&#8221; the form.</p>
<p>Begin by launching Terminal. It is located in the Utilities directory. When Terminal is launched, a new shell session is automatically begun and you are automatically positioned at the root of your home directory within the file system. A shell is a tool to enable users to interact with the system. Usually shells are text based and command line oriented. Examples of popular shells include bash, tcsh and ksh. Shells are usually run in a Terminal window.</p>
<p><em>Note: The following instructions contain strings of text called &#8220;commands.&#8221; These are designated in monospaced type and are to be typed into the terminal verbatim, followed by a strike of the return key which executes them.</em></p>
<p>To begin, we will create a directory called &#8220;scripts&#8221; inside of the user&#8217;s Documents folder to put this script in:</p>
<pre><code>mkdir ~/Documents/scripts</code></pre>
<p>Next, we will create the script. Using the command line text editor vim, open a new, blank document named &#8220;curlsms&#8221; in the new directory:</p>
<pre><code>vi ~/Documents/scripts/curlsms</code></pre>
<p>Enter edit mode by striking the &#8220;i&#8221; key. Then, copy the following from this post, switch back to Terminal, and paste it (command + v).</p>
<pre><code>curl -d "from=$1&#038;min=$2&#038;msg=$3" http://www.cingularme.com/do/public/send >> /dev/null</code></pre>
<p>Exit edit mode by striking the escape key. Then save the file, close it, and exist the editor by entering a colon charater (shift + semicolon), an &#8220;x&#8221; character, and then striking the return key.</p>
<p>The script is now created, but we need to alter the files permissions in order to run it. This is done with the following command:</p>
<pre><code>chmod a+x ~/Documents/scripts/curlsms</code></pre>
<p>Now we are ready to use it. The template for this is:</p>
<pre><code>~/Documents/scripts/curlsms sender number "message"</code></pre>
<p>…replacing &#8220;sender&#8221; with your name, &#8220;number&#8221; with the phone number that you are sending the message to, and &#8220;message&#8221; with the body of the message, in quotes.</p>
]]></content:encoded>
			<wfw:commentRss>http://mac.byu.edu/2006/09/18/send-text-messages-via-the-command-line/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Subscribing to BYU MUG&#8217;s RSS feeds</title>
		<link>http://mac.byu.edu/2006/09/08/subscribing-to-byu-mugs-rss-feeds/</link>
		<comments>http://mac.byu.edu/2006/09/08/subscribing-to-byu-mugs-rss-feeds/#comments</comments>
		<pubDate>Fri, 08 Sep 2006 19:48:33 +0000</pubDate>
		<dc:creator>Wade Preston Shearer</dc:creator>
		
		<category><![CDATA[BYU Support]]></category>

		<guid isPermaLink="false">http://mac.byu.edu/2006/09/08/subscribing-to-byu-mugs-rss-feeds/</guid>
		<description><![CDATA[The BYU Mac Users Group offers several forms of syndicated content including calendar events, article posts, and comments that users leave. For those new to RSS, it is a form of syndication in which text is published and a reader displays it. In a similar way to a television show being broadcast across air waves [...]]]></description>
			<content:encoded><![CDATA[<p>The BYU Mac Users Group offers several forms of syndicated content including calendar events, article posts, and comments that users leave. For those new to RSS, it is a form of syndication in which text is published and a reader displays it. In a similar way to a television show being broadcast across air waves and a television receiving the signal and displaying the program, an RSS reader (or &#8220;agregator&#8221;) reads a feed from a website and displays each article and keeps track of what has and has not read.</p>
<p>There are many ways to via RSS feeds. There are dedicated readers and then there are applications that have added this feature such as web browsers and email clients. Safari added this ability with the release of version two that shipped with Mac OS 10.4. Websites that offer syndicated content will usually state so on their home page or in the footer of the site. Look for the words &#8220;syndication,&#8221; &#8220;feed,&#8221; &#8220;RSS,&#8221; and/or small orange icons with similar text. Many web browsers also now automatically detect sites with feeds and display a graphic letting you know that it is available.</p>
<p>Safari does this with the blue &#8220;RSS&#8221; icon that appears in the address bar:</p>
<p><img id="image163" src="http://mac.byu.edu/wp-content/uploads/2006/09/safari_rss.jpg" alt="safari_rss.jpg" /></p>
<p>You will notice that this is the case when viewing this website. Clicking the &#8220;RSS&#8221; button in the address bar will switch Safari into RSS view mode, displaying all of the articles in a text-only format.</p>
<p><img id="image165" src="http://mac.byu.edu/wp-content/uploads/2006/09/safari_rss_mode.jpg" alt="safari_rss_mode.jpg" /></p>
<p>Personally, I find this way of consuming news not very user friendly. It is fine for a one-time quick glance on a new website, but for the feeds that I subscribe to daily, it does not work very well for several reasons. First, it does not keep track of what articles I have read and it also requires that I visit every website individually to view their feeds—something that I feel negates the very benefit of feeds. For this reason, I use the dedicated reader <a href="http://www.newsgator.com/NGOLProduct.aspx?ProdId=NetNewsWire&#038;ProdView=lite">New News Wire Lite</a> by NewsGator. It allows me to browse through new content from over seventy feeds within a seconds. I have even configured custom key strokes through the Keyboard System Preference Pane to allow me to navigate as quickly as possible.</p>
<p>To subscribe to BYU MUG&#8217;s feeds in New News Wire Lite, right-click on the one of the feeds links in the footer of the website and select &#8220;Copy Link.&#8221; Then switch to New News Wire Lite and select New Subscription from the File Menu. The feed that you have copied will appear, pre-polulated in the New Subscription dialogue, requiring you to only click the Subscribe button to complete the process. This new feed will then appear in the feed list along with other feeds that you have subscribed to. You can even create folders to organize your feeds into.</p>
<p><img id="image164" src="http://mac.byu.edu/wp-content/uploads/2006/09/netnewwirelite.jpg" alt="netnewwirelite.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://mac.byu.edu/2006/09/08/subscribing-to-byu-mugs-rss-feeds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Updates to BYU MUG syndication</title>
		<link>http://mac.byu.edu/2006/09/07/updates-to-byu-mug-syndication/</link>
		<comments>http://mac.byu.edu/2006/09/07/updates-to-byu-mug-syndication/#comments</comments>
		<pubDate>Thu, 07 Sep 2006 19:11:27 +0000</pubDate>
		<dc:creator>Wade Preston Shearer</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://mac.byu.edu/2006/09/07/updates-to-byu-mug-syndication/</guid>
		<description><![CDATA[Along with the new website, some of our syndication feeds have changed. Please note the following and update your aggregators.
BYU MUG Events (retired)
BYU MUG Stories (new URL)
UPHPU Calendar (temporarily unavailable)
BYU MUG Comments (new)
]]></description>
			<content:encoded><![CDATA[<p>Along with the new website, some of our syndication feeds have changed. Please note the following and update your aggregators.</p>
<p>BYU MUG Events (retired)<br />
<a href="feed:http://mac.byu.edu/feed/">BYU MUG Stories</a> (new URL)<br />
UPHPU Calendar (temporarily unavailable)<br />
<a href="feed:http://mac.byu.edu/comments/feed/">BYU MUG Comments</a> (new)</p>
]]></content:encoded>
			<wfw:commentRss>http://mac.byu.edu/2006/09/07/updates-to-byu-mug-syndication/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mac OS 10.5 wish list</title>
		<link>http://mac.byu.edu/2006/03/13/mac-os-105-wish-list/</link>
		<comments>http://mac.byu.edu/2006/03/13/mac-os-105-wish-list/#comments</comments>
		<pubDate>Tue, 14 Mar 2006 04:33:43 +0000</pubDate>
		<dc:creator>Wade Preston Shearer</dc:creator>
		
		<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://mac.byu.edu/?p=49</guid>
		<description><![CDATA[What&#8217;s on top of your 10.5 wish list? Here&#8217;s mine.

rysnc must be fixed
split pane Finder (and the UI updated to match the new lean style of Mail and iTunes) and possibly tabs (haven&#8217;t decided if I think that tabs should be implemented or not yet)
Spotlight UI fixed/improved/redone (searching for files takes too many steps, especially [...]]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s on top of your 10.5 wish list? Here&#8217;s mine.</p>
<ol>
<li>rysnc must be fixed</li>
<li>split pane Finder (and the UI updated to match the new lean style of Mail and iTunes) and possibly tabs (haven&#8217;t decided if I think that tabs should be implemented or not yet)</li>
<li>Spotlight UI fixed/improved/redone (searching for files takes too many steps, especially when you don&#8217;t care about it&#8217;s name—just want to search by criteria such as modified date). System performance during large data transfers needs to be addressed as well. They system should be smart enough to wait and cache later instead of bringing itself to it&#8217;s knees.</li>
<li>ability to lock workstation with keystroke, publicized as a lock method instead of a side product of initiating the screen saver</li>
<li>ability to alter the dock&#8217;s background transparency</li>
<li>ability to save workspaces (window sizes and locations, similar to how it is down in Adobe apps)</li>
<li>Finder keeps a browse history just like a web browser does. You can browse back and forth with with cmd + [/]. I want a History page for Finder where I can bring up with a keystroke, scan through the places, and select one as you can in Safari.</li>
<li>a graphical utility for using launchd (including creating launch plists)</li>
<li>A way to have the system automatically (nightly) make snapshots of itself  that you can roll back to. You should also be able to do this manually before you make big changes so that if something goes wrong, you can roll back to a few minutes before. This should be implemented database-info style so that only the changes are recorded and not the actual files saved. In other words, this would be done &#8220;Aperture-style&#8221; instead of making an entire copy of your multiple-gig system.</li>
<li>A professional theme that matches the pro apps. No, I do not think that Mac OS should be skin-able or even tint-able (as Microsoft Windows is), but I think that a lot of professionals would like a professional theme. Two options, standard and professional, would be nice. This could even be a choice during installation so that two copies of the graphics do not have to reside on the system.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://mac.byu.edu/2006/03/13/mac-os-105-wish-list/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
