<?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>Michael Grace &#187; MikeGrace</title>
	<atom:link href="http://geek.michaelgrace.org/author/mikegrace/feed/" rel="self" type="application/rss+xml" />
	<link>http://geek.michaelgrace.org</link>
	<description>All my geek in one place</description>
	<lastBuildDate>Wed, 21 Jul 2010 14:11:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Getting into jQuery</title>
		<link>http://geek.michaelgrace.org/2010/07/getting-into-jquery/</link>
		<comments>http://geek.michaelgrace.org/2010/07/getting-into-jquery/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 14:11:45 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1427</guid>
		<description><![CDATA[

I have a friend that is wanting to get into learning and using jQuery so I thought that I would throw some information together to help them get started.
Documentation
Love jQuery&#8217;s documentation! I love being able to go to http://api.jquery.com/ and being able to quickly search for what I am looking for. This is great for [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="Swiss Army Knife Cadet 1 by Quality &amp;amp; Style, on Flickr" href="http://www.flickr.com/photos/qualityandstyle/4567136254/"><img src="http://farm5.static.flickr.com/4038/4567136254_9c64cd1f54.jpg" alt="Swiss Army Knife Cadet 1" width="500" height="287" /></a></p>
<div style="background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: #ffffff; font: normal normal normal 13px/19px Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; font-family: Times; line-height: normal; font-size: small; padding: 0.6em; margin: 0px;">
<p>I have a friend that is wanting to get into learning and using jQuery so I thought that I would throw some information together to help them get started.</p>
<h2 style="font-size: 1.5em;">Documentation</h2>
<p>Love jQuery&#8217;s documentation! I love being able to go to <a href="http://api.jquery.com/">http://api.jquery.com/</a> and being able to quickly search for what I am looking for. This is great for when I know roughly what I want and just need a bit of information on how to do it. When I was starting out, the documentation main page was the place to be <a href="http://docs.jquery.com/">http://docs.jquery.com/</a></p>
<h2 style="font-size: 1.5em;">Including jQuery into projects</h2>
<p>So you can download the jQuery code from the site and put it up on S3 or your own hosting service and include it into your projects that you are working on but why not let Google do it for you if it makes life easier? Google has a bunch of script libraries that they host for free that are used commonly. To include jQuery in your project stress free try this<br />
<img src="https://mikegrace.s3.amazonaws.com/geek-blog/jquery-example-1/google-jquery.png" alt="" width="660" height="24" /></p>
<h2 style="font-size: 1.5em;">Document Ready</h2>
<p>One thing that can be frustrating when just starting out using jQuery is finding out the hard way of why you have to wait for the page to load before your functions can work. What??!! jQuery is a JavaScript library that extends native functionality of JavaScript and just plain makes JavaScript easier to work with. Problem is, none of your jQuery functions will work until the library is completely loaded and the structure of the html is in the browser. You can make sure your jQuery functions don&#8217;t try to do anything until the page is ready by putting your code in a document read wrapper that jQuery makes easy.</p>
<pre style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;" lang="html">$(document).ready(function() {
  // Your jQuery code goes here
});</pre>
<h2 style="font-size: 1.5em;"></h2>
<h2 style="font-size: 1.5em;">Shortcut</h2>
<p>Because using jQuery is soo awesome and you are going to be using it soo much, the shortcut &#8216;$&#8217; was used to reference jQuery. So the following two jQuery functions are the same.</p>
<pre style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;" lang="html">jQuery("#ajax img").hide();
$("#ajax img").hide();</pre>
<h2 style="font-size: 1.5em;"></h2>
<h2 style="font-size: 1.5em;">Help</h2>
<p>Just remember when you get frustrated or you need help understanding something with jQuery do a Google search for what your having trouble with. If that doesn&#8217;t get you what you are looking for, ask a friend! There are many who have loved using jQuery and would love to help a friend out. Also, don&#8217;t forget the ever awesome <a href="http://stackoverflow.com/ ">http://stackoverflow.com/ </a>which is a great place to find, ask, and answer programming related stuff! jQuery included.</p>
<h2>Example</h2>
<p>Here is a full and simple working example that I created just to show off a bit of the fun power of jQuery. Again, jQuery documentation rocks and has many examples but I thought this would be nice to pull together everything I had talked about here.</p>
<p><a href="https://mikegrace.s3.amazonaws.com/geek-blog/jquery-example-1/jquery-example-1.html">https://mikegrace.s3.amazonaws.com/geek-blog/jquery-example-1/jquery-example-1.html</a></p>
<p>photo by <a href="http://www.flickr.com/photos/qualityandstyle/4567136254/">Quality &amp; Style</a></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/07/getting-into-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TextMate Bundle For Committing KRL</title>
		<link>http://geek.michaelgrace.org/2010/06/textmate-bundle-for-committing-krl/</link>
		<comments>http://geek.michaelgrace.org/2010/06/textmate-bundle-for-committing-krl/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 07:14:52 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[TextMate]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1417</guid>
		<description><![CDATA[I created a simple TextMate bundle that maps cmd + k to saving the app code and then committing the app to the Kynetx servers.
You can view and download the bundle on my github at http://gist.github.com/437379
]]></description>
			<content:encoded><![CDATA[<div class="wp-caption aligncenter" style="width: 333px"><a href="http://gist.github.com/437379"><img title="TextMate KRL Commit Bundle" src="https://mikegrace.s3.amazonaws.com/geek-blog/textmate-krl-commit-bundle.jpg" alt="TextMate KRL Commit Bundle" width="323" height="150" /></a><p class="wp-caption-text">TextMate KRL Commit Bundle</p></div>
<p>I created a simple TextMate bundle that maps cmd + k to saving the app code and then committing the app to the Kynetx servers.</p>
<p>You can view and download the bundle on my github at <a href="http://gist.github.com/437379">http://gist.github.com/437379</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/06/textmate-bundle-for-committing-krl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Growl Notifications for Kynetx KRL Command Line Tool</title>
		<link>http://geek.michaelgrace.org/2010/06/growl-notifications-for-kynetx-krl-command-line-tool/</link>
		<comments>http://geek.michaelgrace.org/2010/06/growl-notifications-for-kynetx-krl-command-line-tool/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 06:42:04 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1409</guid>
		<description><![CDATA[I have been using the Kynetx KRL command line tool for several weeks now and it has made my development of Kynetx apps much easier. The only problem that I have had as I have been using the command line tool is that once I commit my app I have to wait a few seconds [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption aligncenter" style="width: 406px"><a href="http://gist.github.com/437309"><img title="KRL Commit Growl Notification" src="https://mikegrace.s3.amazonaws.com/geek-blog/krl-commit-growl-notification.jpg" alt="KRL Commit Growl Notification" width="396" height="90" /></a><p class="wp-caption-text">KRL Commit Growl Notification</p></div>
<p>I have been using the <a href="http://github.com/kynetx/krl">Kynetx KRL command line tool</a> for several weeks now and it has made my development of Kynetx apps much easier. The only problem that I have had as I have been using the command line tool is that once I commit my app I have to wait a few seconds before being able to run the new version in my browser. Until now I have been doing a lot of command + tab switching between windows to check to see if it has finished saving.</p>
<p>I have now created a clean solution that allows me to know when the version has finished being committed to the Kynetx servers and had one unexpected benefit.</p>
<p>I started out by creating a simple bash alias that would pipe the output from the &#8216;krl commit&#8217; command to a growl notification</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Growl notify after krl commit is done</span>
<span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">krlc</span>=<span style="color: #ff0000;">&quot;krl commit | growlnotify -t &quot;</span>KRL<span style="color: #ff0000;">&quot; --image /Users/mikegrace/src/kynetx-x.png;&quot;</span></pre></div></div>

<p>I quickly realized that this wouldn&#8217;t work for me because piping the console to the growl notification means that the commit output wouldn&#8217;t be visible on the console.  I need to be able to see on the console what the output was in case there were errors or the latest saved version so I started looking for a better solution and came up with <a href="http://gist.github.com/437309">this</a></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Use growlnotify to alert user of commit status</span>
krl<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> $<span style="color: #000000; font-weight: bold;">@</span> == <span style="color: #ff0000;">&quot;commit&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
  <span style="color: #7a0874; font-weight: bold;">command</span> krl commit <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> status.txt <span style="color: #000000; font-weight: bold;">|</span> growlnotify <span style="color: #660033;">-t</span> <span style="color: #ff0000;">&quot;KRL&quot;</span> <span style="color: #660033;">--image</span> <span style="color: #000000; font-weight: bold;">/</span>kynetx-x.png;
  <span style="color: #c20cb9; font-weight: bold;">cat</span> status.txt;
 <span style="color: #000000; font-weight: bold;">else</span>
  <span style="color: #7a0874; font-weight: bold;">command</span> krl $<span style="color: #000000; font-weight: bold;">@</span>
 <span style="color: #000000; font-weight: bold;">fi</span>;
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>I created a function in my bash profile that runs when I run the krl command. When it sees me using the commit parameter it will do a krl commit and then tee that output to a status.txt file and pipe it to the growl notification. To have the output also show up on the console I cat the status.txt file back to the console. The unforeseen benefit here is that it is now really easy to share error output with others because it can be found in the status.txt file in the app folder.</p>
<p>I also created a bash script, <a href="http://gist.github.com/437280">available on my github</a>, that takes care of the installation for you. I created this script purely for fun and I had a blast doing it!</p>
<p>I had a really great time doing all of this and learned a lot. There is a lot of power in being able to manipulate command line tools to make tasks easier.</p>
<p>As Bigweld would say, &#8220;See a need, fill a need&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/06/growl-notifications-for-kynetx-krl-command-line-tool/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How Long Does Google Latitude Keep My Location History?</title>
		<link>http://geek.michaelgrace.org/2010/05/how-long-does-google-latitude-keep-my-location-history/</link>
		<comments>http://geek.michaelgrace.org/2010/05/how-long-does-google-latitude-keep-my-location-history/#comments</comments>
		<pubDate>Thu, 20 May 2010 15:42:25 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Latitude]]></category>
		<category><![CDATA[Location-Sharing]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1404</guid>
		<description><![CDATA[
From http://www.google.com/support/mobile/bin/answer.py?hl=en&#038;answer=163845
Once you enable Location History, it stores your location history for as long as it&#8217;s enabled. You may disable Location History at any time to stop storing your locations moving forward. You can also delete your past history entirely, by date range, or by individual location.
]]></description>
			<content:encoded><![CDATA[<p><img src="https://mikegrace.s3.amazonaws.com/geek-blog/hard-drive.jpg" alt="Hard Drive" /></p>
<p>From <a href="http://www.google.com/support/mobile/bin/answer.py?hl=en&#038;answer=163845">http://www.google.com/support/mobile/bin/answer.py?hl=en&#038;answer=163845</a></p>
<blockquote><p>Once you enable Location History, it stores your location history for as long as it&#8217;s enabled. You may disable Location History at any time to stop storing your locations moving forward. You can also delete your past history entirely, by date range, or by individual location.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/05/how-long-does-google-latitude-keep-my-location-history/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://geek.michaelgrace.org/2010/05/1400/</link>
		<comments>http://geek.michaelgrace.org/2010/05/1400/#comments</comments>
		<pubDate>Sun, 16 May 2010 00:55:17 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1400</guid>
		<description><![CDATA[
When I recently did a fresh install of OS X I used this tutorial on how to move my Mac&#8217;s Mail.app to a new computer and it worked without a hitch. Nice! : )
]]></description>
			<content:encoded><![CDATA[<p><img src="https://mikegrace.s3.amazonaws.com/geek-blog/mac-mail.png" alt="mac mail app" /><br />
When I recently did a fresh install of OS X I used <a href="http://www.ehow.com/how_2269704_apple-mail-settings-email-mac.html">this tutorial</a> on how to move my Mac&#8217;s Mail.app to a new computer and it worked without a hitch. Nice! : )</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/05/1400/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Etherpad fades away</title>
		<link>http://geek.michaelgrace.org/2010/05/etherpad-fades-away/</link>
		<comments>http://geek.michaelgrace.org/2010/05/etherpad-fades-away/#comments</comments>
		<pubDate>Tue, 04 May 2010 19:09:13 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[etherpad]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1395</guid>
		<description><![CDATA[
I was a huge fan for Etherpad and I am sad to see it go. Maybe someday I will have the time and reason to set up my own etherpad server since the code has been opensourced. You too can get the code and set up an etherpad server.
Etherpad code http://code.google.com/p/etherpad/
Setup Instructions http://code.google.com/p/etherpad/wiki/Instructions
]]></description>
			<content:encoded><![CDATA[<p><img src="https://mikegrace.s3.amazonaws.com/geek-blog/etherpad.png" alt="Etherpad" /><br />
I was a huge fan for Etherpad and I am sad to see it go. Maybe someday I will have the time and reason to set up my own etherpad server since the code has been opensourced. You too can get the code and set up an etherpad server.</p>
<p>Etherpad code <a href="http://code.google.com/p/etherpad/">http://code.google.com/p/etherpad/</a></p>
<p>Setup Instructions <a href="http://code.google.com/p/etherpad/wiki/Instructions">http://code.google.com/p/etherpad/wiki/Instructions</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/05/etherpad-fades-away/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>01 Setting up your Kynetx App</title>
		<link>http://geek.michaelgrace.org/2010/04/01-setting-up-your-kynetx-app/</link>
		<comments>http://geek.michaelgrace.org/2010/04/01-setting-up-your-kynetx-app/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 14:21:27 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Kynetx Tuts]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1384</guid>
		<description><![CDATA[So you want to take over the world with your great Kynetx app idea. Awesome! This video will help you get started on the right foot and avoid some common mistakes that people make when creating a Kynetx app.

If you would like to watch more of these Kynetx Tuts, you can view them at http://geek.michaelgrace.org/tag/kynetx-tuts/
]]></description>
			<content:encoded><![CDATA[<p>So you want to take over the world with your great Kynetx app idea. Awesome! This video will help you get started on the right foot and avoid some common mistakes that people make when creating a Kynetx app.</p>
<p><a href="http://mikegrace.smugmug.com/Computers/Kynetx-Tuts/12012815_Ky5Ui#852327675_uUhqH-A-LB"><img src="http://mikegrace.smugmug.com/Computers/Kynetx-Tuts/01-setting-up-your-app/852327675_uUhqH-M.jpg"></a></p>
<p>If you would like to watch more of these Kynetx Tuts, you can view them at <a href="http://geek.michaelgrace.org/tag/kynetx-tuts/">http://geek.michaelgrace.org/tag/kynetx-tuts/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/04/01-setting-up-your-kynetx-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The adventures of a box maker</title>
		<link>http://geek.michaelgrace.org/2010/03/the-adventures-of-a-box-maker/</link>
		<comments>http://geek.michaelgrace.org/2010/03/the-adventures-of-a-box-maker/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 15:12:36 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1382</guid>
		<description><![CDATA[I had a great time this last weekend working on a project with my wife for one of her classes. We took pictures of her making a box and put it together in a fun short video. I learned a lot and wish I had time to do it again because I think there are [...]]]></description>
			<content:encoded><![CDATA[<p>I had a great time this last weekend working on a project with my wife for one of her classes. We took pictures of her making a box and put it together in a fun short video. I learned a lot and wish I had time to do it again because I think there are a lot of things I could have done better. Original at <a href="http://vimeo.com/10545814">http://vimeo.com/10545814</a></p>
<p><object width="600" height="450"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=10545814&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=10545814&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="600" height="450"></embed></object>
<p><a href="http://vimeo.com/10545814">The adventures of a box maker</a> from <a href="http://vimeo.com/user2000342">Mike Grace</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Cassie Grace showing off her box making skills.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/03/the-adventures-of-a-box-maker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chrome extensions I&#8217;m in love with</title>
		<link>http://geek.michaelgrace.org/2010/03/chrome-extensions-im-in-love-with/</link>
		<comments>http://geek.michaelgrace.org/2010/03/chrome-extensions-im-in-love-with/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 16:30:16 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1374</guid>
		<description><![CDATA[Here is my short list of Chrome extensions I&#8217;m in love with.
1Password
goo.gle URL shortener
Delicious Tools
Google Voice (by Google)
Web Dveloper
RSS Subscription Extension (by Google) via @snay2
MeasureIt
Please, PLEASE! let me know of other &#8220;can&#8217;t live without extensions for Chrome.
]]></description>
			<content:encoded><![CDATA[<p>Here is my short list of Chrome extensions I&#8217;m in love with.</p>
<p><a href="http://blog.agile.ws/post/450843073/a-1password-alpha-for-chromium-is-here">1Password</a></p>
<p><a href="https://chrome.google.com/extensions/detail/iblijlcdoidgdpfknkckljiocdbnlagk">goo.gle URL shortener</a></p>
<p><a href="https://chrome.google.com/extensions/detail/gclkcflnjahgejhappicbhcpllkpakej">Delicious Tools</a></p>
<p><a href="https://chrome.google.com/extensions/detail/kcnhkahnjcbndmmehfkdnkjomaanaooo">Google Voice (by Google)</a></p>
<p><a href="https://chrome.google.com/extensions/detail/bfbameneiokkgbdmiekhjnmfkcnldhhm">Web Dveloper</a></p>
<p><a href="https://chrome.google.com/extensions/detail/nlbjncdgjeocebhnmkbbbdekmmmcbfjd?hl=en-US">RSS Subscription Extension (by Google)</a> via <a href="http://twitter.com/snay2">@snay2</a></p>
<p><a href="https://chrome.google.com/extensions/detail/aonjhmdcgbgikgjapjckfkefpphjpgma">MeasureIt</a></p>
<p>Please, PLEASE! let me know of other &#8220;can&#8217;t live without extensions for Chrome.</p>
<div class="wp-caption aligncenter" style="width: 522px"><img title="Google Chrome" src="https://mikegrace.s3.amazonaws.com/geek-blog/chrome.png" alt="Google Chrome" width="512" height="512" /><p class="wp-caption-text">Google Chrome</p></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/03/chrome-extensions-im-in-love-with/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Kynetx Friday Lunches &#8211; Free &amp; Every Friday!</title>
		<link>http://geek.michaelgrace.org/2010/03/kynetx-friday-lunches-free-every-friday/</link>
		<comments>http://geek.michaelgrace.org/2010/03/kynetx-friday-lunches-free-every-friday/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 16:01:53 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Kynetx]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1369</guid>
		<description><![CDATA[We share every friday from 11:30 &#8211; 1:30, here at Kynetx, our excitement about the Kynetx platform and free food!
If you&#8230;

 want to learn about what it is that Kynetx does
wonder why we say, &#8220;This changes everything&#8221;
want free food
want to geek out with cool people
learn how to program the web
are looking for an internship or [...]]]></description>
			<content:encoded><![CDATA[<p style="padding-top: 0px; padding-right: 0px; padding-bottom: 27px; padding-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; margin: 0px; border: 0px initial initial;">We share every friday from 11:30 &#8211; 1:30, here at Kynetx, our excitement about the Kynetx platform and free food!</p>
<p style="padding-top: 0px; padding-right: 0px; padding-bottom: 27px; padding-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; margin: 0px; border: 0px initial initial;">If you&#8230;</p>
<ul>
<li><span style="font-size: 13px;"> want to learn about what it is that Kynetx does</span></li>
<li><span style="font-size: 13px;">wonder why we say, &#8220;This changes everything&#8221;</span></li>
<li><span style="font-size: 13px;">want free food</span></li>
<li><span style="font-size: 13px;">want to geek out with cool people</span></li>
<li><span style="font-size: 13px;">learn how to program the web</span></li>
<li><span style="font-size: 13px;">are looking for an internship or part time job</span></li>
<li><span style="font-size: 13px;">want to be cool</span></li>
</ul>
<p style="padding-top: 0px; padding-right: 0px; padding-bottom: 27px; padding-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; margin: 0px; border: 0px initial initial;">&#8230; then we highly encourage you to come join us!</p>
<p style="padding-top: 0px; padding-right: 0px; padding-bottom: 27px; padding-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; margin: 0px; border: 0px initial initial;">We are located at 343 East 4th North #103 Rexburg, ID 83440</p>
<p style="padding-top: 0px; padding-right: 0px; padding-bottom: 27px; padding-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; margin: 0px; border: 0px initial initial;"><a style="outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; color: #208bab; text-decoration: none; padding: 0px; margin: 0px; border: 0px initial initial;" href="http://maps.google.com/maps?sourceid=chrome&amp;q=343%20East%204th%20North%20%23103%20Rexburg,%20ID%2083440&amp;um=1&amp;ie=UTF-8&amp;sa=N&amp;hl=en&amp;tab=wl"><img style="outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;" src="https://mikegrace.s3.amazonaws.com/geek-blog/map-to-rexburg-kynetx-office.jpg" alt="" width="500" height="495" /></a></p>
<p style="padding-top: 0px; padding-right: 0px; padding-bottom: 27px; padding-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; margin: 0px; border: 0px initial initial;">Google map -&gt; <a style="outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; color: #208bab; text-decoration: none; padding: 0px; margin: 0px; border: 0px initial initial;" href="http://goo.gl/dE7Y">http://goo.gl/dE7Y</a></p>
<p style="padding-top: 0px; padding-right: 0px; padding-bottom: 27px; padding-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; margin: 0px; border: 0px initial initial;">Google street view -&gt; <a style="outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; color: #208bab; text-decoration: none; padding: 0px; margin: 0px; border: 0px initial initial;" href="http://goo.gl/Ixao">http://goo.gl/Ixao</a></p>
<p style="padding-top: 0px; padding-right: 0px; padding-bottom: 27px; padding-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; margin: 0px; border: 0px initial initial;">The party will be from 11:30 – 1:30 and we hope you will come. Let us know via <a style="outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; color: #208bab; text-decoration: none; padding: 0px; margin: 0px; border: 0px initial initial;" href="http://twitter.com/MikeGrace">Twitter</a>, <a style="outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; color: #208bab; text-decoration: none; padding: 0px; margin: 0px; border: 0px initial initial;" href="http://www.google.com/profiles/themikegrace/contactme">Email</a>, or <a style="outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 20px; font-family: inherit; vertical-align: baseline; color: #208bab; text-decoration: none; padding: 0px; margin: 0px; border: 0px initial initial;" href="http://www.google.com/profiles/themikegrace">Buzz</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/03/kynetx-friday-lunches-free-every-friday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emacs &amp; Vim on Linux</title>
		<link>http://geek.michaelgrace.org/2010/03/emacs-vim-on-linux/</link>
		<comments>http://geek.michaelgrace.org/2010/03/emacs-vim-on-linux/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 04:53:31 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Kynetx]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1367</guid>
		<description><![CDATA[What is the best way to run Emacs &#038; or Vim on Linux?
Is it best to just run them in the Terminal or is there something like MacVim that improves the experience?
]]></description>
			<content:encoded><![CDATA[<p>What is the best way to run Emacs &#038; or Vim on Linux?</p>
<p>Is it best to just run them in the Terminal or is there something like MacVim that improves the experience?</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/03/emacs-vim-on-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What Has Happened To America?</title>
		<link>http://geek.michaelgrace.org/2010/03/what-has-happened-to-america/</link>
		<comments>http://geek.michaelgrace.org/2010/03/what-has-happened-to-america/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 22:52:59 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Government]]></category>
		<category><![CDATA[Healthcare]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1355</guid>
		<description><![CDATA[Mitt Romney put it best when he said,
America has just witnessed an unconscionable abuse of power. President Obama has betrayed his oath to the nation — rather than bringing us together, ushering in a new kind of politics, and rising above raw partisanship, he has succumbed to the lowest denominator of incumbent power: justifying the [...]]]></description>
			<content:encoded><![CDATA[<p>Mitt Romney put it best when he said,</p>
<blockquote><p>America has just witnessed an unconscionable abuse of power. President Obama has betrayed his oath to the nation — rather than bringing us together, ushering in a new kind of politics, and rising above raw partisanship, he has succumbed to the lowest denominator of incumbent power: justifying the means by extolling the ends. He promised better; we deserved better.</p>
<p>He calls his accomplishment “historic” — in this he is correct, although not for the reason he intends. Rather, it is an historic usurpation of the legislative process — he unleashed the nuclear option, enlisted not a single Republican vote in either chamber, bribed reluctant members of his own party, paid-off his union backers, scapegoated insurers, and justified his act with patently fraudulent accounting. What Barack Obamahas ushered into the American political landscape is not good for our country; in the words of an ancient maxim, “what starts twisted, ends twisted.”</p>
<p>His health-care bill is unhealthy for America. It raises taxes, slashes the more private side of Medicare, installs price controls, and puts a new federal bureaucracy in charge of health care. It will create a new entitlement even as the ones we already have are bankrupt. For these reasons and more, the act should be repealed. That campaign begins today.</p>
<p>— Mitt Romney is the former governor of Massachusetts and author of No Apology.</p>
<p>03/22 09:24 AM</p></blockquote>
<p>Original at <a href="http://www.freestrongamerica.com/press/item/statement_from_governor_romney_on_house_passage_of_the_health_care_bill_">http://www.freestrongamerica.com/press/item/&#8230;</a></p>
<p>Found at <a href="http://corner.nationalreview.com/post/?q=NzgyMzA1NWUwNjA5OTg2ZTUzMTliYzQyOTM1ZmIzNTI">http://corner.nationalreview.com/post/?q=NzgyMzA1NWUwNjA5OTg2ZTUzMTliYzQyOTM1ZmIzNTI</a><br />
on March 22, 2010 @ 16:30</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/03/what-has-happened-to-america/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>President Obama Fails to Answer Questions About Healthcare Reform</title>
		<link>http://geek.michaelgrace.org/2010/03/president-obama-fails-to-answer-questions-about-healthcare-reform/</link>
		<comments>http://geek.michaelgrace.org/2010/03/president-obama-fails-to-answer-questions-about-healthcare-reform/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 16:11:00 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Politics]]></category>
		<category><![CDATA[Healthcare]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1341</guid>
		<description><![CDATA[I was shocked at how well our president answered almost all of these interview questions without actually answering them. I am very concerned about the future of this beloved country.

Watch the latest news video at video.foxnews.com
Original Video
Update 03/23/2010
A friend tweeted a blog post by Thomas P.M. Barnett titled The too-smart, too-controlled presidency.
I thought that it [...]]]></description>
			<content:encoded><![CDATA[<p>I was shocked at how well our president answered almost all of these interview questions without actually answering them. I am very concerned about the future of this beloved country.</p>
<p><script src="http://video.foxnews.com/v/embed.js?id=4113576&amp;w=400&amp;h=249" type="text/javascript"></script></p>
<p><noscript>Watch the latest news video at <a href="http://video.foxnews.com/">video.foxnews.com</a></noscript></p>
<p><a href="http://video.foxnews.com/v/4113576/fox-news-exclusive-president-obama">Original Video</a></p>
<h4>Update 03/23/2010</h4>
<p>A friend tweeted a blog post by <a href="http://thomaspmbarnett.com/about/index.htm">Thomas P.M. Barnett</a> titled <a href="http://thomaspmbarnett.com/weblog/2010/03/the_too-smart_too-controlled_p.html">The too-smart, too-controlled presidency</a>.</p>
<p>I thought that it voiced what I have been feeling and thinking well so I encourage you to read it but here is a quote from the post from Peggy Noonan of the Wall Street Journal on March 13-14 2010 that I found most interesting.</p>
<blockquote><p>Barack Obama, who interestingly gets the best treatment in the book&#8211;protect those sources!&#8211;is not immune [to criticism]. He is smart, &#8220;and he not only knew it but wanted to make sure everyone else knew it.&#8221; In meetings with aides, he controlled the conversation by interrupting whoever was talking. He is boastful, gaudily confident. Before his 2004 convention speech, a reporter asked him if he was nervous: &#8220;I&#8217;m LeBron, baby,&#8221; he answers. &#8220;I got some game.&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/03/president-obama-fails-to-answer-questions-about-healthcare-reform/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why I love keyboard shortcuts</title>
		<link>http://geek.michaelgrace.org/2010/03/why-i-love-keyboard-shortcuts/</link>
		<comments>http://geek.michaelgrace.org/2010/03/why-i-love-keyboard-shortcuts/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 06:37:38 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Mouse]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1321</guid>
		<description><![CDATA[WARNING: Learning and using keyboard shortcuts will drastically impact your relationship with your mouse and greatly improve your experience on a computer. Proceed with caution. : )
Some look at me strange when I get excited about learning a new keyboard shortcut but there is a reason for my crazed excitement.

I love keyboard shortcuts for several [...]]]></description>
			<content:encoded><![CDATA[<p>WARNING: Learning and using keyboard shortcuts will drastically impact your relationship with your mouse and greatly improve your experience on a computer. Proceed with caution. : )</p>
<p>Some look at me strange when I get excited about learning a new keyboard shortcut but there is a reason for my crazed excitement.</p>
<p><img class="alignnone" src="https://mikegrace.s3.amazonaws.com/geek-blog/hand_smile.jpg" alt="" width="250" height="165" /></p>
<h2>I love keyboard shortcuts for several reasons.</h2>
<ul>
<li>I can get work done <strong>faster</strong></li>
<li><strong>Faster</strong> than just using a mouse</li>
<li>More <strong>efficient</strong> than using a mouse in most cases</li>
<li><strong>Easier</strong> on my hands</li>
<li><strong>Don&#8217;t have to find</strong> home row again after task like with mouse</li>
<li><strong>Cool</strong> Geek factor</li>
<li>Did I mention it&#8217;s <strong>faster</strong> than just using a mouse?</li>
</ul>
<h2>Proof of benefits</h2>
<p>To illustrate the benefits of learning and using keyboard shortcuts I present to you 2 images with lines representing mouse movement over a period of time.</p>
<p>Mouse usage illustrated by <a href="http://www.flickr.com/photos/anatoliy_zenkov/">Anatoly Zenkov</a> over a 3 hour period of programming using Eclipse.</p>
<div class="wp-caption alignnone" style="width: 443px"><img title="3 hours programming on Eclipse" src="https://mikegrace.s3.amazonaws.com/geek-blog/mouse-tracks-3hours.jpg" alt="3 hours programming on Eclipse" width="433" height="270" /><p class="wp-caption-text">3 hours programming on Eclipse</p></div>
<p>Mouse usage illustrated by myself over a 7 hour work day of programming using TextMate.</p>
<div class="wp-caption alignnone" style="width: 443px"><img title="7 hours of programming using TextMate" src="https://mikegrace.s3.amazonaws.com/geek-blog/mouse-tracks-7hours-shortcuts.jpg" alt="7 hours of programming using TextMate" width="433" height="270" /><p class="wp-caption-text">7 hours of programming using TextMate</p></div>
<p>There are keyboard shortcuts for Eclipse, but I feel that it is very mouse centric in its layout and functionality.</p>
<div class="wp-caption alignnone" style="width: 426px"><img title="Eclipse IDE" src="https://mikegrace.s3.amazonaws.com/geek-blog/eclipse.jpg" alt="Eclipse IDE" width="416" height="333" /><p class="wp-caption-text">Eclipse IDE</p></div>
<p>Contrast that with TextMate that has a very simple and plain interface that relies on many shortcuts for its functionality.</p>
<div class="wp-caption alignnone" style="width: 426px"><img title="TextMate" src="https://mikegrace.s3.amazonaws.com/geek-blog/textmate.png" alt="TextMate" width="416" height="335" /><p class="wp-caption-text">TextMate</p></div>
<p>TextMate does have a tray for a project file structures but I have not needed it since I now use keyboard shortcuts to navigate to different files and sections within each file. That rocks!</p>
<div class="wp-caption alignnone" style="width: 116px"><img title="TextMate Project File Tray" src="https://mikegrace.s3.amazonaws.com/geek-blog/textmate-tray.png" alt="TextMate Project File Tray" width="106" height="250" /><p class="wp-caption-text">TextMate Project File Tray</p></div>
<p>I show and hide this as I need it with a keyboard shortcut.</p>
<div class="wp-caption alignnone" style="width: 343px"><img title="TextMate Go To File Shortcut Window" src="https://mikegrace.s3.amazonaws.com/geek-blog/textmate-go-to-file.png" alt="TextMate Go To File Shortcut Window" width="333" height="247" /><p class="wp-caption-text">TextMate Go To File Shortcut Window</p></div>
<p>I use this keyboard shortcut to navigate to and pull up the files that I want ALL the time. HUGE time saver!</p>
<div class="wp-caption alignnone" style="width: 260px"><img title="TextMate Go To Symbol Shortcut Window" src="https://mikegrace.s3.amazonaws.com/geek-blog/textmate-go-to-symbol.png" alt="TextMate Go To Symbol Shortcut Window" width="250" height="275" /><p class="wp-caption-text">TextMate Go To Symbol Shortcut Window</p></div>
<p>This lets me jump to specific sections of a document. Use it all the time now that I know about it. : )</p>
<p>Keyboard shortcuts are EVERYWHERE! I&#8217;ll even be soo bold as to say that applications that don&#8217;t have good keyboard shortcuts are not well thought out or well designed. (one of my biggest pet peves with Adobe Air applications!) So how do you learn them all? You don&#8217;t! You don&#8217;t really need to know them all. You should know and use the ones that will give you the most benefit. </p>
<p>How can I become a keyboard shortcut master?</p>
<p>Learn as you go. I try as best as I can to only use menu items or buttons once or twice if there is an associated keyboard shortcut. If I go to a menu or a button and it shows that there is a keyboard shortcut to do the same thing, I don&#8217;t use the menu or the button and use the keyboard shortcut right then and there and try to remember it the next time. It only takes a few times of doing this and the keyboard shortcut will start to become habit. I also learn a lot from others. Many people post their favorite keyboard shortcuts on blogs for the applications they use and watching and asking pros how they do it is great and they love being asked about what keyboard shortcuts they are using. </p>
<p>Read the users manual on the software or read the help. No kidding! I have found some of my favorite keyboard shortcuts by finding the section on keyboard shortcuts in the help menu or in the online how to manual.</p>
<p>Give your mouse the cold shoulder. If you decide you are going to use the mouse as little as possible, you are going to start making a bigger effort to learn keyboard shortcuts. Use them for everything you can and even make a little cheat sheet of your favorite shortcuts to make it easy to remember&#8230; even the pros do it. </p>
<p>Conclusion:<br />
I have benefited greatly from learning keyboard shortcuts and I think you would also. I encourage everyone to learn more keyboard shortcuts to increase the effectiveness and productivity on the computer. I also recognize that the keyboard is not a replacement for the mouse. The mouse is a great tool for interfacing with computers but only reaches its full potential when coupled with great keyboard shortcuts and good interface design.</p>
<p>If you are interested in the software that I used to track my mouse usage, it is called IOGraph and can be found at <a href="http://iographica.com/">http://iographica.com/</a></p>
<div><a rel="cc:attributionURL" href="http://www.flickr.com/photos/dotbenjamin/">http://www.flickr.com/photos/dotbenjamin/</a> / <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/03/why-i-love-keyboard-shortcuts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google Chrome&#8230; it just is!</title>
		<link>http://geek.michaelgrace.org/2010/03/google-chrome-it-just-is/</link>
		<comments>http://geek.michaelgrace.org/2010/03/google-chrome-it-just-is/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 04:52:40 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1313</guid>
		<description><![CDATA[Synopsis: 

I think Google Chrome rocks.
So what?
Who cares about my opinion?
Proof that I&#8217;m right.
&#8230; thanks for telling me about Google Chrome&#8230; WAY better than IE&#8230;
:-)


I think GOOGLE CHROME ROCKS!
I have been a loong time fan of Mozilla&#8217;s Firefox web browser, and for many reasons. Firefox has extensions, is clean, standards compliant, has firebug, and a [...]]]></description>
			<content:encoded><![CDATA[<p>Synopsis: </p>
<ul>
<li>I think Google Chrome rocks.</li>
<li>So what?</li>
<li>Who cares about my opinion?</li>
<li>Proof that I&#8217;m right.</li>
<li>&#8230; thanks for telling me about Google Chrome&#8230; WAY better than IE&#8230;</li>
<li>:-)</li>
</ul>
<p><img src="https://mikegrace.s3.amazonaws.com/geek-blog/google-chrome.png" alt="Google Chrome Icon"/></p>
<h3>I think GOOGLE CHROME ROCKS!</h3>
<p>I have been a loong time fan of Mozilla&#8217;s Firefox web browser, and for many reasons. Firefox has extensions, is clean, standards compliant, has firebug, and a fun logo. I recently started trying out Google&#8217;s Chrome because most of my geek friends were raving about it. &#8230; and WOW! Talk about fast and clean and well done! I am very impressed with Chrome. Some would ask, &#8220;why not just use Safari since they are both about the same?&#8221; While they do use the some open source rendering engine, they offer completely different user experiences. Chrome has done browser extensions right, and by right I mean that it&#8217;s easy for both the developer and consumer. No need for restarting the browser after instal, building extensions is the simplest out of IE (shudder)/ Firefox/ Safari, and no toolbars allowed! I have also really enjoyed the way the interface is designed. Chrome has stayed clean, simple, and effective for all of my browsing and development needs.</p>
<h3>SOOOO WHAT!?!</h3>
<h3>WHO CARES ABOUT MY OPINION?!</h3>
<p>I admit that I am not the average user. I am a geek that lives in a text editor and in the browser so my opinion is greatly skewed and it is even hard for me to trust that my experience will be similar to those who aren&#8217;t freaks of the geek.</p>
<h3>HERE&#8217;S THE PROOF!</h3>
<p>At sunday dinner, my niece was complaining about their &#8220;internet&#8221; crashing and freezing while working on the computer. &#8220;Who&#8217;s your internet provider?&#8221;, I asked. &#8220;NO. No. no. The internet stops working and crashes&#8221; she replied while drawing a computer screen sized box with her pointer fingers. Saving the fact that the browser was being confused for the internet for a later blog post, I told her that IE was just a way to display the contents of the web and that she should download Google Chrome and use that instead.</p>
<p>I didn&#8217;t explain where to download it, how to use it, or why it would be better. I really didn&#8217;t expect her to find it, install it, and actually use it but I was wrong. Just one day later, today, I got a facebook notice from her with a cute little note that not only blew my socks off, but also confirmed my thoughts on why Chrome has been growing in market share.</p>
<blockquote><p>&#8220;Hey thanks for telling me about Google chrome&#8230;WAY better than internet explorer :]<br />
Google! :]&#8221;</p></blockquote>
<p>That little message made my day and may be a big step in my niece becoming a geek.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/03/google-chrome-it-just-is/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>StackOverflow Feast</title>
		<link>http://geek.michaelgrace.org/2010/03/stackoverflow-feast/</link>
		<comments>http://geek.michaelgrace.org/2010/03/stackoverflow-feast/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 07:35:27 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1304</guid>
		<description><![CDATA[3 Months ago I built a Kynetx application that annotates search results that point to the StackOverflow site.

I&#8217;m very excited about releasing the next version of my Kynetx application that utilizes a recently released Kynetx action, percolation. This action digs deep into the bowels of the dark search engine pits and pulls out relevant search [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://geek.michaelgrace.org/2009/11/the-context-of-a-stackoverflow-junkie/">3 Months ago</a> I built a Kynetx application that annotates search results that point to the <a href="http://stackoverflow.com/">StackOverflow</a> site.</p>
<p><img class="aligncenter" src="https://mikegrace.s3.amazonaws.com/geek-blog/kynetx-search-annotation.jpg" alt="" width="411" height="190" /></p>
<p>I&#8217;m very excited about releasing the next version of my Kynetx application that utilizes a recently released Kynetx action, percolation. This action digs deep into the bowels of the dark search engine pits and pulls out relevant search results.</p>
<p>If you&#8217;ve already been using the first version app, you already have the update. The code updated as soon as I pressed the version update button! : ) Now install the app if you don&#8217;t already have it and start having fun searching.</p>
<p>.. And come join us at our next Impact Conference! Developers, entrepreneurs, and everyone else is invited to come and learn because THIS CHANGES EVERYTHING! Visit <a href="http://www.kynetx.com/">http://www.kynetx.com/</a> for more details.</p>
<p><a href="https://kynetx-apps.s3.amazonaws.com/stackoverflow/stackoverflow-fan.crx"><img alt="" src="https://mikegrace.s3.amazonaws.com/geek-blog/red-download.png" class="alignnone" width="30" height="30" />Google Chrome</a></p>
<p><a href="https://kynetx-apps.s3.amazonaws.com/stackoverflow/a60x17.xpi"><img alt="" src="https://mikegrace.s3.amazonaws.com/geek-blog/red-download.png" class="alignnone" width="30" height="30" />Mozilla Firefox</a></p>
<p><a href="https://kynetx-apps.s3.amazonaws.com/stackoverflow/StackOverflow_fan.crd"><img alt="" src="https://mikegrace.s3.amazonaws.com/geek-blog/red-download.png" class="alignnone" width="30" height="30" />Information Card</a></p>
<p><a href="https://kynetx-apps.s3.amazonaws.com/stackoverflow/StackOverflow_fan_setup.exe.zip"><img alt="" src="https://mikegrace.s3.amazonaws.com/geek-blog/red-download.png" class="alignnone" width="30" height="30" />Microsoft Internet Explorer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/03/stackoverflow-feast/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create HTML link That Starts A Skype Call</title>
		<link>http://geek.michaelgrace.org/2010/03/create-html-link-that-starts-a-skype-call/</link>
		<comments>http://geek.michaelgrace.org/2010/03/create-html-link-that-starts-a-skype-call/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 20:35:58 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[skype]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1296</guid>
		<description><![CDATA[
To create a link that visitors can click on to call a phone number or skype username follow this syntax.
Replace the asterisks with a valid username or number.
Phone Number:

&#60;a href=&#34;callto://+***********&#34;&#62;Link will initiate Skype to call my number!&#60;/a&#62;

Skype Username:

&#60;a href=&#34;skype:********?call&#34;&#62;Link will initiate Skype to call my Skype username!&#60;/a&#62;

]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="https://mikegrace.s3.amazonaws.com/geek-blog/skpe-me.png" class="aligncenter" width="600" height="108" /><br />
To create a link that visitors can click on to call a phone number or skype username follow this syntax.<br />
<em>Replace the asterisks with a valid username or number.</em></p>
<h2>Phone Number:</h2>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;callto://+***********&quot;</span>&gt;</span>Link will initiate Skype to call my number!<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span></pre></div></div>

<h2>Skype Username:</h2>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;skype:********?call&quot;</span>&gt;</span>Link will initiate Skype to call my Skype username!<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/03/create-html-link-that-starts-a-skype-call/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kynetx Office Opens in Rexburg</title>
		<link>http://geek.michaelgrace.org/2010/02/kynetx-office-opens-in-rexburg/</link>
		<comments>http://geek.michaelgrace.org/2010/02/kynetx-office-opens-in-rexburg/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 17:46:04 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Kynetx]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1289</guid>
		<description><![CDATA[
Come celebrate the brand new opening of our Kynetx office in Rexburg!
We are going to celebrate with food, fun, and we are going to show off what we do and why we are soo excited about it.
We are located at 343 East 4th North #103 Rexburg, ID 83440

Google map -&#62; http://goo.gl/dE7Y
Google street view -&#62; http://goo.gl/Ixao
The [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="https://mikegrace.s3.amazonaws.com/geek-blog/logoKynetxTrans.png" alt="" width="510" height="150" /></p>
<p>Come celebrate the brand new opening of our Kynetx office in Rexburg!</p>
<p>We are going to celebrate with food, fun, and we are going to show off what we do and why we are soo excited about it.</p>
<p>We are located at 343 East 4th North #103 Rexburg, ID 83440</p>
<p><a href="http://maps.google.com/maps?sourceid=chrome&amp;q=343%20East%204th%20North%20%23103%20Rexburg,%20ID%2083440&amp;um=1&amp;ie=UTF-8&amp;sa=N&amp;hl=en&amp;tab=wl"><img class="alignnone" src="https://mikegrace.s3.amazonaws.com/geek-blog/map-to-rexburg-kynetx-office.jpg" alt="" width="500" height="495" /></a></p>
<p>Google map -&gt; <a href="http://goo.gl/dE7Y">http://goo.gl/dE7Y</a></p>
<p>Google street view -&gt; <a href="http://goo.gl/Ixao">http://goo.gl/Ixao</a></p>
<p>The party will be from 11:30 &#8211; 1:30 and we hope you will come. Let us know via <a href="http://twitter.com/MikeGrace">Twitter</a>, <a href="http://www.google.com/profiles/themikegrace/contactme">Email</a>, or <a href="http://www.google.com/profiles/themikegrace">Buzz</a>.</p>
<p>We have worked hard getting everything ready and we look forward to seeing you there.</p>
<p><img class="alignnone" src="https://mikegrace.s3.amazonaws.com/geek-blog/setting-up-kynetx-office.jpg" alt="" width="300" height="448" /></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/02/kynetx-office-opens-in-rexburg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Buzz Keyboard Shortcuts</title>
		<link>http://geek.michaelgrace.org/2010/02/google-buzz-keyboard-shortcuts/</link>
		<comments>http://geek.michaelgrace.org/2010/02/google-buzz-keyboard-shortcuts/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 06:52:59 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1278</guid>
		<description><![CDATA[
Buzz Keyboard Shortcuts
Mute &#8211; m
Next &#8211; n
Previous - p
Like &#8211; shift + L
Respond &#8211; r (comment)
Open &#8211; o (expand comments)
Goto Buzz (while @ gmail.com) &#8211; g b
Enable Google Buzz Keyboard Shortcuts
* If you already have keyboard shortcuts enabled for you Gmail then you are good to go!
Steps
1) Login to Gmail
2) Navigate to &#8220;Settings&#8221;
3) Navigate to [...]]]></description>
			<content:encoded><![CDATA[<h2><img class="alignnone" title="Google Buzz" src="https://mikegrace.s3.amazonaws.com/geek-blog/google-buzz-alpha.png" alt="" width="286" height="68" /></h2>
<h2>Buzz Keyboard Shortcuts</h2>
<p>Mute &#8211; <strong>m</strong><br />
Next &#8211; <strong>n</strong><br />
Previous -<strong> p</strong><br />
Like &#8211; <strong>shift + L</strong><br />
Respond &#8211; <strong>r</strong> (comment)<br />
Open &#8211; <strong>o</strong> (expand comments)<br />
Goto Buzz (while @ gmail.com) &#8211; <strong>g b</strong></p>
<h2>Enable Google Buzz Keyboard Shortcuts</h2>
<p>* If you already have keyboard shortcuts enabled for you Gmail then you are good to go!</p>
<h3>Steps</h3>
<p>1) Login to Gmail<br />
2) Navigate to &#8220;Settings&#8221;<br />
3) Navigate to &#8220;General&#8221; tab (Should go there by default)<br />
4) Toggle radio button on for &#8220;Keyboard shortcuts on&#8221;<br />
5) Save Changes<br />
6) Reload page (I&#8217;m guessing this is needed to load shortcut script)<br />
7) Give your mouse the cold shoulder!</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/02/google-buzz-keyboard-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Solution For Sharing Your Geodata on Buzz</title>
		<link>http://geek.michaelgrace.org/2010/02/a-solution-for-sharing-your-geodata-on-buzz/</link>
		<comments>http://geek.michaelgrace.org/2010/02/a-solution-for-sharing-your-geodata-on-buzz/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 22:57:35 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Geolocation]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1275</guid>
		<description><![CDATA[Sharing very accurate geodata on a public Google Buzz stream is a bit unnerving especially when you are &#8220;Buzzing&#8221; from home.
So what if I still want to share my location but not let the whole world know where my front door step is?
Why not have an option to let the user choose the accuracy of the geodata [...]]]></description>
			<content:encoded><![CDATA[<p>Sharing very accurate geodata on a public Google Buzz stream is a bit unnerving especially when you are &#8220;Buzzing&#8221; from home.</p>
<h3><strong>So what if I still want to share my location but not let the whole world know where my front door step is?</strong></h3>
<p>Why not have an option to let the user choose the accuracy of the geodata being shared?</p>
<p>There is already the option to not include the data or to choose a known location on Google maps, like my local police department, but that&#8217;s not enough.</p>
<p>Why not have an option to share your location as the center of town.</p>
<p>Currently if you want a solution like this, you can select a location that is near you but not your front door step.</p>
<p><img class="alignnone" src="https://geek-blog.s3.amazonaws.com/2010/buzz-choose-location.jpg" alt="" width="320" height="480" /></p>
<p>I hope to see better control over location sharing in Google Buzz in the future.</p>
<p>Until that time I am going to disable automatic sharing of my location and choose when to share.</p>
<p><img class="alignnone" src="https://geek-blog.s3.amazonaws.com/2010/buzz-no-location-included.jpg" alt="" width="320" height="480" /></p>
<p>What do you think about sharing your geolocation?</p>
<p>Why or why don&#8217;t you share it?</p>
<p>Do you have an idea to solve this problem?</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/02/a-solution-for-sharing-your-geodata-on-buzz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buzz Is About Conversations</title>
		<link>http://geek.michaelgrace.org/2010/02/buzz-is-about-conversations/</link>
		<comments>http://geek.michaelgrace.org/2010/02/buzz-is-about-conversations/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 21:39:09 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1271</guid>
		<description><![CDATA[Some people have been sticking their noses up at the latest release of Google Buzz. While I agree that there are many things that need changing and improvement, I also think they might not have taken the time to actually use Google Buzz long enough to understand it&#8217;s strengths. I have found through my few [...]]]></description>
			<content:encoded><![CDATA[<p>Some people have been sticking their noses up at the latest release of Google Buzz. While I agree that there are many things that need changing and improvement, I also think they might not have taken the time to actually use Google Buzz long enough to understand it&#8217;s strengths. I have found through my few days of experience that Buzz is all about conversations, and conversations is what it does best. When viewing the Buzz stream in Gmail, comments show up real time and allows for a real conversation. I have been able to have fun and quick conversations with some of my Twitter friends that wouldn&#8217;t have happened on Twitter, or at least not the same way.</p>
<p><img class="alignnone" src="https://geek-blog.s3.amazonaws.com/2010/google-buzz-conversation.jpg" alt="" width="600" height="624" /></p>
<p>I have also been impressed to see Buzz pulling my flickr photos intelligently into my buzz stream. I had 3 photos of our new front door being replaced on flickr that I posted via 3 separate tweets and all 3 got grouped together in the same buzz.</p>
<p><img class="alignnone" src="https://geek-blog.s3.amazonaws.com/2010/google-buzz-flickr-photo-grouping.jpg" alt="" width="600" height="227" /></p>
<p>With the way Buzz facilitates conversation and does some intelligent work with managing other social network data, I really think Buzz will become a powerful player in the social networking world.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/02/buzz-is-about-conversations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Access Local Mac Dev Environment from VM</title>
		<link>http://geek.michaelgrace.org/2010/02/access-local-mac-dev-environment-from-vm/</link>
		<comments>http://geek.michaelgrace.org/2010/02/access-local-mac-dev-environment-from-vm/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 20:20:04 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Virtual-Machine]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1268</guid>
		<description><![CDATA[Testing my web development in IE is the bane of my existence. Since I run Apache and MYSQL on my local host on my Mac it was always a trick to view my work though my Windows VM until my friend Mike Farmer showed me an easy way to access my development environment on my Mac from my virtual machine.
Steps:

Get [...]]]></description>
			<content:encoded><![CDATA[<p>Testing my web development in IE is the bane of my existence. Since I run Apache and MYSQL on my local host on my Mac it was always a trick to view my work though my Windows VM until my friend <a href="http://twitter.com/mikefarmer">Mike Farmer</a> showed me an easy way to access my development environment on my Mac from my virtual machine.</p>
<p>Steps:</p>
<ol>
<li>Get default gateway of VM machine</li>
<li>Use that address the same way you would &#8220;localhost&#8221; on your Mac</li>
</ol>
<p>Example:</p>
<div class="wp-caption alignnone" style="width: 548px"><img title="Get IP address of VM" src="https://geek-blog.s3.amazonaws.com/2010/xp-cmd-ipaddress.jpg" alt="Get IP address of VM" width="538" height="351" /><p class="wp-caption-text">Get IP address of VM</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img class=" " title="Local Mac development environment" src="https://geek-blog.s3.amazonaws.com/2010/mac-local-couchdb-environment.jpg" alt="Local Mac development environment" width="600" height="441" /><p class="wp-caption-text">Local Mac development environment</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img class=" " title="Dev environment from VM" src="https://mikegrace.s3.amazonaws.com/geek-blog/xp-access-mac-dev-environment.jpg" alt="Dev environment from VM" width="600" height="441" /><p class="wp-caption-text">Dev environment from VM</p></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/02/access-local-mac-dev-environment-from-vm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tail Multiple Files</title>
		<link>http://geek.michaelgrace.org/2010/02/tail-multiple-files/</link>
		<comments>http://geek.michaelgrace.org/2010/02/tail-multiple-files/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 20:14:52 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1263</guid>
		<description><![CDATA[How to tail multiple files
Terminal command: tail -f &#60;file.name&#62; &#60;file.name&#62;
Tailing multiple files in one terminal window is a life saver when you are pressed for space on your screen.
With tail you can tail just about as many files as you want. I doubt it would be very useful to have more than a few tailed [...]]]></description>
			<content:encoded><![CDATA[<h1>How to tail multiple files</h1>
<p>Terminal command: tail -f &lt;file.name&gt; &lt;file.name&gt;</p>
<div class="wp-caption alignnone" style="width: 610px"><img title="Tail Three Files" src="https://geek-blog.s3.amazonaws.com/2010/tail-three-files.png" alt="Tail Three Files" width="600" height="322" /><p class="wp-caption-text">Tail Three Files</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img title="Tail Two Files" src="https://geek-blog.s3.amazonaws.com/2010/tail-two-files.png" alt="Tail Two Files" width="600" height="313" /><p class="wp-caption-text">Tail Two Files</p></div>
<p>Tailing multiple files in one terminal window is a life saver when you are pressed for space on your screen.<br />
With tail you can tail just about as many files as you want. I doubt it would be very useful to have more than a few tailed at the same time.</p>
<h3><strong><a href="http://geek.michaelgrace.org/2010/02/tail-multiple-files/">Leave a quick comment if you found this helpful or have other helpful suggestions like this one.</a></strong></h3>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/02/tail-multiple-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 min You&#8217;ll Never Get Back</title>
		<link>http://geek.michaelgrace.org/2010/02/4-min-youll-never-get-back/</link>
		<comments>http://geek.michaelgrace.org/2010/02/4-min-youll-never-get-back/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 03:04:20 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Giggles]]></category>
		<category><![CDATA[laugh]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1260</guid>
		<description><![CDATA[4 min. you will never get back but it&#8217;s too terrible not to share so I hope you enjoy! : )

]]></description>
			<content:encoded><![CDATA[<p>4 min. you will never get back but it&#8217;s too terrible not to share so I hope you enjoy! : )</p>
<p><object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/0KXlBeziPJ4&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/0KXlBeziPJ4&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/02/4-min-youll-never-get-back/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Favorite Superbowl Ad</title>
		<link>http://geek.michaelgrace.org/2010/02/favorite-superbowl-ad/</link>
		<comments>http://geek.michaelgrace.org/2010/02/favorite-superbowl-ad/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 19:35:51 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Giggles]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1257</guid>
		<description><![CDATA[It&#8217;s the only one that keeps me laughing the entire time. ; ) Very well done.

]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s the only one that keeps me laughing the entire time. ; ) Very well done.<br />
<object width="512" height="296"><param name="movie" value="http://www.hulu.com/edp/http%3A%2F%2Fwww%2Ehulu%2Ecom%2F/embed/kflXjWg0blYKA_QN6k6DHQ"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.hulu.com/edp/http%3A%2F%2Fwww%2Ehulu%2Ecom%2F/embed/kflXjWg0blYKA_QN6k6DHQ" type="application/x-shockwave-flash"  width="512" height="296" allowFullScreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/02/favorite-superbowl-ad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Cleaner Facebook using Kynetx</title>
		<link>http://geek.michaelgrace.org/2010/01/a-cleaner-facebook-using-kynetx/</link>
		<comments>http://geek.michaelgrace.org/2010/01/a-cleaner-facebook-using-kynetx/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 21:36:56 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Ad]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1231</guid>
		<description><![CDATA[
To avoid a long rant I am just going to say that I have gotten sick of marking advertisements on Facebook as &#8220;offensive&#8221; only to see more of the ads that I have marked as offensive. Is this a joke or does Facebook just not care or is it something entirely different? I&#8217;m not sure [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-1232 alignright" title="facebook-cleaner-web" src="http://geek.michaelgrace.org/wp-content/uploads/2010/01/facebook-cleaner-web.jpg" alt="facebook-cleaner-web" width="240" height="180" /></p>
<p>To avoid a long rant I am just going to say that I have gotten sick of marking advertisements on Facebook as &#8220;offensive&#8221; only to see more of the ads that I have marked as offensive. Is this a joke or does Facebook just not care or is it something entirely different? I&#8217;m not sure but I got sick of it so I took 30 minutes of my time and created a Kynetx application that removes ads from facebook when I use it.</p>
<p>Some of you might be wondering, why not just use adblockplus or a greasemonkey script?</p>
<ol>
<li>I&#8217;m crazy about Kynetx</li>
<li>In 30 min. I had 5 deployment paths
<ol>
<li>bookmarklet</li>
<li>information card</li>
<li>Firefox Browser Extension</li>
<li>Chrome Browser Extension</li>
<li>IE Browser Extension</li>
</ol>
</li>
<li>I can expand functionality of the application in the future.</li>
<li>There is a profit strategy that I could utilize in the future! $$$$</li>
<li>Deploying updates and Features is instantaneous and easy</li>
<li>Runs from the cloud so Kynetx can pull the plug if it become malicious</li>
</ol>
<h1>YOU WANT THAT!</h1>
<p>Bookmarklet</p>
<p><a href="javascript:(function(){var%20d=document;var%20s=d.createElement('script');s.text=">Facebook Library-Test</a></p>
<p>iCard</p>
<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2010/01/A+Cleaner+Facebook.crd_.zip">A+Cleaner+Facebook.crd</a></p>
<p>Firefox Browser Extension</p>
<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2010/01/firefox-extension.zip">firefox extension</a></p>
<p>Chrome Browser Extension</p>
<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2010/01/a60x1.crx_.zip">a60&#215;1.crx</a></p>
<p>IE Browser Extension</p>
<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2010/01/a60x1setup.exe.zip">a60&#215;1setup.exe</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/01/a-cleaner-facebook-using-kynetx/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Kynetx Impact Conference Discount Card</title>
		<link>http://geek.michaelgrace.org/2010/01/kynetx-impact-conference-discount-card/</link>
		<comments>http://geek.michaelgrace.org/2010/01/kynetx-impact-conference-discount-card/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 02:10:42 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Kynetx]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1220</guid>
		<description><![CDATA[This spring&#8217;s Kynetx Impact conference is going to be off of the hook! It&#8217;s going to be from April 27-28, 2010 at the Miller Free Enterprise Center at Salt Lake Community College.
If you follow me on Twitter or Facebook you already know I can&#8217;t shut up about Kynetx and that&#8217;s because I think what we [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">This <a href="http://kynetximpactspring2010.eventbrite.com/">spring&#8217;s Kynetx Impact conference</a> is going to be off of the hook! It&#8217;s going to be from April 27-28, 2010 at the <a href="http://www.slcc.edu/locations/miller.asp">Miller Free Enterprise Center at Salt Lake Community College</a>.</p>
<p style="text-align: left;">If you follow me on Twitter or Facebook you already know I can&#8217;t shut up about Kynetx and that&#8217;s because I think what we are doing is amazing. The internet has grown a lot since it&#8217;s birth just a few* years ago and Kynetx is its next big step. If you would like to attend, the conference will be $150.00 but you can get a 33% discount if you register before January 31, 2010 using the discount code Earlybirdspring2010.</p>
<p style="text-align: left;">Just to show off a little bit of what Kynetx can do, I created a simple Kynetx application that will enter the discount code to get 33% off, and will apply it to the total. The application took about 5 min. to write and deploy.</p>
<p style="text-align: left;">Get the Kynetx Fan Card and try it out for yourself!</p>
<p style="text-align: left;">1. Download</p>
<p style="text-align: center;">
<div id="attachment_1178" class="wp-caption aligncenter" style="width: 250px"><a href="http://geek.michaelgrace.org/wp-content/uploads/2010/01/Kynetx+Fan.crd_.zip"><img class="size-full wp-image-1178 " title="Kynetx Fan Card" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/devex_web.jpg" alt="Download Kynetx Fan Card" width="240" height="180" /></a><p class="wp-caption-text">Download Kynetx Fan Card</p></div>
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">2. Visit conference registration site -&gt; <a href="http://kynetximpactspring2010.eventbrite.com/">http://kynetximpactspring2010.eventbrite.com/</a></p>
<p style="text-align: left;">3. Watch and be amazed as the card applies the discount for you</p>
<p style="text-align: left;">
<p style="text-align: left;">You will need a card selector to install this card into. If you don&#8217;t have one, head over to azigo to get one.</p>
<p style="text-align: center;">
<div id="attachment_1114" class="wp-caption aligncenter" style="width: 229px"><a href="http://www.azigo.com/getazigo.html"><img class="size-full wp-image-1114 " title="PC AzigoLite Card Selector" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/Screen-shot-2009-11-28-at-12.28.55-AM.jpg" alt="PC AzigoLite Card Selector" width="219" height="93" /></a><p class="wp-caption-text">PC AzigoLite Card Selector</p></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/01/kynetx-impact-conference-discount-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Focus Problems</title>
		<link>http://geek.michaelgrace.org/2010/01/focus-problems/</link>
		<comments>http://geek.michaelgrace.org/2010/01/focus-problems/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 03:32:37 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Keyboard]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1213</guid>
		<description><![CDATA[Problem / Frustration
I&#8217;ve always been frustrated after doing a &#8220;Find&#8221; in Firefox

or bringing up the Mac &#8220;Force Quit Applications&#8221; window

that I&#8217;m not able to close it with a keyboard shortcut because it looses focus. Well, the other day I figured out one way to close both using the keyboard! Woohooo!
How To Fix

Use same keyboard shortcut [...]]]></description>
			<content:encoded><![CDATA[<h2>Problem / Frustration</h2>
<p>I&#8217;ve always been frustrated after doing a &#8220;Find&#8221; in Firefox</p>
<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2010/01/FF_search.jpg"><img class="aligncenter size-full wp-image-1215" title="FF_search" src="http://geek.michaelgrace.org/wp-content/uploads/2010/01/FF_search.jpg" alt="FF_search" width="500" height="26" /></a></p>
<p>or bringing up the Mac &#8220;Force Quit Applications&#8221; window</p>
<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2010/01/force_quit_applications.png"><img class="aligncenter size-full wp-image-1216" title="force_quit_applications" src="http://geek.michaelgrace.org/wp-content/uploads/2010/01/force_quit_applications.png" alt="force_quit_applications" width="426" height="370" /></a></p>
<p>that I&#8217;m not able to close it with a keyboard shortcut because it looses focus. Well, the other day I figured out one way to close both using the keyboard! Woohooo!</p>
<h2>How To Fix</h2>
<ol>
<li>Use same keyboard shortcut to bring up same window</li>
<li>Press &#8216;esc&#8217;</li>
<li>Done!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/01/focus-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Twitter in KRL (Kynetx Rule Language)</title>
		<link>http://geek.michaelgrace.org/2009/12/using-twitter-in-krl-kynetx-rule-language/</link>
		<comments>http://geek.michaelgrace.org/2009/12/using-twitter-in-krl-kynetx-rule-language/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 17:47:16 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[KRL]]></category>
		<category><![CDATA[OAuth]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1207</guid>
		<description><![CDATA[I am very excited about the possibilities that this opens up. You can bet that I will be building several applications that use this new feature of Kynetx. Enjoy this how to video by Phil Windley

Twitter in Kynetx Rule Language from Phil Windley on Vimeo.
Twitter uses OAuth to authorize access to individual data. This video [...]]]></description>
			<content:encoded><![CDATA[<p>I am very excited about the possibilities that this opens up. You can bet that I will be building several applications that use this new feature of Kynetx. Enjoy this how to video by Phil Windley</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="435" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=8311960&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="600" height="435" src="http://vimeo.com/moogaloop.swf?clip_id=8311960&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00adef&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/8311960">Twitter in Kynetx Rule Language</a> from <a href="http://vimeo.com/user2840007">Phil Windley</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Twitter uses OAuth to authorize access to individual data. This video screencast shows how to use OAuth and Twitter from within the Kynetx Rule Language (KRL).</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/12/using-twitter-in-krl-kynetx-rule-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install 64 bit Ruby On Rails and MySQL on OS X</title>
		<link>http://geek.michaelgrace.org/2009/12/install-64-bit-ruby-on-rails-and-mysql-on-os-x/</link>
		<comments>http://geek.michaelgrace.org/2009/12/install-64-bit-ruby-on-rails-and-mysql-on-os-x/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 11:54:36 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[ROR]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1197</guid>
		<description><![CDATA[
For a project that I am starting I wanted to use Rails and MySQL so I decided to install for source that I compile myself for both. It was amazingly easy and satisfying to have both compiled and installed on my machine for development. Hivelogic has some really simple easy to follow blog posts on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/piston9/309393133/"><img class="aligncenter size-full wp-image-1198" title="Because it's fast!!" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/fast_bike.jpg" alt="because it's fast!" width="650" height="172" /></a></p>
<p>For a project that I am starting I wanted to use Rails and MySQL so I decided to install for source that I compile myself for both. It was amazingly easy and satisfying to have both compiled and installed on my machine for development. Hivelogic has some really simple easy to follow blog posts on how to do both. If you are wanting to compile and install either Rails or MySQL on your Mac from source code then I recommend you check them out.</p>
<h2><a href="http://hivelogic.com/articles/compiling-mysql-on-snow-leopard/">Installing MySQL on Snow Leopard</a></h2>
<h2><a href="http://hivelogic.com/articles/compiling-ruby-rubygems-and-rails-on-snow-leopard/">Installing Ruby, RubyGems, and Rails on Snow Leopard</a></h2>
<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2009/12/ruby_on_rails.jpg"><img class="aligncenter size-full wp-image-1205" title="Ruby On Rails" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/ruby_on_rails.jpg" alt="Ruby On Rails" width="327" height="86" /></a></p>
<p><a rel="cc:attributionURL" href="http://www.flickr.com/photos/piston9/">Bike photo by piston9</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/12/install-64-bit-ruby-on-rails-and-mysql-on-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Avalanche Software Art Blog Desktop Wallpaper</title>
		<link>http://geek.michaelgrace.org/2009/12/avalanche-software-art-blog-desktop-wallpaper/</link>
		<comments>http://geek.michaelgrace.org/2009/12/avalanche-software-art-blog-desktop-wallpaper/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 17:42:53 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1186</guid>
		<description><![CDATA[My wife is a big fan of the work done over at Avalanche Software. She showed me their art blog that they do for fun the other day and I thought that this illustration was awesome enough to put on my desktop for at least a week or two. Maybe it will even remind me [...]]]></description>
			<content:encoded><![CDATA[<p>My wife is a big fan of the work done over at Avalanche Software. She showed me their art blog that they do for fun the other day and I thought that this illustration was awesome enough to put on my desktop for at least a week or two. Maybe it will even remind me to work harder. More than anything it makes me smile and laugh. So here it is</p>
<h3><a href="http://avalanchesoftware.blogspot.com/2007/08/archathorian-eradicator.html">ARCHATHOR&#8217;IAN THE ERADICATOR</a></h3>
<div>He will destroy you, and he&#8217;ll look super intense while doing it.</div>
<p><br/><br/></p>
<div><a href="http://geek.michaelgrace.org/wp-content/uploads/2009/12/archathorian1.jpg"><img class="aligncenter size-full wp-image-1192" title="archathorian" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/archathorian1.jpg" alt="archathorian" width="432" height="270" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/12/avalanche-software-art-blog-desktop-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kynetx Fan Card</title>
		<link>http://geek.michaelgrace.org/2009/12/kynetx-fan-card/</link>
		<comments>http://geek.michaelgrace.org/2009/12/kynetx-fan-card/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 17:11:02 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Context]]></category>
		<category><![CDATA[information-card]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1177</guid>
		<description><![CDATA[Are you are a fan of Kynetx, what Kynetx is doing, or just wanting to stay up with the latest Kynetx goodness?
If you are, then you need to get the Kynetx fan card! This context sensitive information card will help you sift through your searches on the web and will even update you with the [...]]]></description>
			<content:encoded><![CDATA[<p>Are you are a fan of Kynetx, what Kynetx is doing, or just wanting to stay up with the latest Kynetx goodness?</p>
<p>If you are, then you need to get the Kynetx fan card! This context sensitive information card will help you sift through your searches on the web and will even update you with the latest news while you&#8217;re checking out the news! (feature coming soon!)</p>
<p>Needless to say that there will be many benefits in the coming months for having this card. News updates, search engine augmentation, games, contests, drawings, etc. What more could you want?!?</p>
<div id="attachment_1178" class="wp-caption aligncenter" style="width: 250px"><a href="http://kynetx.michaelgrace.org/kynetx_app/Kynetx+Fan.crd"><img class="size-full wp-image-1178    " title="Kynetx Fan Card" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/devex_web.jpg" alt="Download Kynetx Fan Card" width="240" height="180" /></a><p class="wp-caption-text">Download Kynetx Fan Card</p></div>
<p>If you have ideas for this card or just want to say thanks then please do so in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/12/kynetx-fan-card/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is ISO 17799, ISO 27000, PCI Credit Card Standard</title>
		<link>http://geek.michaelgrace.org/2009/12/iso-17799-iso/</link>
		<comments>http://geek.michaelgrace.org/2009/12/iso-17799-iso/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 11:52:19 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[homework]]></category>
		<category><![CDATA[school]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1159</guid>
		<description><![CDATA[For my System Security class we get to learn about ISO 17799, ISO 27000, and the PCI Credit Card Standard. When I first started looking up information about 17799 and 27000 I was a bit overwhelmed and confused by the information that is out there on the web. I felt much like I was trying [...]]]></description>
			<content:encoded><![CDATA[<p>For my System Security class we get to learn about ISO 17799, ISO 27000, and the PCI Credit Card Standard. When I first started looking up information about 17799 and 27000 I was a bit overwhelmed and confused by the information that is out there on the web. I felt much like I was trying to memorize a chart like this:<br />
<img class="aligncenter size-full wp-image-1164" title="bad" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/bad.gif" alt="bad" width="475" height="367" /><br />
Now I understand a bit better why there are so many software applications and business built around helping other businesses become compliant with these security standards.</p>
<p>So what are the ISO 17799, ISO 27000, and PCI Credit Card Standards?<br />
They are a set of standards set forth by the <a href="http://www.iso.org/iso/support/faqs/faqs_general_information_on_iso.htm">International Organization for Standardization</a> to ensure that consumer and customer data is kept safe. The ISO.org site says that the 17799 &#8220;contains best practices of control objectives and controls in the following areas of information security management:</p>
<blockquote><p>security policy, organization of information security, asset management, human resources security, physical and environmental security, communications and operations management, access control, information systems acquisition, development and maintenance, information security incident management,  business continuity management, compliance.</p></blockquote>
<p>In simple terms this means that businesses and organizations need to:</p>
<ul>
<li>Make rules to protect their stuff and your data</li>
<li>Actually protect their stuff and workers</li>
<li>Keep others from stealing from them</li>
<li>Keep things maintained and running well</li>
<li>Keep the business running smoothly for customers</li>
<li>Make sure they are doing everything on this list correctly</li>
</ul>
<p>I found it funny that the 17799, according to Wikipedia, is a word-for-word copy of the British Standard 7799-1. The 17799 was updated and renamed to 27002 to keep it up to date and grouped with similar documents numbered in the 27000 domain.</p>
<p>You can <a href="http://standards.iso.org/ittf/PubliclyAvailableStandards/c041933_ISO_IEC_27000_2009.zip">download the official ISO 2700 document</a> from the iso website if you&#8217;re so inclined to read it or need it.</p>
<h3>PCI Credit Card Standard</h3>
<p>The PCI Credit Card Standard is a document outlining a standard to ensure that businesses that are taking credit card payments meet a minimum standard to ensure the safety of their customers and the associated data. The current standard covers 6 areas:</p>
<ul>
<li>Have secure network</li>
<li>Keep data safe</li>
<li>Keep system up to date and secure</li>
<li>Good passwords &amp; other access restriction measures</li>
<li>Watch network for failure and intrusion</li>
<li>Have a plan</li>
</ul>
<p>What&#8217;s interesting to me about the PCI credit card standard is that it isn&#8217;t issued by a organization that has multi-national participation. It is run and enforced by the major credit card companies. If vendors aren&#8217;t compliant then the credit card holder is vulnerable and that isn&#8217;t good for the main credit card company because their customer will get hurt. In order for the credit card company to keep their good name and customers, they have set up a standard in hopes that their customers and money will be more protected. If a vendor isn&#8217;t compliant then the credit card company often fines or quits doing business with the vendor completely.</p>
<p>I think security standards are good in the fact that they push those who don&#8217;t care or who aren&#8217;t thinking about security, to do something about it. The downside to having security standards is that it creates an easy resting place for companies. It makes it easier for them to say, &#8220;I&#8217;m compliant so I don&#8217;t have to do any more than this&#8221;.  I think they can also misguide sometimes if the group making the standard focuses on a risk is in one place but an even greater risk ends up getting less attention.</p>
<h3>Disclaimer:</h3>
<p>This post is for a school assignment and I do not claim to be an expert by any means. I was assigned a topic I knew nothing about and tried to make sense of it and share what I learned in simple terms.</p>
<h3>Resources:</h3>
<p>http://www.noweco.com/risk/riske13.htm<br />
http://www.pbandsp.com/tools/iso.html<br />
http://en.wikipedia.org/wiki/ISO/IEC_17799http://en.wikipedia.org/wiki/Payment_Card_Industry_Data_Security_Standard<br />
http://www.pcicomplianceguide.org/<br />
http://www.computerworld.com/s/article/102913/Credit_card_data_security_standard_goes_into_effect<br />
http://en.wikipedia.org/wiki/ISO/IEC_27000</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/12/iso-17799-iso/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Thoughts on Personalizing the Web Browsing Experience</title>
		<link>http://geek.michaelgrace.org/2009/12/thoughts-on-personalizing-the-web-browsing-experience/</link>
		<comments>http://geek.michaelgrace.org/2009/12/thoughts-on-personalizing-the-web-browsing-experience/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 09:18:43 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[browsing]]></category>
		<category><![CDATA[Context]]></category>
		<category><![CDATA[context-sensitivity]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1150</guid>
		<description><![CDATA[Dave Kearns of Network World recently wrote an article titled &#8220;Personalizing the Web browsing experience&#8221; where he talked about what he had recently learned from Kynetx and shared his excitement for the future of context sensitivity. I thought it was a good article and wanted to share my thoughts in reply to his article.

&#8220;It&#8217;s really [...]]]></description>
			<content:encoded><![CDATA[<div id="article_subtitle"><span><a href="http://www.networkworld.com/newsletters/dir/2009/120709id2.html"><img class="alignleft size-full wp-image-1152" title="Network World" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/networkworld.jpg" alt="Network World" width="200" height="43" /></a>Dave Kearns of </span>Network World recently wrote an article titled &#8220;<a href="http://www.networkworld.com/newsletters/dir/2009/120709id2.html">Personalizing the Web browsing experience</a>&#8221; where he talked about what he had recently learned from Kynetx and shared his excitement for the future of context sensitivity. I thought it was a good article and wanted to share my thoughts in reply to his article.</div>
<p><br/></p>
<div>&#8220;It&#8217;s really exciting to think about all the possibilities there are when you can create applications that act proactively based on contextual information that is available. Because the ability to create a contextually sensitive experience is soo new we are only seeing applications that are scratching the surface. We are in, what I like to call, the &#8220;baby sitting in a highchair throwing Cheerios&#8221; stage. As the concept of building a contextual experience grows and the technology that facilitates that spreads, we will see amazing applications that will blow our minds. The funny thing about all of this is, we will eventually look back on these times and wonder how we ever got stuff done with out context sensitivity.&#8221;</div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/12/thoughts-on-personalizing-the-web-browsing-experience/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Geek and Poke Meets Kynetx</title>
		<link>http://geek.michaelgrace.org/2009/12/geek-and-poke-meets-kynetx/</link>
		<comments>http://geek.michaelgrace.org/2009/12/geek-and-poke-meets-kynetx/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 11:25:10 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Context]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1126</guid>
		<description><![CDATA[

One of my co-workers recently tweeted, &#8220;I really want to know how I missed this web comic. Hilarious!! http://bit.ly/7das6F&#8220;. That got me thinking about how much people do miss from their favorite comic sites or any site on the web for that matter. Of course you can subscribe to RSS and get all their updates [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://geekandpoke.typepad.com/"><img class="size-full wp-image-1139 aligncenter" title="Geek and Poke" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/geekandpoke.jpg" alt="Geek and Poke" width="500" height="125" /></a></p>
<p style="text-align: center;"><a href="http://kynetx.com/"><img class="size-full wp-image-1141 aligncenter" title="kynetx" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/kynetx.gif" alt="kynetx" width="250" height="80" /></a></p>
<p>One of my co-workers recently tweeted, &#8220;I really want to know how I missed this web comic. Hilarious!! <a href="http://geekandpoke.typepad.com/geekandpoke/2009/12/simply-explained-new-series-the-main-principles-of-software-engineering-part-1.html">http://bit.ly/7das6F</a>&#8220;. That got me thinking about how much people do miss from their favorite comic sites or any site on the web for that matter. Of course you can subscribe to RSS and get all their updates but those who valiantly use and keep up with their feeds know how quickly it can become overwhelming. But what about all of the people who like sites or products but don&#8217;t know how to set up an RSS reader or who just don&#8217;t want to? How do you get your content to those people all the time without them having to type in your URL?</p>
<h1 style="text-align: center;">With Kynetx!!</h1>
<p>With <a href="http://kynetx.com/">Kynetx</a> you can customize the users experience on your website AND ANY OTHER WEBSITE YOU DESIRE!!</p>
<p>Are you getting excited yet? Are you listening or paying attention?! Are you thinking about the possibilities??!!!</p>
<p>In this example, if a user really loves the comic &#8220;<a href="http://geekandpoke.typepad.com/">Geek and Poke</a>&#8221; why not make the content available to them anywhere they go on the web in unobtrusive manner? In fact, if you do it well, the users will be giddy with the results and love your product even more! It&#8217;s a little known secret that people actually like advertising. THEY DO! People love to buy stuff! What people actually hate is irrelevant and irritating ads that are in their faces. I took 3 sites and customized the users experience based on the context that they really enjoy the comic &#8220;Geek and Poke&#8221;.</p>
<ul>
<li>Google.com</li>
<li>CNET.com</li>
<li>CNN.com</li>
</ul>
<p>Here are the after and before photos of what the user will see as they visit these sites.</p>
<div id="attachment_1130" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-1130" title="Geek and Poke on Google.com" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/google.jpg" alt="Geek and Poke on Google.com" width="600" height="705" /><p class="wp-caption-text">Geek and Poke on Google.com</p></div>
<div id="attachment_1129" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-1129" title="Geek and Poke on CNET.com" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/cnet.jpg" alt="Geek and Poke on CNET.com" width="600" height="705" /><p class="wp-caption-text">Geek and Poke on CNET.com</p></div>
<div id="attachment_1128" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-1128" title="Geek and Poke on CNN.com using Kynetx technology" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/cnn.jpg" alt="Geek and Poke on CNN.com using Kynetx technology" width="600" height="705" /><p class="wp-caption-text">Geek and Poke on CNN.com using Kynetx technology</p></div>
<p>All the user has to do is download an Information Card into their Card Selector on their computer!</p>
<p>Check out this presentation by Kynetx to learn a bit more. (Make sure you watch it full screen. It looks much better!)</p>
<div id="__ss_2568833" style="width: 425px; text-align: center;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Home Page Tour Purpose-centric Web" href="http://www.slideshare.net/knightfour/home-page-tour-purposecentric-web-2568833">Home Page Tour Purpose-centric Web</a><object style="margin:0px" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=homepagetoursimple-091123163037-phpapp01&amp;stripped_title=home-page-tour-purposecentric-web-2568833" /><param name="allowfullscreen" value="true" /><embed style="margin:0px" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=homepagetoursimple-091123163037-phpapp01&amp;stripped_title=home-page-tour-purposecentric-web-2568833" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px; text-align: center;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/knightfour">knightfour</a>.</div>
</div>
<p>If you would like to try it out for yourself, drag this bookmarklet to your bookmarks bar: <a href="javascript:(function(){d=document;s=d.createElement('script');s.text=&quot;KOBJ_config={'rids':['a60x38']};&quot;;d.body.appendChild(s);l=d.createElement('script');l.src=&quot;http://init.kobj.net/js/shared/kobj-static.js&quot;;d.body.appendChild(l);})()">Geek &amp; Poke </a>or click to download the information card below to your card selector.</p>
<p style="text-align: center;">
<div id="attachment_1147" class="wp-caption aligncenter" style="width: 250px"><a href="http://geek.michaelgrace.org/wp-content/uploads/2009/12/Geek+and+Poke.crd"><img class="size-full wp-image-1147 " title="Geek and Poke Information Card" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/geek-and-poke.jpg" alt="Geek and Poke Information Card" width="240" height="180" /></a><p class="wp-caption-text">Geek and Poke Information Card</p></div>
<p>Just visit any of the three sites with the card installed or click on the bookmarklet while on that page and you to can see the magic happen. ; )</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/12/geek-and-poke-meets-kynetx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Context of a StackOverflow Junkie</title>
		<link>http://geek.michaelgrace.org/2009/11/the-context-of-a-stackoverflow-junkie/</link>
		<comments>http://geek.michaelgrace.org/2009/11/the-context-of-a-stackoverflow-junkie/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 08:14:47 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[context-sensitivity]]></category>
		<category><![CDATA[purpose-centric]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1111</guid>
		<description><![CDATA[I have been having waaaaay to much fun since I got into Kynetx. Many of my friends have been asking me &#8220;what does Kynetx do?&#8221; and &#8220;what is the purpose-centric-context-sensitive web?&#8221;. Well, it takes a bit to explain so I&#8217;ll show you just a small glimpse of what it all means.
If you love stackoverflow.com then [...]]]></description>
			<content:encoded><![CDATA[<p>I have been having waaaaay to much fun since I got into Kynetx. Many of my friends have been asking me &#8220;what does Kynetx do?&#8221; and &#8220;what is the purpose-centric-context-sensitive web?&#8221;. Well, it takes a bit to explain so I&#8217;ll show you just a small glimpse of what it all means.</p>
<p>If you love stackoverflow.com then you know how helpful it can be when you are looking for answers to your programming questions. Why not, if you are a StackOverflow fanatic, have all of your search results  augmented for what you like? Here is a drop dead easy way to tell your browser, &#8220;Hey! I really like getting search results for Stack Overflow so bring them to my attention.&#8221; Now that is context sensitivity! You can do the same thing for anything you like and it&#8217;s easy but the awesomeness doesn&#8217;t end there! Search result augmentation is just child&#8217;s play compared to what could be done. We are going to be seeing a complete rewrite of the advertising industry as we know it! Now you need to see this in action for yourself. You will need 2 things: 1) a card selector from Azigo 2) the information card for StackOverflow</p>
<div id="attachment_1114" class="wp-caption aligncenter" style="width: 229px"><a href="http://www.azigo.com/getazigo.html"><img class="size-full wp-image-1114 " title="AzigoLite Card Selector" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/Screen-shot-2009-11-28-at-12.28.55-AM.jpg" alt="Mac AzigoLite Card Selector" width="219" height="93" /></a><p class="wp-caption-text">AzigoLite Card Selector</p></div>
<div id="attachment_1113" class="wp-caption aligncenter" style="width: 250px"><a href="http://kynetx.michaelgrace.org/stackoverflow/StackOverflow+fan.crd"><img class="size-full wp-image-1113  " title="StackOverflow Info card" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/stackoverflow_infocard.jpg" alt="StackOverflow Info card" width="240" height="180" /></a><p class="wp-caption-text">StackOverflow Info card</p></div>
<p>Install the card selector, import the info card into the Azigo card seloctor and away you go. Now open up Firefox and do a google search for <a href="http://www.google.com/search?q=What%E2%80%99s+your+most+controversial+programming+opinion%3F&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a">What’s your most controversial programming opinion?</a></p>
<p>Instead of the plain Google results you are used to, you now get a stack overflow icon to the right of each result that is from a stackoverflow.com domain!</p>
<p><img class="aligncenter size-full wp-image-1115" title="google_results" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/google_results.jpg" alt="google_results" width="400" height="283" />This was all done with 11 lines of Kynetx code. Like I said before, this is just the beginning. We can write code that can put anything anywhere we want based on what the user wants. I plan on writing a Kynetx app that will place my latest blog posts on the front page of cnn.com for my parents so they can keep up with what I am doing when they go get their news.</p>
<p>From the beginning, billboards, newspapers, radio, and tv advertising has been a shotgun affair. Advertisers and companies broadcasting their ads to anyone and everyone they could. We, the users, have had to suffer through decades of irrelevant and poorly targeted advertising. Kynetx is bringing to the table the technology needed to turn the tables for all of us to rise up and take control of the advertising that we see. I have come to learn that people don&#8217;t really hate advertising, we just don&#8217;t like irrelevant and obscene advertising. Blasted advertisements are ineffective mostly because they lack the ability to understand the context of the receiver. If you can get people to willingly subscribe to advertising that they want&#8230; well, then you have something! I know this has been short and probably all over the place so let me share one more example that happens to be the first Kynetx app that I wrote.</p>
<p>Being able to keep everyone in a company motivated and tuned into the same goals can be a task to say the least. You could blast out emails, bring it up in meetings and blah blah blah but that sucks and it doesn&#8217;t work that great. What if every employee&#8217;s browser knew that they were an employee and injected a slide-out tray with the company goals and up to date progress for those goals while they were surfing the web? I wrote a Kynetx app for that! It only shows up on a few domains and allows each employee to see our Key Performance indicators. I also threw in there at the bottom a notification of how many tweets mentioning the company and how many questions had been asked on our stackexchange site since the day before. CONTEXT RULES!</p>
<p><img class="aligncenter size-full wp-image-1117" title="kynetx.com" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/contracted.jpg" alt="kynetx.com" width="500" height="472" /><img class="aligncenter size-full wp-image-1118" title="expanded" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/expanded.jpg" alt="expanded" width="500" height="472" />This is just the beginning and I have done a terrible job of explaining it to you so I hope you will ask lots of questions and come back for more posts explaining and showcasing the awesome power of the purpose-centric-context-sensitive web.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/the-context-of-a-stackoverflow-junkie/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pre Thanksgiving Fun</title>
		<link>http://geek.michaelgrace.org/2009/11/pre-thanksgiving-fun/</link>
		<comments>http://geek.michaelgrace.org/2009/11/pre-thanksgiving-fun/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 09:33:15 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1102</guid>
		<description><![CDATA[The past month has been insane and I have loved all that has happened this last week. I am now officially working for  a company called Kynetx and I am more excited to work than ever! Kynetx is doing amazing things and I really can&#8217;t believe that I am a part of it. The people [...]]]></description>
			<content:encoded><![CDATA[<p>The past month has been insane and I have loved all that has happened this last week. I am now officially working for  a company called Kynetx and I am more excited to work than ever! Kynetx is doing amazing things and I really can&#8217;t believe that I am a part of it. The people I get to work with are amazing and it blows me away how smart they all are.</p>
<p>I spent the day learning and working on Kynetx code that was my first assignment since joining the team. I sure hope I won&#8217;t disappoint. Finally as the final hours of the day were counting down I was helping my wife make the bed when IT happened. Yes! IT happened! What is it? I was throwing the sheets up so I could get them to lay flat on the bed. When on the last throw, I threw them too hard, I hit the ugly glass plate covering our light hanging from the ceiling and it came crashing down. The largest shard was able to somehow maneuver it&#8217;s way to my head and connected with whatever sound glass makes when it hits flesh. *{insert sound here}* Once I got the wound covered we were able to clean it up and bandage it enough to get to bed. Here are some photos of the battle wound. Enjoy! ; D</p>

<a href='http://geek.michaelgrace.org/2009/11/pre-thanksgiving-fun/attachment/01/' title='01'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/01-150x150.jpg" class="attachment-thumbnail" alt="" title="01" /></a>
<a href='http://geek.michaelgrace.org/2009/11/pre-thanksgiving-fun/attachment/02/' title='02'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/02-150x150.jpg" class="attachment-thumbnail" alt="" title="02" /></a>
<a href='http://geek.michaelgrace.org/2009/11/pre-thanksgiving-fun/attachment/03/' title='03'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/03-150x150.jpg" class="attachment-thumbnail" alt="" title="03" /></a>
<a href='http://geek.michaelgrace.org/2009/11/pre-thanksgiving-fun/attachment/04/' title='04'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/04-150x150.jpg" class="attachment-thumbnail" alt="" title="04" /></a>

<p>Chicks dig scars right?!  ; )<img src="file:///var/folders/du/du5KcrWrE-840mW-foZ3r++++TI/-Tmp-/com.apple.PhotoBooth-T0x109d29200.tmp.J3ya7x/Photo%20on%202009-11-25%20at%2002.07.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/pre-thanksgiving-fun/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kynetx Impact Conference Highlights</title>
		<link>http://geek.michaelgrace.org/2009/11/kynetx-impact-conference-highlights/</link>
		<comments>http://geek.michaelgrace.org/2009/11/kynetx-impact-conference-highlights/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 23:00:42 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Kynetx]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1100</guid>
		<description><![CDATA[I still haven&#8217;t had time to write up my view of what Kynetx is all about, but if you would like to see what happened at the conference head over to http://code.kynetx.com/2009/11/20/kynetx-impact-conference-2009-highlights/
It was a magical and life changing conference! It will be exciting to see the concepts discussed at that conference spread through the world [...]]]></description>
			<content:encoded><![CDATA[<p>I still haven&#8217;t had time to write up my view of what Kynetx is all about, but if you would like to see what happened at the conference head over to <a href="http://code.kynetx.com/2009/11/20/kynetx-impact-conference-2009-highlights/">http://code.kynetx.com/2009/11/20/kynetx-impact-conference-2009-highlights/</a></p>
<p>It was a magical and life changing conference! It will be exciting to see the concepts discussed at that conference spread through the world on the internet and change people&#8217;s lives.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/kynetx-impact-conference-highlights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Christmas &#8216;09 Wish List</title>
		<link>http://geek.michaelgrace.org/2009/11/christmas-09-wish-list/</link>
		<comments>http://geek.michaelgrace.org/2009/11/christmas-09-wish-list/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 05:47:28 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1083</guid>
		<description><![CDATA[My family has been bugging me to share with them what exactly it is I am wanting for Christmas surprises so I thought i would appease. Besides wanting to be graduated, a have a job on the west coast to start paying off student loans here is what I would find exciting to have this [...]]]></description>
			<content:encoded><![CDATA[<p>My family has been bugging me to share with them what exactly it is I am wanting for Christmas surprises so I thought i would appease. Besides wanting to be graduated, a have a job on the west coast to start paying off student loans here is what I would find exciting to have this Christmas. You can check out the complete list on Amazon.com at <a href="http://amzn.com/w/258FEXOTWJ1DO">http://amzn.com/w/258FEXOTWJ1DO</a></p>
<p><a href="http://amzn.com/w/258FEXOTWJ1DO"><span class="productImage"><img src="http://ecx.images-amazon.com/images/I/41UZdZNJ55L._SL110_PIsitb-sticker-arrow-sm,TopRight,10,-13_OU01_.jpg" border="0" alt="Product Image" width="81" height="121" /></span><span class="productImage"><img src="http://ecx.images-amazon.com/images/I/51cktxT4edL._SL110_PIsitb-sticker-arrow-sm,TopRight,10,-13_OU01_.jpg" border="0" alt="Product Image" width="92" height="121" /></span><span class="productImage"><img src="http://ecx.images-amazon.com/images/I/419AvyCIVTL._SL110_PIsitb-sticker-arrow-sm,TopRight,10,-13_OU01_.jpg" border="0" alt="Product Image" width="80" height="121" /></span><span class="productImage"><img src="http://ecx.images-amazon.com/images/I/51E24AxWk1L._SL110_PIsitb-sticker-arrow-sm,TopRight,10,-13_OU01_.jpg" border="0" alt="Product Image" width="79" height="121" /></span><span class="productImage"><img src="http://ecx.images-amazon.com/images/I/51DEnAtKzBL._SL110_.jpg" border="0" alt="Product Image" width="76" height="110" /></span><span class="productImage"><img src="http://ecx.images-amazon.com/images/I/51seLiYuURL._SL110_PIsitb-sticker-arrow-sm,TopRight,10,-13_OU01_.jpg" border="0" alt="Product Image" width="99" height="121" /></span></a><span id="more-1083"></span></p>
<p><span class="small productTitle"><strong><a href="http://www.amazon.com/Brain-Rules-Principles-Surviving-Thriving/dp/0979777747/ref=wl_it_dp_o?ie=UTF8&amp;coliid=I1MY0405NURFCG&amp;colid=258FEXOTWJ1DO">Brain Rules: 12 Principles for Surviving and Thriving at Work, Home, and School</a></strong></span></p>
<p><span class="small productTitle"><strong><a href="http://www.amazon.com/How-Designers-Think-Fourth-Demystified/dp/0750660775/ref=wl_it_dp_o?ie=UTF8&amp;coliid=IXUPB0MKIOMK3&amp;colid=258FEXOTWJ1DO">How Designers Think, Fourth Edition: The Design Process Demystified</a></strong></span></p>
<p><span class="small productTitle"><strong><a href="http://www.amazon.com/Design-Everyday-Things-Donald-Norman/dp/0465067107/ref=wl_it_dp_o?ie=UTF8&amp;coliid=I26IPH1QYRW7M5&amp;colid=258FEXOTWJ1DO">The Design of Everyday Things</a></strong></span></p>
<p><span class="small productTitle"><strong><a href="http://www.amazon.com/Mythical-Man-Month-Software-Engineering-Anniversary/dp/0201835959/ref=wl_it_dp_o?ie=UTF8&amp;coliid=IQPQFJNL881C2&amp;colid=258FEXOTWJ1DO">The Mythical Man-Month: Essays on Software Engineering, Anniversary Edition (2nd Edition)</a></strong></span></p>
<p><span class="small productTitle"><strong><a href="http://www.amazon.com/Coders-at-Work-Peter-Seibel/dp/1430219483/ref=wl_it_dp_o?ie=UTF8&amp;coliid=IAXO5CUJ2FXRT&amp;colid=258FEXOTWJ1DO">Coders at Work</a></strong></span></p>
<p><span class="small productTitle"><strong><a href="http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670/ref=wl_it_dp_o?ie=UTF8&amp;coliid=I9VJCZXZS1SV7&amp;colid=258FEXOTWJ1DO">Code Complete: A Practical Handbook of Software Construction</a></strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/christmas-09-wish-list/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Key Based Authentication for SSH</title>
		<link>http://geek.michaelgrace.org/2009/11/key-based-authentication-for-ssh/</link>
		<comments>http://geek.michaelgrace.org/2009/11/key-based-authentication-for-ssh/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 01:45:02 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1040</guid>
		<description><![CDATA[What is key based authentication for ssh?
Key based authentication for SSH is a way to connect remotely to another computer/server using an encrypted file you HAVE and an optional password you KNOW to unlock the file. Key based authentication has the advantage of being more secure and/or more convenient.
Why?
Password based authentication:
Logging in via password over [...]]]></description>
			<content:encoded><![CDATA[<h2>What is key based authentication for ssh?</h2>
<p><img class="size-full wp-image-1075 alignleft" title="key" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/3509344402_1d0bd80ec9_t.jpg" alt="key" width="100" height="100" />Key based authentication for SSH is a way to connect remotely to another computer/server using an encrypted file you HAVE and an optional password you KNOW to unlock the file. Key based authentication has the advantage of being more secure and/or more convenient.</p>
<h3>Why?</h3>
<p>Password based authentication:<br />
Logging in via password over SSH encrypts your password so it ends up looking like this:<br />
<code>..t-:p.%.E.{..E..X7.@.@.~....s..............NXP...{W..!8..;.eh9..N......#....q..1f...:...D9R0 zy</code><br />
Because the password is encrypted, it won&#8217;t be seen in plain text over the wire which is good. If the password is short or simple enough, a hacker will be able to crack your password. Assuming the password is good enough, password based authentication&#8217;s strength comes from keeping that knowledge from others.</p>
<p>Key based authentication allows you to connect remotely using an encrypted file as a key instead of a password. Key based authentication gives you the option to <span id="more-1040"></span>lock the key with a password or not. Many choose not to lock the key with a password for convenience but, if the key ever gets stolen, the captor will be able to use the key without putting in a password to unlock it.</p>
<p><em>Key based authentication is a very attractive remote authentication solution because it employs two factors of authentication: something you have and something you know. Getting someone&#8217;s password is fairly easy given enough time but getting a file from their computer and their password is much more difficult.</em></p>
<h2>HOW TO</h2>
<h3>How to set up key based authentication on a linux server</h3>
<h4>Setting up key based ssh authentication consists of 4 steps.</h4>
<p>1. Create public &amp; private keys on your machine<br />
2. Copy public key to server<br />
3. Add public key on server to server&#8217;s authorized key list<br />
4. Enjoy while protecting password &amp; private key</p>
<h5>1. Create public &amp; private keys on your machine</h5>
<ul>
<li> On your local machine, issue the following command into the terminal to create the directory to hold your public and private keys. If it tells you that the directory already exists that is just fine.</li>
</ul>
<p><code>mkdir ~./.ssh</code></p>
<ul>
<li> Navigate to recently created directory.</li>
</ul>
<p><code>cd ~/.ssh</code></p>
<ul>
<li> Start application that will help you generate keys.</li>
</ul>
<p><code>ssh-keygen</code></p>
<ul>
<li> Follow and answer prompts to create keys. Pressing enter will accept defaults for prompts and is fine for all prompts except for the prompt asking for a passphrase. Enter a password to lock the key from unauthorized use or leave blank to have no passphrase. Running through the program looks like this:</li>
</ul>
<p><code>mike:.ssh mike$ ssh-keygen<br />
Generating public/private rsa key pair.<br />
Enter file in which to save the key (/Users/mike/.ssh/id_rsa):<br />
Enter passphrase (empty for no passphrase):<br />
Enter same passphrase again:<br />
Your identification has been saved in /Users/mike/.ssh/id_rsa.<br />
Your public key has been saved in /Users/mike/.ssh/id_rsa.pub.<br />
The key fingerprint is:<br />
4a:3b:67:e0:82:b7:46:51:0b:b3:41:28:d4:9a:5d:f6 mike@mike<br />
The key's randomart image is:<br />
+--[ RSA 2048]----+<br />
|...o.            |<br />
|. ..+o.          |<br />
| .+ o*..         |<br />
| o .o .E         |<br />
|     .o S        |<br />
|   ..o +         |<br />
|  ..o = o        |<br />
|   ..o +         |<br />
|   ..            |<br />
+-----------------+</code></p>
<h5>2. Copy public key to server</h5>
<ul>
<li> Connect to server via ssh (or other means)</li>
</ul>
<p><code>ssh user@host</code></p>
<ul>
<li> Make folder to hold public key</li>
</ul>
<p><code>mkdir ~/.ssh</code></p>
<ul>
<li> Open new terminal window to copy public key to server via scp</li>
</ul>
<p><code>scp ~/.ssh/id_rsa.pub user@host:~/.ssh/</code></p>
<ul>
<li> Close terminal window used to copy public key over</li>
</ul>
<h5>3. Add public key on server to server&#8217;s authorized key list</h5>
<p><code> cat ~/.ssh/id_rsa.pub &gt;&gt; ~/.ssh/authorized_keys</code></p>
<h5>4. Enjoy while protecting password &amp; private key</h5>
<ul>
<li> You are now all set up and can connect to the server using you newly created keys. Just ssh into the server as usual and the server will take care of the key authentication behind the scenes. If you are using a password to lock your key, you will see a window similar to this the first time you use the key until your mac keychain locks again. If you are not using a password to lock the key then you will never be prompted for a password again to ssh into your server from your computer.</li>
</ul>
<p><img class="alignnone size-full wp-image-1074" title="keys" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/3466560105_0b6f694d4a_m.jpg" alt="keys" width="240" height="161" /></p>
<p>Note:<br />
You can easily rename the keys so you can have multiple keys on a computer and server. Just make sure to append each key to the server&#8217;s authorized_keys file using<br />
<code> cat ~/.ssh/id_rsa.pub &gt;&gt; ~/.ssh/authorized_keys</code></p>
<p>I originally learned how to set up key based authentication on a linux server from my friend Jesse on his blog <a href="http://www.jessecole.org/">http://www.jessecole.org/</a></p>
<p>Images:</p>
<div><a rel="cc:attributionURL" href="http://www.flickr.com/photos/brenda-starr/">Keys </a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></div>
<div><a rel="cc:attributionURL" href="http://www.flickr.com/photos/brenda-starr/">Key </a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/key-based-authentication-for-ssh/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Get Incredible Designs with Preston Lee</title>
		<link>http://geek.michaelgrace.org/2009/11/get-incredible-designs-with-preston-lee/</link>
		<comments>http://geek.michaelgrace.org/2009/11/get-incredible-designs-with-preston-lee/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 14:40:22 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1061</guid>
		<description><![CDATA[Sometimes picking a designer is like finding a good restaurant, you either have to go there and try the food or ask a bunch of your friends where the best place to eat is. Well, I&#8217;m your friend and I found an AWESOME restaurant!! Actually, not a restaurant but an awesome designer!!! His name is [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes picking a designer is like finding a good restaurant, you either have to go there and try the food or ask a bunch of your friends where the best place to eat is. Well, I&#8217;m your friend and I found an AWESOME restaurant!! Actually, not a restaurant but an awesome designer!!!<img class="alignleft size-full wp-image-1064" title="preston_lee" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/preston_lee.jpg" alt="preston_lee" width="73" height="73" /> His name is Preston Lee and I highly recommend you follow his <a href="http://graphicdesignblender.com/">blog</a>, join the conversation with him on <a href="http://twitter.com/prestondlee">Twitter</a>, AND use his ninja rock star design skills for what ever you need designing for. I recently had Preston design some business cards for me and I was floored with the whole experience and the results. Quick results, rockin designs, and was a ton of fun to work with.</p>
<p>I just recently started <span id="more-1061"></span>following Preston on Twitter and had him do my business cards but I already feel like we have been friends for a while. I couldn&#8217;t have asked for a better design that truly reflects my personality, my goals, is very professional, and everyone loves my card when I give it to them. If you&#8217;re still not convince about his skills and commitment to design, just check out his blog and you will find that Preston is well on his way to the top of the design industry. Anything from website design to  business cards, Preston is your man for the job. So, from a friend to a friend, I promise you that you won&#8217;t be disappointed!</p>
<p>Contact him now via Twitter <a href="http://twitter.com/prestondlee">@prestondlee</a></p>
<p>or on his <a href="http://graphicdesignblender.com/contact">contact page on his blog</a></p>
<div id="attachment_1062" class="wp-caption alignnone" style="width: 310px"><a href="http://graphicdesignblender.com/"><img class="size-full wp-image-1062 " title="business_cards" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/business_cards.jpg" alt="business_cards" width="300" height="344" /></a><p class="wp-caption-text">Design by Preston</p></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/get-incredible-designs-with-preston-lee/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Insecure Wireless Network Could Get You Arrested or Sued</title>
		<link>http://geek.michaelgrace.org/2009/11/insecure-wireless-network-could-get-you-arrested-or-sued/</link>
		<comments>http://geek.michaelgrace.org/2009/11/insecure-wireless-network-could-get-you-arrested-or-sued/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 08:17:40 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1041</guid>
		<description><![CDATA[Synopsis:
Having an insecure wireless network makes you liable for arrest or lawsuit! If you have not done all these things listed below to protect your wireless network, take the few minutes it will take to do the basics and DO THEM NOW!!
Basics
There is no excuse for not doing all these things
- Change default user name [...]]]></description>
			<content:encoded><![CDATA[<h3>Synopsis:</h3>
<p><a href="http://www.flickr.com/photos/pinksherbet/3484925590/"><img class="size-full wp-image-1049 alignleft" title="shocked girl" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/shocked_girl.jpg" alt="shocked girl" width="160" height="122" /></a>Having an insecure wireless network makes you liable for arrest or lawsuit! If you have not done all these things listed below to protect your wireless network, take the few minutes it will take to do the basics and DO THEM NOW!!</p>
<h4>Basics</h4>
<p><em>There is no excuse for not doing all these things</em><br />
- Change default user name &amp; passwords for routing equipment<br />
- Use strong passwords<br />
- Turn on encryption (WPA2 or better. WEP is hackable in minutes)<br />
- Change default SSID<br />
- Enable firewalls<br />
- Turn off when not in use<br />
- Update router firmware to the latest version</p>
<h4>Advanced</h4>
<p><em>Increases security but may require more time or expertise</em><br />
- Disable DHCP and assign static IP Addresses<br />
- Filter by MAC address<br />
- Monitor network for intrusions<br />
- Use software to test for network vulnerabilities</p>
<p><a href="http://www.flickr.com/photos/banspy/3843187365/"><img class="alignleft size-full wp-image-1048" title="handcuffs" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/3843187365_1a0a5339d6_m.jpg" alt="handcuffs" width="192" height="144" /></a>Did you know that you can be arrested or be sued if your wireless network is insecure? If you have an insecure wireless router at home, someone could use your internet connection to start downloading child pornography, attack the NSA, send spam, release viruses, or hack your own computer and steal your identity! So when the police or NSA come knocking at your door how are you going to prove that you didn&#8217;t do it? All that activity will be traced back to your IP address and you will need a really good argument to convince them otherwise. But why waste your time, money, and possibly your identity by not taking a few minutes to secure your network? What about businesses that have wireless networks set up? If a business has an insecure wireless network, hackers can use that to steal information by monitoring the network or compromising computers on that network. If that happens, patients, customers, and employees are all at risk of having their private information stolen. Not good!</p>
<h4>Lets step through the basics of what everyone should do to secure their wireless network.</h4>
<p><span id="more-1041"></span></p>
<h6>- Change default user name &amp; passwords for routing equipment</h6>
<p>If you don&#8217;t change them, your router can be controlled by anyone. Changing the user name and password on your wireless router is easy. If you don&#8217;t know how to change them do a Google search for the user manual for the make and model of your wireless router.</p>
<h6>- Use strong passwords</h6>
<p>Please don&#8217;t set the password to be the same as the user name or the name of the router, that is just asking for trouble.  Good passwords generally need to be 7 or more characters with a mix of symbols, letters, and numbers. Using words that can be found in the dictionary  in your password means that it can probably be hacked in just a few minutes.</p>
<h6>- Turn on encryption</h6>
<p>Turning on encryption means that all the information won&#8217;t be sent over the air for everyone to see. Not having encryption turned on is like having a large electronic billboard outside your home or office displaying all the information that is being sent over the network. When turning on encryption on your wireless router, you will probably be presented with several encryption options. WEP is no longer a good choice because it is flawed and can be hacked in minutes. WPA2 is a  better choice and will keep your information much safer.</p>
<h6>- Change default SSID</h6>
<p>SSID is the unique name that devices use to connect with the wireless router. While changing the SSID of your wireless router doesn&#8217;t increase how secure it is, it can reduce the likelihood if it getting attacked. If a hacker sees that a wireless router&#8217;s SSID has been left at it&#8217;s default, there is a good chance that the router still has all or most of it&#8217;s default security settings (which aren&#8217;t secure). Changing the SSID moves your router off of the list of first to attack. You can even take that a step further and disable broadcasting of the SSID which means that devices will have to know the SSID before they can connect. Because an non broadcasted SSID can be found using the right tools, it should not be used as a sole means of security.</p>
<h6>- Enable firewall</h6>
<p><a href="http://www.flickr.com/photos/renneville/3052194640/"><img class="alignnone size-full wp-image-1047" title="brick wall" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/3052194640_0394efbbf7_m.jpg" alt="brick wall" width="240" height="161" /></a></p>
<p>Most routers come with basic firewall capabilities and it would be silly not to enable it. Firewall software should also be running on all devices connecting to the network if possible.</p>
<h6>- Turn off when not in use</h6>
<p>Obviously it is overkill to be turning your router on and off every 5 min. when you need to pull up a web page or check your email. Turning of the router when you will be out of town or know you won&#8217;t be using it for a while is an excellent preventative measure.</p>
<h6>- Update router firmware to the latest version</h6>
<p>Often a manufacture of a router will release an update to the software that runs the router to fix security holes or improve performance. It is always a good idea to check to make sure you are running the latest and update it if you are not. Make sure you read and follow all instructions for updating firmware to prevent &#8220;bricking&#8221; your router. &#8220;Bricking&#8221; means you broke it and it can be very hard or impossible to get it working again, like a brick.</p>
<h6>- Disable DHCP and assign static IP Addresses</h6>
<p>DHCP is great because it is dynamic and it&#8217;s easy but it can be used to a hackers advantage. Assigning an IP to each device that you know is on the network prevents other devices from trying to get an IP to connect to the internet.</p>
<h6>- Filter by MAC address</h6>
<p>You can filter connections to the wireless router by the computers MAC address. The MAC address is a uniquely identifying number burned into the devices network interface. This is really nice because you can set up a list of devices that can connect to the network while keeping everyone else off.</p>
<h6>- Monitor network for intrusions</h6>
<p>There are several ways to monitor your network for intrusions. The simplest way is to set your router to log connection information and you look over those logs consistently for abnormal activity. Simple but not very time efficient. A more advanced way to monitor for intrusions is to set up an intrusion detection system (IDS) to look for suspicious activity and inform you of it automatically. There are some units that cost and are ready to go, or there are open source solutions like <a href="http://www.snort.org/">SNORT</a>. Monitoring a network for intrusions is an advanced safety measure and usually done by the safety conscious or those who must protect sensitive information on a network like a business, doctors office, or credit card company.</p>
<h6>- Use software to test for network vulnerabilities</h6>
<p>Ofter setting up a network to be secure, it is a really good idea to use tools to test for network insecurities. Many of the tools to test for vulnerabilities are the same ones used by hackers to gain access to your network, so why not use them to find the holes? Tool complexity range from clicking a button to typing in commands at a command line interface. If you are really serious about network security, or the information you have on your network mandates that you be paranoid about it, you had better be doing testing using these tools.</p>
<p>Resources:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/MAC_address">MAC address </a>
<ul>
<li><a href="http://en.wikipedia.org/wiki/MAC_address">http://en.wikipedia.org/wiki/MAC_address</a></li>
</ul>
</li>
<li><a href="http://www.webopedia.com/TERM/S/SSID.html">SSID </a>
<ul>
<li><a href="http://www.webopedia.com/TERM/S/SSID.html">http://www.webopedia.com/TERM/S/SSID.html</a></li>
</ul>
</li>
<li><a href="http://news.cnet.com/Insecure-networks-could-lead-to-lawsuits/2009-1033_3-940460.html?tag=mncol">Insecure networks could lead to liability lawsuits</a>
<ul>
<li><a href="http://news.cnet.com/Insecure-networks-could-lead-to-lawsuits/2009-1033_3-940460.html?tag=mncol">http://news.cnet.com/Insecure-networks-could-lead-to-lawsuits/2009-1033_3-940460.html?tag=mncol</a></li>
</ul>
</li>
<li><a href="http://news.cnet.com/Safety-Open-networks-pose-dilemma/2009-1033_3-982324.html?tag=mncol">Consumer network security</a>
<ul>
<li><a href="http://news.cnet.com/Safety-Open-networks-pose-dilemma/2009-1033_3-982324.html?tag=mncol">http://news.cnet.com/Safety-Open-networks-pose-dilemma/2009-1033_3-982324.html?tag=mncol</a></li>
</ul>
</li>
<li><a href="http://news.cnet.com/Wardriving-conviction-is-first-under-Can-Spam/2100-7351_3-5390722.html?tag=mncol">Wardriving&#8217; conviction is first under Can-Spam </a>
<ul>
<li><a href="http://news.cnet.com/Wardriving-conviction-is-first-under-Can-Spam/2100-7351_3-5390722.html?tag=mncol">http://news.cnet.com/Wardriving-conviction-is-first-under-Can-Spam/2100-7351_3-5390722.html?tag=mncol</a></li>
</ul>
</li>
<li><a href="http://wirelessdefence.org/Contents/Home%20Wireless%20Security%20Tips.htm">Home wireless security tips</a>
<ul>
<li><a href="http://wirelessdefence.org/Contents/Home%20Wireless%20Security%20Tips.htm">http://wirelessdefence.org/Contents/Home%20Wireless%20Security%20Tips.htm</a></li>
</ul>
</li>
<li><a href="http://www.cnn.com/2009/TECH/expert.q.a/03/17/pirillo.wireless.security/index.html">How do I secure my home Wi-fi network</a>
<ul>
<li><a href="http://www.cnn.com/2009/TECH/expert.q.a/03/17/pirillo.wireless.security/index.html">http://www.cnn.com/2009/TECH/expert.q.a/03/17/pirillo.wireless.security/index.html</a></li>
</ul>
</li>
<li><a href="http://news.cnet.com/Worried-about-Wi-Fi-security---page-2/2100-7347_3-5540969-2.html?tag=mncol">Worried about Wi-Fi security</a>
<ul>
<li><a href="http://news.cnet.com/Worried-about-Wi-Fi-security---page-2/2100-7347_3-5540969-2.html?tag=mncol">http://news.cnet.com/Worried-about-Wi-Fi-security&#8212;page-2/2100-7347_3-5540969-2.html?tag=mncol</a></li>
</ul>
</li>
<li><a href="http://compnetworking.about.com/od/wirelesssecurity/tp/wifisecurity.htm">10 Tips for Wireless Home Network Security</a>
<ul>
<li><a href="http://compnetworking.about.com/od/wirelesssecurity/tp/wifisecurity.htm">http://compnetworking.about.com/od/wirelesssecurity/tp/wifisecurity.htm</a></li>
</ul>
</li>
</ul>
<p>Images:</p>
<div><a rel="cc:attributionURL" href="http://www.flickr.com/photos/banspy/">Handcuffs </a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></div>
<div><a rel="cc:attributionURL" href="http://www.flickr.com/photos/renneville/">Brick wall </a> / <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a></div>
<div><a rel="cc:attributionURL" href="http://www.flickr.com/photos/pinksherbet/">Shocked girl</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/insecure-wireless-network-could-get-you-arrested-or-sued/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>TypeError: Error #2007: Parameter child must be non-null</title>
		<link>http://geek.michaelgrace.org/2009/11/typeerror-error-2007-parameter-child-must-be-non-null/</link>
		<comments>http://geek.michaelgrace.org/2009/11/typeerror-error-2007-parameter-child-must-be-non-null/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 12:35:19 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[ActionScript / Flash]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Error]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1034</guid>
		<description><![CDATA[This  error in Flash
TypeError: Error #2007: Parameter child must be non-null
was caused by the fact that I had not dragged the progressbar component into my library just like a problem I had before posted at http://geek.michaelgrace.org/2009/11/1172-definition-fl-controlstilelist-could-not-be-found/
This is now the second time I have done this and hopefully the last. ; )
Goodbye Flash error &#8220;TypeError: Error [...]]]></description>
			<content:encoded><![CDATA[<p>This  error in Flash<br />
<code>TypeError: Error #2007: Parameter child must be non-null</code><br />
was caused by the fact that I had not dragged the progressbar component into my library just like a problem I had before posted at <a href="http://geek.michaelgrace.org/2009/11/1172-definition-fl-controlstilelist-could-not-be-found/">http://geek.michaelgrace.org/2009/11/1172-definition-fl-controlstilelist-could-not-be-found/</a></p>
<p>This is now the second time I have done this and hopefully the last. ; )</p>
<p>Goodbye Flash error &#8220;TypeError: Error #2007: Parameter child must be non-null&#8221; I don&#8217;t want to see you again!</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/typeerror-error-2007-parameter-child-must-be-non-null/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is SSL, TLS, https &amp; why are they your friends?</title>
		<link>http://geek.michaelgrace.org/2009/11/what-is-ssl-tls-https-why-are-they-your-friends/</link>
		<comments>http://geek.michaelgrace.org/2009/11/what-is-ssl-tls-https-why-are-they-your-friends/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 09:55:26 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Browser]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1013</guid>
		<description><![CDATA[Do you know what SSL, TLS, and https mean and do? You deal with SSL, TLS, and https whether you know it or not and it is very important!
TLS = Transport Layer Security
SSL = Secure Socket Layer
https = Hypertext Transfer Protocol Secure
Private and sensitive information gets sent over the internet all day so what is [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.flickr.com/photos/bala_/2535158091/"><img class="aligncenter size-full wp-image-1027" title="security" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/2535158091_bd4439f69b.jpg" alt="security" width="487" height="231" /></a>Do you know what SSL, TLS, and https mean and do? You deal with SSL, TLS, and https whether you know it or not and it is very important!</p>
<p>TLS = Transport Layer Security<br />
SSL = Secure Socket Layer<br />
https = Hypertext Transfer Protocol Secure</p>
<p>Private and sensitive information gets sent over the internet all day so what is preventing someone from stealing that information? In order for information to be securely transferred over the internet 2 basics are needed.<br />
1. Confirm server identity<br />
2. Encrypt communication with server<a href="http://www.flickr.com/photos/narciss/2236491509/"><img class="alignright size-full wp-image-1021" title="Identity" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/2236491509_2c82f1926d_m.jpg" alt="Identity" width="144" height="125" /></a></p>
<p>You don&#8217;t want to send information to someone who is impersonating the person you actually want to send it to, do you? SSL and TLS provide a way to verify the identity of the recipient. In it&#8217;s simplest form, there are many companies that will give people digitally signed certificates vouching for that person saying in essence, &#8220;we have checked to make sure this person is who they say they are and we think you can trust them.&#8221; When you browse the web, your browser has a list of companies that it will trust to tell you who you can trust. So, when you connect to a server your browser can check their certificate and if it is signed by one of the companies that you trust then your browser will trust it.</p>
<p>Private conversations are good when you are sharing sensitive or private data. You don&#8217;t go walking around on the street shouting out your birthday, credit card number, and social security number so why would you do it on the internet? <a href="http://www.flickr.com/photos/demibrooke/2336528544/"><img class="size-full wp-image-1023 alignleft" title="shouting" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/2336528544_12c8c64896_m.jpg" alt="shouting" width="240" height="183" /></a>TLS and SSL provide a way for you to have a private conversation with a server so that others can&#8217;t &#8220;listen in&#8221; on your conversation by encrypting the data. Most data on the web is transferred using http but when it is secured using TLS or SSL it is called https.</p>
<p>It&#8217;s important to know when you are or aren&#8217;t using https when browsing the web to protect your information. Most browsers have visual indicators to show that https is being used. Make it a habit to make sure that your information will be secure before sending or retrieving that data.</p>
<p>Resources to learn more of the nitty gritty of SSL, TLS, and https<br />
TLS:<br />
<a href="http://en.wikipedia.org/wiki/Transport_Layer_Security">http://en.wikipedia.org/wiki/Transport_Layer_Security</a><br />
<a href="http://en.wikipedia.org/wiki/Transport_Layer_Security"> </a><a href="http://www.ietf.org/dyn/wg/charter/tls-charter.html">http://www.ietf.org/dyn/wg/charter/tls-charter.html</a></p>
<p>SSL:<br />
<a href="http://en.wikipedia.org/wiki/Transport_Layer_Security"> </a><a href="http://www.verisign.com/ssl/ssl-information-center/how-ssl-security-works/index.html">http://www.verisign.com/ssl/ssl-information-center/how-ssl-security-works/index.html</a><br />
<a href="http://video.google.com/videoplay?docid=7130470471741831613&amp;ei=JETxSrXaC5v-qAPLzKWxDQ&amp;q=ssl&amp;hl=en&amp;view=2&amp;client=firefox-a#"> </a><a href="http://video.google.com/videoplay?docid=7130470471741831613&amp;ei=JETxSrXaC5v-qAPLzKWxDQ&amp;q=ssl&amp;hl=en&amp;view=2&amp;client=firefox-a#">http://video.google.com/videoplay?docid=7130470471741831613&amp;ei=JETxSrXaC5v-qAPLzKWxDQ&amp;q=ssl&amp;hl=en&amp;view=2&amp;client=firefox-a#</a></p>
<p>https:<br />
<a href="http://video.google.com/videoplay?docid=7130470471741831613&amp;ei=JETxSrXaC5v-qAPLzKWxDQ&amp;q=ssl&amp;hl=en&amp;view=2&amp;client=firefox-a#"> </a><a href="http://en.wikipedia.org/wiki/HTTP_Secure">http://en.wikipedia.org/wiki/HTTP_Secure</a><br />
<a href="http://video.google.com/videoplay?docid=7130470471741831613&amp;ei=JETxSrXaC5v-qAPLzKWxDQ&amp;q=ssl&amp;hl=en&amp;view=2&amp;client=firefox-a#"> </a><a href="http://www.ourshop.org/resources/ssl.html">http://www.ourshop.org/resources/ssl.html</a></p>
<p>Images <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">via CC BY 2.0</a><br />
Lock and Chain: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/bala_/">http://www.flickr.com/photos/bala_/</a><br />
Silheuette: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/narciss/">http://www.flickr.com/photos/narciss/</a><br />
Yelling: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/demibrooke/">http://www.flickr.com/photos/demibrooke/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/what-is-ssl-tls-https-why-are-they-your-friends/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>1172: Definition fl.controls:TileList could not be found.</title>
		<link>http://geek.michaelgrace.org/2009/11/1172-definition-fl-controlstilelist-could-not-be-found/</link>
		<comments>http://geek.michaelgrace.org/2009/11/1172-definition-fl-controlstilelist-could-not-be-found/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 00:01:06 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[ActionScript / Flash]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1002</guid>
		<description><![CDATA[I have been working on a flash project in ActionScript 3 lately for a class and I ran into an error. I have been trying to use a TileList component for a horizontally scrolling thumbnail gallery. The error was 1172: Definition fl.controls:TileList could not be found. The beginning of my AS3 looked like:
import fl.controls.TileList;
import fl.controls.ScrollBarDirection;
I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/eflon/3271730476/in/photostream/"><img class="alignleft size-full wp-image-1007" title="Library" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/3271730476_433a024f20_m.jpg" alt="Library" width="160" height="240" /></a>I have been working on a flash project in ActionScript 3 lately for a class and I ran into an error. I have been trying to use a TileList component for a horizontally scrolling thumbnail gallery. The error was <code>1172: Definition fl.controls:TileList could not be found.</code> The beginning of my AS3 looked like:<br />
<code>import fl.controls.TileList;<br />
import fl.controls.ScrollBarDirection;</code><br />
I tried dragging a TileList component from the Library and running it again and it worked! I deleted the TileList component from the stage and ran it again and it still worked. I&#8217;m not sure why I got these results but I am glad that my project is working again. Hope this helps some who might run into the same problem. If you know  why this is the way it is I would love to know.</p>
<div>Photo: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/eflon/">http://www.flickr.com/photos/eflon/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/1172-definition-fl-controlstilelist-could-not-be-found/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Happy Halloween From Mike Grace</title>
		<link>http://geek.michaelgrace.org/2009/10/happy-halloween-from-mike-grace/</link>
		<comments>http://geek.michaelgrace.org/2009/10/happy-halloween-from-mike-grace/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 04:23:52 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Giggles]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[laugh]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=993</guid>
		<description><![CDATA[It doesn&#8217;t matter what you do or what you see this Halloween. If you know me, there will be nothing scarier than to watch this video.
 YOU HAVE BEEN WARNED!!! : )
 Enjoy your Halloween and thanks for watching!

Try JibJab Sendables® eCards today!


Trick or Tweet!
]]></description>
			<content:encoded><![CDATA[<p>It doesn&#8217;t matter what you do or what you see this Halloween. If you know me, there will be nothing scarier than to watch this video.</p>
<p> YOU HAVE BEEN WARNED!!! : )</p>
<p> Enjoy your Halloween and thanks for watching!</p>
<div style="background-color: #e9e9e9; width: 425px;"><object id="A64060" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="319" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="quality" value="high" /><param name="scaleMode" value="showAll" /><param name="allowNetworking" value="all" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="external_make_id=OolcnSRV7LVFKIQp&amp;service=sendables.jibjab.com&amp;partnerID=JibJab" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://aka.zero.jibjab.com/client/zero/ClientZero_EmbedViewer.swf?external_make_id=OolcnSRV7LVFKIQp&amp;service=sendables.jibjab.com&amp;partnerID=JibJab" /><embed id="A64060" type="application/x-shockwave-flash" width="425" height="319" src="http://aka.zero.jibjab.com/client/zero/ClientZero_EmbedViewer.swf?external_make_id=OolcnSRV7LVFKIQp&amp;service=sendables.jibjab.com&amp;partnerID=JibJab" allowscriptaccess="always" flashvars="external_make_id=OolcnSRV7LVFKIQp&amp;service=sendables.jibjab.com&amp;partnerID=JibJab" allowfullscreen="true" allownetworking="all" scalemode="showAll" quality="high" wmode="transparent"></embed></object></p>
<div style="text-align: center; width: 435px; margin-top: 6px;">Try JibJab Sendables® <a href="http://sendables.jibjab.com/ecards">eCards</a> today!</div>
</div>
<p><br/><br />
Trick or <a href="http://www.twitter.com/MikeGrace">Tweet</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/10/happy-halloween-from-mike-grace/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Some Site Designs I Like</title>
		<link>http://geek.michaelgrace.org/2009/10/some-site-designs-i-like/</link>
		<comments>http://geek.michaelgrace.org/2009/10/some-site-designs-i-like/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 03:36:07 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Giggles]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[List]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=983</guid>
		<description><![CDATA[
I recently found a site that features well designed sites and I have picked a few that stood out to me.
https://www.redbrickhealth.com/
http://www.studio7designs.com/
http://www.veboolabs.com/
http://www.divvoted.com/
http://thegreatbeardedreef.com/
http://emotionslive.co.uk/
http://www.wpcoder.com/
http://blogfullbliss.com/
http://www.jeromem.net/
http://www.silverbackapp.com/
http://francescomugnai.com/
http://nicolaswill.com/
http://wheeloftea.com/
http://www.christophe-peyras.com/
http://stoodeo.com/
http://www.futurice.com/
http://gotsleeves.appspot.com/
http://beakapp.com/
http://yodaa.com/
http://www.sjlwebdesign.co.uk/
http://codebutton.com/
http://koormann.de/
]]></description>
			<content:encoded><![CDATA[<p><a href="http://stoodeo.com/"><img class="aligncenter size-full wp-image-986" title="stoodeo" src="http://geek.michaelgrace.org/wp-content/uploads/2009/10/stoodeo.jpg" alt="stoodeo" width="500" height="279" /></a></p>
<p>I recently found a <a href="http://cssline.com/">site</a> that features well designed sites and I have picked a few that stood out to me.</p>
<p><a href="https://www.redbrickhealth.com/">https://www.redbrickhealth.com/</a></p>
<p><a href="http://www.studio7designs.com/">http://www.studio7designs.com/</a></p>
<p><a href="http://www.veboolabs.com/">http://www.veboolabs.com/</a><span id="more-983"></span></p>
<p><a href="http://www.divvoted.com/">http://www.divvoted.com/</a></p>
<p><a href="http://thegreatbeardedreef.com/">http://thegreatbeardedreef.com/</a></p>
<p><a href="http://emotionslive.co.uk/">http://emotionslive.co.uk/</a></p>
<p><a href="http://www.wpcoder.com/">http://www.wpcoder.com/</a></p>
<p><a href="http://blogfullbliss.com/">http://blogfullbliss.com/</a></p>
<p><a href="http://www.jeromem.net/">http://www.jeromem.net/</a></p>
<p><a href="http://www.silverbackapp.com/">http://www.silverbackapp.com/</a></p>
<p><a href="http://francescomugnai.com/">http://francescomugnai.com/</a></p>
<p><a href="http://nicolaswill.com/">http://nicolaswill.com/</a></p>
<p><a href="http://wheeloftea.com/">http://wheeloftea.com/</a></p>
<p><a href="http://www.christophe-peyras.com/">http://www.christophe-peyras.com/</a></p>
<p><a href="http://stoodeo.com/">http://stoodeo.com/</a><a href="http://www.futurice.com/"></a></p>
<p><a href="http://www.futurice.com/">http://www.futurice.com/</a></p>
<p><a href="http://gotsleeves.appspot.com/">http://gotsleeves.appspot.com/</a></p>
<p><a href="http://beakapp.com/">http://beakapp.com/</a></p>
<p><a href="http://yodaa.com/">http://yodaa.com/</a></p>
<p><a href="http://www.sjlwebdesign.co.uk/">http://www.sjlwebdesign.co.uk/</a></p>
<p><a href="http://codebutton.com/">http://codebutton.com/</a></p>
<p><a href="http://koormann.de/">http://koormann.de/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/10/some-site-designs-i-like/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My First Podcast!!</title>
		<link>http://geek.michaelgrace.org/2009/10/my-first-podcast/</link>
		<comments>http://geek.michaelgrace.org/2009/10/my-first-podcast/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 03:46:33 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Podcast]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=978</guid>
		<description><![CDATA[
I have officially entered the world of Podcasting! The podcast is about technology and learning and incidentally enough, is hosted at http://technologyforlearning.info I am privileged to be able to co-produce the podcast with a good friend of mine, http://michaelfarmer.info. We both have a lot of fun being geeks and really digging into technology and what [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://technologyforlearning.info"><img class="aligncenter size-full wp-image-979" title="Technology For Learning" src="http://geek.michaelgrace.org/wp-content/uploads/2009/10/Screen-shot-2009-10-09-at-9.42.50-PM.png" alt="Technology For Learning" width="719" height="139" /></a></p>
<p>I have officially entered the world of Podcasting! The podcast is about technology and learning and incidentally enough, is hosted at <a href="http://technologyforlearning.info">http://technologyforlearning.info</a> I am privileged to be able to co-produce the podcast with a good friend of mine, <a href="http://michaelfarmer.info/">http://michaelfarmer.info</a>. We both have a lot of fun being geeks and really digging into technology and what it means for us today and how it will impact us in the future. We are both amateurs and don&#8217;t have any formal voice training but we do love what we do. So, if you would like to join in on the fun and the conversation subscribe to the podcast and tune in each week as we review current technology and how it applies to learning.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/10/my-first-podcast/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Level Out Podcast Volume Tool</title>
		<link>http://geek.michaelgrace.org/2009/10/level-out-podcast-volume-tool/</link>
		<comments>http://geek.michaelgrace.org/2009/10/level-out-podcast-volume-tool/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 03:34:53 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=974</guid>
		<description><![CDATA[
Ever wonder how to level sound volume on a recording or podcast? The Levelator is a super simple application for Mac or Windows to level out sound volumes on a podcast recording. Mike Farmer and I use it for our podcast over at http://technologyforlearning.info and it works wonders for the times when we accidentally move [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.conversationsnetwork.org/levelator"><img class="aligncenter size-full wp-image-975" title="Levelator" src="http://geek.michaelgrace.org/wp-content/uploads/2009/10/Levelator-1.2.1-screen.png" alt="Levelator" width="431" height="246" /></a></p>
<p>Ever wonder how to level sound volume on a recording or podcast? The Levelator is a super simple application for Mac or Windows to level out sound volumes on a podcast recording. <a href="http://michaelfarmer.info/blog/">Mike Farmer</a> and I use it for our podcast over at <a href="http://technologyforlearning.info">http://technologyforlearning.info</a> and it works wonders for the times when we accidentally move away from the microphone. It&#8217;s free and it works great so what are you waiting for? Go download it from their site at <a href="http://www.conversationsnetwork.org/levelator">http://www.conversationsnetwork.org/levelator</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/10/level-out-podcast-volume-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where Are the Default Mac OS X Icons</title>
		<link>http://geek.michaelgrace.org/2009/10/where-are-the-default-mac-os-x-icons/</link>
		<comments>http://geek.michaelgrace.org/2009/10/where-are-the-default-mac-os-x-icons/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 03:28:36 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=957</guid>
		<description><![CDATA[
Question:
Where are the default Mac OS X Icons in .icns format?
Answer:

/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources


How to get there:
you can get there several different ways.
1) Paste into Terminal

cd /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources; open .

2) Open Finder -&#62; Select &#8220;Go&#8221; menu item -&#62; Select &#8220;Go to Folder&#8221; -&#62; Paste

/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources

3) Open Finder -&#62; (Keyboard Shortcut) Shift + Command + G -&#62; Paste

/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources

]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-965 alignleft" title="FinderIcon" src="http://geek.michaelgrace.org/wp-content/uploads/2009/10/FinderIcon.png" alt="FinderIcon" width="128" height="128" /><br />
<strong>Question:</strong><br />
Where are the default Mac OS X Icons in .icns format?</p>
<p><strong>Answer:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>CoreServices<span style="color: #000000; font-weight: bold;">/</span>CoreTypes.bundle<span style="color: #000000; font-weight: bold;">/</span>Contents<span style="color: #000000; font-weight: bold;">/</span>Resources</pre></div></div>

<p><img class="alignleft size-full wp-image-972" title="ErasingIcon" src="http://geek.michaelgrace.org/wp-content/uploads/2009/10/ErasingIcon.png" alt="ErasingIcon" width="128" height="128" /></p>
<p><strong>How to get there:</strong></p>
<p>you can get there several different ways.<br />
<strong>1)</strong> Paste into Terminal</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>CoreServices<span style="color: #000000; font-weight: bold;">/</span>CoreTypes.bundle<span style="color: #000000; font-weight: bold;">/</span>Contents<span style="color: #000000; font-weight: bold;">/</span>Resources; open .</pre></div></div>

<p><strong>2) </strong>Open Finder -&gt; Select &#8220;Go&#8221; menu item -&gt; Select &#8220;Go to Folder&#8221; -&gt; Paste</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>CoreServices<span style="color: #000000; font-weight: bold;">/</span>CoreTypes.bundle<span style="color: #000000; font-weight: bold;">/</span>Contents<span style="color: #000000; font-weight: bold;">/</span>Resources</pre></div></div>

<p><strong>3) </strong>Open Finder -&gt; (Keyboard Shortcut) Shift + Command + G -&gt; Paste</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>CoreServices<span style="color: #000000; font-weight: bold;">/</span>CoreTypes.bundle<span style="color: #000000; font-weight: bold;">/</span>Contents<span style="color: #000000; font-weight: bold;">/</span>Resources</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/10/where-are-the-default-mac-os-x-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Year Old Class All with iPod Touches</title>
		<link>http://geek.michaelgrace.org/2009/09/8-year-old-class-all-with-ipod-touches/</link>
		<comments>http://geek.michaelgrace.org/2009/09/8-year-old-class-all-with-ipod-touches/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 05:19:51 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=953</guid>
		<description><![CDATA[I am totally geeking out about this! Found the link through a fried on Twitter and I think it illustrates the power of giving young children the tools to each learn at their own pace. They also are a bit more motivated and excited about being able to use such a cool piece of technology.

Share [...]]]></description>
			<content:encoded><![CDATA[<p>I am totally geeking out about this! Found the link through a fried on Twitter and I think it illustrates the power of giving young children the tools to each learn at their own pace. They also are a bit more motivated and excited about being able to use such a cool piece of technology.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="380" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://blip.tv/play/gr8cgaDlCQI" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="380" src="http://blip.tv/play/gr8cgaDlCQI" allowfullscreen="true"></embed></object></p>
<h2>Share Your Thoughts</h2>
<p><strong>?? Would you want your child to have an iPod touch as one of their learning tools in school? What can you see as some of the advantages or drawbacks with having this type of approach with our kids and their learning?</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/09/8-year-old-class-all-with-ipod-touches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Intro to ActionScript 3</title>
		<link>http://geek.michaelgrace.org/2009/09/basic-intro-to-actionscript-3/</link>
		<comments>http://geek.michaelgrace.org/2009/09/basic-intro-to-actionscript-3/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 04:11:21 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[ActionScript / Flash]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=947</guid>
		<description><![CDATA[Finally! I found a really well done, easy to understand, and polished how to video series on ActionScript 3 and Flash. The video series starts at the very beginning and shares how-to in 5 minute clips. I am really glad Adobe and Doug Winnie put this series together.
?? Have you found another amazing Flash / [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tv.adobe.com/show/actionscript-11-with-doug-winnie/"><img class="aligncenter size-full wp-image-948" title="intro actionscript 3" src="http://geek.michaelgrace.org/wp-content/uploads/2009/09/intro_actionscript_3.jpg" alt="intro actionscript 3" width="500" height="279" /></a>Finally! I found a really well done, easy to understand, and polished how to <a href="http://tv.adobe.com/show/actionscript-11-with-doug-winnie/">video series on ActionScript 3 and Flash</a>. The video series starts at the very beginning and shares how-to in 5 minute clips. I am really glad Adobe and Doug Winnie put this series together.</p>
<p>?? Have you found another amazing Flash / ActionScript resource? What was the best thing you did to learn ActionScript?? Let us know! : D</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/09/basic-intro-to-actionscript-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Snow Leopard Compatible 64 bit Growl (beta)</title>
		<link>http://geek.michaelgrace.org/2009/09/snow-leopard-compatible-64-bit-growl-beta/</link>
		<comments>http://geek.michaelgrace.org/2009/09/snow-leopard-compatible-64-bit-growl-beta/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 21:00:51 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=942</guid>
		<description><![CDATA[
A Snow Leopard compatible beta can be found at
http://growl.info/beta.html
]]></description>
			<content:encoded><![CDATA[<p><a href="http://growl.info/beta.htm"><img class="aligncenter size-full wp-image-943" title="growl" src="http://geek.michaelgrace.org/wp-content/uploads/2009/09/growl.png" alt="growl" width="128" height="128" /></a></p>
<p>A Snow Leopard compatible beta can be found at</p>
<p><a href="http://growl.info/beta.html">http://growl.info/beta.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/09/snow-leopard-compatible-64-bit-growl-beta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Create Best PowerPoint</title>
		<link>http://geek.michaelgrace.org/2009/09/how-to-create-best-powerpoint/</link>
		<comments>http://geek.michaelgrace.org/2009/09/how-to-create-best-powerpoint/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 21:19:25 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=937</guid>
		<description><![CDATA[I was recently shown the best powerpoint presentation I have ever seen. It happens to be a powerpoint about powerpoint presentations entitled &#8220;Death by PowerPoint&#8221;. Any one wanting to improve their PowerPoint presentations or just wanting a good laugh should take a moment and read through the presentation shared on slideshare.com
Death by PowerPoint
View more documents [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently shown the best powerpoint presentation I have ever seen. It happens to be a powerpoint about powerpoint presentations entitled &#8220;Death by PowerPoint&#8221;. Any one wanting to improve their PowerPoint presentations or just wanting a good laugh should take a moment and read through the presentation shared on slideshare.com</p>
<div id="__ss_85551" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Death by PowerPoint" href="http://www.slideshare.net/thecroaker/death-by-powerpoint">Death by PowerPoint</a><object style="margin:0px" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=death-by-powerpoint4344&amp;rel=0&amp;stripped_title=death-by-powerpoint" /><param name="allowfullscreen" value="true" /><embed style="margin:0px" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=death-by-powerpoint4344&amp;rel=0&amp;stripped_title=death-by-powerpoint" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">documents</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/thecroaker">Alexei Kapterev</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/09/how-to-create-best-powerpoint/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BYUI Class Assignment Calendars via Google</title>
		<link>http://geek.michaelgrace.org/2009/09/byui-class-assignment-calendars-via-google/</link>
		<comments>http://geek.michaelgrace.org/2009/09/byui-class-assignment-calendars-via-google/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 15:52:32 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=928</guid>
		<description><![CDATA[
Brother Judkins Comm 313
http://www.google.com/calendar/ical/b8dvinssolbf8qce3r2tam0alc%40group.calendar.google.com/private-87267a1ca2dc1e499bd46ab3dae40b26/basic.ics
Brother Ercanbrack CS 165
http://www.google.com/calendar/ical/ca0dn9amvkt8f3a10j7ch0huqg%40group.calendar.google.com/public/basic.ics
Chalkboard Photo: http://www.flickr.com/photos/frozenchipmunk/ / CC BY 2.0
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.flickr.com/photos/frozenchipmunk/250236754/"><img class="size-full wp-image-933 aligncenter" title="chalkboard" src="http://geek.michaelgrace.org/wp-content/uploads/2009/09/250236754_b2fa5a2265_m.jpg" alt="chalkboard" width="240" height="160" /></a></p>
<p style="text-align: left;">Brother Judkins Comm 313<br />
<a href="http://www.google.com/calendar/ical/b8dvinssolbf8qce3r2tam0alc%40group.calendar.google.com/private-87267a1ca2dc1e499bd46ab3dae40b26/basic.ics">http://www.google.com/calendar/ical/b8dvinssolbf8qce3r2tam0alc%40group.calendar.google.com/private-87267a1ca2dc1e499bd46ab3dae40b26/basic.ics</a></p>
<p>Brother Ercanbrack CS 165<a href="http://www.google.com/calendar/ical/ca0dn9amvkt8f3a10j7ch0huqg%40group.calendar.google.com/public/basic.ics"><br />
http://www.google.com/calendar/ical/ca0dn9amvkt8f3a10j7ch0huqg%40group.calendar.google.com/public/basic.ics</a></p>
<p>Chalkboard Photo: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/frozenchipmunk/">http://www.flickr.com/photos/frozenchipmunk/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/09/byui-class-assignment-calendars-via-google/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>My Go-To WordPress Plugins</title>
		<link>http://geek.michaelgrace.org/2009/09/my-go-to-wordpress-plugins/</link>
		<comments>http://geek.michaelgrace.org/2009/09/my-go-to-wordpress-plugins/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 23:44:21 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=919</guid>
		<description><![CDATA[Just a quick and dirty list for a few of my friends my favorite WordPress Plugins that I use on almost every installation that I do.
Akismet
AntiVirus
AskApache Password Protect
CSS Naked Day
Fancybox
Google XML Sitemaps
jQuery lazy load plugin
List Drafts Widget
Page Links To
Really Simple CAPTCHA
Spider Tracker
WordPress Related Posts
wp-cache
WP-IE6update
WP Security Scan
Electrical Outlet Photo http://www.flickr.com/photos/grendelkhan/ / CC BY-SA 2.0
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-920 aligncenter" title="WordPres PLUGin" src="http://geek.michaelgrace.org/wp-content/uploads/2009/09/119929591_a0ec3a641d_m.jpg" alt="WordPres PLUGin" width="240" height="160" />Just a quick and dirty list for a few of my friends my favorite WordPress Plugins that I use on almost every installation that I do.</p>
<p>Akismet<br />
AntiVirus<span id="more-919"></span><br />
AskApache Password Protect<br />
CSS Naked Day<br />
Fancybox<br />
Google XML Sitemaps<br />
jQuery lazy load plugin<br />
List Drafts Widget<br />
Page Links To<br />
Really Simple CAPTCHA<br />
Spider Tracker<br />
WordPress Related Posts<br />
wp-cache<br />
WP-IE6update<br />
WP Security Scan<br />
Electrical Outlet Photo <a rel="cc:attributionURL" href="http://www.flickr.com/photos/grendelkhan/">http://www.flickr.com/photos/grendelkhan/</a> / <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/09/my-go-to-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Time Management &amp; Planning</title>
		<link>http://geek.michaelgrace.org/2009/08/time-management-planning/</link>
		<comments>http://geek.michaelgrace.org/2009/08/time-management-planning/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 04:32:11 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/2009/08/time-management-planning/</guid>
		<description><![CDATA[I am reminded again why planning and time management are so important as my wife and I begin to plan for the upcoming fall semester. Priorities will be very important as the semester rolls along as I will need them to decide what gets done first. Might have to take a little off of my [...]]]></description>
			<content:encoded><![CDATA[<p>I am reminded again why planning and time management are so important as my wife and I begin to plan for the upcoming fall semester. Priorities will be very important as the semester rolls along as I will need them to decide what gets done first. Might have to take a little off of my plate, or maybe I am just over planning. There are soo many things that I want to get done this semester and so little time. Would love to hear any advice or experiences you have had with schedules that look like this. </p>
<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2009/08/l_1600_1200_F46DC9AF-8467-4837-A6A0-91DABFB1D4B8.jpeg"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/l_1600_1200_F46DC9AF-8467-4837-A6A0-91DABFB1D4B8.jpeg" alt="" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/time-management-planning/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Be a Better Student This Year</title>
		<link>http://geek.michaelgrace.org/2009/08/be-a-better-student-this-year/</link>
		<comments>http://geek.michaelgrace.org/2009/08/be-a-better-student-this-year/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 19:13:36 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[How to]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=906</guid>
		<description><![CDATA[Some awesome tips provided by lifehacker.com on how to be a better student this year when you get back to school. I felt these were good enough it deserved more than a tweet. ; )

http://lifehacker.com/5335215/10-must+dos-for-the-first-week-of-college
Library Photo http://www.flickr.com/photos/photos_clinker/ / CC BY-SA 2.0
]]></description>
			<content:encoded><![CDATA[<p>Some awesome tips provided by lifehacker.com on <a href="http://lifehacker.com/5335215/10-must+dos-for-the-first-week-of-college">how to be a better student this year</a> when you get back to school. I felt these were good enough it deserved more than a tweet. ; )</p>
<p><a href="http://www.flickr.com/photos/photos_clinker/295038829/in/photostream/"><img class="aligncenter size-full wp-image-907" title="295038829_0f60748591" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/295038829_0f60748591.jpg" alt="295038829_0f60748591" width="500" height="375" /></a></p>
<p><a href="http://lifehacker.com/5335215/10-must+dos-for-the-first-week-of-college">http://lifehacker.com/5335215/10-must+dos-for-the-first-week-of-college</a></p>
<p>Library Photo <a rel="cc:attributionURL" href="http://www.flickr.com/photos/photos_clinker/">http://www.flickr.com/photos/photos_clinker/</a> / <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/be-a-better-student-this-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personal Browsing Stats with about:me Firefox Add-on</title>
		<link>http://geek.michaelgrace.org/2009/08/personal-browsing-stats-with-about-me-firefox-add-on/</link>
		<comments>http://geek.michaelgrace.org/2009/08/personal-browsing-stats-with-about-me-firefox-add-on/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 06:03:41 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=844</guid>
		<description><![CDATA[about:me is one of the coolest and cleanest add-ons I have seen. I get to feed my stats fetish with my own browsing stats. Just install the add-on and type &#8220;about:me&#8221; into the address bar. Information on top pages overall, top pages per hour, download stats, and much more.

]]></description>
			<content:encoded><![CDATA[<p>about:me is one of the coolest and cleanest add-ons I have seen. I get to feed my stats fetish with my own browsing stats. Just <a href="https://addons.mozilla.org/en-US/firefox/addon/13681">install the add-on</a> and type &#8220;about:me&#8221; into the address bar. Information on top pages overall, top pages per hour, download stats, and much more.</p>
<p style="text-align: center;"><a href="https://addons.mozilla.org/en-US/firefox/addon/13681"><img class="size-full wp-image-891 aligncenter" title="about_me" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/about_me.jpg" alt="about:me" width="500" height="725" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/personal-browsing-stats-with-about-me-firefox-add-on/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Combat Information Overload With Firefox</title>
		<link>http://geek.michaelgrace.org/2009/08/zen-browsing-with-firefox/</link>
		<comments>http://geek.michaelgrace.org/2009/08/zen-browsing-with-firefox/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 05:21:36 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=845</guid>
		<description><![CDATA[
I have seen too many people who try to browse the web and get things done with a highly cluttered browser interface and all the extra tools and doodads get in the way.
THE PROBLEM
Information is flying all around us like debris from a tornado going through a trailer park. Information overload is a real problem [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/liebedich/3679711527/"><img class="aligncenter size-full wp-image-851" title="storm" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/storm.jpg" alt="storm" width="400" height="297" /></a><br />
I have seen too many people who try to browse the web and get things done with a highly cluttered browser interface and all the extra tools and doodads get in the way.</p>
<h3>THE PROBLEM</h3>
<p>Information is flying all around us like debris from a tornado going through a trailer park.<span id="more-845"></span> Information overload is a real problem now for the average person and it can wreak havoc on a persons productivity and goals. Never before in the history man has there been soo much information available. Experts, books, seminars, awareness: the availability of these are low if not non-existent. We are like little children who have been handed a gun with incredible power but no one is talking about how to safely handle it, and people are getting hurt!</p>
<h3>WHAT TO DO</h3>
<p>Fortunately for you, if you &#8220;shoot yourself in the foot&#8221; its your fault! Probably not what you were expecting, but it&#8217;s true. You have control over most of the information you subscribe to.</p>
<ul>
<li>RSS Feeds</li>
<li>Television</li>
<li>Radio</li>
<li>Email</li>
<li>Social Networks</li>
<li>Magazines</li>
<li>Newspaper</li>
</ul>
<h3>WHAT DOES THIS HAVE TO DO WITH MY BROWSER?</h3>
<p>You can control what your Firefox looks like. I have seen too many people who try to browse the web with so many buttons, bars, and add-ons that much of the space for actually viewing web pages is reduced by about a third or more. Take back your browser real estate and surf the web with freedom again!</p>
<h3>WHAT CAN I DO?</h3>
<p>Here is an example of two extremes.</p>
<p><img class="aligncenter size-full wp-image-857" title="bloated_vs_zen_firefox" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/bloated_vs_zen_firefox.jpg" alt="bloated_vs_zen_firefox" width="650" height="264" /></p>
<p>If the bloated one looks similar to yours or a friends browser then you are in the right place.</p>
<h4>To Do:</h4>
<ul>
<li>Use the Toolbar collapse button to hide the clutter until you need it</li>
</ul>
<p><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/please_collapse.jpg" alt="please_collapse" title="please_collapse" width="500" height="833" class="aligncenter size-full wp-image-883" /></p>
<ul>
<li>Remove all add-ons you aren&#8217;t using all of the time (Spring Cleaning!)</li>
<li>Hide toolbars (functionality can often be accessed through the application menu)</li>
<li>Remove buttons that aren&#8217;t needed (most have keyboard shortcuts which are faster)</li>
</ul>
<p><img class="aligncenter size-full wp-image-859" title="customize_firefox_toolbars" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/customize_firefox_toolbars.jpg" alt="customize_firefox_toolbars" width="400" height="113" />This is really fun because you get to drag and drop buttons where ever you like.<br />
<img class="aligncenter size-full wp-image-860" title="drag_and_drop" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/drag_and_drop.jpg" alt="drag_and_drop" width="500" height="358" /></p>
<ul>
<li>Hide status bar if you don&#8217;t use it (Bottom gray bar)</li>
</ul>
<p><img class="aligncenter size-full wp-image-870" title="hide_status_bar" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/hide_status_bar.jpg" alt="hide_status_bar" width="250" height="266" /></p>
<ul>
<li>Disable &#8220;Always show the tab bar&#8221;</li>
</ul>
<p><img class="aligncenter size-full wp-image-862" title="tab_option_firefox" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/tab_option_firefox.jpg" alt="tab_option_firefox" width="400" height="201" /></p>
<p>The real trick is to balance the functionality of add-ons and buttons with space. After many months of trying different configurations, this has been the most effective layout for me.<br />
<img class="aligncenter size-full wp-image-861" title="my_firefox_layout" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/my_firefox_layout.jpg" alt="my_firefox_layout" width="616" height="537" /><br />
I use the keyboard shortcuts for the Firebug add-on and the other basic browser buttons like forward, back, refresh, so I have removed all those buttons and add-on bars. I show the status bar on the bottom so I can see if the HTML pages I am coding are validating as strict without running a validator. I also hide the bookmarks bar because I don&#8217;t use them very frequently. Everyone uses the web differently which makes Firefox great for many people because it can be customized for their needs.  Play around with your layout, reduce distractions, and find what works best for you.</p>
<p>Storm Photo: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/liebedich/">http://www.flickr.com/photos/liebedich/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/zen-browsing-with-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get Firefox Add-ons to Work with ALL Versions of Firefox</title>
		<link>http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/</link>
		<comments>http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 07:23:16 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=794</guid>
		<description><![CDATA[Ever upgraded to the next version of Firefox and your add-on didn&#8217;t show up because it was marked &#8220;Not Compatible&#8221;? There is a very simple way to force your version of Firefox to accept the add-on even if it isn&#8217;t compatible.
There are a few reasons why your installed add-ons might get marked as incompatible. Sometimes [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/carbonnyc/2206470413/"><img class="alignleft size-full wp-image-832" title="The way you feel when you realize your favorite add-on is incompatible" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/shock.jpg" alt="The way you feel when you realize your favorite add-on is incompatible" width="250" height="250" /></a>Ever upgraded to the next version of Firefox and your add-on didn&#8217;t show up because it was marked &#8220;Not Compatible&#8221;? There is a very simple way to force your version of Firefox to accept the add-on even if it isn&#8217;t compatible.</p>
<p>There are a few reasons why your installed add-ons might get marked as incompatible. Sometimes the developer has not changed the install requirements to accept your version. Mozilla suggests to developers that they don&#8217;t mark it compatible until they KNOW it is compatible. So, many developers don&#8217;t mark their add-ons compatible with beta and alpha releases of Firefox. Another reason an add-on might not be marked as compatible is because it really ISN&#8217;T compatible. Running an incompatible add-on can corrupt data in your browser profile and other places on your computer so don&#8217;t force add-ons to work unless you are willing to deal with the risks.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-834" title="Firefox 3.5, 3.6b, 3.7a" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/all_three.png" alt="all_three" width="400" height="153" /></p>
<p><span id="more-794"></span></p>
<h4>Precautions:</h4>
<ul>
<li>Don&#8217;t force add-ons unless you are willing to deal with possible browser crashing and data/profile corruption!</li>
<li>Backup your profile!</li>
<li>Be an add-on minimalist! The more add-ons you have, the more that can go wrong&#8230; very wrong.</li>
<li>Backup your system regularly. If you don&#8217;t do this already your crazy and you should start yesterday!</li>
</ul>
<h4>How:</h4>
<p>To force Firefox to accept all installed add-ons we simply need to tell it in it&#8217;s configuration file to ignore incompatibility. It will still check for updates and inform you that add-ons are incompatible, but it will let them run.</p>
<h4>Steps:</h4>
<ol>
<li>Open Firefox</li>
<li>Type <code>about:config</code> into browser bar and press enter</li>
<li>Click &#8220;I&#8217;ll be careful, I promise!&#8221; button and chuckle at Mozilla&#8217;s developer&#8217;s humor</li>
<li>Right click on any list item in browser window and select &#8220;New&#8221; -&gt; &#8220;Boolean&#8221;</li>
<li>Paste <code>extensions.checkCompatibility</code> into alert box input window</li>
<li>Select &#8220;False&#8221;</li>
<li>Open add-ons window: Select &#8220;Tools&#8221; -&gt; &#8220;Add-ons&#8221;</li>
<li>Click &#8220;Restart&#8221; on yellow notification bar</li>
<li>Throw your hands up in the air</li>
<li>Shout for joy</li>
<li>Spin around in your twirly chair and get back to work</li>
<li>; )</li>
</ol>
<h4>Visual Steps:</h4>
<ol>
<li>Click on the first image</li>
<li>Click on the arrows that show up when you mouse over the image to walk through the steps visually</li>
<li>Enjoy the show</li>
</ol>

<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/00_non_compatability/' title='00_non_compatability'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/00_non_compatability-150x150.jpg" class="attachment-thumbnail" alt="" title="00_non_compatability" /></a>
<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/01_firefox_about_config/' title='01_firefox_about_config'><img width="150" height="41" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/01_firefox_about_config-150x41.jpg" class="attachment-thumbnail" alt="" title="01_firefox_about_config" /></a>
<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/02_ill_be_careful_i_promise/' title='02_ill_be_careful_i_promise'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/02_ill_be_careful_i_promise-150x150.jpg" class="attachment-thumbnail" alt="" title="02_ill_be_careful_i_promise" /></a>
<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/03_create_new_preference/' title='03_create_new_preference'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/03_create_new_preference-150x150.jpg" class="attachment-thumbnail" alt="" title="03_create_new_preference" /></a>
<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/04_config_preference_name/' title='04_config_preference_name'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/04_config_preference_name-150x150.jpg" class="attachment-thumbnail" alt="" title="04_config_preference_name" /></a>
<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/05_boolean_choice/' title='05_boolean_choice'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/05_boolean_choice-150x150.jpg" class="attachment-thumbnail" alt="" title="05_boolean_choice" /></a>
<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/06_extension-checkcompatibility/' title='06_extension.checkCompatibility'><img width="150" height="85" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/06_extension.checkCompatibility-150x85.jpg" class="attachment-thumbnail" alt="" title="06_extension.checkCompatibility" /></a>
<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/07_firefox_restart/' title='07_firefox_restart'><img width="150" height="131" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/07_firefox_restart-150x131.jpg" class="attachment-thumbnail" alt="" title="07_firefox_restart" /></a>
<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/08_forced_compatability/' title='08_forced_compatability'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/08_forced_compatability-150x150.jpg" class="attachment-thumbnail" alt="" title="08_forced_compatability" /></a>
<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/all_three/' title='all_three'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/all_three-150x150.png" class="attachment-thumbnail" alt="" title="all_three" /></a>
<a href='http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/shock/' title='The way you feel when you realize your favorite add-on is incompatible'><img width="150" height="150" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/shock-150x150.jpg" class="attachment-thumbnail" alt="" title="The way you feel when you realize your favorite add-on is incompatible" /></a>

<p>Shocked Photo: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/carbonnyc/">http://www.flickr.com/photos/carbonnyc/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/get-firefox-add-ons-to-work-with-all-versions-of-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rid Yourself of Experts Exchange</title>
		<link>http://geek.michaelgrace.org/2009/08/rid-yourself-of-experts-exchange/</link>
		<comments>http://geek.michaelgrace.org/2009/08/rid-yourself-of-experts-exchange/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 17:12:07 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Add-on]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=785</guid>
		<description><![CDATA[Do you hate getting Experts Exchange cluttering up your Google search results? A few of my friends and I do. I recently found a Firefox add-on developed by Greg Hosilyk called GoogEEFree. It is a simple search add-on that adds the option to the search bar next to the URL bar. The add-on uses a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/coop/cse/"><img class="aligncenter size-full wp-image-787" title="google_custom_search" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/google_custom_search.jpg" alt="google_custom_search" width="250" height="40" /></a>Do you hate getting Experts Exchange cluttering up your Google search results? A few of my friends and I do. I recently found a Firefox add-on developed by Greg Hosilyk called <a href="https://addons.mozilla.org/en-US/firefox/addon/10687">GoogEEFree.</a> It is a simple search add-on that adds the option to the search bar next to the URL bar. The add-on uses a Google custom search and works like a charm.</p>
<div id="attachment_788" class="wp-caption aligncenter" style="width: 260px"><a href="https://addons.mozilla.org/en-US/firefox/addon/10687"><img class="size-full wp-image-788 " title="googeefree" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/googeefree.jpg" alt="GoogEEFree Add-on" width="250" height="174" /></a><p class="wp-caption-text">GoogEEFree</p></div>
<p>UPDATE:<br />
Within two days after writing this I had 6 friends on Twitter tell me thank you and that they hate Experts Exchange, while 1 friend basically said I was being lame. I hadn&#8217;t realized there were so many other people who despise Experts Exchange.  I was also checking my visitor stats the day after posting this and came across this in my stats:</p>
<p style="text-align: center;"><img class="size-full wp-image-847 aligncenter" title="experts_exchange_visit" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/experts_exchange_visit.jpg" alt="Experts Exchange visits my blog!" width="600" height="40" /></p>
<p>I am not sue how they found my post but I couldn&#8217;t stop laughing when I found out that someone in the Experts Exchange network visited my blog post on them.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/rid-yourself-of-experts-exchange/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Firefox 3.7 Alpha Release</title>
		<link>http://geek.michaelgrace.org/2009/08/firefox-3-7-alpha-release/</link>
		<comments>http://geek.michaelgrace.org/2009/08/firefox-3-7-alpha-release/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 16:37:56 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Giggles]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[laugh]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=772</guid>
		<description><![CDATA[Firefox 3.7 Alpha is available for download for developers to try out but it is still very alpha. I love the humor that the Mozilla developers have as seen through the icon used for Firefox 3.7a. The developers have lovingly named the alpha &#8220;Minefield&#8221;. Love it! ; ) Still want to try it out? Download [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_773" class="wp-caption alignleft" style="width: 138px"><img class="size-full wp-image-773 " title="minefield" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/minefield.png" alt="FF 3.7a - aka Minefield" width="128" height="128" /><p class="wp-caption-text">FF 3.7a - aka Minefield</p></div>
<p>Firefox 3.7 Alpha is available for download for developers to try out but it is still very alpha. I love the humor that the Mozilla developers have as seen through the icon used for Firefox 3.7a. The developers have lovingly named the alpha &#8220;Minefield&#8221;. Love it! ; ) Still want to try it out? <a href="http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/">Download Firefox 3.7 Alpha</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/firefox-3-7-alpha-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-08-17</title>
		<link>http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-17/</link>
		<comments>http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-17/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 16:00:00 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-17/</guid>
		<description><![CDATA[

RT @ashlux: The lack of versioning Ubiquity commands bothers me. I imagine that&#8217;s something being worked on though. #
RT @ElphabaPotter: &#8220;Cool Web Thingy&#8221; DOESN&#8217;T EVEN BEGIN TO DESCRIBE &#8216;Ubiquity&#8217; by Mozilla. http://tinyurl.com/56uykw SRLSY, watch the video. #

RT @Husker234: I heart Ubiquity. #
RT @rdhyee: The Mozilla Labs Jetpack project (http://bit.ly/lTzYo) is  &#8220;an API for allowing [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-706 alignright" title="twitter" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/twitter.png" alt="twitter" width="100" height="100" /></p>
<ul class="aktt_tweet_digest">
<li>RT @ashlux: The lack of versioning Ubiquity commands bothers me. I imagine that&#8217;s something being worked on though. <a class="aktt_tweet_time" href="http://twitter.com//statuses/3233433026">#</a></li>
<li>RT @ElphabaPotter: &#8220;Cool Web Thingy&#8221; DOESN&#8217;T EVEN BEGIN TO DESCRIBE &#8216;Ubiquity&#8217; by Mozilla. <a rel="nofollow" href="http://tinyurl.com/56uykw">http://tinyurl.com/56uykw</a> SRLSY, watch the video. <a class="aktt_tweet_time" href="http://twitter.com//statuses/3233455393">#</a></li>
<p><span id="more-771"></span></p>
<li>RT @Husker234: I heart Ubiquity. <a class="aktt_tweet_time" href="http://twitter.com//statuses/3233659534">#</a></li>
<li>RT @rdhyee: The Mozilla Labs Jetpack project (<a rel="nofollow" href="http://bit.ly/lTzYo">http://bit.ly/lTzYo</a>) is  &#8220;an API for allowing you to write Firefox add-ons&#8221; more easily. <a class="aktt_tweet_time" href="http://twitter.com//statuses/3233714692">#</a></li>
<li>Love the changes to the creative commons flickr search. Much easier to quickly search through photos now. ; ) <a rel="nofollow" href="http://bit.ly/jQAjW">http://bit.ly/jQAjW</a> <a class="aktt_tweet_time" href="http://twitter.com//statuses/3235043731">#</a></li>
<li>The day I met Mozilla&#8217;s Ubiquity <a rel="nofollow" href="http://geek.michaelgrace.org/">http://geek.michaelgrace.org/</a> <a class="aktt_tweet_time" href="http://twitter.com//statuses/3237549934">#</a></li>
<li>checked out Ubiquity &amp; Jetpack from Mozilla today. Amazing set of APIs. Have really come a long way in the last year! (via @<a class="aktt_username" href="http://twitter.com/mikefarmer">mikefarmer</a>) <a class="aktt_tweet_time" href="http://twitter.com//statuses/3238683612">#</a></li>
<li>RT @theappleblog: Five Ways to Become a Mac Minimalist  <a rel="nofollow" href="http://bit.ly/160F0x">http://bit.ly/160F0x</a> (@<a class="aktt_username" href="http://twitter.com/mikefarmer">mikefarmer</a> will like this) <a class="aktt_tweet_time" href="http://twitter.com//statuses/3250013784">#</a></li>
<li>AWESOME! i love reducing clutter RT @prestondlee: How to reduce clutter in web design | Graphic Design Blender <a rel="nofollow" href="http://bit.ly/EVi47">http://bit.ly/EVi47</a> <a class="aktt_tweet_time" href="http://twitter.com//statuses/3250080964">#</a></li>
<li>New post (#technometria): Sweetter in Ubiquity <a rel="nofollow" href="http://bit.ly/eaKeW">http://bit.ly/eaKeW</a> (via @<a class="aktt_username" href="http://twitter.com/windley">windley</a>) <a class="aktt_tweet_time" href="http://twitter.com//statuses/3250631129">#</a></li>
<li>RT @mikefarmer: about to work on the M$ stack. Step 1, remove sharp objects within reach. Step 2, warn others of impending outbursts. <a class="aktt_tweet_time" href="http://twitter.com//statuses/3251891826">#</a></li>
<li>Confirmed: it was the fuel pump that was causing the problem with by Goldwing. Now to see if I can fix it until I order a new one. <a class="aktt_tweet_time" href="http://twitter.com//statuses/3255341695">#</a></li>
<li>Bridgemaxx sucks!  <a rel="nofollow" href="http://twitpic.com/dkirw">http://twitpic.com/dkirw</a> <a class="aktt_tweet_time" href="http://twitter.com//statuses/3257131975">#</a></li>
<li>Bugs dont last long when they fall in a can of carb cleaner. <a class="aktt_tweet_time" href="http://twitter.com//statuses/3257442171">#</a></li>
<li>Finalized: November 18 &#8211; 19 Kynetx developers conference @ Provo, Ut<br />
Wooohoooo! ; ) <a class="aktt_tweet_time" href="http://twitter.com//statuses/3271116573">#</a></li>
<li>Wohooo! @<a class="aktt_username" href="http://twitter.com/leolaporte">leolaporte</a> got @<a class="aktt_username" href="http://twitter.com/twit">twit</a> and is using it to update on live shows starting. Thanks Twitter! <a class="aktt_tweet_time" href="http://twitter.com//statuses/3272171468">#</a></li>
<li>Kynetx Impact Developer&#8217;s Conference 2009 &#8211; Registration is OPEN! <a rel="nofollow" href="http://bit.ly/kQTWl">http://bit.ly/kQTWl</a> Seats are limited so sign-up soon. (via @<a class="aktt_username" href="http://twitter.com/kynetx">kynetx</a>) <a class="aktt_tweet_time" href="http://twitter.com//statuses/3272206646">#</a></li>
<li>floss weekly on twit.tv was cool. Really look forward to the upcoming shows. ; ) <a class="aktt_tweet_time" href="http://twitter.com//statuses/3273804808">#</a></li>
<li>openstreetmap.org SUPER COOL! You can make the map better! Happens within minutes. ; ) THE FUTURE IS HERE!  ; ) <a class="aktt_tweet_time" href="http://twitter.com//statuses/3273867231">#</a></li>
<li>Roadee for the iPhone! Turn by turn directions for $2!!!!!!!! Using openstreetmap.org AMAZING!!!  ; ) I can&#8217;t stop watching @leolaporte! <a class="aktt_tweet_time" href="http://twitter.com//statuses/3273967083">#</a></li>
<li>I had no idea it was left-handers day. <a rel="nofollow" href="http://www.lefthandersday.com">http://www.lefthandersday.com</a> wohooo! <a class="aktt_tweet_time" href="http://twitter.com//statuses/3292366938">#</a></li>
<li>Finished updating fresh install of ubuntu and now installing FreeBSD in preparation of launching a linux tutorial site. Very excited! ; ) <a class="aktt_tweet_time" href="http://twitter.com//statuses/3295484580">#</a></li>
<li>hmmmmm&#8230; looks like my twitter tool plugin for WordPress is broken. Keeps tweeting my posts without a link.   ; ( <a class="aktt_tweet_time" href="http://twitter.com//statuses/3301501998">#</a></li>
<li>Are you geek enough? <a rel="nofollow" href="http://bit.ly/6MCTp">http://bit.ly/6MCTp</a><br />
You wish!! ; ) <a class="aktt_tweet_time" href="http://twitter.com//statuses/3301523993">#</a></li>
<li>Am I Geek Enough? <a rel="nofollow" href="http://bit.ly/NQ3sN">http://bit.ly/NQ3sN</a> <a class="aktt_tweet_time" href="http://twitter.com//statuses/3304018169">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spezify &#8211; Serving Up Search Fresh</title>
		<link>http://geek.michaelgrace.org/2009/08/spezify-serving-up-search-fresh/</link>
		<comments>http://geek.michaelgrace.org/2009/08/spezify-serving-up-search-fresh/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 04:47:17 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=762</guid>
		<description><![CDATA[Spezify does a good job of representing search results visually and it&#8217;s kind of fun. The big thing I like about Spezify is the navigation response with the keyboard arrow keys. Try it! Left&#8230; right&#8230; up &#038; down. Maybe if the results returned more of one kind of result based on the direction you navigated [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.spezify.com/"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/spezify.jpg" alt="spezify" title="spezify" width="450" height="89" class="aligncenter size-full wp-image-766" /></a><a href="http://www.spezify.com/">Spezify</a> does a good job of representing search results visually and it&#8217;s kind of fun. The big thing I like about Spezify is the navigation response with the keyboard arrow keys. Try it! Left&#8230; right&#8230; up &#038; down. Maybe if the results returned more of one kind of result based on the direction you navigated instead of just loading more results, it would be more useful. Example: If I do a search and I want to see what people are saying about the latest whatever, I&#8217;ll probably be searching for tweets. So, if tweets are shown above the middle of the returned search result screen, when I navigate up, I would expect the engine to return more tweet results rather than a potpourri of media and sites. Overall, I like what they have done but I think it needs a bit more work before it will actually get used for a lot of searching.</p>
<p><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/spezify_results.jpg" alt="spezify_results" title="spezify_results" width="300" height="161" class="aligncenter size-full wp-image-763" /></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/spezify-serving-up-search-fresh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Auto complete / Suggest</title>
		<link>http://geek.michaelgrace.org/2009/08/mac-os-x-auto-complete-suggest/</link>
		<comments>http://geek.michaelgrace.org/2009/08/mac-os-x-auto-complete-suggest/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 23:04:47 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Keyboard]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=738</guid>
		<description><![CDATA[Did you know that some OS X applications use the escape key to auto complete what you have typed? Much like the tab completion feature found in most linux command line shells, this can be a nice tool to use when you aren&#8217;t sure of the spelling of a word. Here are just a few [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/jantik/188946444/"><img class="alignleft size-full wp-image-749" title="auto_complete" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/auto_complete.jpg" alt="auto_complete" width="250" height="146" /></a>Did you know that some OS X applications use the escape key to auto complete what you have typed? Much like the tab completion feature found in most linux command line shells<span id="more-738"></span>, this can be a nice tool to use when you aren&#8217;t sure of the spelling of a word. Here are just a few apps that I found that use the escape key to auto complete.</p>
<div id="attachment_751" class="wp-caption aligncenter" style="width: 210px"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/stickies_auto_complete.jpg" alt="Stickies" title="Stickies" width="200" height="291" class="size-full wp-image-751" /><p class="wp-caption-text">Stickies</p></div>
<div id="attachment_752" class="wp-caption aligncenter" style="width: 310px"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/mail_auto_complete.jpg" alt="Mail" title="Mail" width="300" height="233" class="size-full wp-image-752" /><p class="wp-caption-text">Mail</p></div>
<div id="attachment_753" class="wp-caption aligncenter" style="width: 410px"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/terminal_auto_complete.jpg" alt="Terminal" title="Terminal" width="400" height="146" class="size-full wp-image-753" /><p class="wp-caption-text">Terminal</p></div>
<p>A big thanks to my friend <a href="http://michaelfarmer.info/blog/">Mike Farmer</a> for pointing this out to me. ; )</p>
<p>Car Photo: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/jantik/">http://www.flickr.com/photos/jantik/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/mac-os-x-auto-complete-suggest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Am I Geek Enough?</title>
		<link>http://geek.michaelgrace.org/2009/08/am-i-geek-enough/</link>
		<comments>http://geek.michaelgrace.org/2009/08/am-i-geek-enough/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 04:20:35 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Giggles]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=489</guid>
		<description><![CDATA[Wired.com recently posted a list of 100 essential skills for geeks. I liked the list and wanted to check off what I have already done so here is the list with all of my accomplishments underlined. My favorites have been changed to blue. ; )

Properly secure a wireless router.
Crack the WEP key on a wireless [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/gataclark/3270319706/"><img class="alignright size-full wp-image-644" title="geek girl" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/geek.jpg" alt="geek girl" width="236" height="240" /></a>Wired.com recently posted a <a href="http://www.wired.com/geekdad/2009/07/100-basic-geek-skills-for-geeks/">list of 100 essential skills for geeks</a>. I liked the list and wanted to check off what I have already done so here is the list with all of my accomplishments underlined. My favorites have been changed to blue. ; )</p>
<ol>
<li><span style="text-decoration: underline;">Properly <a href="http://www.ehow.com/how_2253625_secure-wireless-router.html">secure</a> a wireless router.</span></li>
<li><a href="http://www.lifehacker.com.au/2009/07/how-to-crack-a-wi-fi-networks-wep-password-with-backtrack/">Crack</a> the WEP key on a wireless router.</li>
<li><span style="text-decoration: underline;">Leech Wifi from your neighbor.</span></li>
<p><span id="more-489"></span></p>
<li>Screw with Wifi leeches.</li>
<li>Setup and <a href="http://www.itsatechworld.com/2006/01/29/how-to-configure-openvpn/">use a VPN</a>.</li>
<li><span style="text-decoration: underline;">Work from home or a coffee shop as effectively as you do at the office.</span></li>
<li><span style="text-decoration: underline;"><a href="http://www.engadget.com/2006/08/22/how-to-run-your-own-network-wiring/">Wire your own</a> home with Ethernet cable.</span></li>
<li>Turn a web camera into <a href="http://lifehacker.com/203905/use-your-webcam-as-a-security-camera">security camera</a>.</li>
<li>Use your <a href="http://www.joiku.com/index.php?action=products&amp;mode=productDetails&amp;product_id=310">3G phone as a Wi-Fi</a> access point.</li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Understand what “There’s no Place Like <a href="http://en.wikipedia.org/wiki/Localhost">127.0.0.1</a>” means.</span></span></li>
<p><span id="more-13536"> </span></p>
<li>Identify key-loggers.</li>
<li><span style="text-decoration: underline;">Properly connect a TV, Tivo, XBox, Wii, and Apple TV so they all work together with the one remote.</span></li>
<li><span style="text-decoration: underline;">Program a universal remote.</span></li>
<li>Swap out the battery on your iPod/iPhone.</li>
<li><span style="text-decoration: underline;">Benchmark Your Computer</span></li>
<li><span style="text-decoration: underline;">Identify all computer components on sight.</span></li>
<li><span style="text-decoration: underline;">Know which parts to order from NewEgg.com, and how to assemble them into a working PC.</span></li>
<li><span style="text-decoration: underline;">Troubleshoot any computer/gadget problem, over the phone.</span></li>
<li><span style="text-decoration: underline;">Use any piece of technology intuitively, without instruction or prior knowledge.</span></li>
<li>How to irrecoverably protect data.</li>
<li><span style="text-decoration: underline;">Recover data from a dead hard drive.</span></li>
<li>Share a printer between a Mac and a PC on a network.</li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Install a Linux distribution. (Hint: <a href="http://www.ubuntu.com/GetUbuntu/download">Ubuntu 9.04</a> is easier than installing Windows)</span></span></li>
<li><span style="text-decoration: underline;">Remove a virus from a computer.</span></li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Dual (or more) boot a computer.</span></span></li>
<li><span style="text-decoration: underline;">Boot a computer off a thumb drive.</span></li>
<li>Boot a computer off a network drive.</li>
<li><span style="text-decoration: underline;">Replace or repair a laptop keyboard.</span></li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Run <a href="http://www.codinghorror.com/blog/archives/000740.html">more than two monitors</a> on a single computer.</span></span></li>
<li><span style="text-decoration: underline;">Successfully <a href="http://www.laptop-repair.info/take_laptop_apart.html">disassemble</a> and reassemble a laptop.</span></li>
<li>Know at least 10 software easter eggs off the top of your head.</li>
<li><span style="text-decoration: underline;">Bypass a computer password on all major operating systems. <a href="http://wareseeker.com/Utilities/cia-commander-1.0.zip/401209">Windows</a>, <a href="http://support.apple.com/kb/HT1274?locale=us_US">Mac</a>, <a href="http://www.debuntu.org/recover-root-password-single-user-mode-and-grub">Linux</a></span></li>
<li>Carrying a computer cleaning arsenal on your USB drive.</li>
<li><span style="text-decoration: underline;">Bypass content filters on public computers.</span></li>
<li><span style="text-decoration: underline;">Protect your privacy when using a public computer.</span></li>
<li><span style="text-decoration: underline;">Surf the web anonymously from home.</span></li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Buy a domain, configure bind, apache, MySQL, php, and Wordpress without Googling a how-to.</span></span></li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Basic *nix command shell knowledge with the ability to edit and save a file with vi.</span></span></li>
<li>Create a web site using vi.</li>
<li><span style="text-decoration: underline;">Transcode a DVD to play on a portable device.</span></li>
<li>Hide a file in an image using <a href="http://en.wikipedia.org/wiki/Steganography">steganography</a>.</li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Knowing the answer to <a href="http://www.amazon.com/Ultimate-Hitchhikers-Guide-Galaxy/dp/0345453743/geekdad84-20">life, the universe and everything</a>.</span></span></li>
<li><a href="http://synergy2.sourceforge.net/">Share a single keyboard and mouse</a> between multiple computers without a KVM switch.</li>
<li><span style="text-decoration: underline;">Google obscure facts in under 3 searches. Bonus point if you can use I Feel Lucky.</span></li>
<li>Build amazing structures with LEGO and invent a compelling back story for the creation.</li>
<li>Understand that it is LEGO, not Lego, Legos, or Lego’s.</li>
<li>Build a two story house out of LEGO, in monochrome, with a balcony.</li>
<li>Construct a costume for you or your kid out of scraps, duct tape, paper mâché, and imagination.</li>
<li>Be able to <a href="http://lifehacker.com/399735/how-to-pick-a-lock-with-a-bump-key">pick a lock</a>.</li>
<li>Determine the combination of a <a href="http://lifehacker.com/301018/crack-a-master-combination-padlock">Master combination padlock</a> in under 10 minutes.</li>
<li><span style="text-decoration: underline;">Assemble IKEA furniture without looking at the instructions. Bonus point if you don’t have to backtrack.</span></li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Use a digital SLR in full manual mode.</span></span></li>
<li>Do cool things to Altoids tins.</li>
<li>Be able to construct <a href="http://www.papercrafty.com/2007/sci-fi-spaceship-papercraft-models">paper craft versions of space ships</a>.</li>
<li><span style="text-decoration: underline;">Origami! Bonus point for duct tape origami. (<a href="http://tr.im/Ductigami">Ductigami</a>)</span></li>
<li><span style="text-decoration: underline;">Fix anything with duct tape, chewing gum and wire.</span></li>
<li>Knowing how to avoid being eaten by a <a href="http://en.wikipedia.org/wiki/Grue_%28monster%29">grue</a>.</li>
<li>Know what a grue is.</li>
<li>Understand where <a href="http://www.ifiction.org/games/play.phpz?cat=&amp;game=1&amp;mode=html">XYZZY</a> came from, and have used it.</li>
<li><span style="text-decoration: underline;">Play any SNES game on your computer through an emulator.</span></li>
<li><span style="text-decoration: underline;">Burn the rope.</span></li>
<li>Know the Konami code, and where to use it.</li>
<li>Whistle, hum, or play on an iPhone, the Cantina song.</li>
<li><span style="text-decoration: underline;">Learning to play the theme songs to the kids favorite TV shows.</span></li>
<li><span style="text-decoration: underline;">Solve a Rubik’s Cube.</span></li>
<li>Calculate <a href="http://dnd.wikia.com/wiki/THAC0">THAC0</a>.</li>
<li><span style="text-decoration: underline;">Know the difference between skills and traits.</span></li>
<li>Explain special relativity in terms an eight-year-old can grasp.</li>
<li><span style="text-decoration: underline;">Recite <a href="http://pi.ytmnd.com/">pi</a> to 10 places or more.</span></li>
<li><span style="text-decoration: underline;">Be able to calculate tip and split the check, all in your head.</span></li>
<li>Explain that the colours in a rainbow are roygbiv.</li>
<li><span style="text-decoration: underline;">Understand the electromagnetic spectrum &#8211; xray, uv, visible, infrared, microwave, radio.</span></li>
<li>Know the difference between radiation and radioactive contamination.</li>
<li>Understand  basic electronics components like resistors, capacitors, inductors and transistors.</li>
<li><a href="http://www.instructables.com/id/How-to-solder/">Solder a circuit</a> while bottle feeding an infant. (lead free solder please.)</li>
<li><span style="text-decoration: underline;">The meaning of technical <a href="http://www.acronymfinder.com/">acronyms</a>.</span></li>
<li>The coffee dash, blindfolded (or blurry eyed). Coffee &lt;brew&gt; [cream] [sugar]. In under a minute.</li>
<li>Build a fighting robot.</li>
<li>Program a fighting robot.</li>
<li>Build a failsafe into a fighting robot so it doesn’t kill you.</li>
<li>Be able to trace the Fellowship’s journey on a map of Middle Earth.</li>
<li>Know all the names of the Dwarves in The Hobbit.</li>
<li>Understand the difference between a comic book and a graphic novel.</li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Know where your towel is and why it is important.</span></span></li>
<li>Re-enact the parrot sketch.</li>
<li>Know the words to <a href="http://www.youtube.com/watch?v=clPYfaTvHT0">The Lumberjack Song</a>.</li>
<li>Reciting key scenes from Monty Python and the Holy Grail.</li>
<li>Be able to recite at least one Geek Movie word for word.</li>
<li>Know what the <a href="http://en.wikipedia.org/wiki/Stargate_%28device%29">8th Chevron</a> does on a Stargate and how much power is required to get a lock.</li>
<li>Be able to explain why it’s important that <a href="http://en.wikipedia.org/wiki/Han_shot_first">Han shot first</a>.</li>
<li>Know why it is just wrong for Luke and Leia to kiss.</li>
<li>Stop talking Star Wars long enough to get laid.</li>
<li>The ability to name actors, characters and plotlines from the majority of sci-fi movies produced since 1968.</li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Cite Mythbusters when debunking a myth or urban legend.</span></span></li>
<li>Sleep with a <a href="http://www.imdb.com/title/tt0365748/">Cricket bat</a> next to your bed.</li>
<li>Have a documented plan on what to do during a zombie or robot uprising.</li>
<li>Identify evil alternate universe versions of friends, family, co-workers or self.</li>
<li><span style="text-decoration: underline;">Be able to convince TSA that the electronic parts you are carrying are really not a threat to passengers.</span></li>
<li><span style="color: #0000ff;"><span style="text-decoration: underline;">Talk about things that aren’t tech related.</span></span></li>
<li>Get something on the <a href="http://twitpic.com/9wdxg">front page of Digg</a>.</li>
</ol>
<p>Photo by <a href="http://www.flickr.com/photos/gataclark/">bellafer*</a>:<br />
<a rel="cc:attributionURL" href="http://www.flickr.com/photos/gataclark/">http://www.flickr.com/photos/gataclark/</a> / <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/am-i-geek-enough/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The day I met Ubiquity</title>
		<link>http://geek.michaelgrace.org/2009/08/the-day-i-met-ubiquity/</link>
		<comments>http://geek.michaelgrace.org/2009/08/the-day-i-met-ubiquity/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 02:09:37 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Web Design -Dev]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=725</guid>
		<description><![CDATA[It was Sunday evening as I was settling down and reading some of my RSS feeds when one of the articles mentioned Ubiquity. &#8220;Ubiquity?&#8221;, I thought. &#8220;What in the world is Ubiquity besides &#8216;everywhere&#8217;?!?&#8221; I headed over to  the ubiquity main page and watched the intro video. My wife claims that she saw some [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/ubiquity_bot_crop.jpg" alt="ubiquity_bot_crop" title="ubiquity_bot_crop" width="500" height="191" class="aligncenter size-full wp-image-726" />It was Sunday evening as I was settling down and reading some of my RSS feeds when one of the articles mentioned Ubiquity. &#8220;Ubiquity?&#8221;, I thought. &#8220;What in the world is Ubiquity besides &#8216;everywhere&#8217;?!?&#8221; I headed over to  the <a href="http://ubiquity.mozilla.com/">ubiquity main page</a> and watched the intro video. My wife claims that she saw some drool and <span id="more-725"></span>heard a few squeals of excitement as I watched the video. Since that time, just over 2 days ago, I haven&#8217;t got much sleep and have been writing Ubiquity commands and dreaming of new ways to improve it. ; )<br />
<img alt="" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/webcite.jpg" class="aligncenter" width="195" height="54" /><br />
Part of my excitement for Ubiquity is that I started learning a few months ago how to create Firefox add-ons and it was slow going. I have created a <a href="http://geek.michaelgrace.org/webcite/">dashboard widget for Mac OS X</a> that archives the active browsers web page and then copies the results to the clipboard. The widget uses <a href="http://webcitation.org/">www.webcitation.org</a> services and is great for taking snapshots in time of pages for reference and citing online work. I never did finish converting my dashboard widget to a Firefox add-on like planned but within a few hours of playing with Ubiquity I had the widget moved over and working sweet.<br />
<img alt="" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/sweetter_full.jpg" class="aligncenter" width="307" height="102" /><br />
One other Ubiquity command I want to mention here is one that I did by converting a <a href="http://www.windley.com/archives/2009/08/what_are_people_tweeting_about_this_site.shtml">bookmarklet</a> created by some amazing people over at <a href="http://www.kynetx.com/">Kynetx</a>. The command is called &#8220;sweetter&#8221; and it searches tweets that point to the site that you are currently on. Very cool tool if you are wanting to see what people on Twitter are saying about that site or its services. I would like to improve upon this in the future so that a simpler list of tweets will load in the preview pane without loading the tweets over the page. You&#8217;ll have to check it out and try it because I use it all of the time now. ; )</p>
<p>I think there is immense power and potential in being able to write commands for Ubiquity using JavaScript and HTML. As JavaScript and HTML becomes, pardon the pun but, ubiquitous more people will be able to create commands that extend the functionality of the browser while on the web. I am really impressed with the entire setup and I think Mozilla deserves two thumbs up for pioneering the future of the web.</p>
<p>I have several other commands I have written to use and some just for practice, located on <a href="http://geek.michaelgrace.org/ubiquity/">my ubiquity page</a>. I will continue to update the scripts as I write new commands and work on improving the web. Would love it if you subscribed to the commands and gave me feedback on what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/the-day-i-met-ubiquity/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-08-10</title>
		<link>http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-10/</link>
		<comments>http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-10/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 16:00:00 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-10/</guid>
		<description><![CDATA[

@kylew01 cool! They even have your name on them. ; ) in reply to kylew01 #
@kylew01 that&#8217;s going to e really cool. in reply to kylew01 #

@kylew01 when do you think you will be putting the roofing on? in reply to kylew01 #
My blog just posted my tweets for the week if you&#8217;re interested. http://geek.michaelgrace.org [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-706 alignright" title="twitter" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/twitter.png" alt="twitter" width="100" height="100" /></p>
<ul class="aktt_tweet_digest">
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> cool! They even have your name on them. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3103673496">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3107635562">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> that&#8217;s going to e really cool. <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3104550198">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3107669159">#</a></li>
<p><span id="more-704"></span></p>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> when do you think you will be putting the roofing on? <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3107619756">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3107791570">#</a></li>
<li>My blog just posted my tweets for the week if you&#8217;re interested. <a rel="nofollow" href="http://geek.michaelgrace.org">http://geek.michaelgrace.org</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3108103243">#</a></li>
<li>Our well is on the fritz. Anyone else had this problem?  <a rel="nofollow" href="http://twitpic.com/cnfud">http://twitpic.com/cnfud</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3109207660">#</a></li>
<li>RT @thedarktangent: Sleep after #<a class="aktt_hashtag" href="http://search.twitter.com/search?q=%23defcon">defcon</a> == good++ <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3110457887">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/judkinsk">judkinsk</a> oh good. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/judkinsk/statuses/3110650283">in reply to judkinsk</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3111330109">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> nice! Your going to keep it right? <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3110939229">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3111348252">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/Eleven2">Eleven2</a> looks good. To bad it&#8217;s out of my price range. <a class="aktt_tweet_reply" href="http://twitter.com/Eleven2/statuses/3111238610">in reply to Eleven2</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3111381774">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/mikefarmer">mikefarmer</a> can&#8217;t wait for your blog post about it. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/mikefarmer/statuses/3111998173">in reply to mikefarmer</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3113121456">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/mikefarmer">mikefarmer</a> if we were living close to you, we would go in halvzies with you.  ; ) <a class="aktt_tweet_reply" href="http://twitter.com/mikefarmer/statuses/3112394615">in reply to mikefarmer</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3113397993">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> AWESOME!! ; ) <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3113258393">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3113490313">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> you need to put in a disco ball so you can have dances and parties there. <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3113258393">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3113500733">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/nicbifano">nicbifano</a> haha. Good memories I&#8217;m sure. : ) <a class="aktt_tweet_reply" href="http://twitter.com/nicbifano/statuses/3111503758">in reply to nicbifano</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3113513211">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> if you threw it away I was going to have to smack you. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3111973487">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3113519562">#</a></li>
<li>Car washed and detailed from Defcon trip. Now at parade with wife and very hungry. <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3113575890">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/hgrawe">hgrawe</a> very cool! Takes a long time to get that pennies. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/hgrawe/statuses/3114014111">in reply to hgrawe</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3114219639">#</a></li>
<li>Looking for an apartment in idaho falls. ; ) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3119417695">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/MrBrettYoung">MrBrettYoung</a> yeah, that&#8217;s ignorant. <a class="aktt_tweet_reply" href="http://twitter.com/MrBrettYoung/statuses/3119677137">in reply to MrBrettYoung</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3119704709">#</a></li>
<li>Google docs spreadsheets have come a long way. I am very impressed. <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3120063539">#</a></li>
<li>Google docs has incorporated some great keyboard shortcuts to make your document editing life a lot better to. ; ) <a rel="nofollow" href="http://bit.ly/g77c2">http://bit.ly/g77c2</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3120187221">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/CMoz">CMoz</a> Good Morning! ; ) <a class="aktt_tweet_reply" href="http://twitter.com/CMoz/statuses/3120533041">in reply to CMoz</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3120588553">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/CMoz">CMoz</a> 4 days of geekin out with 2 nights of sleep. IT ROCKED! ; ) I learned tons even if the crowd was a bit rougher than I had anticipated. <a class="aktt_tweet_reply" href="http://twitter.com/CMoz/statuses/3120621965">in reply to CMoz</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3120645252">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/CMoz">CMoz</a> Not only was the learning awesome, I picked up an apple newton for $20. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/CMoz/statuses/3120621965">in reply to CMoz</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3120653636">#</a></li>
<li>sometimes apt complexes don&#8217;t want you to see just how crapy they look so they &#8220;show you&#8221; w/out showing you.  <a rel="nofollow" href="http://twitpic.com/cpwsl">http://twitpic.com/cpwsl</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3120663822">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/MikeGrace">MikeGrace</a> or you can live in someone&#8217;s backyard shed for $400/ month! blahhhhhh!  <a rel="nofollow" href="http://twitpic.com/cpwy2">http://twitpic.com/cpwy2</a> <a class="aktt_tweet_reply" href="http://twitter.com/MikeGrace/statuses/3120663822">in reply to MikeGrace</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3120690958">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/CMoz">CMoz</a> she was really sad to have me gone over the weekend but is glad that I was&#8230; Read More: <a rel="nofollow" href="http://is.gd/21OlZ">http://is.gd/21OlZ</a> <a class="aktt_tweet_reply" href="http://twitter.com/CMoz/statuses/3120671230">in reply to CMoz</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3120700355">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/CMoz">CMoz</a> just a different place. ; ) Little people are in the plans though. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/CMoz/statuses/3120731144">in reply to CMoz</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3120977312">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> there are a lot of places cheaper than Rexburg. <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3122707180">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3123676985">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> I was up late. Couldn&#8217;t<br />
Sleep. We are seriously considering it. Besides, we would get to hang out with the @<a class="aktt_username" href="http://twitter.com/mikefarmer">mikefarmer</a> s ; ) <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3123725702">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3124682711">#</a></li>
<li>Todays morning run felt good. Visit to las vagas really cut back on my endurance. <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3124703502">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/jessecole">jessecole</a> figures. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/jessecole/statuses/3136155378">in reply to jessecole</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3138067981">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/bluedoggiant">bluedoggiant</a> I&#8217;m stuck! ; ) <a rel="nofollow" href="http://twitpic.com/cvsvk">http://twitpic.com/cvsvk</a> <a class="aktt_tweet_reply" href="http://twitter.com/bluedoggiant/statuses/3148055160">in reply to bluedoggiant</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3150708961">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> sure do. You coming by to pick it up? ; ) <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3139060840">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3151423661">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> yes <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3158777240">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3161978885">#</a></li>
<li>Found out where the fleeting 3g signals were coming from&#8230; St. Anthony! Idaho! <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3168203033">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/bryanwilliams">bryanwilliams</a> @<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> I know! Totally crazy and I don&#8217;t know why but I had full signal strength in a place we are looking at moving into. <a class="aktt_tweet_reply" href="http://twitter.com/bryanwilliams/statuses/3168315732">in reply to bryanwilliams</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3168392994">#</a></li>
<li>Oh, and on the way to look at the apartment my bike decided it was out of gas before it told me. <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3168438522">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/bryanwilliams">bryanwilliams</a> haha! Nice!! Looks like we need to get the Mayer of Rexburg hooked on an iPhone then. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/bryanwilliams/statuses/3168425819">in reply to bryanwilliams</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3168450175">#</a></li>
<li>OUCH! looks like the fuel pump died on my goldwing. : ( <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3169140831">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/nicbifano">nicbifano</a> it was a DDos attack?! hahaha. That&#8217;s interesting. <a class="aktt_tweet_reply" href="http://twitter.com/nicbifano/statuses/3169656643">in reply to nicbifano</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3169765502">#</a></li>
<li>Got the Gold Wing home safely on the trailer. ; ) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3169995251">#</a></li>
<li>Because a new fuel pump for my Goldwing is priced at about $180 I am going to see if I can resurrect my current one. <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3169996111">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> Thanks. I have been looking and there have been some who have been able to get it working again and never had to replace it. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3170063932">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3170148134">#</a></li>
<li>Tfjgukfl. B      Gjshgi.  V ysyd.           Rdhfznnfhxgvnb cxhtgh (via @mikefarmer&#8217;s Abbie) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3172606758">#</a></li>
<li>FhdfjddxFcejfjdddf.     FfasfsggFcssdjvsxxcxccvdsufvgV bchhvhhcdid (via @mikefarmer&#8217;s Abbie) ; ) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3172630749">#</a></li>
<li>great evening at Rexburg&#8217;s concert in the park with @<a class="aktt_username" href="http://twitter.com/mikefarmer">mikefarmer</a> and farmer tonight. Fun to hang out with friends and wife. ; ) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3173778200">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/mikefarmer">mikefarmer</a> I am working on the photos right now. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/mikefarmer/statuses/3173596565">in reply to mikefarmer</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3173809402">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/mikefarmer">mikefarmer</a> Nice! IE 6 must die!! ; ) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3178635125">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/bryanwilliams">bryanwilliams</a> @<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> AMEN! IE meet firing squad. Firing squad meet IE. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/bryanwilliams/statuses/3178701197">in reply to bryanwilliams</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3178782833">#</a></li>
<li>Great use of Twitter by a non profit. @<a class="aktt_username" href="http://twitter.com/WCA_Boise">WCA_Boise</a> (via @<a class="aktt_username" href="http://twitter.com/jamie_cooper">jamie_cooper</a>) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3179030446">#</a></li>
<li>Win a 24&#8243; LCD Monitor or 6 months free hosting from @<a class="aktt_username" href="http://twitter.com/firehost">firehost</a> and @<a class="aktt_username" href="http://twitter.com/designmoo">designmoo</a> <a rel="nofollow" href="http://designmoo.com/contest">http://designmoo.com/contest</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3180077903">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/jonmott">jonmott</a> isn&#8217;t that the truth. ; ) Las Vagas is full of failures sadly enough. <a class="aktt_tweet_reply" href="http://twitter.com/jonmott/statuses/3180025386">in reply to jonmott</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3180091177">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/flipstock">flipstock</a> Way to go. Hope things work out for the best.; ) <a class="aktt_tweet_reply" href="http://twitter.com/flipstock/statuses/3179935599">in reply to flipstock</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3180095450">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/mozmac">mozmac</a> sounds like my kind of party. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/mozmac/statuses/3180106434">in reply to mozmac</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3180137987">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/mozmac">mozmac</a> really? Wow! I would have thought with Apples awesome OS upgrade prices that more would have switched. Older hardware probably. <a class="aktt_tweet_reply" href="http://twitter.com/mozmac/statuses/3180273176">in reply to mozmac</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3180300457">#</a></li>
<li>Do you think <a rel="nofollow" href="http://www.bitcartel.com/pandorajam/">http://www.bitcartel.com/pandorajam/</a> is illegal or wrong? or do you love it? <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3184190324">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> ; ) very nice. <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3184363121">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3184513371">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/davidweiss">davidweiss</a> interesting. Thanks for sharing. Wonder how many people will notice and say something about it. <a class="aktt_tweet_reply" href="http://twitter.com/davidweiss/statuses/3184724716">in reply to davidweiss</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3184797166">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/flipstock">flipstock</a> probably was. ; ) I have seen some silly holes for vents also. <a class="aktt_tweet_reply" href="http://twitter.com/flipstock/statuses/3185646456">in reply to flipstock</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3185724427">#</a></li>
<li>I absolutely love working with designers! Designers rock! (They make me look good) ; ) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3186047674">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/fulling">fulling</a> Sweet! Sounds like a party fore sure. <a class="aktt_tweet_reply" href="http://twitter.com/fulling/statuses/3186504592">in reply to fulling</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3186894204">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/fulling">fulling</a> They can get pricey but I have heard that good ones are worth it  (depending on how much you ride) <a class="aktt_tweet_reply" href="http://twitter.com/fulling/statuses/3187028725">in reply to fulling</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3188371135">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> Cool! Would have been crazy to see it. I am glad you got some cool HDR photos of the smoke. Thanks for coming over today also. <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3188437175">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3188538297">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/mattMur">mattMur</a> Nice! ; ) <a class="aktt_tweet_reply" href="http://twitter.com/mattMur/statuses/3188488717">in reply to mattMur</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3188542931">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/mattMur">mattMur</a> haha! Your mage game is fun. ; ) Simple yet fun. Way to go. <a class="aktt_tweet_reply" href="http://twitter.com/mattMur/statuses/3188488717">in reply to mattMur</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3188568088">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/jessecole">jessecole</a> have fun and don&#8217;t do anything too crazy ; ) <a class="aktt_tweet_reply" href="http://twitter.com/jessecole/statuses/3188952076">in reply to jessecole</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3189025866">#</a></li>
<li>No need to do a speed test when it takes 3 min. to load the speedtest page. #<a class="aktt_hashtag" href="http://search.twitter.com/search?q=%23bridgemaxx">bridgemaxx</a> #<a class="aktt_hashtag" href="http://search.twitter.com/search?q=%23fail">fail</a>. Soo glad I will have cable in 3 weeks. ; ) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3189109996">#</a></li>
<li>Took over 1 hour to download Namoroka 3.6 which is 17.4 MB. (dev. alpha of Firefox) I despise bridgemaxx and I am leaving them! Muahahahaha! <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3189129656">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/1password">1password</a> is already compatible with Firefox 3.6<br />
Cool! ; ) Way to go guys! <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3189625661">#</a></li>
<li>After about 11 hours of coding web pages I am ready to put the computer away. Was a very good productive day. I enjoyed working from home. <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3189637761">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> Sure looks like your going to have fun. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3194865943">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3194910050">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/terminaldude">terminaldude</a> exciting isn&#8217;t it! A friend of mine wrote a shell script to download the latest and replace the old version with the new one. <a class="aktt_tweet_reply" href="http://twitter.com/terminaldude/statuses/3194840137">in reply to terminaldude</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3194922273">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> Nice! It&#8217;s a deal. I just have to be able to make it over the roads. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3194918416">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3194926597">#</a></li>
<li>I think it might finally be time to look at replacing my mouse. It is a 7 year old logitech laser. Was using before I went to Japan. ; ) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3195004193">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/vpeternguyen">vpeternguyen</a> not sure. I am going to start my research. My guess is I probably will end up with a gaming mouse for its precision and form. <a class="aktt_tweet_reply" href="http://twitter.com/vpeternguyen/statuses/3195353449">in reply to vpeternguyen</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3196303773">#</a></li>
<li>Saturday morning BACON!! ; ) yum!  <a rel="nofollow" href="http://twitpic.com/d6k3f">http://twitpic.com/d6k3f</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3196343775">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/johnwinter">johnwinter</a> Haven&#8217;t used Dropzone before bit it looks well done and very useful. Way to go! ; ) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3196661873">#</a></li>
<li>I really like the changes to the Firefox 3.6 download window. Way to go Mozilla! ; ) <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3197699108">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/vpeternguyen">vpeternguyen</a> No, it is a big decision because so much time is spent using it. But no matter what we say it is still very nerdy. ; ) <a class="aktt_tweet_reply" href="http://twitter.com/vpeternguyen/statuses/3198287099">in reply to vpeternguyen</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3198524917">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/MrBrettYoung">MrBrettYoung</a> The HD is VERY nice if you have the income to support it. ; ) Which is why I am not there yet. <a class="aktt_tweet_reply" href="http://twitter.com/MrBrettYoung/statuses/3198490494">in reply to MrBrettYoung</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3198537819">#</a></li>
<li>Gotta love it when customers don&#8217;t completely read instructions you give them and they cost you hours of your time.  #<a class="aktt_hashtag" href="http://search.twitter.com/search?q=%23customernotalwa">customernotalwa</a>ysright <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3198926026">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> huraaaaaaaaaay ; ) <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3214411645">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3216259028">#</a></li>
<li>RT @donttrythis: My talk (Adam Savage) from #<a class="aktt_hashtag" href="http://search.twitter.com/search?q=%23defcon">defcon</a> is up!  <a rel="nofollow" href="http://vimeo.com/6006731">http://vimeo.com/6006731</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3216347083">#</a></li>
<li>Ubiquity Rocks!!! <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3222247148">#</a></li>
<li>I can&#8217;t sleep because I can&#8217;t stop playing with Ubiquity and writting my own Ubiquity commands. <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3222255048">#</a></li>
<li>UBIQUITY!!! <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3222665676">#</a></li>
<li>@<a class="aktt_username" href="http://twitter.com/kylew01">kylew01</a> yeah, I got a bit carried away. Goodnight. <a class="aktt_tweet_reply" href="http://twitter.com/kylew01/statuses/3223370487">in reply to kylew01</a> <a class="aktt_tweet_time" href="http://twitter.com/MikeGrace/statuses/3223573741">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Search Keyboard Shortcut</title>
		<link>http://geek.michaelgrace.org/2009/08/firefox-search-keyboard-shortcut/</link>
		<comments>http://geek.michaelgrace.org/2009/08/firefox-search-keyboard-shortcut/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 18:01:56 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=666</guid>
		<description><![CDATA[
Set cursor focus in Firefox to search box  ->  cmd + K
Set cursor focus in most Mac OS X browsers  ->  cmd + L
Two of my most used and most useful keyboard shortcuts while browsing the web using Firefox on Mac OS X
My good friend Mike showed me the keyboard shortcut [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/firefox_search_shortcut.jpg" alt="firefox_search_shortcut" title="firefox_search_shortcut" width="309" height="84" class="aligncenter size-full wp-image-669" /></p>
<p><strong>Set cursor focus in Firefox to search box  ->  cmd + K<br />
Set cursor focus in most Mac OS X browsers  ->  cmd + L</strong></p>
<p>Two of my most used and most useful keyboard shortcuts while browsing the web using Firefox on Mac OS X</p>
<p>My good friend <a href="http://michaelfarmer.info/blog/">Mike</a> showed me the keyboard shortcut to jump to the Firefox search box after he accidentally stumbled upon it. Thanks Mike!</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/firefox-search-keyboard-shortcut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-08-03</title>
		<link>http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-03/</link>
		<comments>http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-03/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 16:00:00 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-03/</guid>
		<description><![CDATA[
@jasondbarr Awesome post! I subscribed to your RSS. Thanks. ; P in reply to jasondbarr #
@jasondbarr You bet! I can&#39;t believe I haven&#39;t found your blog before now. I am going to read it all tonight. ;) in reply to jasondbarr #
I want IE to die. Just go away. If you are using IE, stop. [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>@<a href="http://twitter.com/jasondbarr">jasondbarr</a> Awesome post! I subscribed to your RSS. Thanks. ; P <a href="http://twitter.com/jasondbarr/statuses/2875620025">in reply to jasondbarr</a> <a href="http://twitter.com/MikeGrace/statuses/2875680176">#</a></li>
<li>@<a href="http://twitter.com/jasondbarr">jasondbarr</a> You bet! I can&#39;t believe I haven&#39;t found your blog before now. I am going to read it all tonight. ;) <a href="http://twitter.com/jasondbarr/statuses/2875708812">in reply to jasondbarr</a> <a href="http://twitter.com/MikeGrace/statuses/2875791736">#</a></li>
<li>I want IE to die. Just go away. If you are using IE, stop. PLEASE STOP!!!! If you must, PLEASE upgrade to IE8. <a href="http://twitter.com/MikeGrace/statuses/2878475180">#</a></li>
<li>Just found out that there are differences in rendering between Firefox 3 and 3.5<br />
ahhhhhhhhhhh ; P <a href="http://twitter.com/MikeGrace/statuses/2878598539">#</a></li>
<p><span id="more-664"></span></p>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> floating and overflow are different. Bad because now I have to figure out how to make it look the same. ; ) <a href="http://twitter.com/kylew01/statuses/2878666783">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/2878690904">#</a></li>
<li>@<a href="http://twitter.com/rmoore08">rmoore08</a> yeah, I don&#39;t think snow leopard is running faster than leopard yet. <a href="http://twitter.com/rmoore08/statuses/2878671825">in reply to rmoore08</a> <a href="http://twitter.com/MikeGrace/statuses/2878699627">#</a></li>
<li>@<a href="http://twitter.com/nicbifano">nicbifano</a> Thanks man! I have a few more I need to put up including a jQuery CSS gotcha I just ran into. ; ) <a href="http://twitter.com/nicbifano/statuses/2879219352">in reply to nicbifano</a> <a href="http://twitter.com/MikeGrace/statuses/2879247522">#</a></li>
<li>.@<a href="http://twitter.com/designdevmag">designdevmag</a> ummm&#8230; you just drag the application into the applications folder. Am I missing something? <a href="http://twitter.com/MikeGrace/statuses/2879301625">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> ouch!  <a href="http://twitpic.com/bvjy5" rel="nofollow">http://twitpic.com/bvjy5</a> <a href="http://twitter.com/MikeGrace/statuses/2880339653">#</a></li>
<li>@<a href="http://twitter.com/mikefarmer">mikefarmer</a> does this apply to you to?  <a href="http://twitpic.com/bvk95" rel="nofollow">http://twitpic.com/bvk95</a> <a href="http://twitter.com/MikeGrace/statuses/2880372727">#</a></li>
<li>@<a href="http://twitter.com/rolandksmith">rolandksmith</a> is there something we can do? Sounds like a great senior project or internship opportunity. <a href="http://twitter.com/rolandksmith/statuses/2878973161">in reply to rolandksmith</a> <a href="http://twitter.com/MikeGrace/statuses/2880400261">#</a></li>
<li>@<a href="http://twitter.com/thedarktangent">thedarktangent</a> tips for #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> virgins. <a href="http://tinyurl.com/m6jnn8" rel="nofollow">http://tinyurl.com/m6jnn8</a> <a href="http://twitter.com/thedarktangent/statuses/2880551249">in reply to thedarktangent</a> <a href="http://twitter.com/MikeGrace/statuses/2881466884">#</a></li>
<li>@<a href="http://twitter.com/rolandksmith">rolandksmith</a> that&#39;s unfortunate. Maybe someday they will turn away from their evil ways. ; ) <a href="http://twitter.com/rolandksmith/statuses/2880764599">in reply to rolandksmith</a> <a href="http://twitter.com/MikeGrace/statuses/2881502594">#</a></li>
<li>@<a href="http://twitter.com/alharris49">alharris49</a> wow. I don&#39;t know if I&#39;m ready to experience all that heat. Lots of water forsure! ; ) <a href="http://twitter.com/alharris49/statuses/2880799273">in reply to alharris49</a> <a href="http://twitter.com/MikeGrace/statuses/2881514043">#</a></li>
<li>@<a href="http://twitter.com/jolieodell">jolieodell</a> skip #defcon?!? You must not be a true geek. ; ) <a href="http://twitter.com/jolieodell/statuses/2880816425">in reply to jolieodell</a> <a href="http://twitter.com/MikeGrace/statuses/2881528062">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> it&#39;s probably time. ; ) <a href="http://twitter.com/kylew01/statuses/2881044811">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/2881542192">#</a></li>
<li>@<a href="http://twitter.com/jonmott">jonmott</a> hmmm. I&#39;m all for a company protecting their stuff but I have heard that they sue just about everyone that builds an LMS <a href="http://twitter.com/jonmott/statuses/2881772901">in reply to jonmott</a> <a href="http://twitter.com/MikeGrace/statuses/2882020119">#</a></li>
<li>@<a href="http://twitter.com/vpeternguyen">vpeternguyen</a> @<a href="http://twitter.com/dallinc">dallinc</a> Well, Twitter  isn&#39;t a good fit for everyone. Good luck in all your endeavors. <a href="http://twitter.com/MikeGrace/statuses/2882089146">#</a></li>
<li>Backing up over 1 million items on my MacBook Pro. ; )  <a href="http://twitpic.com/bw2kh" rel="nofollow">http://twitpic.com/bw2kh</a>  This might take a while. <a href="http://twitter.com/MikeGrace/statuses/2882639096">#</a></li>
<li>@<a href="http://twitter.com/torybriggs">torybriggs</a> my wife and I really like it. We have it if you would like to borrow it. <a href="http://twitter.com/torybriggs/statuses/2882907547">in reply to torybriggs</a> <a href="http://twitter.com/MikeGrace/statuses/2883105319">#</a></li>
<li>@<a href="http://twitter.com/torybriggs">torybriggs</a> ha! Yep! That would be a bit of a task. Well, have fun watching it when you do. ; ) <a href="http://twitter.com/torybriggs/statuses/2883134104">in reply to torybriggs</a> <a href="http://twitter.com/MikeGrace/statuses/2884138503">#</a></li>
<li>@<a href="http://twitter.com/mclaughj">mclaughj</a> all is not lost my friend. You still have many friends who might be able to work something out for you. ; ) <a href="http://twitter.com/mclaughj/statuses/2883545339">in reply to mclaughj</a> <a href="http://twitter.com/MikeGrace/statuses/2884204972">#</a></li>
<li>@<a href="http://twitter.com/mclaughj">mclaughj</a> Have you looked into services that let you tweet via email? That might be a good option if it is blocked. ; ) <a href="http://twitter.com/mclaughj/statuses/2883545339">in reply to mclaughj</a> <a href="http://twitter.com/MikeGrace/statuses/2884214592">#</a></li>
<li>@<a href="http://twitter.com/MrBrettYoung">MrBrettYoung</a> Great article. Thanks for posting the link. ; ) Using twitter in the classroom <a href="http://bit.ly/17QkE8" rel="nofollow">http://bit.ly/17QkE8</a> <a href="http://twitter.com/MrBrettYoung/statuses/2884209971">in reply to MrBrettYoung</a> <a href="http://twitter.com/MikeGrace/statuses/2884280740">#</a></li>
<li>@<a href="http://twitter.com/MrBrettYoung">MrBrettYoung</a> Your welcome. Twitter + common sense + purpose = Very powerful / useful tool. Otherwise Twitter can just be a big waste. ; ) <a href="http://twitter.com/MrBrettYoung/statuses/2884403249">in reply to MrBrettYoung</a> <a href="http://twitter.com/MikeGrace/statuses/2884516293">#</a></li>
<li>@<a href="http://twitter.com/courosa">courosa</a> Good thoughts by Kim. Looks like you are doing a good job. ; ) <a href="http://twitter.com/courosa/statuses/2884565669">in reply to courosa</a> <a href="http://twitter.com/MikeGrace/statuses/2884608556">#</a></li>
<li>I&#39;m flattered when someone reads/watches/uses/cites my stuff. Such a great feeling to know your work is useful to others. (via @<a href="http://twitter.com/courosa">courosa</a>) <a href="http://twitter.com/MikeGrace/statuses/2884879038">#</a></li>
<li>My last blog post is a gem.  ; ) <a href="http://geek.michaelgrace.org/" rel="nofollow">http://geek.michaelgrace.org/</a> <a href="http://twitter.com/MikeGrace/statuses/2885141737">#</a></li>
<li>@<a href="http://twitter.com/MrBrettYoung">MrBrettYoung</a> Thanks! I love to share what I learn and a bit of my craziness with everyone. Sorry to distract you from your work. ; ) <a href="http://twitter.com/MrBrettYoung/statuses/2885190448">in reply to MrBrettYoung</a> <a href="http://twitter.com/MikeGrace/statuses/2885269551">#</a></li>
<li>@<a href="http://twitter.com/MrBrettYoung">MrBrettYoung</a> Cool. Well, enjoy your vacation. ; ) <a href="http://twitter.com/MrBrettYoung/statuses/2885283660">in reply to MrBrettYoung</a> <a href="http://twitter.com/MikeGrace/statuses/2885334454">#</a></li>
<li>@<a href="http://twitter.com/bluedoggiant">bluedoggiant</a> Thanks. ; ) I get a little crazy sometimes. <a href="http://twitter.com/bluedoggiant/statuses/2885289489">in reply to bluedoggiant</a> <a href="http://twitter.com/MikeGrace/statuses/2885336915">#</a></li>
<li>1 million + items, 260 GB and about 4 hours later I am all backed up. ; ) <a href="http://twitter.com/MikeGrace/statuses/2885805706">#</a></li>
<li>@<a href="http://twitter.com/Tikisam">Tikisam</a> Very nice! ; P <a href="http://twitter.com/Tikisam/statuses/2885803722">in reply to Tikisam</a> <a href="http://twitter.com/MikeGrace/statuses/2885852274">#</a></li>
<li>@<a href="http://twitter.com/mclaughj">mclaughj</a> We all look forward to it! Let us know if there is anything we can do here in the states for you while you are over there. <a href="http://twitter.com/mclaughj/statuses/2886105138">in reply to mclaughj</a> <a href="http://twitter.com/MikeGrace/statuses/2886164589">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> thanks. You sure were up early. : ) have a good day. <a href="http://twitter.com/kylew01/statuses/2888360705">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/2891500924">#</a></li>
<li>@<a href="http://twitter.com/brotherjudkins">brotherjudkins</a> thanks. I&#39;m thought maybe a few people would be able to use that information. <a href="http://twitter.com/brotherjudkins/statuses/2891321952">in reply to brotherjudkins</a> <a href="http://twitter.com/MikeGrace/statuses/2891522851">#</a></li>
<li>@<a href="http://twitter.com/jonmott">jonmott</a> well, just another reason for Bb to back off then. <a href="http://twitter.com/jonmott/statuses/2889706724">in reply to jonmott</a> <a href="http://twitter.com/MikeGrace/statuses/2891578613">#</a></li>
<li>@<a href="http://twitter.com/jonmott">jonmott</a> it makes it tough for large schools to find a better LMS if Bb is busy beating up the competition. Competition is good for all. <a href="http://twitter.com/jonmott/statuses/2889706724">in reply to jonmott</a> <a href="http://twitter.com/MikeGrace/statuses/2891603097">#</a></li>
<li>Don&#39;t be fooled into buying admission to #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> online. Admission is cash at door only. Someone is trying this scam. RT pls (via @<a href="http://twitter.com/_defcon_">_defcon_</a>) <a href="http://twitter.com/MikeGrace/statuses/2896474101">#</a></li>
<li>@<a href="http://twitter.com/brotherjudkins">brotherjudkins</a> AWESOME!!! Google, then ask for help if you run into trouble. WordPress ROCKS!!! <a href="http://twitter.com/brotherjudkins/statuses/2894207177">in reply to brotherjudkins</a> <a href="http://twitter.com/MikeGrace/statuses/2896535335">#</a></li>
<li>Just signed up for Amazon&#39;s SimpleDB and I am very excited to figure it out and start using it. ; ) <a href="http://twitter.com/MikeGrace/statuses/2896682779">#</a></li>
<li>@<a href="http://twitter.com/rmoore08">rmoore08</a> Yes we do. ; ) <a href="http://twitter.com/rmoore08/statuses/2897308574">in reply to rmoore08</a> <a href="http://twitter.com/MikeGrace/statuses/2897773916">#</a></li>
<li>@<a href="http://twitter.com/brotherjudkins">brotherjudkins</a> You bet WP is special. ; ) <a href="http://twitter.com/brotherjudkins/statuses/2897522148">in reply to brotherjudkins</a> <a href="http://twitter.com/MikeGrace/statuses/2897781347">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> we are leaving tonight? <a href="http://twitter.com/kylew01/statuses/2897762156">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/2897797106">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> Thanks! I had fun. ; ) <a href="http://twitter.com/kylew01/statuses/2898072405">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/2898541831">#</a></li>
<li>@<a href="http://twitter.com/jasondbarr">jasondbarr</a> Thanks. It was a lot of fun taking those pictures. ; ) <a href="http://twitter.com/jasondbarr/statuses/2898194780">in reply to jasondbarr</a> <a href="http://twitter.com/MikeGrace/statuses/2898546516">#</a></li>
<li>@<a href="http://twitter.com/z103brad">z103brad</a> I finally got those lightning photos up at <a href="http://geek.michaelgrace.org" rel="nofollow">http://geek.michaelgrace.org</a> ; ) Enjoy. <a href="http://twitter.com/z103brad/statuses/2898930598">in reply to z103brad</a> <a href="http://twitter.com/MikeGrace/statuses/2899241199">#</a></li>
<li>@<a href="http://twitter.com/rmoore08">rmoore08</a> wow! That is a really cool photo. Way to go. Cool to have been so close and not get hit. ; ) <a href="http://twitter.com/rmoore08/statuses/2899140242">in reply to rmoore08</a> <a href="http://twitter.com/MikeGrace/statuses/2899305535">#</a></li>
<li>A lovely weather warning for las Vegas as I am getting ready for defcon.  <a href="http://twitpic.com/byqu9" rel="nofollow">http://twitpic.com/byqu9</a> <a href="http://twitter.com/MikeGrace/statuses/2899656079">#</a></li>
<li>I&#39;m not sure I like the new twitter home page. <a href="http://twitter.com/MikeGrace/statuses/2902075464">#</a></li>
<li>This is my first ever tweet from my computer sent via iPhone tethering. ; ) Huzah! <a href="http://twitter.com/MikeGrace/statuses/2903137807">#</a></li>
<li>Some how I get the feeling that my iPhone data usage this week is going to skyrocket with tethering and #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> all in one. ; ) <a href="http://twitter.com/MikeGrace/statuses/2903154736">#</a></li>
<li>@<a href="http://twitter.com/rolandksmith">rolandksmith</a> Nope! ; ) A friend sent me an email with a file and now it works. Was the easiest thing I have done on an iPhone yet. ; ) <a href="http://twitter.com/rolandksmith/statuses/2903177973">in reply to rolandksmith</a> <a href="http://twitter.com/MikeGrace/statuses/2903324260">#</a></li>
<li>@<a href="http://twitter.com/rmoore08">rmoore08</a> Thanks for your help!  My wife is really  excited about it also because this means we have the internet when we travel now. ; ) <a href="http://twitter.com/rmoore08/statuses/2903183897">in reply to rmoore08</a> <a href="http://twitter.com/MikeGrace/statuses/2903355245">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> Very sweet! See you tomorrow! ; ) <a href="http://twitter.com/kylew01/statuses/2903457949">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/2903612408">#</a></li>
<li>&quot;We are a nation that has a government, not the other way around.&quot; &#8211; President Reagan 1981 Inaugural Address (via @<a href="http://twitter.com/davidweiss">davidweiss</a>) <a href="http://twitter.com/MikeGrace/statuses/2903695664">#</a></li>
<li>@<a href="http://twitter.com/torybriggs">torybriggs</a> did you end up watching coraline yet? <a href="http://twitter.com/torybriggs/statuses/2903753952">in reply to torybriggs</a> <a href="http://twitter.com/MikeGrace/statuses/2903782614">#</a></li>
<li>Not surprising that iPhone tethering on edge has a hard time handling a ping flood ; ) I&#39;m such a geek. ; ) <a href="http://twitpic.com/bzn1u" rel="nofollow">http://twitpic.com/bzn1u</a> <a href="http://twitter.com/MikeGrace/statuses/2903817974">#</a></li>
<li>Terminal tip for the day: Do a ping flood using the command:<br />
sudo ping -f <a href="http://www.google.com" rel="nofollow">http://www.google.com</a><br />
(you can use any web address) <a href="http://twitter.com/MikeGrace/statuses/2903846680">#</a></li>
<li>I was doing another ping flood test using my iPhone tethering and the phone decided to restart! haha ; ) <a href="http://twitter.com/MikeGrace/statuses/2903893287">#</a></li>
<li>You can overload your iPhone if you have it tethered and do a flood ping. Second time mine died at 56,000 ping and third time at 6,000.  ; ) <a href="http://twitter.com/MikeGrace/statuses/2904020307">#</a></li>
<li>@<a href="http://twitter.com/torybriggs">torybriggs</a> Glad to hear it. ; ) <a href="http://twitter.com/torybriggs/statuses/2904013233">in reply to torybriggs</a> <a href="http://twitter.com/MikeGrace/statuses/2904025682">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> True. Just watching the requests fly out is really fun though. ; ) <a href="http://twitter.com/kylew01/statuses/2904103736">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/2904217264">#</a></li>
<li>I had better go to sleep soon since I will be leaving tomorrow for #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> with @<a href="http://twitter.com/kylew01">kylew01</a> and @<a href="http://twitter.com/rmoore08">rmoore08</a> <a href="http://twitter.com/MikeGrace/statuses/2904233873">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> If I can get to bed and wake up at a decent hour. ; ) <a href="http://twitter.com/kylew01/statuses/2904281915">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/2904298578">#</a></li>
<li>I love that twitter.com has a &quot;Learn the lingo&quot; page for those who are just getting started. ; ) <a href="http://bit.ly/54QhO" rel="nofollow">http://bit.ly/54QhO</a> <a href="http://twitter.com/MikeGrace/statuses/2904357431">#</a></li>
<li>@<a href="http://twitter.com/z103brad">z103brad</a> Thanks! I am glad you like it. I&#39;ll have to keep taking good pictures and sharing them. ; ) Have a good night. <a href="http://twitter.com/z103brad/statuses/2904309167">in reply to z103brad</a> <a href="http://twitter.com/MikeGrace/statuses/2904365184">#</a></li>
<li>That 2nd lightening pic is phenomenal!  Looks like a movie!  <a href="http://bit.ly/tXxtW" rel="nofollow">http://bit.ly/tXxtW</a><br />
 (via @<a href="http://twitter.com/z103brad">z103brad</a>) <a href="http://twitter.com/MikeGrace/statuses/2904561094">#</a></li>
<li>@<a href="http://twitter.com/MrBrettYoung">MrBrettYoung</a> which site was it? <a href="http://twitter.com/MrBrettYoung/statuses/2904556687">in reply to MrBrettYoung</a> <a href="http://twitter.com/MikeGrace/statuses/2904565198">#</a></li>
<li>@<a href="http://twitter.com/thezees">thezees</a> I will. Thanks! I&#39;ll see how much blogging I can get done during the drive. ; ) <a href="http://twitter.com/thezees/statuses/2904734125">in reply to thezees</a> <a href="http://twitter.com/MikeGrace/statuses/2904776604">#</a></li>
<li>&quot;iPhone Jailbreaking Could Crash Cellphone Towers, Apple Claims&quot; &#8211;  <a href="http://bit.ly/13RiUP" rel="nofollow">http://bit.ly/13RiUP</a> I call B$. (via @<a href="http://twitter.com/courosa">courosa</a>) ; ) <a href="http://twitter.com/MikeGrace/statuses/2904982536">#</a></li>
<li>@<a href="http://twitter.com/courosa">courosa</a> Well, if the cell towers do crash then we will know that they need to invest in some for infrastructure. ; ) <a href="http://twitter.com/courosa/statuses/2904943814">in reply to courosa</a> <a href="http://twitter.com/MikeGrace/statuses/2904988538">#</a></li>
<li>RT @ThemeForest: Promote your article and yourself with us <a href="http://bit.ly/39Fcd8" rel="nofollow">http://bit.ly/39Fcd8</a> <a href="http://twitter.com/MikeGrace/statuses/2905297073">#</a></li>
<li>@<a href="http://twitter.com/MrBrettYoung">MrBrettYoung</a> Nice. Thanks for the link. ; ) <a href="http://twitter.com/MrBrettYoung/statuses/2905379206">in reply to MrBrettYoung</a> <a href="http://twitter.com/MikeGrace/statuses/2905444719">#</a></li>
<li>@<a href="http://twitter.com/mclaughj">mclaughj</a> Say hi to all my friends in Tokyo for me.  ; ) <a href="http://twitter.com/mclaughj/statuses/2911675788">in reply to mclaughj</a> <a href="http://twitter.com/MikeGrace/statuses/2911876513">#</a></li>
<li>@<a href="http://twitter.com/brotherjudkins">brotherjudkins</a> way to go! Now for some relaxing right? <a href="http://twitter.com/brotherjudkins/statuses/2913789932">in reply to brotherjudkins</a> <a href="http://twitter.com/MikeGrace/statuses/2914384474">#</a></li>
<li>RT @jonmott: Back channel dilemma=balancing online conversation w/ live interaction. Use tools to encourage, not replace interaction. #<a href="http://search.twitter.com/search?q=%23ct09">ct09</a> <a href="http://twitter.com/MikeGrace/statuses/2915962972">#</a></li>
<li>@<a href="http://twitter.com/croskelley">croskelley</a> that is a super cute picture. ; ) <a href="http://twitter.com/croskelley/statuses/2916502268">in reply to croskelley</a> <a href="http://twitter.com/MikeGrace/statuses/2917174800">#</a></li>
<li>I love kids! RT @windley: My daughter just said &quot;themonly thing that couldm improve the Veggie Lovers pizza is bacon&quot; <a href="http://twitter.com/MikeGrace/statuses/2917226594">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> here I come! <a href="http://twitter.com/MikeGrace/statuses/2920338139">#</a></li>
<li>@<a href="http://twitter.com/jessecole">jessecole</a> Thanks! We will. I will be putting up a blog post soon. ; ) <a href="http://twitter.com/jessecole/statuses/2924272840">in reply to jessecole</a> <a href="http://twitter.com/MikeGrace/statuses/2925441976">#</a></li>
<li>It must be getting late if we are talking about cats on treadmill on our way to #defcon. ; ) <a href="http://twitter.com/MikeGrace/statuses/2925809073">#</a></li>
<li>Still awake. Less than 7 hours to go until we get to vagas.  <a href="http://twitpic.com/c423j" rel="nofollow">http://twitpic.com/c423j</a> <a href="http://twitter.com/MikeGrace/statuses/2926289631">#</a></li>
<li>290 miles to defcon! <a href="http://twitter.com/MikeGrace/statuses/2927725338">#</a></li>
<li>Almost to defcon. Wohoo! Glad to be out of the car soon.  <a href="http://twitpic.com/c4kgw" rel="nofollow">http://twitpic.com/c4kgw</a> <a href="http://twitter.com/MikeGrace/statuses/2929514033">#</a></li>
<li>The sun is chasing us on our way to defcon  <a href="http://twitpic.com/c4ksb" rel="nofollow">http://twitpic.com/c4ksb</a> <a href="http://twitter.com/MikeGrace/statuses/2929574577">#</a></li>
<li>Amazing landscape.  <a href="http://twitpic.com/c4lk6" rel="nofollow">http://twitpic.com/c4lk6</a> <a href="http://twitter.com/MikeGrace/statuses/2929716145">#</a></li>
<li>Our defcon crew  <a href="http://twitpic.com/c4lyc" rel="nofollow">http://twitpic.com/c4lyc</a> <a href="http://twitter.com/MikeGrace/statuses/2929786531">#</a></li>
<li>@<a href="http://twitter.com/bluedoggiant">bluedoggiant</a> thanks. ; ) not much else to do right now but tweet. <a href="http://twitter.com/bluedoggiant/statuses/2929774901">in reply to bluedoggiant</a> <a href="http://twitter.com/MikeGrace/statuses/2929799999">#</a></li>
<li>@<a href="http://twitter.com/MikeGrace">MikeGrace</a> that tweet was supposed to have 4 pictures. Twitterfon  fail. : ( <a href="http://twitter.com/MikeGrace/statuses/2929786531">in reply to MikeGrace</a> <a href="http://twitter.com/MikeGrace/statuses/2929817023">#</a></li>
<li>I think I need more sleep.  <a href="http://twitpic.com/c4md0" rel="nofollow">http://twitpic.com/c4md0</a> <a href="http://twitter.com/MikeGrace/statuses/2929853577">#</a></li>
<li>There she is! Las Vagas only 15 miles away.  <a href="http://twitpic.com/c4ndz" rel="nofollow">http://twitpic.com/c4ndz</a> <a href="http://twitter.com/MikeGrace/statuses/2930044029">#</a></li>
<li>@<a href="http://twitter.com/chriswallace">chriswallace</a> wow! Amazing! <a href="http://twitter.com/chriswallace/statuses/2929856068">in reply to chriswallace</a> <a href="http://twitter.com/MikeGrace/statuses/2930061273">#</a></li>
<li>I put up a video of the beginning of our trip to #defcon. Enjoy. ; ) <a href="http://geek.michaelgrace.org/" rel="nofollow">http://geek.michaelgrace.org/</a> <a href="http://twitter.com/MikeGrace/statuses/2937517992">#</a></li>
<li>In the defcon lock picking workshop.  <a href="http://twitpic.com/c6m9r" rel="nofollow">http://twitpic.com/c6m9r</a> <a href="http://twitter.com/MikeGrace/statuses/2939599023">#</a></li>
<li>Oops! Forgot that I am still running on a 2g iPhone plan.  <a href="http://twitpic.com/c6o1s" rel="nofollow">http://twitpic.com/c6o1s</a> <a href="http://twitter.com/MikeGrace/statuses/2939809038">#</a></li>
<li>Really enjoyed the #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> lock picking workshop. Alek Amrani was really funny. ; ) <a href="http://twitter.com/MikeGrace/statuses/2939848254">#</a></li>
<li>Listening to &quot;so you got arrested in Vagas&#8230;&quot; Glad I don&#39;t drink or do other stupid things. ; ) <a href="http://twitter.com/MikeGrace/statuses/2940570645">#</a></li>
<li>@<a href="http://twitter.com/macmissionary">macmissionary</a> ; ) we wondered if anyone would notice. ; P <a href="http://twitter.com/macmissionary/statuses/2944039439">in reply to macmissionary</a> <a href="http://twitter.com/MikeGrace/statuses/2944691275">#</a></li>
<li>Craziest mcdonalds I&#39;ve ever been in.  <a href="http://twitpic.com/c7xqs" rel="nofollow">http://twitpic.com/c7xqs</a> <a href="http://twitter.com/MikeGrace/statuses/2945438510">#</a></li>
<li>@<a href="http://twitter.com/RodBeckstrom">RodBeckstrom</a> I enjoyed you workshop this morning. Thanks for coming to #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> and sharing your knowledge. <a href="http://twitter.com/MikeGrace/statuses/3055156446">#</a></li>
<li>ATT network is getting slammed with so many users here at #defcon. Wonder if it will crash by the end of the day. Edge and 3g slow. : ( <a href="http://twitter.com/MikeGrace/statuses/3055180292">#</a></li>
<li>@<a href="http://twitter.com/ChadLawson">ChadLawson</a> the rooms have to be cleared to keep things fair <a href="http://twitter.com/ChadLawson/statuses/3055172395">in reply to ChadLawson</a> <a href="http://twitter.com/MikeGrace/statuses/3055209542">#</a></li>
<li>@<a href="http://twitter.com/rwc101010">rwc101010</a> I really want to do that. Probably be over in about an hour or so. <a href="http://twitter.com/rwc101010/statuses/3055194414">in reply to rwc101010</a> <a href="http://twitter.com/MikeGrace/statuses/3055218024">#</a></li>
<li>Listening to Efstratos L. Gavas talk about Asymetric Defense at #Defcon. <a href="http://twitter.com/MikeGrace/statuses/3055308692">#</a></li>
<li>&quot;it&#39;s good to learn multiple OS&#39;es&quot; &#8211; efstratios #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3055382712">#</a></li>
<li>Time to head over to the lock picking village. ; ) #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3055626635">#</a></li>
<li>I made it on the #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> projector!  <a href="http://twitpic.com/c9ydq" rel="nofollow">http://twitpic.com/c9ydq</a> <a href="http://twitter.com/MikeGrace/statuses/3055690408">#</a></li>
<li>Just picked up my first ever lock picking set. Muhahahahahahahah! Go #defcon!  <a href="http://twitpic.com/ca1h7" rel="nofollow">http://twitpic.com/ca1h7</a> <a href="http://twitter.com/MikeGrace/statuses/3056032876">#</a></li>
<li>@<a href="http://twitter.com/illustrativecas">illustrativecas</a> have fun. I&#39;m excited to go with you next week. ; ) <a href="http://twitter.com/illustrativecas/statuses/3056336675">in reply to illustrativecas</a> <a href="http://twitter.com/MikeGrace/statuses/3056938667">#</a></li>
<li>I hear a lot of humans cursing the fact that they didn&#39;t get a real badge. Glad we got here early. #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3057167145">#</a></li>
<li>Listening to Digividual talk about &quot;socially owned in the cloud&quot;. Sounds interesting so far. #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3057193778">#</a></li>
<li>Just saw someone with a box of krispy creams at #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3057796032">#</a></li>
<li>@<a href="http://twitter.com/chriscoyier">chriscoyier</a> thanks! ; P <a href="http://twitter.com/chriscoyier/statuses/3057968649">in reply to chriscoyier</a> <a href="http://twitter.com/MikeGrace/statuses/3057982028">#</a></li>
<li>A bit scarry but we are having a blast at #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a>  <a href="http://twitpic.com/caj71" rel="nofollow">http://twitpic.com/caj71</a> <a href="http://twitter.com/MikeGrace/statuses/3058091046">#</a></li>
<li>@<a href="http://twitter.com/illustrativecas">illustrativecas</a> Glad you like the pictures. : ) @<a href="http://twitter.com/kylew01">kylew01</a> waiting to get a smoothie. #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitpic.com/canyz" rel="nofollow">http://twitpic.com/canyz</a> <a href="http://twitter.com/illustrativecas/statuses/3058380069">in reply to illustrativecas</a> <a href="http://twitter.com/MikeGrace/statuses/3058611878">#</a></li>
<li>Learning about Tor at #defcon. Sounds awesome <a href="http://twitter.com/MikeGrace/statuses/3060459061">#</a></li>
<li>@<a href="http://twitter.com/mikefarmer">mikefarmer</a> ohhh! You now have to invite me over so I can play the wii to. ; ) <a href="http://twitter.com/mikefarmer/statuses/3060458160">in reply to mikefarmer</a> <a href="http://twitter.com/MikeGrace/statuses/3060500108">#</a></li>
<li>Weirdest Twitter error I have ever seen while trying to tweet at #defcon.   <a href="http://twitpic.com/cb5rp" rel="nofollow">http://twitpic.com/cb5rp</a> <a href="http://twitter.com/MikeGrace/statuses/3060562396">#</a></li>
<li>Yes, there are that many geeks at #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a>  <a href="http://twitpic.com/cb6sl" rel="nofollow">http://twitpic.com/cb6sl</a> <a href="http://twitter.com/MikeGrace/statuses/3060662731">#</a></li>
<li>I am lovin the retro room at #defcon. Sad there is no Apple Lisa.   <a href="http://twitpic.com/cb7i7" rel="nofollow">http://twitpic.com/cb7i7</a> <a href="http://twitter.com/MikeGrace/statuses/3060730534">#</a></li>
<li>Roger Dingledine is rocking the Tor presentation at #Defcon. Way to go!!!!! <a href="http://twitter.com/MikeGrace/statuses/3060806301">#</a></li>
<li>Really impressed with how prepared and passionate Roger Dingledine is about Tor at #defcon. <a href="http://twitter.com/MikeGrace/statuses/3060975631">#</a></li>
<li>A big thanks to Roger Dingled for his excellent presentation on Tor.  <a href="http://twitpic.com/cbcvu" rel="nofollow">http://twitpic.com/cbcvu</a> <a href="http://twitter.com/MikeGrace/statuses/3061254528">#</a></li>
<li>Arrrrrr! There be pirates in the house. Listening to bit torrent hacks. #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3061295058">#</a></li>
<li>RT @kylew01: Lots of great information today. #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3061677092">#</a></li>
<li>I was excited for the torrent hacking talk but ending up a bit disappointed. #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3061755247">#</a></li>
<li>RT @rmoore08: So I bought a Newton today for 20 bucks. Very good choice. #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3062147551">#</a></li>
<li>&quot;&#39;I promise&#39; is not an a good security measure!&quot; #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3062440594">#</a></li>
<li>&quot;We have known MD5 is insecure since the 90&#39;s. Why is it still being used? Bad!&quot; #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3062502937">#</a></li>
<li>RT @rmoore08: Interesting Kaminsky got hacked pretty hardcore.http://bit.ly/A87j9  #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3062662761">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> unless the promise comes from God.  ; ) <a href="http://twitter.com/kylew01/statuses/3062651874">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/3062680803">#</a></li>
<li>Listening to @<a href="http://twitter.com/dakami">dakami</a> at #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3062784070">#</a></li>
<li>@<a href="http://twitter.com/EricEmbree">EricEmbree</a> ???? <a href="http://twitter.com/EricEmbree/statuses/3063216835">in reply to EricEmbree</a> <a href="http://twitter.com/MikeGrace/statuses/3063362072">#</a></li>
<li>Went to frys <a href="http://twitter.com/MikeGrace/statuses/3064973573">#</a></li>
<li>RT @rmoore08: So excited for this! RT @donttrythis: In Vegas for DefCon!  Gonna talk tomorrow. <a href="http://twitter.com/MikeGrace/statuses/3065002298">#</a></li>
<li>@<a href="http://twitter.com/rmoore08">rmoore08</a> yes we do think your crazy. ; ) <a href="http://twitter.com/MikeGrace/statuses/3065022676">#</a></li>
<li>RT @rmoore08: At In and out burger for the first time. This menu exemplifies simplicity at it&#39;s finest. <a href="http://twitter.com/MikeGrace/statuses/3065028271">#</a></li>
<li>@<a href="http://twitter.com/mikefarmer">mikefarmer</a> I got this to share with you. ; )  <a href="http://twitpic.com/ccelb" rel="nofollow">http://twitpic.com/ccelb</a> <a href="http://twitter.com/MikeGrace/statuses/3065099647">#</a></li>
<li>@<a href="http://twitter.com/illustrativecas">illustrativecas</a> is going to hate me for this. ; )  <a href="http://twitpic.com/ccft0" rel="nofollow">http://twitpic.com/ccft0</a> <a href="http://twitter.com/MikeGrace/statuses/3065229014">#</a></li>
<li>@<a href="http://twitter.com/MikeGrace">MikeGrace</a> and this. ; )  <a href="http://twitpic.com/ccg6w" rel="nofollow">http://twitpic.com/ccg6w</a> <a href="http://twitter.com/MikeGrace/statuses/3065229014">in reply to MikeGrace</a> <a href="http://twitter.com/MikeGrace/statuses/3065262587">#</a></li>
<li>RT @rmoore08: &quot;If you&#39;re going to be stupid, you might as well be smart about it.&quot; &#8211; @<a href="http://twitter.com/mikegrace">mikegrace</a> <a href="http://twitter.com/MikeGrace/statuses/3066081215">#</a></li>
<li>@<a href="http://twitter.com/illustrativecas">illustrativecas</a> here&#39;s our dinner stash.  <a href="http://twitpic.com/ccutq" rel="nofollow">http://twitpic.com/ccutq</a> <a href="http://twitter.com/MikeGrace/statuses/3066958747">#</a></li>
<li>@<a href="http://twitter.com/EricEmbree">EricEmbree</a> very nice. : ) <a href="http://twitter.com/EricEmbree/statuses/3066921911">in reply to EricEmbree</a> <a href="http://twitter.com/MikeGrace/statuses/3066964341">#</a></li>
<li>@<a href="http://twitter.com/illustrativecas">illustrativecas</a> I knew you would be. ; ) a google image search will answer &quot;what is an apple newton&quot;. <a href="http://twitter.com/illustrativecas/statuses/3066964539">in reply to illustrativecas</a> <a href="http://twitter.com/MikeGrace/statuses/3067022471">#</a></li>
<li>I should be sleeping to. Have a good day. ; ) <a href="http://twitter.com/MikeGrace/statuses/3067035789">#</a></li>
<li>JPEG XR now an international standard from the JPEG Committee!  <a href="http://bit.ly/wGGDt" rel="nofollow">http://bit.ly/wGGDt</a> <a href="http://twitter.com/MikeGrace/statuses/3067071583">#</a></li>
<li>@<a href="http://twitter.com/CMoz">CMoz</a> I&#39;m awake again. Time to go party with a bunch of geeks at defcon. <a href="http://twitter.com/CMoz/statuses/3067064843">in reply to CMoz</a> <a href="http://twitter.com/MikeGrace/statuses/3071861310">#</a></li>
<li>@<a href="http://twitter.com/illustrativecas">illustrativecas</a> I can&#39;t wait to see you again. Love you <a href="http://twitter.com/illustrativecas/statuses/3067029423">in reply to illustrativecas</a> <a href="http://twitter.com/MikeGrace/statuses/3071983916">#</a></li>
<li>@<a href="http://twitter.com/mikefarmer">mikefarmer</a> it&#39;s awesome. ; ) <a href="http://twitter.com/mikefarmer/statuses/3070571146">in reply to mikefarmer</a> <a href="http://twitter.com/MikeGrace/statuses/3072000788">#</a></li>
<li>Line for Adam savage starting and the goons aren&#39;t happy about it. #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3073398484">#</a></li>
<li>I think I&#39;m finally starting to sweat as I stand outside inline&#39; to see Adam savage. It&#39;s only 100 degrees out here. ; ) <a href="http://twitter.com/MikeGrace/statuses/3074327741">#</a></li>
<li>@<a href="http://twitter.com/benmay">benmay</a> it is infact THE Adam savage. ; ) I&#39;m pumped. <a href="http://twitter.com/benmay/statuses/3074347974">in reply to benmay</a> <a href="http://twitter.com/MikeGrace/statuses/3074528252">#</a></li>
<li>@<a href="http://twitter.com/geewhipped">geewhipped</a> yeah. Your tellin me. : ) <a href="http://twitter.com/geewhipped/statuses/3073467057">in reply to geewhipped</a> <a href="http://twitter.com/MikeGrace/statuses/3074565980">#</a></li>
<li>@<a href="http://twitter.com/satnam">satnam</a> you can always watch it online later but I want to see him in person. <a href="http://twitter.com/satnam/statuses/3073487306">in reply to satnam</a> <a href="http://twitter.com/MikeGrace/statuses/3074572842">#</a></li>
<li>@<a href="http://twitter.com/benmay">benmay</a> you were. ; ) I think we are planning on going next year to if you want to come. <a href="http://twitter.com/benmay/statuses/3074535446">in reply to benmay</a> <a href="http://twitter.com/MikeGrace/statuses/3074594005">#</a></li>
<li>Adam savage in the flesh! This is awesome! #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3075341416">#</a></li>
<li>Adam savage was awesome!!!!!!! That right there was worth the trip. ; ) <a href="http://twitter.com/MikeGrace/statuses/3075952886">#</a></li>
<li>@<a href="http://twitter.com/illustrativecas">illustrativecas</a> think mythbusters. ; ) <a href="http://twitter.com/illustrativecas/statuses/3076065140">in reply to illustrativecas</a> <a href="http://twitter.com/MikeGrace/statuses/3076269115">#</a></li>
<li>@<a href="http://twitter.com/illustrativecas">illustrativecas</a> nice! Way to go. I&#39;m really proud of you. Glad to ba able to come home to you soon. ; ) <a href="http://twitter.com/illustrativecas/statuses/3076087413">in reply to illustrativecas</a> <a href="http://twitter.com/MikeGrace/statuses/3076291161">#</a></li>
<li>@<a href="http://twitter.com/RSnake">RSnake</a> Awesome workshop on slowloris. Thanks for coming out to #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> and sharing your knowledge and experience. ; ) <a href="http://twitter.com/MikeGrace/statuses/3076923717">#</a></li>
<li>&quot;I don&#39;t talk about my own security any more&quot; &#8211; @<a href="http://twitter.com/rsnake">rsnake</a> #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3077016740">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> has opened up a whole new world of insecurity that I never realized was as ugly as it is. Sure is a fun world to play in. Party on!! <a href="http://twitter.com/MikeGrace/statuses/3077028439">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> ROCKS! &quot; . &quot; <a href="http://twitter.com/MikeGrace/statuses/3077209123">#</a></li>
<li>Confirmed: Trojan on Defcon CD. #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> (via @<a href="http://twitter.com/geekgrrl">geekgrrl</a>) <a href="http://twitter.com/MikeGrace/statuses/3077228173">#</a></li>
<li>@<a href="http://twitter.com/illustrativecas">illustrativecas</a> good luck. ; ) you rock!!!! <a href="http://twitter.com/illustrativecas/statuses/3077284379">in reply to illustrativecas</a> <a href="http://twitter.com/MikeGrace/statuses/3077797209">#</a></li>
<li>RT @donttrythis: <a href="http://twitpic.com/cf0cj" rel="nofollow">http://twitpic.com/cf0cj</a> &#8211; The room at defcon. <a href="http://twitter.com/MikeGrace/statuses/3077883554">#</a></li>
<li>Waiting for our pizza as we get ready to leave #defcon.  <a href="http://twitpic.com/cg271" rel="nofollow">http://twitpic.com/cg271</a> <a href="http://twitter.com/MikeGrace/statuses/3077982550">#</a></li>
<li>RT @InfosecEvents: #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> rumor &#8211; guy gets arrested for concealed weapon <a href="http://twitter.com/MikeGrace/statuses/3077997656">#</a></li>
<li>@<a href="http://twitter.com/benmay">benmay</a> way to go! Keep up the good work! <a href="http://twitter.com/benmay/statuses/3077960485">in reply to benmay</a> <a href="http://twitter.com/MikeGrace/statuses/3078027070">#</a></li>
<li>RT @kylew01: .@<a href="http://twitter.com/rmoore08">rmoore08</a> had his Twitter account hacked at #defcon. Now his account is suspended :( <a href="http://twitter.com/MikeGrace/statuses/3078811784">#</a></li>
<li>Heading home from #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a>  <a href="http://twitpic.com/cgdjb" rel="nofollow">http://twitpic.com/cgdjb</a> <a href="http://twitter.com/MikeGrace/statuses/3078888085">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> that can&#39;t be good for tour neck. ; )  <a href="http://twitpic.com/cghmk" rel="nofollow">http://twitpic.com/cghmk</a> <a href="http://twitter.com/MikeGrace/statuses/3079214052">#</a></li>
<li>@<a href="http://twitter.com/rmoore08">rmoore08</a> dude! Hope you&#39;re able to rest like that. ; )  <a href="http://twitpic.com/cgird" rel="nofollow">http://twitpic.com/cgird</a> <a href="http://twitter.com/MikeGrace/statuses/3079310515">#</a></li>
<li>I had better perk up if I want my friends to make it through this trip alive.  <a href="http://twitpic.com/cgjib" rel="nofollow">http://twitpic.com/cgjib</a> <a href="http://twitter.com/MikeGrace/statuses/3079371770">#</a></li>
<li>RT @mikefarmer: Official family blog post on the new Wii! :) <a href="http://bit.ly/11biHP" rel="nofollow">http://bit.ly/11biHP</a> <a href="http://twitter.com/MikeGrace/statuses/3080208477">#</a></li>
<li>Listening to Jeff dunham as we travel back from #<a href="http://search.twitter.com/search?q=%23defcon">defcon</a> <a href="http://twitter.com/MikeGrace/statuses/3080270925">#</a></li>
<li>Dropped off @<a href="http://twitter.com/rmoore08">rmoore08</a> and @<a href="http://twitter.com/kylew01">kylew01</a> about half an hour ago. Sun is starting to rise and I still haven&#39;t gotten to sleep. ; ) : ( <a href="http://twitter.com/MikeGrace/statuses/3085343816">#</a></li>
<li>Defcon was really great but I am ready to actually get some sleep now as soon as we get home. <a href="http://twitter.com/MikeGrace/statuses/3085366812">#</a></li>
<li>Wohooo! Passing through ririe as the morning light is breaking. Sleep fail!! <a href="http://twitter.com/MikeGrace/statuses/3085494009">#</a></li>
<li>Finally made it back to Rexburg safely after being up for 24 hours.  <a href="http://twitpic.com/ci50t" rel="nofollow">http://twitpic.com/ci50t</a> <a href="http://twitter.com/MikeGrace/statuses/3085681403">#</a></li>
<li>Made it home safely and saw this twice today  <a href="http://twitpic.com/ci5x4" rel="nofollow">http://twitpic.com/ci5&#215;4</a> <a href="http://twitter.com/MikeGrace/statuses/3085801367">#</a></li>
<li>@<a href="http://twitter.com/endeavormac">endeavormac</a> yep! <a href="http://twitter.com/endeavormac/statuses/3091270388">in reply to endeavormac</a> <a href="http://twitter.com/MikeGrace/statuses/3091320688">#</a></li>
<li>The sky is falling! The sky is falling during #defcon. We must party really hard. ; ) <a href="http://twitter.com/MikeGrace/statuses/3091347168">#</a></li>
<li>Updating my sisters computer. Why does installing IE 8 require 3 restarts and 30 min to complete? MS &amp; IE #FAIL!!!! <a href="http://twitter.com/MikeGrace/statuses/3092482592">#</a></li>
<li>RT @securelexicon: #<a href="http://search.twitter.com/search?q=%23DefCon">DefCon</a> bees shut down pool &#8211; A testament to the power of a simple collective. <a href="http://twitter.com/MikeGrace/statuses/3092500652">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> same to you. I had a great time and learned a lot. <a href="http://twitter.com/kylew01/statuses/3092925739">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/3093412939">#</a></li>
<li>@<a href="http://twitter.com/kylew01">kylew01</a> if I get to bed&#8230; Yes. ; ) <a href="http://twitter.com/kylew01/statuses/3092952705">in reply to kylew01</a> <a href="http://twitter.com/MikeGrace/statuses/3093419738">#</a></li>
<li>RT @Jabra: The Slides / Demos from the Blackhat / Defcon talk I gave with @<a href="http://twitter.com/rsnake">rsnake</a> can be found at <a href="http://tinyurl.com/ktueuz" rel="nofollow">http://tinyurl.com/ktueuz</a> <a href="http://twitter.com/MikeGrace/statuses/3093978510">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/twitter-weekly-updates-for-2009-08-03/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defcon &#8211; Getting There</title>
		<link>http://geek.michaelgrace.org/2009/07/defcon-getting-there/</link>
		<comments>http://geek.michaelgrace.org/2009/07/defcon-getting-there/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 08:28:23 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Defcon]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=655</guid>
		<description><![CDATA[To commemorate our trip to Defcon I created a funny little video. Enjoy. ; )

Defcon &#8211; Getting There from Mike Grace on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://geek.michaelgrace.org/2009/07/defcon-getting-there/getting_there_video/" rel="attachment wp-att-661"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/getting_there_video.jpg" alt="getting_there_video" title="getting_there_video" width="250" height="188" class="alignleft size-full wp-image-661" /></a>To commemorate our trip to Defcon I created a funny little video. Enjoy. ; )<span id="more-655"></span></p>
<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5840684&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5840684&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object>
<p><a href="http://vimeo.com/5840684">Defcon &#8211; Getting There</a> from <a href="http://vimeo.com/user2000342">Mike Grace</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/defcon-getting-there/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rexburg Lightning Storm</title>
		<link>http://geek.michaelgrace.org/2009/07/rexburg-lightning-storm/</link>
		<comments>http://geek.michaelgrace.org/2009/07/rexburg-lightning-storm/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 21:55:23 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=635</guid>
		<description><![CDATA[We recently had a good lightning storm here in the Rexburg area and I was able to spend a good hour practicing my night lightning shots. I really need to learn more about doing these kind of shots but it was a lot of fun. I really like the first one because you can see [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/kratz/2536427384/"><img class="size-full wp-image-652 alignleft" title="Fisher Price Camera" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/fisher_price_camera.jpg" alt="Fisher Price Camera" width="144" height="113" /></a>We recently had a good lightning storm here in the Rexburg area and I was able to spend a good hour practicing my night lightning shots. I really need to learn more about doing these kind of shots but it was a lot of fun. I really like the first one because you can see blue from the sky and the yellow light reflecting off the clouds from the towns below. Hope to be able to do this more in the future.<span id="more-635"></span></p>
<p><img class="aligncenter size-full wp-image-636" title="_MIK9711" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/MIK9711.jpg" alt="_MIK9711" width="640" height="319" /><br />
<img class="aligncenter size-full wp-image-637" title="_MIK9811" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/MIK9811.jpg" alt="_MIK9811" width="640" height="428" /></p>
<p>Photo:<br />
<a rel="cc:attributionURL" href="http://www.flickr.com/photos/kratz/">http://www.flickr.com/photos/kratz/</a> / <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/rexburg-lightning-storm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Creative Commons Images</title>
		<link>http://geek.michaelgrace.org/2009/07/using-creative-commons-images/</link>
		<comments>http://geek.michaelgrace.org/2009/07/using-creative-commons-images/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 07:27:38 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Web Design -Dev]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=549</guid>
		<description><![CDATA[I am big on not violating copyright laws and respecting others work which is why I love the Flickr &#8211; Creative Commons relationship. There are a lot of people who take great photographs who are willing to share their work as long as you attribute the work to them. Here is how I go about [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/zanastardust/145197704/"><img class="alignleft size-full wp-image-632" title="flickr_flowers" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/flickr_flowers.jpg" alt="flickr_flowers" width="240" height="159" /></a>I am big on not violating copyright laws and respecting others work which is why I love the Flickr &#8211; Creative Commons relationship. There are a lot of people who take great photographs who are willing to share their work as long as you attribute the work to them. Here is how I go about using photos in Flickr that are using the Creative Commons license.<span id="more-549"></span></p>
<p><img class="alignleft size-full wp-image-612" title="firefox_creative_commons" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/firefox_creative_commons.jpg" alt="firefox_creative_commons" width="250" height="174" />If you aren&#8217;t already using Firefox I highly encourage you to because there is no other browser like it. When I am writing a blog post, I use the quick search in the top right corner of Firefox to search for photos on Flickr using the Creative Commons license. If you are not using Firefox, (shame! shame!), do your Creative Commons search at <a href="http://search.creativecommons.org/">http://search.creativecommons.org/</a> Search results appear in one column with tabs at the top to chose from search sources other than Flickr.<img class="size-full wp-image-614 alignright" title="firefox_creative_commons_search" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/firefox_creative_commons_search.jpg" alt="firefox_creative_commons_search" width="400" height="442" /><br />
As I scroll through the images I open the ones I find interesting in a new tab. After searching through a good amount of photos, it has gotten easier to find good ones and I&#8217;m beginning to find a style that fits my blog. I then download the size that best fits my needs by clicking on &#8220;all sizes&#8221; right above the image. <img class="alignleft size-full wp-image-617" title="all_sizes" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/all_sizes.jpg" alt="all_sizes" width="295" height="270" /></p>
<p>I then end up going back to the page with just that image and all of the comments people have made on the photo. It is time to get the attribution links for all the legal stuff. The link to the Creative Commons license is on the right side with a link just under the heading &#8220;Additional Information&#8221;. The Creative Commons license page explains to what extent the image can be used and how to attribute the image to the owner.<img class="alignright size-full wp-image-619" title="some_rights_reserved" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/some_rights_reserved.jpg" alt="some_rights_reserved" width="400" height="400" /></p>
<p>The top section of this particular license agreement allows me to use this image on my blog (share) and to remix the image to use it in other ways. If this license agreement did not have the remix statement, it is my understanding that I could not crop the image and use in some of the ways I have in this post. The next section explains how to attribute the photo to the owner and usually provides a nice HTML snippet to copy and paste into your blog or web page.<img class="alignleft size-full wp-image-622" title="attribution" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/attribution.jpg" alt="attribution" width="400" height="226" /><br />
Note: You can get to the license page from other pages but the link from the images main page is the one that I have found to have the HTML snippet that I use to attribute the images to their respective owners.</p>
<p>After placing the HTML snippets at the end of my blog post I am nice and make the images link back to their main Flickr page which is not required by the license. I find that this is the best way to connect viewers directly with the source of the image and I would appreciate others doing the same with my images if they ever got used. ; ) I also usually open the photos in Photoshop and compress them a bit more for web viewing.</p>
<div id="attachment_626" class="wp-caption aligncenter" style="width: 343px"><a href="http://www.flickr.com/photos/31878512@N06/3490869804/in/photostream/"><img class="size-full wp-image-626" title="How I feel after a good Flickr - CC  fix" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/happy_man.jpg" alt="How I feel after a good Flickr - CC  fix" width="333" height="500" /></a><p class="wp-caption-text">How I feel after a good Flickr - CC  fix</p></div>
<p>Many artists are happy to let you use their work when you follow the guidelines set in the license. Sometimes if I feel I have done a nice job on a blog post I will leave them a comment on their Flickr photo page letting them know I have used their photo and <a href="http://geek.michaelgrace.org/2009/07/content-is-king/">some have even commented on my blog posts thanking me for using their work</a>! ; )</p>
<p>Photos:<br />
<a rel="cc:attributionURL" href="http://www.flickr.com/photos/zanastardust/">http://www.flickr.com/photos/zanastardust/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a><br />
<a rel="cc:attributionURL" href="http://www.flickr.com/photos/31878512@N06/">http://www.flickr.com/photos/31878512@N06/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/using-creative-commons-images/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cruella De Vil and I&#8230;</title>
		<link>http://geek.michaelgrace.org/2009/07/cruela-de-vil-and-i/</link>
		<comments>http://geek.michaelgrace.org/2009/07/cruela-de-vil-and-i/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 05:27:43 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Giggles]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=605</guid>
		<description><![CDATA[After a trip to the movie rental store it would appear that Cruella De Vil and I have more in common than I originally thought. I guess it&#8217;s time to dig into my genealogy again. My wife always thinks I am really weird for wanting to take pictures like these but I think it is [...]]]></description>
			<content:encoded><![CDATA[<p>After a trip to the movie rental store it would appear that Cruella De Vil and I have more in common than I originally thought. I guess it&#8217;s time to dig into my genealogy again. My wife always thinks I am really weird for wanting to take pictures like these but I think it is worth it when you get a gem like this one. ; ) Hmmmm&#8230; Maybe this is more insight into who I am than you really wanted to know.<br />
<div id="attachment_608" class="wp-caption aligncenter" style="width: 510px"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/cruela_and_i.jpg" alt="Cruella De Vil and I" title="Cruella De Vil and I" width="500" height="667" class="size-full wp-image-608" /><p class="wp-caption-text">Cruella De Vil and I</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/cruela-de-vil-and-i/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dumbest Hair Product</title>
		<link>http://geek.michaelgrace.org/2009/07/dumbest-hair-product/</link>
		<comments>http://geek.michaelgrace.org/2009/07/dumbest-hair-product/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 05:09:55 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Giggles]]></category>
		<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=597</guid>
		<description><![CDATA[I may offend a few people with this but it really needs to be said that this is the dumbest hair product I have ever seen. There, I said it. ; )
Why in the world would someone do this to themselves? I wonder if the &#8220;included styling guide&#8221; describes how silly you will look.
Photos:
http://www.flickr.com/photos/carbonnyc/ / [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/carbonnyc/2206470413/"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/shocked.jpg" alt="shocked" title="shocked" width="300" height="152" class="alignright size-full wp-image-598" /></a>I may offend a few people with this but it really needs to be said that this is the dumbest hair product I have ever seen. There, I said it. ; )<span id="more-597"></span></p>
<p><div id="attachment_600" class="wp-caption aligncenter" style="width: 510px"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/bumpits.jpg" alt="Bumpits Hair Product" title="Bumpits Hair Product" width="500" height="681" class="size-full wp-image-600" /><p class="wp-caption-text">Bumpits Hair Product</p></div><br />
Why in the world would someone do this to themselves? I wonder if the &#8220;included styling guide&#8221; describes how silly you will look.</p>
<p>Photos:<br />
<a rel="cc:attributionURL" href="http://www.flickr.com/photos/carbonnyc/">http://www.flickr.com/photos/carbonnyc/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/dumbest-hair-product/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery CSS Gotcha with Relative File Paths</title>
		<link>http://geek.michaelgrace.org/2009/07/jquery-css-gotcha-relative-file-path/</link>
		<comments>http://geek.michaelgrace.org/2009/07/jquery-css-gotcha-relative-file-path/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 04:16:09 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Web Design -Dev]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=581</guid>
		<description><![CDATA[jQuery gave a colleague and I a run for our money today at work. We were using jQuery to change the background image after a mouse event. Problem was, after the event, the image would not show up even though the path to the image was *correct. Our site is set up so the html [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/saranv/3521287388/"><img class="alignleft size-full wp-image-582" title="gotcha" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/3521287388_2dc77cf3e5_m.jpg" alt="gotcha" width="240" height="133" /></a>jQuery gave a colleague and I a run for our money today at work. We were using jQuery to change the background image after a mouse event. Problem was, after the event, the image would not show up even though the path to the image was *correct. <span id="more-581"></span>Our site is set up so the html files are at the root with css and images in their own folders off of the root folder. The external CSS for the background image:<br />
<code>background-image: url('../images/background.jpg');</code><br />
Without thinking much about it, I set jQuery to change the CSS path to the other image just like in the external CSS file<code>$('#background_spot').css('backgroundImage',"url('../images/event_background.jpg')");</code>Every time the event would fire the path would be changed but there would be no image. Argggg! (cue the head scratching here) After a few minutes of wondering what was wrong with me and talking to myself it finally dawned on me&#8230;</p>
<h3>Gotcha&#8230;</h3>
<p>jQuery changes CSS inline rather than to an external CSS document meaning that my relative path was invalid. My jQuery CSS image path needed to be <code>$('#background_spot').css('backgroundImage',"url('images/event_background.jpg')");</code><br />
After making the change for the path of the image to be from the html file we were all smiles.<a href="http://www.flickr.com/photos/dotbenjamin/2765083201/"><img class="size-full wp-image-587 aligncenter" title="all smiles" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/2765083201_e0958937bf_m.jpg" alt="all smiles" width="240" height="159" /></a><br />
Photos:<br />
<a rel="cc:attributionURL" href="http://www.flickr.com/photos/saranv/">http://www.flickr.com/photos/saranv/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a><br />
<a rel="cc:attributionURL" href="http://www.flickr.com/photos/dotbenjamin/">http://www.flickr.com/photos/dotbenjamin/</a> / <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/jquery-css-gotcha-relative-file-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculate # of M&amp;Ms in a Jar</title>
		<link>http://geek.michaelgrace.org/2009/07/calculate-mm-in-jar/</link>
		<comments>http://geek.michaelgrace.org/2009/07/calculate-mm-in-jar/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 06:40:54 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[How to]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=556</guid>
		<description><![CDATA[I like math a bit, but when I saw this video on how to mathematically calculate the number of M&#38;Ms in a jar I wanted to run out and buy a bunch of M&#38;Ms to try it out. All my math geek friends would love this. I will now win every jar guessing contest I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-572" title="282284896_4e45bd3c11_m" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/282284896_4e45bd3c11_m1.jpg" alt="282284896_4e45bd3c11_m" width="240" height="178" />I like math a bit, but when I saw this video on how to mathematically calculate the number of M&amp;Ms in a jar I wanted to run out and buy a bunch of M&amp;Ms to try it out. All my math geek friends would love this. I will now win every jar guessing contest I come in contact with. Muahahahahahaha&#8230;.. <span id="more-556"></span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/YtjD3mRrVT4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_detailpage&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/YtjD3mRrVT4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_detailpage&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a rel="cc:attributionURL" href="http://www.flickr.com/photos/4444/">http://www.flickr.com/photos/4444/</a> / <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/calculate-mm-in-jar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Spotlight Missing Files</title>
		<link>http://geek.michaelgrace.org/2009/07/spotlight-missing-files/</link>
		<comments>http://geek.michaelgrace.org/2009/07/spotlight-missing-files/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 07:53:44 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=527</guid>
		<description><![CDATA[
How to fix your spotlight woes.
I use spotlight all the time to launch applications and open files. I recently ran into some trouble with files and applications disappearing from the spotlight index. I was able to fix the problem by deleting my spotlight index and rebuilding it. 
First you should just make sure your spotlight [...]]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: center;">
<div id="attachment_543" class="wp-caption alignright" style="width: 138px"><img class="size-full wp-image-543 " title="spotlight_icon" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/spotlight_icon.jpg" alt="Spotlight Icon" width="128" height="128" /><p class="wp-caption-text">Spotlight Icon</p></div>
<p>How to fix your spotlight woes.</h3>
<p>I use spotlight all the time to launch applications and open files. I recently ran into some trouble with files and applications disappearing from the spotlight index. I was able to fix the problem by deleting my spotlight index and rebuilding it. <span id="more-527"></span></p>
<div id="attachment_528" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-528" title="preferences_spotlight" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/preferences_spotlight.jpg" alt="System Preferences - Spotlight" width="500" height="116" /><p class="wp-caption-text">System Preferences - Spotlight</p></div>
<p>First you should just make sure your spotlight settings haven&#8217;t caused the problem before you take the time to delete and rebuild your spotlight index. In system preferences go to spotlight. There are two tabs: Search Results and Privacy. Make sure the type of file you are looking for is selected and under privacy make sure the file isn&#8217;t located in any of the locations specified. Any location specified in the privacy tab will not be indexed.</p>
<div id="attachment_530" class="wp-caption aligncenter" style="width: 310px"><img class="size-full wp-image-530" title="spotlight_search_results" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/spotlight_search_results.jpg" alt="Spotlight Search Results Preferences" width="300" height="225" /><p class="wp-caption-text">Spotlight Search Results Preferences</p></div>
<div id="attachment_529" class="wp-caption aligncenter" style="width: 310px"><img class="size-full wp-image-529" title="spotlight_privacy" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/spotlight_privacy.jpg" alt="Spotlight Privacy Preferences" width="300" height="227" /><p class="wp-caption-text">Spotlight Privacy Preferences</p></div>
<h3>Delete and Rebuild Spotlight Index</h3>
<p>To delete and rebuild your spotlight index open up your terminal and enter in these commands. (You will need your root password to execute these commands)</p>
<pre><code><span>sudo rm </span><span>-</span><span>r </span><span>/.</span><span>Spotlight</span><span>-</span><span>V</span><span>100</span><span>
sudo launchctl load </span><span>-</span><span>w </span><span>/</span><span>System</span><span>/</span><span>Library</span><span>/</span><span>LaunchDaemons</span><span>/</span><span>com</span><span>.</span><span>apple</span><span>.</span><span>metadata</span><span>.</span><span>mds</span><span>.</span><span>plist
sudo mdutil </span><span>-</span><span>E </span><span>/</span></code></pre>
<p>NOTE: For most, copying and pasting these commands will  work just fine. For some of you it might come back on the first command that the file was not found. If this is the case for you it&#8217;s ok, we just need to find the right file. Paste the first line all the way up to the &#8220;V&#8221; like this:</p>
<pre><code><span>sudo rm </span><span>-</span><span>r </span><span>/.</span><span>Spotlight</span><span>-</span><span>V</span></code></pre>
<p>then just hit the tab key and it should complete the file name. You can now hit enter and paste the rest of the commands with no problem.</p>
<h3>Explained</h3>
<ol>
<li>Deletes the spotlight index file</li>
<li>Sends secret message to the elves in your computer that make things happen</li>
<li>Causes Spotlight to rebuild indexes</li>
</ol>
<p>After you have rebuilt the index, you and spotlight can live happily ever after. :)</p>
<p><img class="aligncenter size-full wp-image-537" title="holding_hands_sunset" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/holding_hands_sunset.jpg" alt="holding_hands_sunset" width="500" height="125" /><br />
Resources:<br />
Sunset Image: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/mikebaird/">http://www.flickr.com/photos/mikebaird/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a><br />
Terminal commands: <a href="http://superuser.com/questions/8414/stuff-dissapearing-from-spotlight-search">Question I asked on superuser.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/spotlight-missing-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My Personal Learning Environment</title>
		<link>http://geek.michaelgrace.org/2009/07/my-personal-learning-environment/</link>
		<comments>http://geek.michaelgrace.org/2009/07/my-personal-learning-environment/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 02:20:47 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=516</guid>
		<description><![CDATA[After reading an interesting post about personal learning environments I decided to try an experiment for myself like cmduke did. I had a hard time placing everthing that I wanted to on the the diagram so it is a bit messy and the proximity of each item isn&#8217;t exactly where I would like them. The [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_522" class="wp-caption aligncenter" style="width: 506px"><img class="size-full wp-image-522" title="blackboard_writting" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/blackboard_writting.jpg" alt="My Personal Learning Environment" width="496" height="217" /><p class="wp-caption-text">My Personal Learning Environment</p></div>
<p>After reading an interesting post about personal learning environments I decided to try an experiment for myself like <a href="http://edtechatouille.blogspot.com/2009/07/my-personal-learning-environment.html">cmduke</a> did. I had a hard time placing everthing that I wanted to on the the diagram so it is a bit messy and the proximity of each item isn&#8217;t exactly where I would like them. The diagram below represents fairly well most of the tools that I use in what I consider to be my personal learning environment.<span id="more-516"></span> Feel free to <a href="http://geek.michaelgrace.org/wp-content/uploads/2009/07/MikeGraces_PLE.psd">download my photoshop file</a> and modify it to suit  your personal learning environment.</p>
<div id="attachment_518" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-518" title="MikeGrace's Personal Learning Environment" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/MikeGraces_PLE.jpg" alt="MikeGrace's Personal Learning Environment" width="550" height="550" /><p class="wp-caption-text">MikeGrace&#39;s Personal Learning Environment</p></div>
<p>As I put this together, it reinforced to me how much I learn when I blog things. I guess my blogging process includes most of the things needed to really understand and retain information. Here is a list of everything I have included in the diagram.</p>
<ul>
<li>Jobs</li>
<li>Google</li>
<li>Finder</li>
<li>Spotlight</li>
<li>Time Machine</li>
<li>Aperture</li>
<li>Eleven2</li>
<li>Google Docs</li>
<li>EtherPad</li>
<li>Pligg</li>
<li>Terminal</li>
<li>Linux</li>
<li>StatCounter</li>
<li>textmate</li>
<li>PhotoShop</li>
<li>CSS Edit</li>
<li>Pandora</li>
<li>Twitterfon</li>
<li>jQuery</li>
<li>Nikon D200</li>
<li>Creative Commons</li>
<li>1986 Honda Goldwing 1200cc</li>
<li>Defcon</li>
<li>Loopt</li>
<li>Skype</li>
<li>Adium</li>
<li>Google Mail</li>
<li>Google Reader</li>
<li>Yammer</li>
<li>Mac OS X</li>
<li>Twitter</li>
<li>WordPress</li>
<li>iPhone</li>
<li>Brigham Young University &#8211; Idaho</li>
<li>StackOverflow</li>
<li>Firefox</li>
<li>MacBook Pro</li>
</ul>
<div xmlns:cc="http://creativecommons.org/ns#" about="http://www.flickr.com/photos/shonk/418180402/"><a rel="cc:attributionURL" href="http://www.flickr.com/photos/shonk/">http://www.flickr.com/photos/shonk/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/my-personal-learning-environment/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
