<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>EduTechnorama</title>
	<atom:link href="http://www.edutechie.ws/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.edutechie.ws</link>
	<description>Educational Experiences and Experiments of a Computer Scientist/Educational Psychologist/Technologist</description>
	<pubDate>Fri, 14 Nov 2008 22:30:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9; </copyright>
		<managingEditor>jeffrey.midiman@gmail.com ()</managingEditor>
		<webMaster>jeffrey.midiman@gmail.com()</webMaster>
		<category></category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Educational Experiences and Experiments of a Computer Scientist/Educational Psychologist/Technologist</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>jeffrey.midiman@gmail.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.edutechie.ws/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://www.edutechie.ws/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>EduTechnorama</title>
			<link>http://www.edutechie.ws</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Ajax and user experience</title>
		<link>http://www.edutechie.ws/2008/11/13/ajax-and-user-experience/</link>
		<comments>http://www.edutechie.ws/2008/11/13/ajax-and-user-experience/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 17:18:09 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Accessibility]]></category>

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

		<guid isPermaLink="false">http://www.edutechie.ws/?p=92</guid>
		<description><![CDATA[&#160;
I&#8217;ve alluded in a previous post about the fact that the typical request-view-reload experience for web pages is capable of becoming a thing of the past with the advent of properly programed and usable web experiences via what has been coined as Rich Internet Applications. What this means is that your typical desktop user experience [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>I&#8217;ve alluded in a <a href="http://www.edutechie.ws/2007/12/27/hci-design-implications-for-education/">previous post</a> about the fact that the typical request-view-reload experience for web pages is capable of becoming a thing of the past with the advent of properly programed and usable web experiences via what has been coined as Rich Internet Applications. What this means is that your typical desktop user experience for a program reports an immediate response in updating the UI (user interface) so that the interactions signal to the user that they are getting something done in the browser. Read on for more of what I mean&#8230;</p>
<p><span id="more-92"></span></p>
<p>In the past, when you tell your browser to request a new web document by either:</p>
<ol>
<li>Typing in the web address in the browser address bar</li>
<li>Clicking on a hyperlink (which in effect does the same thing as item 1&#8211;it&#8217;s just your browser doing the typing for you)</li>
</ol>
<p>This invokes what is known as an HTTP request which sends a bunch of text across the network to the web server you are talking to. Contained within this request is the items or document that contains other items such as pictures and media, etc. Typically this caused your web browser&#8217;s page to go white or blank for a few moments while the web server is working on your task and the network is doing its darndest to push all that information back to you. If either of those two things are slow for whatever reason the user may think they&#8217;ve done something wrong.</p>
<p>Typical user feedback that the browser is working (and I see people ignoring these ALL the time) are what are known as spinners. These are usually the logos in the browser that show animations.&nbsp;</p>
<p>For example here&#8217;s the one from the now historical precursor to Mozilla Firefox: Netscape Navigator 4.8:</p>
<p style="text-align: center;"><img width="36" height="36" src="http://www.edutechie.ws/wp-content/uploads/netscape_logo_animated(1).gif" alt="Netscape Spinner Logo" /></p>
<p>&nbsp;</p>
<p>If users don&#8217;t see their requested web page come right up, often times they think they did something wrong when in fact the browser is just chugging away waiting for the network and/or web server to respond to their request. (In some cases their own computer may be just multitasking). So they will hit the reload button or click the link again, or my favorite: double-click the link. What I&#8217;m saying here is that it&#8217;s just not intuitive to the user what they are supposed to do if they don&#8217;t see something right away, when in fact they are really being asked to do is be patient. Imagine that.</p>
<p>With Ajax (a coined term for Asynchronous JavaScript and XML) is that the browser is making little tine HTTP requests for updating little parts of the page without browser supported built-in feedback in the way of spinning logos. Sometimes these are present but not always. A lot of the time it&#8217;s not even worth it because we have faster networks and faster computers, and the data being requested is teeny-tiny compared to a whole entire page of text and images. An example of this is <a href="http://www.google.com/support/bin/answer.py?answer=106230&amp;hl=en">google suggest. </a></p>
<p>All of this stuff updates the typical web user&#8217;s experience to a point somewhere in between a desktop application where all the computing power and data to complete the task is local to the machine and not on the network or &quot;in the cloud&quot; as it is now becoming popular to say.</p>
<p>With that all said, here is a presentation I saw earlier this week on a talk given by some Ajax user experience experts that I think really hit on this. If you have a spare hour I suggest taking a look at it. A lot of programming terminology is in there but I think it&#8217;s important if you are a technologist and expect &quot;cloud computing&quot; or &quot;RIA&quot; or &quot;AJAX&quot; to become part of your instruction</p>
<p>&nbsp;</p>
<p style="text-align: center;"><embed width="486" height="412" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" swliveconnect="true" type="application/x-shockwave-flash" seamlesstabbing="false" name="flashObj" base="http://admin.brightcove.com" flashvars="videoId=1825879418&amp;playerId=1596744118&amp;viewerSecureGatewayURL=https://console.brightcove.com/services/amfgateway&amp;servicesURL=http://services.brightcove.com/services&amp;cdnURL=http://admin.brightcove.com&amp;domain=embed&amp;autoStart=false&amp;" bgcolor="#FFFFFF" src="http://services.brightcove.com/services/viewer/federated_f8/1596744118"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/11/13/ajax-and-user-experience/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flickr Commons</title>
		<link>http://www.edutechie.ws/2008/10/01/flickr-commons/</link>
		<comments>http://www.edutechie.ws/2008/10/01/flickr-commons/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 21:47:23 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Media]]></category>

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

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

		<guid isPermaLink="false">http://www.edutechie.ws/2008/10/01/flickr-commons/</guid>
		<description><![CDATA[  
   Women are trained to do precise and vital engine installation detail in Douglas Aircraft Company plants, Long Beach, Calif. (LOC)   
Originally uploaded by The Library of Congress  
This is not news since I just stumbled on this, and it turns out that this has been going on [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;"><a title="photo sharing" href="http://www.flickr.com/photos/library_of_congress/2179925802/"><img style="border: 2px solid rgb(0, 0, 0);" alt="" src="http://farm3.static.flickr.com/2331/2179925802_d41fc4a497_m.jpg" /></a>  <br />
<span style="font-size: 0.9em; margin-top: 0px;">   <a href="http://www.flickr.com/photos/library_of_congress/2179925802/">Women are trained to do precise and vital engine installation detail in Douglas Aircraft Company plants, Long Beach, Calif. (LOC)</a>   <br />
Originally uploaded by <a href="http://www.flickr.com/people/library_of_congress/">The Library of Congress</a>  </span></div>
<p>This is not news since I just stumbled on this, and it turns out that <a href="http://blog.flickr.net/en/2008/01/16/many-hands-make-light-work/">this has been going on this whole year:</a> the <a href="http://flickr.com/commons">Flickr Commons</a>. It&#8217;s a way to obtain references or use of images that have no copyright restrictions or at least been put into the public domain. This is an example of one from the WWII era (a period I&#8217;m really starting to enjoy learning about).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/10/01/flickr-commons/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Projects</title>
		<link>http://www.edutechie.ws/2008/09/17/new-projects/</link>
		<comments>http://www.edutechie.ws/2008/09/17/new-projects/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 21:34:05 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Adobe]]></category>

		<category><![CDATA[Ed Tech]]></category>

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

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

		<guid isPermaLink="false">http://www.edutechie.ws/?p=80</guid>
		<description><![CDATA[I&#8217;m always one of the first to admit that instructional technology production and delivery theories evolve yet never die, and the technology used to promote these theories is ALWAYS evolving. Sometimes so fast that I can&#8217;t keep up. Since I prefer to interact with people first and focus on technology secondly, a lot of my [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m always one of the first to admit that instructional technology production and delivery theories evolve yet never die, and the technology used to promote these theories is ALWAYS evolving. Sometimes so fast that I can&#8217;t keep up. Since I prefer to interact with people first and focus on technology secondly, a lot of my work is geared towards meeting the needs of people who need to learn technology.</p>
<p>With that said, I&#8217;m gearing up for a new project that will involve my commitment to the Adobe Education Champions group (E-Champions) to utilize their &#8216;gift&#8217; of a Connect Pro account so I can begin sharing with the ed tech developer community some of the techy things that apply to what they might be learning theory-wise.</p>
<p>I&#8217;m calling this my <strong>edutechie corner</strong> and someday soon I will have a series of screencasts that showcase some of the Adobe Creative Tecnology software suites.</p>
<p>Details will be forthcoming&#8230;</p>
<p>In the meantime, here&#8217;s an idea using some of the methods that Adobe itself is pushing in the next generation of designer and developer workflows using one of my more favorite tools: Fireworks:</p>
<p>&nbsp;</p>
<p><embed height="300" width="480" flashvars="v=http%3A//adobe.edgeboss.net/flash/adobe/adobetvprod/fireworks_tips_and_tricks/57_ftt_002.flv%3Frss_feedid%3D1167%26xmlvers%3D2&amp;feedid=1167" pluginspage="http://www.adobe.com/go/getflashplayer" type="application/x-shockwave-flash" allowscriptaccess="always" quality="high" loop="false" play="true" name="AdobeTVPlayer" bgcolor="#000000" src="http://tv.adobe.com/Embed_480x300.swf"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/09/17/new-projects/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Collaborative Spaces</title>
		<link>http://www.edutechie.ws/2008/06/02/collaborative-spaces/</link>
		<comments>http://www.edutechie.ws/2008/06/02/collaborative-spaces/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 15:06:41 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Adobe]]></category>

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

		<guid isPermaLink="false">http://www.edutechie.ws/?p=68</guid>
		<description><![CDATA[Adobe has launched a free collaborative workspace (currently in beta at this time) that allows for you to share and link embeddable files from your documents to blog posts and other learning environments that accept HTML. For instance here is a PDF document:

]]></description>
			<content:encoded><![CDATA[<p>Adobe has launched a <a href="http://blogs.adobe.com/acom/2008/06/welcome_to_acrobatcom_work_tog_1.html" target="_blank">free collaborative workspace</a> (currently in beta at this time) that allows for you to share and link embeddable files from your documents to blog posts and other learning environments that accept HTML. For instance here is a PDF document:</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="365" height="500"><param name="movie" value="https://share.acrobat.com/adc/flex/mpt.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent"/><param name="allowFullScreen" value="true"/><param name="flashvars"  value="ext=pdf&#038;docId=04f14348-204c-4e12-b622-c3c5f90d176e"/><embed src="https://share.acrobat.com/adc/flex/mpt.swf"  quality="high"  pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"  type="application/x-shockwave-flash" width="365" height="500" wmode="transparent" allowFullScreen="true" flashvars="ext=pdf&#038;docId=04f14348-204c-4e12-b622-c3c5f90d176e"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/06/02/collaborative-spaces/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Screens Everywhere</title>
		<link>http://www.edutechie.ws/2008/05/02/screens-everywhere/</link>
		<comments>http://www.edutechie.ws/2008/05/02/screens-everywhere/#comments</comments>
		<pubDate>Fri, 02 May 2008 15:42:22 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[AIR]]></category>

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.edutechie.ws/?p=67</guid>
		<description><![CDATA[I&#8217;d like you to meet someone:

This is Sarah Outwater, a young woman who has been blind since she was 3 years old. She&#8217;s a cancer survivor (metastatic retinoblastoma) and has been in her condition ever since she had surgery on her eyes to protect her from the deadly disease.
I was invited to participate in a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like you to meet someone:</p>
<p><a href="http://www.flickr.com/photos/midiman/72820502/" title="Sarah Outwater And Her Dog by midiman, on Flickr"><img height="240" border="0" align="left" width="180" src="http://farm1.static.flickr.com/20/72820502_fef0a62cc0_m.jpg" alt="Sarah Outwater And Her Dog" /></a></p>
<p>This is Sarah Outwater, a young woman who has been blind since she was 3 years old. She&#8217;s a cancer survivor (metastatic retinoblastoma) and has been in her condition ever since she had surgery on her eyes to protect her from the deadly disease.</p>
<p>I was invited to participate in a charity project for a little girl she had heard of on the news who was in a similar condition as she was at her age, except technology has advanced and this little girl (last I heard) was free of her cancer and still able to see.</p>
<p>Sarah is an extremely intelligent girl and can play several different musical instruments and uses technology to support her education and professional career goals. In her charity project, she was compiling a music album and asking for donations to help the family of the girl who was receiving cancer treatments. As part of my donation, I offered to build a web site and create/donate some multimedia presentations for benefit concerts and post them on the website (This was before I heard of YouTube). Sarah brought her laptop to my workplace and we cut some video interviews together and I showed her how to edit content for the website. Later we were joking together in a group meeting about how people and technology interact. I made the quip that people who talk to their technology to get it to do obscure things are borderline bonkers, and she retorted &quot;well that&#8217;s nothing. My technology talks to me!&quot;</p>
<p>Of course it was true. In our interactions for her laptop was equipped with screen reading technology that allowed her to complete her work for school and work on her music projects. This is a prime example of adaptive use of technology for a population that predominantly gets their work done despite the fact that they can&#8217;t see what they are doing.</p>
<p>However, that&#8217;s not the only way people who can&#8217;t make use of their eyes to do their work continue to survive. They must be able to use their other senses. Audio alone in my humble opinion is not the savior of interaction with technology. People must be able to use their other senses too. Which of the remaining&nbsp; 4 senses makes the most sense for HCI for blind people? Touch or tactile surfaces is what&#8217;s coming to mind.</p>
<p><a href="http://www.adobe.com/openscreenproject/" target="_blank">Here is something</a> that Macrodobia (<a href="http://en.wikipedia.org/wiki/Adobe_Systems" target="_blank">Adobe </a>the company and <a href="http://en.wikipedia.org/wiki/Macromedia" target="_blank">Macromedia</a>&#8217;s Technology) have been pushing for a while&#8230;the idea that consistent technology for authoring multimedia content be available on a multitude of devices. What this means is that soon someday we will be seeing flash on tons of personal handheld devices.</p>
<p>I also suspect we will see flash interfaces on other devices too such as kitchen appliances and home entertainment center components. Even more sobering would be to see it in public facilities and transportation devices such as elevators.</p>
<p>Adobe is really pushing their flash platform which is really good for people like me who enjoy learning about their platform. What I would really like to see is an concerted effort to research what accessibility options exist for persons who can&#8217;t use their eyes to interact with interfaces that will potentially be flat and non-tactile.</p>
<p>Even Apple&#8217;s iPhone with all its glitz and glory has its issues. How does a person who can&#8217;t see be excited about an iPhone for their communication needs? Sarah had no problem using her cell phone to communicate, and could very easily find the buttons to push because she could <strong>feel them with her fingers</strong>. Voice activation is probably on the horizon and may become mandatory for devices using these interfaces, and I will be waiting to see what advances are on their way with Adobe&#8217;s technology.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/05/02/screens-everywhere/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Steroids For Thinkers</title>
		<link>http://www.edutechie.ws/2008/04/10/steroids-for-thinkers/</link>
		<comments>http://www.edutechie.ws/2008/04/10/steroids-for-thinkers/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 23:41:36 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Brains]]></category>

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

		<guid isPermaLink="false">http://www.edutechie.ws/?p=66</guid>
		<description><![CDATA[I came across this article and wondered about the implications. With all the negative press about athletes using performance-enhancing drugs for their line of work/play, how many of us see our brains like we do our muscles? I have personal convictions that our brains can be exercised just like the rest of our bodies, and [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this <a href="http://www.webmd.com/brain/news/20080409/poll-scientists-use-brain-boosting-drugs" target="_blank">article </a>and wondered about the implications. With all the <a href="http://www.baseballssteroidera.com/bse-list-steroid-hgh-users-baseball.html" target="_blank">negative</a> <a href="http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2007/12/14/MNROTTNLH.DTL" target="_blank">press </a>about athletes using performance-enhancing drugs for their line of work/play, how many of us see our brains like we do our muscles? I have personal convictions that our brains can be exercised just like the rest of our bodies, and if people truly saw our physical bodies as something to be cherished and used appropriately, the competitive edge would be based on the greater good of people and less selfish.</p>
<p><span id="more-66"></span></p>
<p>With that said, how do we best exercise our brain muscle(s)? I&#8217;ve been using the Nintendo DS for the last 2 years or so, and I only play puzzle games for that fact. It&#8217;s nice to be able to run a few levels of a game before retiring for the night, solve a sudoku puzzle in <a href="http://www.brainage.com/launch/index.jsp" target="_blank">Brain Age</a>. Am I smarter because of it? Maybe. I get plenty of mental exercise at work, but for those of us who may not have mentally challenging days (or have the wrong types of mental challenges) it may be a great way to break away and justify playing a game or two.</p>
<p>And for those who want to know, my current brain age is 27.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/04/10/steroids-for-thinkers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Our Most Important Roles</title>
		<link>http://www.edutechie.ws/2008/03/28/our-most-important-roles/</link>
		<comments>http://www.edutechie.ws/2008/03/28/our-most-important-roles/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 16:56:56 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Education]]></category>

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

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

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

		<guid isPermaLink="false">http://www.edutechie.ws/2008/03/28/our-most-important-roles/</guid>
		<description><![CDATA[I&#8217;ve been reading Bob Cringely&#8217;s column ever since I discovered he was the person behind one of my favorite PBS documentaries, &#34;Triumph of the Nerds&#34; which is a history of personal computing. Last week he posted an article about how the later generations of our students who are beginning to perceive that there was no [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been reading Bob Cringely&#8217;s column ever since I discovered he was the person behind one of my favorite PBS documentaries, <a href="http://www.pbs.org/nerds/" target="_blank">&quot;Triumph of the Nerds&quot;</a> which is a history of personal computing. Last week he <a target="_blank" href="http://www.pbs.org/cringely/pulpit/2008/pulpit_20080321_004574.html">posted an article</a> about how the later generations of our students who are beginning to perceive that there was no life prior to computers, perhaps much in the same way my generation perceives television. What will our children&#8217;s children be experiencing in their learning opportunities?&nbsp;</p>
<p><span id="more-65"></span></p>
<p>&nbsp;</p>
<p>My take on it is that for instruction we have to take into effect the philosophy that the best determining factor of what a person will learn can depend on what they already know. If a person is situated and surrounded by technology, they likely expect technology to be the medium by which they receive instruction.</p>
<p>With that said, I was having a conversation with a faculty member yesterday about the most important role that technology places in curriculum. I go back to my own learning experiences, both self-directed and instructor-led, classroom or &quot;life experience&quot; and realize that the human factor has always been a big part of it. If I was the last person on earth and all I had left were the technology left behind, I wonder how I might go about continuing to learn all that I could about various subjects?</p>
<p>My take on it is that if students have an expectation of how best they learn we should be aware of that fact. At the same time, I like going back into history before the advances of technology that we have currently were available. My assessment is that some of the greatest teachers and learners <strong>still</strong> succeeded without it. Why? It could be a number of factors, but having proper motivation of self or of instructor was likely a factor.</p>
<p>Most of my colleagues in the field would agree that by nature human beings are built to learn all that they can. Whether or not they are successful in that aspect of their life largely depends on their environment. Therefore, there is still a great need for people who can be mentors, encouraging entities, tutors, coaches, and most importantly good parents. I think it&#8217;s useless to point fingers at things or people or place blame when it comes to poor learning outcomes. Rather we should work towards correcting and improving learning opportunities. Technology is a big portion of that, but being an influence and role model for successful living is priceless in a world filled with teaching and learning opportunities.</p>
<p>May we choose our technology wisely and seek the success of our students accordingly!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/03/28/our-most-important-roles/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Engaging Learners Appropriately</title>
		<link>http://www.edutechie.ws/2008/03/03/engaging-learners-appropriately/</link>
		<comments>http://www.edutechie.ws/2008/03/03/engaging-learners-appropriately/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 23:03:09 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Flex]]></category>

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

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

		<guid isPermaLink="false">http://www.edutechie.ws/2008/03/03/engaging-learners-appropriately/</guid>
		<description><![CDATA[One of the things I&#8217;ve been really interested in is finding a way to increase interactivity in online educational experiences I&#8217;ve been developing. Many people with the same interest as far as the web is concerned call this concept engagement. It addresses issues such as &#8220;How do I make an online experience more interactive such [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things I&rsquo;ve been really interested in is finding a way to increase interactivity in online educational experiences I&rsquo;ve been developing. Many people with the same interest as far as the web is concerned call this concept engagement. It addresses issues such as &ldquo;How do I make an online experience more interactive such that it induces genuine interest and a desire to continue in that experience, while at the same time increase or serve some other ulterior goal?&rdquo; For business people, it means encouraging users return to an online store to purchase more goods. For entertainment people, it means enticing consumers to watch an online episode of production (video or animation). For educators, this means that we want to engage our students so that they will on their own desire to continue in a learning activity while accomplishing the goal of learning.</p>
<p><span id="more-64"></span></p>
<p>In all these cases, the content producer provides the experience, and the content consumer walks away with a desire to return. Specific to education, we are to engage our students in a good learning experience and we want them to desire to learn based on that experience. The overall outcome is a student who leaves our instruction feeling like they got their return on investment (time, money, effort, etc.) and we as instructors know we have helped someone to learn and to grow.</p>
<p>As far as technology is concerned, we should be looking for ways to appropriately select/design/implement technology that increases this rather than overwhelms someone with new technology that is difficult to learn and/or cumbersome to set up.</p>
<p>For the web, a big buzzword being pushed by content developers/designers is what is being called RIA&rsquo;s or Rich Internet Applications. What this means is that we can use technology to enhance a web site to the point where it becomes more usable than just a static page of text. It becomes alive and responsive, with minimal impact on the hardware/software requirements and prior user knowledge/experience. For a while now we&rsquo;ve been seeing this with Web 2.0 (a term I still don&rsquo;t like using, but will anyway for the sake of communicating with others who do understand and use it), and social networking concepts.</p>
<p>I&rsquo;ve been experimenting with Adobe&rsquo;s Flex platform which allows a software developer to create a single-frame Flash application using traditional programming methods rather than the Flash authoring tool which has an animator/designer perspective. The types of things that can be created with this are endless and Adobe is very quick to push this into the mainstream. Adobe sees it as the best thing since sliced bread was invented, and for the time being I agree with them. If enough developers get behind it, I can see it influencing desktop educational software development for quite some time.</p>
<p>One of the recent products developed on the Adobe Flex RIA mindset is a tool called <a title="Scrapblog" href="http://www.scrapblog.com/tour/tour.aspx">Scrapblog</a>. It&rsquo;s a tool that allows anyone to create a rich engaging multimedia presentation that is shareable across computing platforms for free.</p>
<p>I&rsquo;m going to try and create something cool and post it here later this week so stay tuned. Check out some things that others have done: (I haven&rsquo;t seen many educational focused presentations yet, but intend to change that soon!)</p>
<p><a href="http://www.scrapblog.com/viewer/viewer.aspx?sbid=31324">http://www.scrapblog.com/viewer/viewer.aspx?sbid=31324 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/03/03/engaging-learners-appropriately/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Look</title>
		<link>http://www.edutechie.ws/2008/02/23/new-look/</link>
		<comments>http://www.edutechie.ws/2008/02/23/new-look/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 21:30:44 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://www.edutechie.ws/2008/02/23/new-look/</guid>
		<description><![CDATA[Okay, I admit it&#8230;I&#8217;ve been very busy lately. In the near future, I intend to post some more of my findings and experiences working with Flex and Flash Video especially. I&#8217;m performing some tests to see about how to get the best look for ASL (American Sign Language) coursework for some MCC faculty who are [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, I admit it&#8230;I&#8217;ve been very busy lately. In the near future, I intend to post some more of my findings and experiences working with Flex and Flash Video especially. I&#8217;m performing some tests to see about how to get the best look for ASL (American Sign Language) coursework for some MCC faculty who are building their own curriculum using our services at the CTL.</p>
<p>In the meantime, I&#8217;ve upgraded the look and feel of the site with a free theme from <a href="http://www.freewpthemes.net/">http://www.freewpthemes.net/</a> because I don&#8217;t have any time to design a new one on my own.</p>
<p>Enjoy.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/02/23/new-look/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Streaming Media Rant</title>
		<link>http://www.edutechie.ws/2008/01/15/streaming-media-rant/</link>
		<comments>http://www.edutechie.ws/2008/01/15/streaming-media-rant/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 14:21:54 +0000</pubDate>
		<dc:creator>Jeffrey</dc:creator>
		
		<category><![CDATA[Media]]></category>

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

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

		<guid isPermaLink="false">http://www.edutechie.ws/2008/01/15/streaming-media-rant/</guid>
		<description><![CDATA[I threw this out to the NMC community last week, so I thought it would be good to post here as well&#8230;


This is an  interesting perspective as a preface to this: http://www.adobe.com/solutions/broadcast/pdfs/forrester_report.pdf
&#160;
We (at work) have made a  concerted effort to comply to the TEACH act for fair use rights in digitizing  media [...]]]></description>
			<content:encoded><![CDATA[<p>I threw this out to the <a href="http://www.nmc.org">NMC</a> community last week, so I thought it would be good to post here as well&#8230;</p>
<p><span id="more-62"></span></p>
<blockquote>
<div><span class="296443203-11012008"><font size="2" face="Arial">This is an  interesting perspective as a preface to this: <a href="http://www.adobe.com/solutions/broadcast/pdfs/forrester_report.pdf" title="blocked::http://www.adobe.com/solutions/broadcast/pdfs/forrester_report.pdf">http://www.adobe.com/solutions/broadcast/pdfs/forrester_report.pdf</a></font></span></div>
<div>&nbsp;</div>
<div><span class="296443203-11012008"><font size="2" face="Arial">We (at work) have made a  concerted effort to comply to the TEACH act for fair use rights in digitizing  media for educational purposes. Under the TEACH act, an accredited institution  must take measures to ensure that digitized dramatic content must not be able to  be replicated or archived by those who would consume it.</font></span></div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><span class="296443203-11012008"><font size="2" face="Arial">&quot;<font size="3">11.  While the transmission of distance education content may be conducted by diverse  technological means, an institution deploying &quot;digital transmissions&quot; must apply  technical measures to prevent &quot;retention of the work in accessible form by  recipients of the transmission . . . for longer than the class session.&quot; The  statute offers no clarification about the meaning of a &quot;class session,&quot; but  language throughout the statute suggests that any given transmission would  require a finite amount of time, and students would be unable to access it after  a designated time. Also, in the case of &quot;digital transmissions,&quot; the institution  must apply &quot;technological measures&quot; to prevent recipients of the content from  engaging in &quot;unauthorized further dissemination of the work in accessible form.&quot;  Both of these restrictions address concerns from copyright owners that students  might receive, store, and share the copyrighted content. Both of these  provisions of the statute call upon the institution to implement technological  controls on methods for delivery, terms of accessibility, and realistic  abilities for students to download or share copyrighted content. These  provisions specifically demand application of &quot;technological measures&quot; that  would restrict uses of the content &quot;in the ordinary course of their operations.&quot;  In other words, when the restrictive controls are used in an &quot;ordinary&quot; manner,  they will safeguard against unauthorized reproduction and dissemination. This  language apparently protects the institution, should someone &quot;hack&quot; the controls  and circumvent imperfect technology.&quot; (Source: <a href="http://www.copyright.iupui.edu/teach_summary.htm" title="blocked::http://www.copyright.iupui.edu/teach_summary.htm">http://www.copyright.iupui.edu/teach_summary.htm</a>)</font></font></span></div>
<div>&nbsp;</div>
<div><span class="296443203-11012008"><font size="2" face="Arial">The reason I ask  this is that our campus has made use of the Helix Community Streaming server and  has been delivering content using RealNetworks&#8217; proprietary streaming format.  Because at the time the decision was made it seemed to work and in our minds we  were doing our best to deliver a good learning medium via online video and  protecting ourselves in the process. Also,&nbsp;from a usability standpoint, many  instructors who deploy media on the server encourage their students to download  the latest free version of RealPlayer. I&#8217;ll refrain from the criticism of the  annoyances that deploying the software creates (I&#8217;ll trust anyone replying to  this&nbsp;message will do likewise)</font></span></div>
<div>&nbsp;</div>
<div><span class="296443203-11012008"><font size="2" face="Arial">I&#8217;ve not delved into  it too much but the Windows version has a blatant feature embedded into the  client that allows the user to save streamed media directly to their computer.  It is painfully obvious that once installed, any of our instructors and media  developers who have gone to great strides to protect content because the  technology at the time was originally invented to protect it, is now left with a  big&nbsp;problem to fix. &nbsp;While our streaming media initiative is still very young  (we aren&#8217;t delivering much copyrighted work at this time),&nbsp;I would like to  address it before it gets blown out of proportion.&nbsp;&nbsp;I have some ideas already  but I&#8217;d like to ask what everyone else is doing for  reference.</font></span></div>
<div>&nbsp;</div>
<div><span class="296443203-11012008"><font size="2" face="Arial">It seems like media  technology companies have failed to address the impact that their &#8216;bowing&#8217; to  the trend of the general community of media consumers finding a way to download  video content anyway&nbsp;shouldn&#8217;t affect education in the least bit, but if I&#8217;m  reading into this correctly it seems like they&#8217;ve left educators out of the loop  on their decision. </font></span></div>
<div>&nbsp;</div>
<div><span class="296443203-11012008"><font size="2" face="Arial">So I guess my point  is three-fold: 1. Am I reading into this correctly given our circumstance, that  we aren&#8217;t covered under the TEACH act anymore? 2. Is anyone else aware of this  and affected by it?&nbsp;3. Since RealMedia is a proprietary format, it isn&#8217;t easily  convertable into another more desireable format. What would you be able to offer  as a suggestion what to do with our instructors&#8217; content?</font></span></div>
<div>&nbsp;</div>
<div><span class="296443203-11012008"><font size="2" face="Arial">Any insights would  be appreciated.</font></span></div>
</blockquote>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.edutechie.ws/2008/01/15/streaming-media-rant/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
