<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>A Humanist Geek</title>
	<atom:link href="http://caseykoons.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://caseykoons.wordpress.com</link>
	<description>Librarianship, Technology, and Syracuse: Discussed.</description>
	<lastBuildDate>Mon, 19 Sep 2011 16:33:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='caseykoons.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/9d99c1e93a119f4a369a3da4bef3374d?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>A Humanist Geek</title>
		<link>http://caseykoons.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://caseykoons.wordpress.com/osd.xml" title="A Humanist Geek" />
	<atom:link rel='hub' href='http://caseykoons.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Make Firefox into a Powerful Command Line</title>
		<link>http://caseykoons.wordpress.com/2009/08/03/firefoxcommandline/</link>
		<comments>http://caseykoons.wordpress.com/2009/08/03/firefoxcommandline/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 21:23:09 +0000</pubDate>
		<dc:creator>caseykoons</dc:creator>
				<category><![CDATA[Web Browsing]]></category>

		<guid isPermaLink="false">http://caseykoons.wordpress.com/?p=30</guid>
		<description><![CDATA[I thought I&#8217;d share a computer trick I use dozens of times a day, which unlike most of my Mac-specific trick, is available for anyone who uses Mozilla&#8217;s Firefox Browser (or a derivative, like Camino). The trick relies mostly on &#8230; <a href="http://caseykoons.wordpress.com/2009/08/03/firefoxcommandline/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseykoons.wordpress.com&amp;blog=558096&amp;post=30&amp;subd=caseykoons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I thought I&#8217;d share a computer trick I use dozens of times a day, which unlike most of my Mac-specific trick, is available for anyone who uses Mozilla&#8217;s <a href="http://www.mozilla.com/en-US/firefox" target="_blank">Firefox</a> Browser (or a derivative, like <a href="http://caminobrowser.org/" target="_blank">Camino</a>).<br />
The trick relies mostly on a combination of Firefox’s ability to make search shortcuts for the location bar, and google’s many nifty bits. With it your can utterly do away with the search bar in your browser and search from multiple search engines right from the location bar. But I’ve since expanded the trick to do much more, such as have an instant shorthand for any popular site, and get instant travel directions. <span id="more-30"></span></p>
<h3>The Basics</h3>
<p>It all begins in your bookmarks. In the “Unsorted” section of your bookmarks, create a folder called “Search.” The bookmarks we’re about to create won’t do us any good in either the bookmark menu or the bookmark bar.<br />
<img class="alignnone size-full wp-image-33" title="Bookmarks" src="http://caseykoons.files.wordpress.com/2009/08/picture-1.png?w=450&#038;h=321" alt="Bookmarks" width="450" height="321" /><br />
Now we’re going to create a new bookmark. We’ll just make it to google for starters. Notice that when we create the bookmark we have an option to add a “Keyword.” This is a text shortcut for the bookmark, so that now anytime you type “g” into the location bar of your browser and hit enter, it will go to google.com. This is a trick in itself, I have many of my common university sites bookmarked in this way, so that “lib” will take me to the library website and “myslice” will take me to the course management site and so on.</p>
<p><img class="size-full wp-image-37 alignnone" title="New Bookmark" src="http://caseykoons.files.wordpress.com/2009/08/picture-2.png?w=332&#038;h=235" alt="New Bookmark" width="332" height="235" /></p>
<p>We want to make a search shortcut, so it’s good that we’re at the search site we want. Run a search for anything your want, I use the string “test” myself. What we want is the result in the location bar.</p>
<p><img class="alignnone size-full wp-image-34" title="Google Location Bar Result" src="http://caseykoons.files.wordpress.com/2009/08/picture-3.png?w=450&#038;h=30" alt="Google Location Bar Result" width="450" height="30" /></p>
<p>The text from the location bar for that search was “http://www.google.com/search?q=test” Be prepared for your result to be much more messy. It might contain all sorts of crazy characters, but we don’t have to worry about them. All we’re looking for is the string we search for, in this case “test.” In my case it was easy enough to find. It is the last bit of the result, right after “q=”</p>
<p>The next step in creating our shortcut is to take this url and replace the string we used, “test” with “<span style="color:#ff0000;">%s</span>”</p>
<p>So my result will be “http://www.google.com/search?q=<span style="color:#ff0000;">%s</span>”</p>
<p>We do this because Firefox will replace the <span style="color:#ff0000;">%s</span> with whatever we search for in the shortcut. Now we copy that url and  paste it into the bookmark we made.<br />
<img class="alignnone size-full wp-image-31" title="First Search Bookmark" src="http://caseykoons.files.wordpress.com/2009/08/picture-4.png?w=450&#038;h=321" alt="First Search Bookmark" width="450" height="321" /></p>
<p>Now you’re done! For now on, if you type “g” and a space followed by a search string, that will be searched by google.<br />
<img class="alignnone size-full wp-image-36" title="Try it!" src="http://caseykoons.files.wordpress.com/2009/08/picture-5.png?w=450&#038;h=28" alt="Try it!" width="450" height="28" /></p>
<p>You can go on to create similar shortcuts for many other search engines. Listed below are several others, along with the keyword I use to use them.</p>
<p>w – <em>wikipedia</em> – http://en.wikipedia.org/wiki/Special:Search?search=<span style="color:#ff0000;">%s</span></p>
<p>y – <em>yahoo</em> – http://search.yahoo.com/bin/search?p=<span style="color:#ff0000;">%s</span></p>
<p>tube – <em>youtube</em> – http://www.youtube.com/results?search_query=<span style="color:#ff0000;">%s</span>&amp;search=Search</p>
<h3>Add a little luck and things get interesting…</h3>
<p>I hope you’re still with me, because it’s about to get pretty cool. For those of you unfamiliar, Google has a search option called “I’m feeling lucky” which takes you straight the first site the search yielded. This feature never really made sense to me, until I made it into a shortcut.<br />
<img class="alignnone size-full wp-image-35" title="Lucky" src="http://caseykoons.files.wordpress.com/2009/08/picture-6.png?w=435&#038;h=219" alt="Lucky" width="435" height="219" /><br />
The code for the “I’m feeling lucky” search is the string is “<span style="color:#339966;">&amp;btnI=I</span>” so I made a shortcut:</p>
<p>gf -<em> google I’m feeling lucky search </em>– http://www.google.com/search?q=<span style="color:#ff0000;">%s</span><span style="color:#339966;">&amp;btnI=I</span></p>
<p>To get to the Onondaga County Public Library I just type<br />
gf Onondaga Library – I honestly haven’t a clue what the url is!</p>
<h3>Power through large complicated sites</h3>
<p>Combine the “I’m feeling lucky” trick with a site specific search to give a quick way to hard–to–find pages in large websites.</p>
<p>I’m a student at Syracuse University, and often have to find various departmental websites like Parking Services, Financial Aid, and the like, and they can be hard to find sometimes. This trick is amazing in how it translates my thoughts to websites.<br />
In order to do a site-specific search in google, you add the phase “site:syr.edu” (in the case of Syracuse U) to your search, which limits the search to websites within that domain.<br />
<img class="alignnone size-full wp-image-32" title="Picture 7" src="http://caseykoons.files.wordpress.com/2009/08/picture-7.png?w=341&#038;h=77" alt="Picture 7" width="341" height="77" /><br />
In this shortcut, we’re not going to remove everything we searched for from the url, we’ll leave the “site:syr.edu” in and place our %s after it. This looks a little weird because of the codes that represent the colon and the spaces.</p>
<p>s – <em>Lucky Syr Search</em>– http://www.google.com/search?q=site%3Asyr.edu%20<span style="color:#ff0000;">%s</span><span style="color:#339966;">&amp;btnI=I</span></p>
<p>This searches only sites within the syr.edu domain. Notice that <span style="color:#339966;">&amp;btnI=I</span>? That makes the search lucky, which means that it takes me instantly to the first hit. So the next time I’m looking for the Public Safety website, I just type:<br />
s Public Safety – and I’m there!</p>
<p><img class="alignnone size-full wp-image-45" title="Picture 2" src="http://caseykoons.files.wordpress.com/2009/08/picture-21.png?w=199&#038;h=25" alt="Picture 2" width="199" height="25" /></p>
<h3>Instant directions</h3>
<p>I use google maps to find directions. For those of you who are unfamiliar, google maps will give you directions if you search for a phrase that goes like<br />
one address to another address.</p>
<p>So the phrase “1600 Pennsylvania Ave NW, Washington, DC to 2 Macquarie St, Sydney New South Wales” will yield the humorous directions from the White House to the Sydney Opera House.</p>
<p>Here’s the thing. When I moved to central New York, I found myself looking up a lot of directions and they were all similar. I always wanted to know how to get from my place to another place in the city. I realized there was only a small amount of information that was changing each time, namely the street address of the place I wanted go.</p>
<p>Suppose I live at 1234 Pleasant St, Syracuse NY.<br />
Every time I looked for directions I type into google maps:<br />
1234 Pleasant St, Syracuse NY to <strong>new street address</strong> Syracuse NY</p>
<p>Just like we left text in the site specific search, we can leave stuff in this search too.</p>
<p>to – <em>instant directions from home to somewhere in the city</em> –</p>
<p>http://maps.google.com/maps?q=1234%20Pleasant%20St%20Syracuse%20NY%20to%20<span style="color:#ff0000;">%s</span>%20Syracuse%20NY</p>
<p>Here that %s really gets lost. It’s between “%20” before “Syracuse” on the end, see? This shortcut means that if I need directions to a friends place or a business in Syracuse, like the University, I just type:<br />
“to 700 University Ave” In my location bar and hit enter and bam, instant directions. I use this nearly every day and it really saves time.</p>
<p><img class="alignnone size-full wp-image-40" title="Picture 1" src="http://caseykoons.files.wordpress.com/2009/08/picture-11.png?w=308&#038;h=32" alt="Picture 1" width="308" height="32" /></p>
<p>Obviously you can copy any of the links in this post into bookmarks with keywords and use them as is. To make your own &#8220;to&#8221; search, search google maps for directions from your address to an address in your city and then replace the <em>street address</em> of the destination with <span style="color:#ff0000;">%s</span>, leaving the city and state. A tip, the code %20 is for a space, so leave one on either side of your <span style="color:#ff0000;">%s</span> in the &#8220;to&#8221; search.</p>
<p>Hope you found this trick helpful and informative. Let me know if I can clarify this post in anyway.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/caseykoons.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/caseykoons.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/caseykoons.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/caseykoons.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/caseykoons.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/caseykoons.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/caseykoons.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/caseykoons.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/caseykoons.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/caseykoons.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/caseykoons.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/caseykoons.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/caseykoons.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/caseykoons.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseykoons.wordpress.com&amp;blog=558096&amp;post=30&amp;subd=caseykoons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://caseykoons.wordpress.com/2009/08/03/firefoxcommandline/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bde0a55960ebbd2c16f7cb5c3695127?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caseykoons</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2009/08/picture-1.png" medium="image">
			<media:title type="html">Bookmarks</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2009/08/picture-2.png" medium="image">
			<media:title type="html">New Bookmark</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2009/08/picture-3.png" medium="image">
			<media:title type="html">Google Location Bar Result</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2009/08/picture-4.png" medium="image">
			<media:title type="html">First Search Bookmark</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2009/08/picture-5.png" medium="image">
			<media:title type="html">Try it!</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2009/08/picture-6.png" medium="image">
			<media:title type="html">Lucky</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2009/08/picture-7.png" medium="image">
			<media:title type="html">Picture 7</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2009/08/picture-21.png" medium="image">
			<media:title type="html">Picture 2</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2009/08/picture-11.png" medium="image">
			<media:title type="html">Picture 1</media:title>
		</media:content>
	</item>
		<item>
		<title>Email Suggestions</title>
		<link>http://caseykoons.wordpress.com/2008/09/18/email-suggestions/</link>
		<comments>http://caseykoons.wordpress.com/2008/09/18/email-suggestions/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 22:57:31 +0000</pubDate>
		<dc:creator>caseykoons</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://caseykoons.wordpress.com/?p=20</guid>
		<description><![CDATA[Thanks for visiting. I thought I&#8217;d share, and hopefully inspire others to employ, some of the email conventions that I find useful. These are conventions for sent mail. In future I may share some of my Mac Mail.app organization tips. &#8230; <a href="http://caseykoons.wordpress.com/2008/09/18/email-suggestions/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseykoons.wordpress.com&amp;blog=558096&amp;post=20&amp;subd=caseykoons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Thanks for visiting. I thought I&#8217;d share, and hopefully inspire others to employ, some of the email conventions that I find useful. These are conventions for sent mail. In future I may share some of my Mac Mail.app organization tips.<span id="more-20"></span></p>
<p><strong>Use the Subject Line Productively</strong></p>
<p><a href="http://caseykoons.files.wordpress.com/2008/09/picture-11.png"><img class="alignnone size-full wp-image-22" title="picture-11" src="http://caseykoons.files.wordpress.com/2008/09/picture-11.png?w=426&#038;h=51" alt="" width="426" height="51" /></a></p>
<p>Email subjects have a tendency to be vague, while emails tend to be requests for specific information. It can make your readers inbox a lot easier to understand if you include a fair amount of the question of the email in the subject line. I find that virtually all emails I send can fit <strong>all</strong> the needed information in the subject line. You&#8217;ll note also my use of the &#8220;|&#8221; character to preserve John&#8217;s Re: subject. Bars and slashes can be very useful in breaking up information in the subject line and keeping it nicely readable.</p>
<p><strong>Use ONLY the subject line</strong></p>
<p><a href="http://caseykoons.files.wordpress.com/2008/09/picture-2.png"><img class="alignnone size-full wp-image-23" title="Only the subject line" src="http://caseykoons.files.wordpress.com/2008/09/picture-2.png?w=378&#038;h=54" alt="" width="378" height="54" /></a></p>
<p>Some emails have such simple requests they don&#8217;t need a message body. EOM for End of Message, or NB for No Body are common codes for this kind of message. This also reinforces the above point. A common email might have the Subject &#8220;Bhabha Citation&#8221; with the text &#8220;Could you send me that Bhabha citation?&#8221; Such small messages can be a lot easier to handle if you can respond to them without even having to open them in your mail client.</p>
<p><strong>Death to Carbon Copies!</strong></p>
<p><a href="http://caseykoons.files.wordpress.com/2008/09/picture-5.png"><img class="alignnone size-full wp-image-24" title="picture-5" src="http://caseykoons.files.wordpress.com/2008/09/picture-5.png?w=426&#038;h=73" alt="" width="426" height="73" /></a></p>
<p><a href="http://caseykoons.files.wordpress.com/2008/09/picture-4.png"><img class="alignnone size-full wp-image-25" title="picture-4" src="http://caseykoons.files.wordpress.com/2008/09/picture-4.png?w=426&#038;h=60" alt="" width="426" height="60" /></a></p>
<p>I admit that this is a nerdy pet-peeve of mine. There is no real difference, as far as I&#8217;ve discovered, between emailing a message to multiple addresses and cc&#8217;ing people to a message. Replying to either such message will reply to the sender only, while reply–all replies to everyone who received it.</p>
<p><em>The &#8220;Whoops! I need to reply-all&#8221; problem</em></p>
<p>How often have we quickly hit &#8220;Reply&#8221; to such a message, only to realize too late that everyone else on the email needs to see it as well. Putting all of your readers in the &#8220;To&#8221; field makes them easy to find in such a flub. The &#8220;To&#8221; header is almost always displayed first in a message, so its easy to copy all the addresses to which it was sent and paste them into your reply. &#8220;CC&#8221; headers are sometimes displayed and sometimes not. They require digging. Besides, group emails should be egalitarian. Who feels the love from the messages they were &#8220;CC&#8217;d&#8221;?</p>
<p><strong>Extra Nerdy Solution to the &#8220;Whoops! I needed to reply-all&#8221; problem.<br />
</strong></p>
<p><a href="http://caseykoons.files.wordpress.com/2008/09/picture-6.png"><img class="alignnone size-full wp-image-26" title="picture-6" src="http://caseykoons.files.wordpress.com/2008/09/picture-6.png?w=426&#038;h=84" alt="" width="426" height="84" /></a></p>
<p>If, like me, the &#8220;reply-all&#8221; problem afflicts you often enough to want to spare the pain from others, there is another trick you can use. Most email clients will let you set a &#8220;Reply To&#8221; field. This affects who will be targeted in a reply, so placing the group sent in this field means that the group will, by default, receive all the replies.</p>
<p>I hope this has helped to you understand my strange email habits, and perhaps given you food for thought. Let me know if you&#8217;d like any more email tips.</p>
<p>Peace!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/caseykoons.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/caseykoons.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/caseykoons.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/caseykoons.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/caseykoons.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/caseykoons.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/caseykoons.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/caseykoons.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/caseykoons.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/caseykoons.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/caseykoons.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/caseykoons.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/caseykoons.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/caseykoons.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseykoons.wordpress.com&amp;blog=558096&amp;post=20&amp;subd=caseykoons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://caseykoons.wordpress.com/2008/09/18/email-suggestions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bde0a55960ebbd2c16f7cb5c3695127?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caseykoons</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2008/09/picture-11.png" medium="image">
			<media:title type="html">picture-11</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2008/09/picture-2.png" medium="image">
			<media:title type="html">Only the subject line</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2008/09/picture-5.png" medium="image">
			<media:title type="html">picture-5</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2008/09/picture-4.png" medium="image">
			<media:title type="html">picture-4</media:title>
		</media:content>

		<media:content url="http://caseykoons.files.wordpress.com/2008/09/picture-6.png" medium="image">
			<media:title type="html">picture-6</media:title>
		</media:content>
	</item>
		<item>
		<title>Quicksilver Discovery: Mouse Dragged Object Triggers!</title>
		<link>http://caseykoons.wordpress.com/2007/04/08/quicksilver-discovery-mouse-dragged-object-triggers/</link>
		<comments>http://caseykoons.wordpress.com/2007/04/08/quicksilver-discovery-mouse-dragged-object-triggers/#comments</comments>
		<pubDate>Sun, 08 Apr 2007 22:51:03 +0000</pubDate>
		<dc:creator>caseykoons</dc:creator>
				<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://caseykoons.wordpress.com/2007/04/08/quicksilver-discovery-mouse-dragged-object-triggers/</guid>
		<description><![CDATA[The thing I love about Quicksilver is that it never stops amazing you with the things it can do. So many times I&#8217;m using Quicksilver and I wonder, &#8220;wouldn&#8217;t it be cool if Quicksilver could do x?&#8221; and find that &#8230; <a href="http://caseykoons.wordpress.com/2007/04/08/quicksilver-discovery-mouse-dragged-object-triggers/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseykoons.wordpress.com&amp;blog=558096&amp;post=12&amp;subd=caseykoons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The thing I love about Quicksilver is that it never stops amazing you with the things it can do. So many times I&#8217;m using Quicksilver and I wonder, &#8220;wouldn&#8217;t it be cool if Quicksilver could do x?&#8221; and find that it&#8217;s way ahead of me and it can. It was in this way that I discovered the drag and drop abilities well featured in TAB screencast <a href="http://theappleblog.com/2007/01/19/quicksilver-screencast-in-n-out/">here</a>, which has transformed the way I move files around, especially when attaching things to emails. (QS to it, and drag it into the mail, what could be easier?).</p>
<p>Today&#8217;s blog concerns such a discovery. While horribly mistyping the word google (don&#8217;t ask me how) I stumbled across a proxy object I had never seen before:</p>
<p><img src="http://www.users.muohio.edu/koonscj/images/blog/Discovery.png" alt="The Discovery" /></p>
<p>At first I thought to myself, what good is this? But than I realized a wealth of possibilities in trigger creation. Imagine, anything that you frequently do to, well, anything that you can drag, you can make into a trigger that requires you to simply drag it to some corner of your screen! To find out how to do this, read on.<span id="more-12"></span></p>
<p>Side note: I know that there are many QS cultists on the world wide web that consider QS to be the death of the mouse. I&#8217;ll admit that I am not the greatest fan of mousing, but I do not think that QS makes us more efficient by replacing mouse clicks with keystrokes, I believe it makes us more efficient by allowing us to chose <em>when</em> we change modes. I&#8217;ll have more to say on this when I post my writeup on the uses for Constellation menus in a few weeks/years. (given my stellar posting record)</p>
<p>On to the creation of a Trigger with the Mouse Trigger Dragged Object. For this demo I&#8217;ll be making a Trigger that allows me to email a file/string to anyone by dragging the object into the upper left corner of my screen.</p>
<p><strong>Step 1: Create the Trigger</strong><br />
To create our trigger will invoke QS and hit Command-&#8217;, which takes us to the Triggers section of QS preferences.</p>
<p>We&#8217;ll chose a Mouse Trigger (which requires the mouse trigger plugin) for our quick-email trigger, otherwise it won&#8217;t work!</p>
<p>In the Primer-like three pane trigger step up we find our Mouse Dragged Trigger Object. (this is a proxy object, make sure proxy objects are enabled in your catalog in the Quicksilver section.)</p>
<p>Next we tab to the action pane and type Email, to get the Email (Compose) action.</p>
<p><img src="http://www.users.muohio.edu/koonscj/images/blog/TriggerAttempt.png" alt="What the?!?!" /><br />
That&#8217;s odd, Email isn&#8217;t available? Are we out of luck?</p>
<p><strong>Step 1-retry</strong><br />
The reason our trigger doesn&#8217;t work is because there is nothing in the Mouse Dragged Trigger Object proxy when we make the trigger, at least nothing that QS thinks you can email. There is a way around this.</p>
<p>We invoke Quicksilver on something that can be emailed. Any file or string will do. We then tab to the action pane to get our desired action: Email (Compose)… in this case.</p>
<p><img src="http://www.users.muohio.edu/koonscj/images/blog/GettheAction.png" alt="You can copy actions!?!" /></p>
<p>With our focus in the action pane, we hit Command-C (as in copy). Yes, you can copy actions, trippy eh?</p>
<p><strong>Step 2 &#8211; Finish the trigger</strong><br />
We go back to the trigger pane and back to our Mouse Dragged Trigger Object trigger.</p>
<p>Tabbing to action pane, we hit Command-V. Poof, Email (Compose)… is where it should be.</p>
<p><img src="http://www.users.muohio.edu/koonscj/images/blog/ThatsBetter.png" alt="Ah..." /></p>
<p>We leave the third pane blank <strong>and un-tabbed to</strong> so that when the trigger invokes it gives us the opportunity to specify to whom the file will be emailed.</p>
<p><strong>Step 3 &#8211; Setting up the Mouse action that will trigger it</strong><br />
Our last step is to configure the mouse action that will trigger this trigger. (he he, trigger)</p>
<p><img src="http://www.users.muohio.edu/koonscj/images/blog/SetupTrigger.png" alt="The setup" /></p>
<p>For the type, we want Drag and Drop. Drag Entered will work, but it will invoke and then disappear if you drag and drop. Drag and Drop works every time.</p>
<p>Next we chose a screen corner/side. I chose my upper left hand corner.</p>
<p>Finally, we have the option of specifying a modifier key. I chose this so that I don&#8217;t accidentally trigger the action when spastically mousing around. This also allows us to re-use space. If you want to get crazy, you could assign many triggers to the same corner, each using a different set of modifier keys. (points to some math-nerd who tells me how many)</p>
<p><strong>All Done</strong><br />
That&#8217;s it! Our mouse dragged object trigger should work now. So the next time you&#8217;re browsing the web with your mouse and you run into some passage that you want to email someone, select it and Command-Drag it to the corner. Mouse-browsing the Finder and find the file you want to send to Jimbo. You could Command-esc it, but maybe it suits your flow to drag it up there before switching to keyboard mode.</p>
<p>Well I hope the tutorial was helpful and relatively free of errors. I&#8217;ll try to update more often in the future. This is especially true if I notice any readers.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/caseykoons.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/caseykoons.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/caseykoons.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/caseykoons.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/caseykoons.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/caseykoons.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/caseykoons.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/caseykoons.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/caseykoons.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/caseykoons.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/caseykoons.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/caseykoons.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/caseykoons.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/caseykoons.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/caseykoons.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/caseykoons.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseykoons.wordpress.com&amp;blog=558096&amp;post=12&amp;subd=caseykoons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://caseykoons.wordpress.com/2007/04/08/quicksilver-discovery-mouse-dragged-object-triggers/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bde0a55960ebbd2c16f7cb5c3695127?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caseykoons</media:title>
		</media:content>

		<media:content url="http://www.users.muohio.edu/koonscj/images/blog/Discovery.png" medium="image">
			<media:title type="html">The Discovery</media:title>
		</media:content>

		<media:content url="http://www.users.muohio.edu/koonscj/images/blog/TriggerAttempt.png" medium="image">
			<media:title type="html">What the?!?!</media:title>
		</media:content>

		<media:content url="http://www.users.muohio.edu/koonscj/images/blog/GettheAction.png" medium="image">
			<media:title type="html">You can copy actions!?!</media:title>
		</media:content>

		<media:content url="http://www.users.muohio.edu/koonscj/images/blog/ThatsBetter.png" medium="image">
			<media:title type="html">Ah...</media:title>
		</media:content>

		<media:content url="http://www.users.muohio.edu/koonscj/images/blog/SetupTrigger.png" medium="image">
			<media:title type="html">The setup</media:title>
		</media:content>
	</item>
		<item>
		<title>Quicksilver Adulation 1: iTunes is Telepathic</title>
		<link>http://caseykoons.wordpress.com/2006/11/20/quicksilver-adulation-1-itunes-is-telepathic/</link>
		<comments>http://caseykoons.wordpress.com/2006/11/20/quicksilver-adulation-1-itunes-is-telepathic/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 20:26:02 +0000</pubDate>
		<dc:creator>caseykoons</dc:creator>
				<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://caseykoons.wordpress.com/2006/11/20/quicksilver-adulation-1-itunes-is-telepathic/</guid>
		<description><![CDATA[I am not alone in saying that a Mac without Quicksilver is hardly a Mac at all. It is a program that is difficult to describe because it does so much. At heart it is an application launcher, but it &#8230; <a href="http://caseykoons.wordpress.com/2006/11/20/quicksilver-adulation-1-itunes-is-telepathic/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseykoons.wordpress.com&amp;blog=558096&amp;post=8&amp;subd=caseykoons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am not alone in saying that a Mac without <a href="http://quicksilver.blacktree.com/">Quicksilver</a> is hardly a Mac at all. It is a program that is difficult to describe because it does so much. At heart it is an application launcher, but <span>it can</span> manipulate so much more.</p>
<p>I once waxed on to a colleague who asked what Quicksilver has done for me:</p>
<blockquote><p><em>It has made <span>iTunes</span> telepathic. It has replaced <span>my dock</span> when my hands are on the mouse or keyboard. It records my <span>every thought</span> and moves it to the right container. And everyday I learn <span>about something</span> else it can do.</em></p></blockquote>
<p>The fellow immediately demanded that I qualify my comments, something neither of us had the time for. Hence, this <span>blog</span>.</p>
<p><span id="more-8"></span></p>
<p><span>For those</span> of you that don&#8217;t know what Quicksilver is, I suggest <span>looking over</span> the list below. These are great sites for getting started:</p>
<ul>
<li><a href="http://theappleblog.com">The Apple <span>Blog&#8217;s</span></a>: <a href="http://theappleblog.com/2005/02/18/quicksilver-changes-everything/" target="_blank">Quicksilver changes everything.</a></li>
<li><a href="http://www.43folders.com">Merlin&#8217;s</a>: <a href="http://www.43folders.com/2004/09/05/quicksilver-grab-a-copy-and-play-along-at-home/">Quicksilver: Grab a copy and play along at home.</a></li>
<li><a href="http://vjamry.com">Dan Dickinson&#8217;s</a>: <a href="http://vjarmy.com/archives/2004/03/quicksilver_a_b.php">A better OS in just ten minutes.</a></li>
</ul>
<p>Since most of what I&#8217;m going to be talking about are triggers, I also suggest you read Dan&#8217;s excellent <span>explanation</span> of them <a href="http://vjarmy.com/archives/2006/01/quicksilver_gold_trigger.php">here</a>.</p>
<p align="right"><strong>Today&#8217;s adulation: <span>iTunes</span> reads my mind.</strong></p>
<p>There are many <span>freeware</span> <span>apps</span> out there that allow us to <span>control iTunes</span> without going to <span>iTunes</span>. There are <span>hotkeys</span>, <span>menu bars</span>, <span>floating widgets</span>. Many of them offer<em> some</em> of the functionality Quicksilver can. But since we use Quicksilver for so much else, why not this as well? For those of you that already have Quicksilver doing some iTunes control, skip &#8220;The Basics&#8221; and move to &#8220;The Awesome.&#8221;</p>
<p><strong>The Basics</strong></p>
<p>First thing we want to do is control tracks without changing what we&#8217;re doing. For this we make a series of Quicksilver triggers. Stated briefly, anything you can do with Quicksilver can be made into a trigger, which can be mapped to a <span>hotkey</span> or mouse corner to execute automatically.</p>
<p>Quicksilver&#8217;s <span>iTunes</span> <span>module</span> comes with scripts to control <span>iTunes</span> already, so all we have to do is make triggers out of them.</p>
<p><img src="http://www.users.muohio.edu/koonscj/images/blog/nextsongtrig.png" height="344" width="204" /></p>
<p>Here we have made the script &#8220;Next Song&#8221; into a trigger. To do <span>this we</span> clicked the plus at the bottom of the Triggers window <span>in Quicksilver&#8217;s</span> preferences and at the primer-like prompt began typing&#8221;next song&#8221; until it came up. Run is the action we want so we hit &#8220;Save&#8221;</p>
<p>Next we need to give it a key mapping. We double click on the &#8220;Trigger&#8221; <span>column</span> to bring up the following shelf.</p>
<p><img src="http://www.users.muohio.edu/koonscj/images/blog/keyassign.png" height="418" width="337" /></p>
<p>We click the Hot Key field and press Command-Option-Right Arrow.</p>
<p>And that&#8217;s it! From now on, whenever we hit that combination <span>of keys</span>, <span>iTunes</span> will go to the next track. So when your writing a paper, <span>blog</span>, or otherwise engaged you don&#8217;t have to break flow in order <span>to skip</span> a track.</p>
<p>We repeat the <span>process</span> with the following scripts and key mappings.</p>
<ul>
<li>Previous Song gets Command-Option-Left Arrow</li>
<li>Play/Pause gets Command-Option-Space</li>
</ul>
<p><strong>The Even More Basic<br />
</strong><em>So long <span>GrowlTunes</span></em></p>
<p>Some of us are fans of <a href="http://growl.info">Growl</a>, a notification framework that can unobtrusively handle <span>notifications from</span> many different programs. Growl comes with a program that will <span>make Growl</span> notifications for our <span>iTunes</span> tracks. Likewise there are <span>many programs</span>,<a href="http://www.apple.com/downloads/macosx/ipod_itunes/gimmesometune.html"> <span>GimmeSomeTune</span> </a><span>for example</span>, that provide this functionality without Growl. Again though,if we&#8217;re using Quicksilver, and Growl, there&#8217;s no need for the extra program.</p>
<p><a href="undefined"><img src="http://static.flickr.com/107/302112940_f902fa608b.jpg?v=0" border="0" /></a></p>
<p>Just go to the iTunes section of the Preferences and select &#8220;Monitor Recent Tracks&#8221; and &#8220;Display Track Notifications.&#8221; You can then go to your Growl preferences and chose which growl style you want the notifications to come from.</p>
<p><strong>The Awesome</strong></p>
<p><span>Okay</span>, so we&#8217;ve got iTunes well controlled. While I&#8217;m <span>blogging</span> in <a href="http://www.flock.com">Flock</a>, I can start and stop iTunes, skip or replay tracks, and have a sexy &#8220;what&#8217;s playing&#8221; notification when the tracks change, all without break the flow of my work.</p>
<p>But you know how when you&#8217;re listening to iTunes on shuffle while you&#8217;re hard at work and hearing one random song puts you in the mood to listen to another song? What do you do? You have to break flow, switch to iTunes, find the song and play it. That&#8217;s so much mousing, most of us pass the opportunity by.</p>
<p>With one simple trigger all that can change. With the iTunes module you can Quicksilver an item called &#8220;Browse Tracks.&#8221; This is essentially a catalog item that has all of your tracks. Make the following trigger:</p>
<p><a href="undefined"><img src="http://static.flickr.com/106/302129572_6049310c8e.jpg?v=0" border="0" /></a></p>
<p>Map this to a key combo, I use Command-Option-b, and it will bring up a seemingly normal Quicksilver window that searches only your tracks. Bring it up, starting typing the first few letters of the track you feel like hearing, hit enter, and <span>BAM</span>, it&#8217;s on.</p>
<p>You can do this with other categories as well. I have a Browse Artists Trigger mapped to Command-Option-a, for when I get the urge to here someone as opposed to something.</p>
<p><strong>Even Better&#8230;</strong></p>
<p>If you&#8217;re like me, you listen to iTunes in shuffle play (sometimes limited to <span>playlists</span>) most of the time. This allows us to be like a live <span>DJs</span> while we&#8217;re listening, programing our listening as we go. With the Browse Tracks Trigger, that becomes much more dynamic and doesn&#8217;t involve breaking our attention from whatever else we&#8217;re doing. Let&#8217;s bring it up a notch.</p>
<p>Rather than listening to your library with shuffle on, get in the habit of listening to the Party Shuffle. This is the same as shuffling, except it selects the first 15 or so songs ahead of time. If you do this you&#8217;ll want to modify your Browse Track habits to use the action &#8220;Play in Party Shuffle&#8221; when you get the urge to hear a song out of the blue.</p>
<p><a href="http://flickr.com/photos/46036076@N00/302138409"><img src="http://static.flickr.com/105/302138409_b6d496204e.jpg?v=0" border="0" /></a></p>
<p>But what about if you get the urge to hear a song, but don&#8217;t want to <span>interrupt</span> the song you&#8217;re listening too? Ordinarily you&#8217;d have to keep that in your head until the song finishes. If you&#8217;re listening to the Party Shuffle though, bring up your Browse Tracks Trigger and modify the action a little bit.</p>
<p><a href="http://flickr.com/photos/46036076@N00/302134090"><img src="http://static.flickr.com/108/302134090_7340332652.jpg?v=0" border="0" /></a></p>
<p>&#8220;Play Next in Party Shuffle&#8221; adds the track to the <span>playlist</span> after the one you&#8217;re currently hearing. So you can add it and forget it!</p>
<p><strong>Concluding Thoughts</strong></p>
<p>So there you have it. With Quicksilver, iTunes can be telepathic. You&#8217;re working on something listening to your tunes on the Party shuffle. A song that doesn&#8217;t fit the mood comes on. Without breaking flow (and after a few weeks, <em>without even thinking about it</em>) you skip the track. A song plays that you really like. Without breaking flow, you play it again. A song (or something else) reminds you of a song you&#8217;d like to hear. Without breaking flow, it&#8217;s playing. You realize the perfect <span>follow up</span> to the tune you&#8217;re currently jamming to. In about the space that it takes to have that thought, you&#8217;ve slated it to play next.</p>
<p>Truly this is an example of Quicksilver&#8217;s motto <em>Act without Doing.</em></p>
<p style="text-align:right;font-size:8px;">Blogged with <a href="http://www.flock.com/blogged-with-flock" title="Flock" target="_new">Flock</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/caseykoons.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/caseykoons.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/caseykoons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/caseykoons.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/caseykoons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/caseykoons.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/caseykoons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/caseykoons.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/caseykoons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/caseykoons.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/caseykoons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/caseykoons.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/caseykoons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/caseykoons.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/caseykoons.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/caseykoons.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseykoons.wordpress.com&amp;blog=558096&amp;post=8&amp;subd=caseykoons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://caseykoons.wordpress.com/2006/11/20/quicksilver-adulation-1-itunes-is-telepathic/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bde0a55960ebbd2c16f7cb5c3695127?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caseykoons</media:title>
		</media:content>

		<media:content url="http://www.users.muohio.edu/koonscj/images/blog/nextsongtrig.png" medium="image" />

		<media:content url="http://www.users.muohio.edu/koonscj/images/blog/keyassign.png" medium="image" />

		<media:content url="http://static.flickr.com/107/302112940_f902fa608b.jpg?v=0" medium="image" />

		<media:content url="http://static.flickr.com/106/302129572_6049310c8e.jpg?v=0" medium="image" />

		<media:content url="http://static.flickr.com/105/302138409_b6d496204e.jpg?v=0" medium="image" />

		<media:content url="http://static.flickr.com/108/302134090_7340332652.jpg?v=0" medium="image" />
	</item>
		<item>
		<title>Prologue</title>
		<link>http://caseykoons.wordpress.com/2006/11/03/prologue/</link>
		<comments>http://caseykoons.wordpress.com/2006/11/03/prologue/#comments</comments>
		<pubDate>Fri, 03 Nov 2006 14:57:00 +0000</pubDate>
		<dc:creator>caseykoons</dc:creator>
				<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://caseykoons.wordpress.com/2006/11/03/prologue/</guid>
		<description><![CDATA[I figured before my first official post I should let you know about myself and my standpoint on the geeky things I plan to share. I&#8217;m a Mac Geek. I believe that computers should (and are) able to actually make &#8230; <a href="http://caseykoons.wordpress.com/2006/11/03/prologue/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseykoons.wordpress.com&amp;blog=558096&amp;post=4&amp;subd=caseykoons&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I figured before my first official post I should let you know about myself and my standpoint on the geeky things I plan to share.</p>
<p>I&#8217;m a Mac Geek. I believe that computers should (and are) able to actually make our lives easier and I strive to make my Mac that way. I&#8217;m a grad student and therefore poor poor poor, so I heavily favor free software. As a rule, excepting the <a href="http://www.omnigroup.com/applications/omnioutliner/">vitally necessary</a>, I don&#8217;t buy software. I don&#8217;t steal it either. Rather I evaluate the best freeware/opensource options and use them.</p>
<p>Once upon a time, I had a dream of setting my computer up to do <span style="font-weight:bold;">absolutely anything </span>I could imagine. I went through several programs a day and kept an external harddrive filled with &#8220;just in case&#8221; apps that I made sure were the best of the best and always up to date.</p>
<p>The hobby had become a dangerous obsession, what&#8217;s worse, it had made my computer kruffty, so it all had to go. My new philosophy is when I find a task that I want my Mac to do, I solve it with the triage below. I refrain from solving problems I may someday have.<br />
1) When encountering a task you want the computer to do, see if it&#8217;s built into Mac OS X.</p>
<blockquote><p>I had a number of freeware programs doing things that Tiger could do fine. For example I used OSXVNC when my Mac could run a VNC server all by itself. There are a lot of features and tools built-in to the OS itself, I&#8217;ve have yet to stop learning about them.</p></blockquote>
<p>2) If Tiger doesn&#8217;t already do it see if an existing tool (i.e. <a href="http://quicksilver.blacktree.com/">Quicksilver</a>) does.</p>
<blockquote><p>As you will see in my next post, there are a million programs that will control iTunes for you. It just so happens that QS is one of them, and I use QS for other things anyway. I figure it&#8217;s better to have one tool than nine, so I try to keep as many solutions &#8220;in the family&#8221; of apps that I&#8217;ve gathered, so that everyone plays nice and I don&#8217;t squander system resources.</p></blockquote>
<p>3) If 1 and 2 fail, seek out a freeware tool solution.</p>
<blockquote><p>Favoring those that are streamlined, functional and strike you as a good member of &#8220;the family.&#8221;</p></blockquote>
<p style="text-align:left;">In this way I strive to keep my hacks <span style="font-weight:bold;">productive</span>. The quest for gadgets can quickly become a profound distraction. This way, I try to make my computer a great place to work, not a never ending fix-it-up project.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/caseykoons.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/caseykoons.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/caseykoons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/caseykoons.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/caseykoons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/caseykoons.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/caseykoons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/caseykoons.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/caseykoons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/caseykoons.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/caseykoons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/caseykoons.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/caseykoons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/caseykoons.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/caseykoons.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/caseykoons.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=caseykoons.wordpress.com&amp;blog=558096&amp;post=4&amp;subd=caseykoons&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://caseykoons.wordpress.com/2006/11/03/prologue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4bde0a55960ebbd2c16f7cb5c3695127?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">caseykoons</media:title>
		</media:content>
	</item>
	</channel>
</rss>
