<?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>Call Me Goon &#187; Miscellaneous</title>
	<atom:link href="http://callmegoon.com/category/miscellaneous/feed/" rel="self" type="application/rss+xml" />
	<link>http://callmegoon.com</link>
	<description></description>
	<lastBuildDate>Wed, 12 Oct 2011 22:50:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Open or Quit all Applications at Once with AppleScript</title>
		<link>http://callmegoon.com/open-or-quit-all-applications-at-once-with-applescript/</link>
		<comments>http://callmegoon.com/open-or-quit-all-applications-at-once-with-applescript/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 20:41:19 +0000</pubDate>
		<dc:creator>Goon</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[OS X Leopard]]></category>

		<guid isPermaLink="false">http://callmegoon.com/?p=751</guid>
		<description><![CDATA[As a front end web developer, I find myself opening the same applications every morning in the same monotonous way.  I decided it would be nice if I could just open them all with one click on the mouse.  And so, I dug into a little Applescript. Here are 4 easy steps to get set [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-756" title="Script Editor" src="http://callmegoon.com/wp-content/uploads/2009/08/sripteditor.jpg" alt="Script Editor" width="143" height="125" />As a front end web developer, I find myself opening the same applications every morning in the same monotonous way.  I decided it would be nice if I could just open them all with one click on the mouse.  And so, I dug into a little Applescript.</p>
<p>Here are 4 easy steps to get set up to open all the applications you use on a daily basis with one simple click of the mouse.</p>
<p>&nbsp;</p>
<p><strong>First</strong>: navigate to <span style="color: #808080;">Applications &gt; AppleScript &gt; Script Editor</span>.  Open Script Editor.  This is where we can write and save a simple AppleScript to open all the apps that we want to open.  You will see a window popup that looks like this:</p>
<p><img class="aligncenter size-medium wp-image-753" title="AppleScript Window" src="http://callmegoon.com/wp-content/uploads/2009/08/Picture-1-247x300.png" alt="AppleScript Window" width="247" height="300" /></p>
<p><strong>Second</strong>: now we just have to write our script and it couldn&#8217;t be easier.  For each application that we want to open we write:</p>
<p><span style="color: #0000ff;"><strong>tell</strong> application <span style="color: #000000;">&#8220;Mail&#8221;</span><br />
activate<br />
<strong>end tell</strong></span></p>
<p><span style="color: #0000ff;"><strong>tell</strong> application <span style="color: #000000;">&#8220;Firefox&#8221;</span><br />
activate<br />
<strong>end tell</strong></span></p>
<p>etc. etc. for each application that we want to open.  You can hit &#8216;Run&#8217; in the toolbar to see your script in action.</p>
<p><strong>Third</strong>: Now we want to save our script so we can reuse it every morning.  Go to<span style="color: #808080;"> File &gt; Save</span> and save it as whatever name you would like, but save it to this location: <span style="color: #808080;">Your_Home_Folder/Library</span><span style="color: #808080;">/Scripts</span>.  If a &#8216;Scripts&#8217; folder does not exist you can go ahead and create one in this location.  This is where you should save all of your AppleScripts.</p>
<p><strong>Fourth</strong>: At this point, you are basically up and running, you could just navigate to your scripts folder every morning, double click the script and run it to open your applications, but that doesn&#8217;t seem very efficient.  Instead, it would be great to have a button in our main menu bar that we can click to run this script.  Good news, we can do just that!  Navigate to <span style="color: #808080;">Applications &gt; AppleScript &gt; AppleScript Utility</span> and check &#8216;<span style="color: #808080;">Show Script menu in menu bar</span>&#8216;.  </p>
<p><img class="size-full wp-image-752 alignleft" title="AppleScript menu bar" src="http://callmegoon.com/wp-content/uploads/2009/08/Picture-2.png" alt="AppleScript menu bar" width="75" height="63" /></p>
<p>Now we have a little icon that we can click on.  When we click this icon we get a drop down of all our scripts.  At the bottom you should see your script.  Simply click on it to run it!</p>
<h4>Bonus Material!</h4>
<p>It would be just as great if we could easily quit all of our open applications at the end of the day with just one click.  Good news again, that is even easier to do!</p>
<p>Open up Automator in your Applications folder.  Choose &#8216;<span style="color: #808080;">Custom</span>&#8216; as your starting (this gives you a blank canvas to start with).  Make sure &#8216;Actions&#8217; is highlighted and click on &#8216;library&#8217;.  In the column to the right of &#8216;library&#8217;, scroll down to &#8216;<span style="color: #808080;">Quit All Applications&#8217;</span>.  Click on this and drag and drop it into the empty space to the right.</p>
<p>Now all you have to do is save this script. Go to File &gt; Save and name it whatever you like, but remember to save it to <span style="color: #808080;">Your_Home_Folder/Library/Scripts</span>.  Now, when you click on the AppleScript icon in the menu bar, you will see your &#8216;quit all applications&#8217; script.  Simply click on it to quit all open applications.</p>
<p>I hope this article has been helpful and please let me know of any questions or other suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://callmegoon.com/open-or-quit-all-applications-at-once-with-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alice &#8211; Have All Your Home Essentials Delivered to Your Door!</title>
		<link>http://callmegoon.com/alice-have-all-your-home-essentials-delivered-to-your-door/</link>
		<comments>http://callmegoon.com/alice-have-all-your-home-essentials-delivered-to-your-door/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 04:32:50 +0000</pubDate>
		<dc:creator>Goon</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://callmegoon.com/?p=728</guid>
		<description><![CDATA[If you haven&#8217;t already heard, alice.com is one of the greatest, most convenient online resources I have come across.  In a nutshell, you can order most anything you would find at Target, Walgreen&#8217;s, or any similar shopping center. &#8220;Alice provides you a better way to manage all of your household essentials online. You tell Alice [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-729" title="Alice.com" src="http://callmegoon.com/wp-content/uploads/2009/08/alice.jpg" alt="Alice.com" width="143" height="125" />If you haven&#8217;t already heard, <a class="newwindow" href="http://www.alice.com/referral/70616ED9">alice.com</a> is one of the greatest, most convenient online resources I have come across.  In a nutshell, you can order most anything you would find at Target, Walgreen&#8217;s, or any similar shopping center.</p>
<blockquote><p>&#8220;Alice provides you a better way to manage all of your household essentials online. You tell Alice what you buy—choosing from great deals on 1000’s of products—and Alice goes to work. We organize all of your products, find coupons and deals for you, remind you when you might be running low, and help you order just the items you need so you can avoid that trip to the corner drugstore or the big-box store. And all this convenience comes direct to your door with free shipping included.&#8221;</p></blockquote>
<p>Not only is the design and user interface very intuitive and creative, the prices are actually very competitive and everything is shipped to your door in just 2 days.  Oh yeah, and the shipping is ABSOLUTELY FREE!  Granted, this is only going to take my laziness to the next level, but the fact that I can get everything I need for my apartment without having to walk any further than my front door, is quite exciting.</p>
<p>I just received my first order today and everything went very smoothly.  It comes in a nice little branded alice.com box.  It was packed very securely so everything I ordered was intact upon arrival.  It even came with a very nice receipt.  I know that sounds insignificant, but little organizational details like that can go a long way and only further substantiate alice.com as a very legitimate service.</p>
<p>I know you are dying to get signed up.  So just head over to<a class="newwindow" href="http://www.alice.com/referral/70616ED9"> alice.com</a>, all you need is an email address (and of course a credit card, but you don&#8217;t need that until you decide to make a purchase).  There are lots of features to check out, including: shopping by room, a spending history chart, scheduled reminders to stock up on items you may be running out of&#8230;etc, etc.  I could go on and on, but you should definitely just check it out for youself!</p>
<p><img class="alignleft size-full wp-image-730" title="Alice.com box" src="http://callmegoon.com/wp-content/uploads/2009/08/alice-1.png" alt="Alice.com box" width="200" height="226" /><br />
<img class="alignleft size-full wp-image-731" title="alice.com packaging" src="http://callmegoon.com/wp-content/uploads/2009/08/alice-2.png" alt="alice.com packaging" width="200" height="218" /><br />
<img class="alignleft size-full wp-image-736" title="alice.com packaging" src="http://callmegoon.com/wp-content/uploads/2009/08/alice-3.png" alt="alice.com packaging" width="200" height="236" /><br />
<img class="alignleft size-full wp-image-737" title="alice.com receipt" src="http://callmegoon.com/wp-content/uploads/2009/08/alice-41.png" alt="alice.com receipt" width="200" height="185" /></p>
]]></content:encoded>
			<wfw:commentRss>http://callmegoon.com/alice-have-all-your-home-essentials-delivered-to-your-door/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Force Your iPhone to Power Off or Shutdown</title>
		<link>http://callmegoon.com/force-your-iphone-to-power-off-or-shutdown/</link>
		<comments>http://callmegoon.com/force-your-iphone-to-power-off-or-shutdown/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 23:17:08 +0000</pubDate>
		<dc:creator>Goon</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://callmegoon.com/?p=643</guid>
		<description><![CDATA[This has never happened to me in all my time of owning my iPhone, but the screen completely locked up on me.  I wasn't sure what to do, but I tried holding down the power button and then the home button for a few seconds and it forced the phone to shutdown.  This doesn't seem [...]]]></description>
			<content:encoded><![CDATA[<img class="alignleft size-full wp-image-646" title="iPhone" src="http://callmegoon.com/wp-content/uploads/2009/07/iphone.jpg" alt="iPhone" width="143" height="125" />
<p>This has never happened to me in all my time of owning my iPhone, but the screen completely locked up on me.  I wasn't sure what to do, but I tried holding down the power button and then the home button for a few seconds and it forced the phone to shutdown.  This doesn't seem to be very well documented so I thought I'd share!</p>
<br /><br /><br />
<p>So, if your iPhone ever freezes or locks up:</p>
<ol>
	<li>hold down the power button</li>
	<li>press and hold the home button while still pressing the power button and after about five seconds it will power off.</li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://callmegoon.com/force-your-iphone-to-power-off-or-shutdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome, Please Call Me Goon</title>
		<link>http://callmegoon.com/welcome-please-call-me-goon/</link>
		<comments>http://callmegoon.com/welcome-please-call-me-goon/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 17:00:42 +0000</pubDate>
		<dc:creator>Goon</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://callmegoon.com/?p=3</guid>
		<description><![CDATA[As my first post, I felt obligated to establish two points. Firstly, I want to quickly introduce myself. And secondly, I would like to apologize for my lack of a customized theme. I am 24 years old and am a web production designer for a fantastic new media group in St. Louis, Paradigm New Media [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-299" title="Welcome to the Call Me Goon Blog" src="http://callmegoon.com/wp-content/uploads/2009/02/callmegoon.jpg" alt="Welcome to the Call Me Goon Blog" width="143" height="125" /></p>
<p>As my first post, I felt obligated to establish two points.  Firstly, I want to quickly introduce myself.  And secondly, I would like to apologize for my lack of a customized theme.</p>
<p>I am 24 years old and am a web production designer for a fantastic new media group in St. Louis, <a href="pnmg.com">Paradigm New Media Group</a>.  I work mainly with HTML and CSS in my role as a production designer at Paradigm, however I also love working with jQuery and am doing my best to learn more and more PHP, and am officially obsessed with WordPress (Shout out!).  There is a lot more to know about me, but that will all be included in my &#8220;About Me&#8221; section when that eventually comes in to fruition.</p>
<p>Finally, I have to apologize for my default theme usage.  It&#8217;s driving me nuts, but since we all know that &#8220;Content is King!&#8221; on the web, the more important thing is to have some useful, viable content on my site.  Therefore that is goal number 1.  After I finally get some of my posts up, I will begin working on a customized design and add some more pages to turn this into a site a web developer can actually be proud of.  I hope to demonstrate some of my work, provide easy access to online resources I use on a daily basis, and let everyone in to my world as a computer nerd.  Although I don&#8217;t actually &#8220;design&#8221; in photoshop on a daily basis in my role at Paradigm, I actually do enjoy getting my hands a little dirty and breaking into the design realm, so I will be creating a customized theme for my site very soon.  In the meantime, please bare with me and hopefully you can find some useful information on my site.</p>
]]></content:encoded>
			<wfw:commentRss>http://callmegoon.com/welcome-please-call-me-goon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

