<?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; Education</title>
	<atom:link href="http://geek.michaelgrace.org/category/education/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>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>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>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>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>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>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>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>
		<item>
		<title>Super User Beta Invite</title>
		<link>http://geek.michaelgrace.org/2009/07/super-user-beta-invite/</link>
		<comments>http://geek.michaelgrace.org/2009/07/super-user-beta-invite/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 18:42:32 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Web Design -Dev]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=472</guid>
		<description><![CDATA[Some of my friends have shown some interest in joining superuser.com, a sister site to stack overflow. The beta is only semi-private and anyone who really wants to can start contributing to the bank of knowledge being contributed there. If you really want to start that journey, you will have to follow the ewok. (aka [...]]]></description>
			<content:encoded><![CDATA[<p>Some of my friends have shown some interest in joining superuser.com, a sister site to stack overflow. The beta is only semi-private and anyone who really wants to can start contributing to the bank of knowledge being contributed there. If you really want to start that journey, you will have to follow the ewok. (aka click on him ; )</p>
<h3 style="text-align: center;">Enjoy</h3>
<h3 style="text-align: center;"><a href="http://blog.stackoverflow.com/2009/07/super-user-semi-private-beta-begins/"><img class="size-full wp-image-473" title="Super User Invite" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/ewok-closeup.jpg" alt="ewok-closeup" width="409" height="376" /></a></h3>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/super-user-beta-invite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Motivational Bird (Killdeer)</title>
		<link>http://geek.michaelgrace.org/2009/07/motivational-bird-killdeer/</link>
		<comments>http://geek.michaelgrace.org/2009/07/motivational-bird-killdeer/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 04:14:53 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Giggles]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=380</guid>
		<description><![CDATA[I added a little quote to this picture I took to help remind me to keep working hard. The more I look at it, the more it makes me giggle. The birds pose and expression reminds me of a mother telling their kid to keep working on their homework. My wife thinks it is just [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2009/07/MIK7579.jpg"><img class="size-full wp-image-382 alignleft" title="_MIK7579" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/MIK7579.jpg" alt="_MIK7579" width="448" height="300" /></a>I added a little quote to this picture I took to help remind me to keep working hard. The more I look at it, the more it makes me giggle. The birds pose and expression reminds me of a mother telling their kid to keep working on their homework. My wife thinks it is just weird, and you may to, but it has made me smile enough that I just had to share it. ; )</p>
<p>The quote is one I found by Comaneci, Nadia. The hard work quote is, &#8220;Hard work has made it easy. That is my secret. That is why I win.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/motivational-bird-killdeer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Open Source Education Publication Platforms</title>
		<link>http://geek.michaelgrace.org/2009/07/list-of-open-source-education-publication-platforms/</link>
		<comments>http://geek.michaelgrace.org/2009/07/list-of-open-source-education-publication-platforms/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 05:33:38 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=328</guid>
		<description><![CDATA[In order to take my idea of creating an open source course I need to figure out how to make it available to the public. I could very easily install another WordPress blog or use WordPress MU because WordPress ROCKS but is that the best option? Is there a platform made specifically with open education [...]]]></description>
			<content:encoded><![CDATA[<p>In order to take my idea of creating an open source course I need to figure out how to make it available to the public. I could very easily install another WordPress blog or use WordPress MU because WordPress ROCKS but is that the best option? Is there a platform made specifically with open education in mind? Maybe. Will one platform work well with all course types? Probably not.</p>
<p>So in order to compile a list of possible platforms and compare their pros and cons I have created a knol that anyone who desires can contribute to. I would greatly appreciate any contributions and feedback. <a href="http://knol.google.com/k/michael-grace/open-source-education-platforms/av2lz9jb3mvx/1#">Visit the knol and make contributions</a></p>
<p>Here is what we have so far. ; )</p>
<p><iframe src="http://knol.google.com/k/michael-grace/open-source-education-platforms/av2lz9jb3mvx/1?embed=content" width="600" height="480"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/list-of-open-source-education-publication-platforms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source Education Endeavor</title>
		<link>http://geek.michaelgrace.org/2009/07/open-source-education-endeaver/</link>
		<comments>http://geek.michaelgrace.org/2009/07/open-source-education-endeaver/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 16:13:27 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=319</guid>
		<description><![CDATA[So I have been reading, learning, and following a few people on Twitter about Open Education. I like the idea and I would like to contribute to the movement to make education available to anyone and everyone. I am currently taking an operating systems class where we are learning how to administer a Linux system. [...]]]></description>
			<content:encoded><![CDATA[<p>So I have been reading, learning, and following a few people on Twitter about Open Education. I like the idea and I would like to contribute to the movement to make education available to anyone and everyone. I am currently taking an operating systems class where we are learning how to administer a Linux system. Many of my colleagues and I are frustrated with how the class is being handled and feel that the fun of learning is being sucked out of it by doing textbook examples and questions. One of my biggest frustrations with current teaching methods is that many times there is little more motivation to do something other than for a grade. </p>
<p>My idea has been to create real world situations/ projects that involve the same concepts as the book but make them exciting to the students. When approaching the professor about this idea I was laughed at and told &#8220;Sure, you create the projects and I will take a look.&#8221; Somehow I get the feeling that not much is going to happen even if I did do that. As a side note, I have also heard rumors that the University is changing the class or getting rid of it in some way. This got me to thinking why not carry out my idea but make it open to anyone? I could get my classmates and friends who are in the class currently and some who just love Linux and we could create a smashing class online free to anyone who wants to learn. Every classmate that I have talked to about this has been enthusiastic and said they would love to contribute.</p>
<p>Creating a open source class would really help my classmates and I learn the material well for many reasons. First, the learning is no longer just for a grade but is a public service for others. When learning is turned into service the whole paradigm of motivation changes in students and amazing things start to happen. Second, the final published product is public and if done well enough, is something students can show future potential employers as an example work. Third, the collaboration that can occur to create, review, and modify the content would be awesome and would create incredible learning and growing experiences that would be invaluable to being more effective in the workplace in the future. There are of course more but that is all I am going to list for now.</p>
<p>So the big question now is what is going to be the most effective way to organize and put the class content online? A blog with different posts and pages, using a service like Google&#8217;s knol, forum (*puke!*) or is there some other way that would work great that I haven&#8217;t found yet? I would love your help and input on this. Please leave a comment with suggestions/ ideas or get a hold of me on twitter @MikeGrace.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/open-source-education-endeaver/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tomorrow is built on today&#8217;s education</title>
		<link>http://geek.michaelgrace.org/2009/06/tomorrow-is-built-on-todays-education/</link>
		<comments>http://geek.michaelgrace.org/2009/06/tomorrow-is-built-on-todays-education/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 01:45:33 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=312</guid>
		<description><![CDATA[
I truly believe that tomorrow is built on todays education. If that is the case, open education is more important then ever before with the current state of the world. Sound education is one of the greatest gifts that a person can give or receive. The possibilities for giving that gift are ever increasing as [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-313" title="3313592076_84c3d82947_m" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/3313592076_84c3d82947_m.jpg" alt="3313592076_84c3d82947_m" width="180" height="240" /></p>
<p>I truly believe that tomorrow is built on todays education. If that is the case, open education is more important then ever before with the current state of the world. Sound education is one of the greatest gifts that a person can give or receive. The possibilities for giving that gift are ever increasing as technology becomes more accessible to the world. The thing that really excites me about open education is the idea that anyone can contribute, make a difference, and learn, if they but have the desire. </p>
<p>Education is intimately intertwined into every aspect of everyone&#8217;s life. The more I learn about open education the more I &#8220;geek out&#8221; about it. The concept of learning through service to others would have revolutionized my  elementary education experience as it is now thrusting my learning forward and my thirst to learn and share deeper.</p>
<p>I would be honored and ecstatic to be able to attend the Open Education Conference for 2009 in Vancouver. I will bring excitement and enthusiasm for open education, plenty of questions, and an unquenchable desire to learn and contribute. I have been working with a professor at Brigham Young University Idaho on some testing ideas to make tests a better feedback tool for the student and the teacher. Also, throughout my higher education experience I have been frustrated with the use of technology in learning. This frustration comes both from forced web technology use that distracts from real learning and the disregard of web tools that could revolutionize outcomes of students learning and experience. I think the hardest thing is getting others to realize the potential of open education. Once that is understood and the fire is lit, the rest will happen naturally. I look forward to learning more about what I can do to make the world and my university a better place and how I can spread the fire for open education.</p>
<div xmlns:cc="http://creativecommons.org/ns#" about="http://www.flickr.com/photos/matthigh/3313592076/"><a rel="cc:attributionURL" href="http://www.flickr.com/photos/matthigh/">http://www.flickr.com/photos/matthigh/</a> / <a rel="license" href="http://creativecommons.org/licenses/by-nc/2.0/">CC BY-NC 2.0</a></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/06/tomorrow-is-built-on-todays-education/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
