<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
    <channel>
        <title>Elizabeth Pyatt&apos;s TLT Blog</title>
        <link>http://www.personal.psu.edu/ejp10/blogs/tlt/</link>
        <description>Teaching and Learning with Technology</description>
        <language>en</language>
        <copyright>Copyright 2013</copyright>
        <lastBuildDate>Fri, 03 May 2013 16:34:07 -0500</lastBuildDate>
        <generator>http://www.sixapart.com/movabletype/</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        
        <item>
            <title>Game Day 2013 Files </title>
            <description><![CDATA[<p>Please download these files to participate in the PowerPoint Peril workshop.</p>

<p><a href="http://www.personal.psu.edu/ejp10/blogs/tlt/2013/05/03/PerilPowerPoint.zip">PerilPowerPoint.zip</a></p>

<p><big>tinyurl.com/perilpptpsu</big></p>
]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2013/05/game-day-2013-files.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2013/05/game-day-2013-files.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Authentic Games &amp; PBL</category>
            
            
            <pubDate>Fri, 03 May 2013 16:34:07 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Pack and Play Brownbag on Social Network Analysis</title>
            <description><![CDATA[<p>ETS is happy to announce a &quot;Pack and Play&quot; brownbag session on Social Network Analsysis in which Elizabeth Pyatt will introduce general concepts of social network analysis.</p>
<ul>
  <li><b>Date: </b>Monday April 1, 2013</li>
  <li><b>Time: </b>Noon - 1:00 PM</li>
  <li><b>Location:</b> 202K Rider or Adobe Connect</li>
  <li><b>Registration</b>
           <ul>
            <li> 202K: <a href="https://register4its.psu.edu/Public/ShowDetail.asp?scheduleid=111036">https://register4its.psu.edu/Public/ShowDetail.asp?scheduleid=111036</a></li>
            <li>Adobe Connect: <a href="https://register4its.psu.edu/Public/ShowDetail.asp?scheduleid=111037">https://register4its.psu.edu/Public/ShowDetail.asp?scheduleid=111037 </a></li>
           </ul>
</li>
</ul>
<p align="center">
<img alt=""Social network with interconnected center of 6 people and offshoots from center people to smaller subgroups" src="http://www.personal.psu.edu/ejp10/blogs/tlt/2013/03/06/NetworkFriendsEx.png" width="418" height="340" class="mt-image-none" style="" />

</p>
<h3>About Pack and Play</h3>
<p>&quot;Pack and Play&quot; brownbags is a new brownbag event designed to explore different topics and facilitate creativity/problem solving. They are currently being administered by Kate Miffitt (<a href="mailto:kem32@psu.edu">kem32@psu.edu)</a>.</p>
<h3>About Social Network Analysis</h3>
<p><a href="http://www.orgnet.com/sna.html">Social network analysis</a> (SNA) is the study of analyzing social connections between individuals and how this contributes to the overall community structure. This session will introduce concepts of social network analysis such as centrality, outliers and brokers and applications of SNA in fields such as sociology, politics, linguistics and epidemology. The session will include a brainstorming discussion of how SNA can be incorporated into educational technology, particularly analytics.</p>
<h3>References</h3>
<ul>
  <li>    <a href="http://www.orgnet.com/sna.html">Social Network Analysis, A Brief Introduction</a></li>
  <li><a href="http://www.slideshare.net/gcheliotis/social-network-analysis-3273045">Social Network Analysis Slideshare</a></li>
</ul>
]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2013/03/pack-and-play-brownbag-on-soci.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2013/03/pack-and-play-brownbag-on-soci.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cognition/Linguistics</category>
            
            
            <pubDate>Wed, 06 Mar 2013 10:52:56 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Clearing the Clouds of Plagiarism 2013</title>
            <description><![CDATA[<a href="http://www.personal.psu.edu/ejp10/blogs/tlt/2013/01/17/ClearingPlagiarismCloudsSP2013.ppt">Clearing Plagiarism Clouds SP 2013</a> - Now with better citation examples.]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2013/01/clearing-the-clouds-of-plagiar.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2013/01/clearing-the-clouds-of-plagiar.html</guid>
            
            
            <pubDate>Thu, 17 Jan 2013 14:04:25 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Quick and Dirty Accessible Self-Check Quiz with Just CSS and Tabindex</title>
            <description><![CDATA[<p>Something instructional designers like to do is build in self-check quizzes into online tutorials. It's just a quick way to help learners determine if they are "getting" it or not.</p>

<p>Unfortunately interactive elements have been notorious for  presenting problems to different audiences. The issue is generally making sure a blind user can see the answer once it's revealed. Fortunately, advances in CSS and browser technology allow one to create better self checks.</p>

<p>In fact, I've updated one  <a href="http://www.personal.psu.edu/ejp10/databases/about/nonelectronic.html#qr">self-check in a database tutorial</a> so that the answer is disguised in a box where the color the text and background match - until a mouse or tab key hits it to reveal the answer.</p>

<h3>Hiding and Revealing Answer</h3>

<p>The answers are visually hidden and revealed based on CSS of the background color. In the "hidden" state, the text and background are the same color and in the revealed state, the colors are different. </p>

<p>To enact hover states, the entire answer was placed in a link tag. The crucial parts of the style are <code>display:block</code> (to make the link act like a paragraph box), <code>text-decoration:none</code> and matching the <code>color</code> and <code>background-color</code> attributes. Add padding and margins as needed.</p>

<h4>View the CSS</h4>

<div class="example">
a.answer<br/>
{<br/>
display: block; <br/>
background-color: #369; color: #369; <br />
text-decoration: none; <br/>
padding: 0 3px 0 3px; <br/>
border: 1px solid #369; <br/>
padding: 3px<br/>
}
</div>

<p>Note that it doesn't necessarily "hide" text from blinder users on a screen reader, but since text is presented in linear order, that is not as serious an issue as it could be IMHO. I would however ensure that 1) the question is an H tag and that the answer text in the link begin with "Answer". And then you can hush the screen reader.</p>

<p>To reveal the answer, it's important to create an appropriate CSS for BOTH the <code>a:hover</code> (mouseover) and <code>a:focus</code> (keyboard focus). Here is the CSS below.</p>

<div class="example">
a:focus.answer <br/>
{<br/>
background-color: #DDD; color: #000; <br/>
text-decoration: none;<br/>
padding; 3px; border: 1px solid #369; <br/>
}
</div>

<h3>Tabindex</h3>

<p>Assuming the answer is in a link, most browsers will allow you to tab right to the answer and hit ENTER or the DOWN ARROW (Chrome) to reveal the answer. But what about the question?</p>

<p>You could embed the question in a link, but another option is to embedd the <code>tabindex="0"</code> attribute in whatever tag the question lives in (it could be an H tag or P tag). The Tab Index is a signal to "stop here", but setting the value to "0" doesn't make any changes to order.</p> 

<p>You can also add a tabindex to the answer, but since I buried it in A tag to use its hover effects, it's redundant. So let's look at the HTML for this.</p>

<h4>View the HTML</h4>

<div class="example">

<p>&lt;h4 tabindex="0"&gt;Should all <code>a:hover</code> style have an  <code>a:focus</code> counterpart?&lt;/h4&gt;</p>
<p>&lt;p&gt;&lt;a href="#" class="answer"&gt;Answer: You bet it should!&lt;/a&gt; &lt;/p&gt;</p>

</div>



]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/12/quick-and-dirty-accessible-sel.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/12/quick-and-dirty-accessible-sel.html</guid>
            
            
            <pubDate>Fri, 07 Dec 2012 16:45:40 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Essay Buyer Beware</title>
            <description><![CDATA[<p>A few years ago, the <cite>Chronicle of Higher Education</cite> published a story that would scare the tweed socks off of any professor - the <a href="http://chronicle.com/article/The-Shadow-Scholar/125329/">Shadow Scholar</a> who writes custom essays allowing students to graduate with advanced degrees illicitly earned. The Shadow Scholar goes on to comment that HE (or SHE) is getting paid to learn about these topics in order to write these quality essays.</p>

<p>The scariest part of course is that if the writing is good enough, not even Turnitin could detect the cheating because it's a custom, well-written essay....or is it?</p>

<p>Economist Dan Ariely has an interesting article in which he <a href="http://danariely.com/2012/07/17/plagiarism-and-essay-mills/">test drives a few essay services</a> and finds less than satisfying results. Consider some of the issues he finds in these essays (for which he paid over $150).</p>

<ul>
	<li>Non-grammatical English - as in possibly produced by a non-native speaker of English. You can see a sample quote below</li>
        <li>Low quality sources in citations</li>
	<li>Incorrect citation formats</li>
        <li>May include plagiarized content - the kind detectable by Turnitin.</li>
</ul>

<p>I don't mean to say that the Shadow Scholar ever produced such shoddy results. But the Shadow Scholar may be starting to charge a much higher fee after this. I also don't mean to say that faculty can breath a sigh of relief. Students are still going to do what they do, and they need to be educated otherwise.</p>

<p>If there is one lesson we should all learn it is this:</p>

<blockquote><b>There is harmless healing, when healers-cheaters and wizards offer omens, lapels, damage to withdraw, the husband-wife back and stuff. ... But these days fewer people believe in wizards.</b></blockquote>

<p align="right">&mdash;Anonymous (2012)</p>]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/11/essay-buyer-beware.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/11/essay-buyer-beware.html</guid>
            
            
            <pubDate>Wed, 28 Nov 2012 13:11:12 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>&quot;But I don&apos;t want deep learning&quot;</title>
            <description><![CDATA[<p>An important tenet of constructivism is how important it is to build your own meaning by analyzing, discussing and reviewing data and issues from multiple perspectives. It is the path to the highest enlightenment in any topic.</p>

<p>But what do instructional designers do? Distill important pedagogical topics and technology down to a simple list of tips for our client faculty. It's far from being constructivist and can lead to some misconceptions. But it's what our customers want. Not so different from undergraduate students.</p>

<p>Before we hang our heads in shame though, consider the factors of time and motivation. Deep learning is going take longer than the checklist un-deep learning, and there isn't always a visible payoff. And if there isn't a visible payoff, then you need to be interest....really, really interested. </p>

<h3>Want to learn spelling?</h3>
<p>So consider a topic everyone loves - the spelling rules of English. Traditionally this is taught as memorizing <a href="http://www.dyslexia.org/spelling_rules.shtml">complicated lists or rules</a> and <a href="http://www.eduplace.com/spellinglists/lists/sl_g6t06_02.html">vocabulary lists.
</a></p>

<p>Were you bored? I know I was. Were you confused? You should be. Even after getting multiple degrees in linguist, there are words that I have trouble spelling.</p>

<p>It turns out that there is another way to learn spelling - learn how to spell other languages particularly Latin, French, Greek, Italian and German. But adding Spanish, Chinese, Japanese, Sanskrit, Arabic and a variety of African languages is also useful. For place names you should also add Dutch, Welsh, Irish and some native American languages.</p>

<p>Once I learned the spelling rules of these languages, my spelling improved considerably. That's because English adopts words with foreign spellings (vs. sensible languages like Welsh which change spelling to fit its phonetic spelling system). </p>

<p>How long did this take? At least four years to get all the Latin, French and Spanish in. After that each language is a lot quicker (about one semester max). In addition to improving my spelling, learning other languages (even a little bit) has been great for helping me understand history, the news, cooking, music theory and art. That actually IS a visible payoff.</p>

<p>And yet, I hear all the time how hard a foreign language is. ¿Quién quiere «deep learning» ahora? It's all so sad.</p>

<h3>Be interested</h3>
<p>You know, I didn't know I was going to have any words of wisdom until I started pulling this blog entry together, but through the power of metacognition, I have some to deliver. One is to learn to be interested.</p>

<p>Once upon a time, there were topics I found boring and incomprehensible...until I started learning more. They included spelling, accessibility, copyright law, economics, thermodynamics, nutrition, Egyptian mummies, Stonehenge, bees and many more. But as I read more, I realized they were interesting. Strange but true.</p>

<p>There are topics I still find "boring", but it's because I've been too lazy to investigate. Or I need to get some sleep.</p>


<h3>Be interesting</h3>

<p>From the the instructional side, I think the lesson is to be interesting. Most of us already know this, but it's important to remind ourselves of this from time to time. Anytime we dismiss our courses in accounting, statistics, or whatnot as "boring", we've lost our battle.</p>

<p>One corollary of this is that our instructors should be INTERESTED. Drafting instructors to teach something they are not currently passionate in leads to a lot of wasted time.  Do they always have time to catch up before the students? Do they want to? Do you?</p>

<p>But the biggest question of all - do our students have the time? They should of course, but when I consider how many times I am asked to distill a complicated subject to a three-bullet point list, I can't blame them for acting just like busy adults. Monkey see, monkey do is still a valid learning pattern.</p>

<p>Sometimes, the checklist is the best we can do.</p>


]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/11/but-i-dont-want-deep-learning.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/11/but-i-dont-want-deep-learning.html</guid>
            
            
            <pubDate>Tue, 27 Nov 2012 16:58:22 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>MathML in Drupal</title>
            <description><![CDATA[<p>I was also able to get MathML to display in Drupal, at least on the <a href="http://accessibility.psu.edu/mathmltest">AccessAbility Web site</a>. The key for Drupal is to make sure that the <b>Input Format</b> is set for <b>Full HTML.</p>

<p>See the <a href="http://www.personal.psu.edu/ejp10/blogs/tlt/2012/09/mathml-on-angel.html">ANGEL and MathML entry</a> for information getting the appropriate namespace version of MathML. </b>]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/10/mathml-in-drupal.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/10/mathml-in-drupal.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">MathML</category>
            
            
            <pubDate>Thu, 04 Oct 2012 12:24:23 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Possible Improvement in Speech Recognition?</title>
            <description><![CDATA[<p>One of the challenges of video captioning is that it does rely human intervention to achieve the most accurate results. That's because <a href="http://www.personal.psu.edu/ejp10/blogs/tlt/2011/09/understanding-speech-recogniti.html">speech recognition</a> is only reliable in certain circumstances, usually when the speaker has set up a profile on a Dragon speech recognition engine (this could include instructors BTW).

<p>To achieve the best transcription in other circumstances though (and<a href="http://www.codinghorror.com/blog/2010/06/whatever-happened-to-voice-recognition.html"> human listeners require 96-98% accuracy</a>), you usually need a person to do one of the following:</p>
<ol>
	<li>Watch and transcribe a video</li>
	<li>Watch a video and correct speech recognition errors (e.g. <a href="http://robertfortner.posterous.com/the-unrecognized-death-of-speech-recognition">"Rest in Peas" for "Rest in Peace"</a>)</li>
         <li>Have a videographer watch and repeat the words on the video through her or his trained speech recognition speech system</li>
</ol>

<p>Note that all of the above assume that someone is spending time re-watching the video. Ugh!</p>

<h3>Could an Easy Button be Coming?</h3>

<p>What we are all waiting for is the captioning "Easy Button" that will allow use to upload any video file and presto - get back a reasonably accurate transcription regardless of the speaker.</p>

<p>The good news is that Norwegian University of Science and Technology (NTNU)  has been working on <a href="http://www.forskningsradet.no/en/Newsarticle/Computer_program_recognises_any_language/1253979390527/p1177315753918">new speech recognition algorithms</a>. Unlike previous systems, it appears that this one will include a little more old-fashioned phonetic and phonological information and won't be quite as reliant on statistical models.

<p>It still might not be perfect. As with current systems, you will need high quality recordings so the right amount of phonetic information can be retrieved. I suspect that any speaker outside known linguistic parameters (e.g. a speaker with an undocumented accent) will still be able to throw off the system.</p>

<p>But I am glad that linguistics is being included in the solution.</p>
]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/10/possible-improvement-in-speech.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/10/possible-improvement-in-speech.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Accessibility</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cognition/Linguistics</category>
            
            
            <pubDate>Wed, 03 Oct 2012 09:19:59 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Badges in Comments</title>
            <description><![CDATA[<p>I've been exploring the Grademark tools in Turnitin which includes comments and realized that they could that comments could maybe be....Badges.</p>

<p>Just to briefly describe the tool, Grademark allows instructor to drag comments onto a paper (like the well-known "¶" and "Awk." comments of writing instructors. However, this tool allows instructors to create their own comments, and this is where badgification could come in.</p>

<p>Suppose I am teaching a linguistics course and want to reward the extra effort in a piece of linguistic writing. I could use light hearted comments to reward students for going the extra mile. For instance, if a student included non-English data with the correct accent marks or in an authentic script, they could get the "Script Master" badge, while those who record audio could get a "Podcaster" badge.</p>

<p>It's not a full badge system, but it's a way to leverage a feedback system to be a little more badge like.</p>]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/10/badges-in-comments.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/10/badges-in-comments.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Authentic Games &amp; PBL</category>
            
            
            <pubDate>Tue, 02 Oct 2012 15:23:07 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>MathML on ANGEL</title>
            <description><![CDATA[<p>I'm prepping for a STEM Accessibility webinar and I am happy to announce that ANGEL does support MathML, at least for browsers that are able to display it. For accessibility purposes, my goal is to ensure that MathML is displayed properly in a version <b>Internet Explorer with Math Player</b> because that is the configuration that the JAWS screen reader supports.</p>

<h3>Browser Support</h3>
<p>Before testing you want to make sure you are working with the right browsers and have the right fonts and players installed. So for MathML you will need</p>

<ul>
	<li>Firefox 4+ (Best native support)</li>
        <li>Internet Explorer 9 + <a href="http://www.dessci.com/en/products/mathplayer/download.htm">MathPlayer 3</a></li>
	<li>Safari 5.1+ (Limited native support)</li>
         <li><a href="https://developer.mozilla.org/en-US/docs/Mozilla_MathML_Project/Fonts">MathML</a> font like STIX (free)
</ul>

<p>Note that Chrome did not support MathML natively as of Sept 28, 2012.</p>
<h3>Getting MathML Code</h3>
<p>For the moment, I recommend using raw MathML code if you want to experiment. Where do you get MathML code? It can be exported an equation editor like MathType or MathMagic. You can start to learn more about these editors on my <a href="http://www.personal.psu.edu/ejp10/blogs/tlt/tutorials/mathml.html">MathML Tutorial page</a>.</p>

<p>BTW - The ANGEL equation editor default setting appears to insert an image based on MathML code, but it's still an image. This is OK, so long as you changed the ALT tag to be something understandable on a screen reader. Right now the default ALT tag is "mathml equation".</p>


<h3>First Try: HTML Editor</h3>
<p>My first attempt was to cut and paste <a href="http://www.personal.psu.edu/ejp10/blogs/tlt/mathml/QuadMathMLHTML5.html">sample MathML code</a> into the ANGEL HTML Editor in source view. This works great for modern versions of Firefox and Safari, but unfortunately NOT Internet Explorer. Sigh.</p>

<h3>Second Try: Upload HTML 5 File</h3>
<p>My second try was to upload an HTML 5 with MathML file into ANGEL via a File Upload. This did work, but I had to make sure I was using the right MathML markup for Internet Explorer, specifically "namespace mark up" in which the initial <code>&lt;math&gt;</code>  tag includes the link to the MathML specification. That is:

<blockquote>
<code>&lt;math xmlns='http://www.w3.org/1998/Math/MathML'&gt;</code>
</blockquote>

<h4>CSS and MathML</h4>
<p>If you really want to impress yourself, you can combine MathML with CSS. For instance, I use CSS to enlarge equations embedded in the MATH tag  to font-size: 1.5em as follows:

<blockquote>
<code>math {font-size: 1.5em; font-style:normal}</code>
</blockquote>

<h3>Ready for Prime Time?</h3>
<p>The fact that I got a MathML posted into the ANGEL environment is good news, but it still requires the developer/ID/instructor to be comfortable working with HTML source view.</p>

<p>If the instructor is NOT comfortable with this, but can use an equation editor, the best option might be to export an equation as an image and insert it with an ALT tag. Fortunately, It is possible to insert images into ANGEL with an Alternative Tag. </p>
]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/09/mathml-on-angel.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/09/mathml-on-angel.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Accessibility</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">MathML</category>
            
            
            <pubDate>Fri, 28 Sep 2012 09:47:58 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Are Certificates Badges?</title>
            <description><![CDATA[<p>The other week I attended a webinar run by the fine folks at the <a href="http://turnitin.com/en_us/training/professional-development">Turnitin Academy</a> and they thoughtfully sent me a certificate of completion. At this point I thought <b>"Is this certificate just a big rectangular badge?"</b> at which point I realized I had the inspiration for another blog post.</p>

<h3>Art Work and Tone</h3>
<p>One way in which the two differ is the presentation or artwork style. Traditionally, a badge is relatively small and may have some sort of symbolic artwork on it. Here are some examples from <a href="https://wiki.mozilla.org/File:Badge-design-v4.png">Mozilla School of Webcraft</a>, <a href="http://www.4squarebadges.com/foursquare-badge-list/">FourSquare </a>and <a href="http://badg.us/en-US/badges/badge/coveted-kyles-collaborator-badge/awards/374">Kyle Peck</a>. Styles of awards and award merit language arrange from very professional to 100% outrageous ("Player please?" Oh, please!")</p>

<p>In contrast, certificates are much more serious in tone. They often feature old-fashioned type faces and official logos (and signatures). The content typically marks the user's accomplishment and the time the certficate was issued in very formal language (sometimes in Latin). They are meant to be official acknowledgements from respected institutions that some achievement has been noted. </p>

<p>Already the styles are very different in terms of tone. It shouldn't matter, but it's something to consider when considering badgification.</p>

<p>I should add here that a badge logo could go to a certificate type description. They don't have to be mutually exclusive.</p>

<h3>Granularity</h3>
<p>Something else to consider is granularity. In many systems, a badge is awarded for a specific accomplishment, while certificates may be awarded for a larger scale accomplishment. </p>

<p>For instance, the <a href="http://ets.tlt.psu.edu/twt/rubric">TWT Certificate program</a> awards one certificate for completing a portfolio which contains a set of elements (e.g. a teaching philosophy statement, example presentation...). But could a set of supplementary badges be included? I was thinking of one for accessibility, but we could include multimedia creation, exceptional use of a tool like Voicethread, ANGEL or the blogs or something similar. Badges could be a way to further personalize the experience or even provide stepping stones to the final certificate.</p>

<h3>Badges and Certificates Together</h3>

<p>As with any new system it's worth looking back to previous analogues to see if we can learn anything. Certificates are a known model here at Penn State. What should be adapted for badges? What should be discarded?</p>]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/09/are-certificates-badges.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/09/are-certificates-badges.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Teaching Notes</category>
            
            
            <pubDate>Wed, 26 Sep 2012 13:34:30 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Breaking and Mending Your Students&apos; Heart in Anthropology</title>
            <description><![CDATA[<p>One of the more interesting themes I'm seeing in my music Coursera course is the theme of re-examning world music through different eyes. Like most students in the course, I decided to join the course because I am interested in learning more about non-Western music. </p>

<p>The good news is that I am being exposed to some very interesting and beautiful musical pieces. The bad news is that now it comes with a heavier burden of trying to reconcile innocent musical pleasure with the real world repercussions that musicians from many minority cultures face.</p>

<h3>Breaking Hearts</h3>

<p>To give you an idea of our World Music course so far, I can tell you that:</p>
<ul>
	<li>Week 1 pointed out that few listeners of popular Gregorian chant understand how it relates to an actual monastic ritual</li>
        <li>Week 2 pointed out that on Paul Simon's <cite>Graceland</cite> album, some of the African musicans felt slighted. Some songs also de-Africanized the original recordings quite a bit.</li>
</ul>

<p>OK....I wanted to learn more about world music, but did I want to learn this much? Maybe not, but I do have to acknowledge that I have enjoyed Gregorian chants without absolutely no thought of honoring the original intent. It's all about the soothing music.</p>

<p>This is an issue faced by teachers in many related disciplines including linguistics. In linguistics I often to explain:
<ul>
	<li>Double negatives aren't really bad grammar - just rejected by the elite (that's élite).</li>
       <li>Tracing linguistics and archaeology - except when it re-ignites an ethnic conflict.</li>
       <li>And my favorite - just because a language doesn't have pronouns for "he" and "she" does NOT mean their society has eliminated gender discrimination.</li> 
</ul>

<p> Yikes! If you were hoping to just learn a little bit of etymology or a few dialect words in my class, you are going to be disappointed. </p>

<h3>Mending Hearts?</h3>
<p>Does this mean that I'm asking you to give up the joys of Shakespeare and Jane Austen? Or the joys of listening to  <cite>Graceland</cite> and meditative chant? Actually it doesn't. What I want, and what I think the Coursera World Music instructors want is to develop alternative points of view, even if it's a little painful. It is a reality that we are educating students so that they can enter into different spheres of influence. Is it any wonder we want them to do "right" when they get there?</p>

<p>At this point, I can appreciate the Gregorian chant albums, and also the parodies? Sometimes maturity means understanding irony. And I do admit that learning about this cultural context of different world musics helps me understand them more than I would just listening naively. In fact, I had an interesting insight into opera recently which I had previously loathed. I can't promise I will be a fan, but I could probably appreciate a performance now if I had to experience it.</p>

<p>However, as instructors we also have to recognize that the views we are trying to change are not always maliciously meant. I'm someone who instinctively enjoys music without trying to understand the lyrics. Does that make me a bad person? </p>

<p>Many white Americans are interested in focusing on  tracing their origins back to ancient Scotland or Anglo-Saxon England because it is an authentic part of their past. Aren't we all interested in our own history?</p>

<p>I do think it's important to expose mainstream students (code for white students in the U.S.) to alternative points of view without overburdening them with so much guilt they can't appreciate the positives of their own cultures. It's just as important as helping minority cultures understand their own positive accomplishments without being overly burdened with a tragic destiny. A little bittersweetness for everyone?</p>

<h3>A Good Role Model</h3>

<p>A person who's done a really good of this balancing act is Henry Louis Gates. If you haven't seen his PBS series <a href="http://www.pbs.org/wnet/finding-your-roots/">Finding Your Roots</a> you are missing good television.</p>

<p>The first series traces the geneology of various celebrities ranging from Kevin Bacon and Martha Stewart to Condaleeza Rice and Linda Chavez. The most amazing facts and stories came out and almost all of it was a mix of good and bad.  Almost everyone had a juicy skeleton in the closet (there's been a lot of interacial mixing in our history), but also learned amazing revelations at what their ancestors did accomplish. </p>

<p>By the way, the person whose European ancestors arrived the earliest in North America ended up being Linda Chavez whose roots were from New Mexico. Her family arrived when it was still a colony of Spain and remained there even as the Mexican border got pushed much further south. They were also influential in the area for many generations. </p>

<p>It is a good fact to remember when thinking about the complexity of our relations with Latin America.</p>
]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/08/breaking-and-mending-your-stud.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/08/breaking-and-mending-your-stud.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Globalization/Diversity</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Teaching</category>
            
            
            <pubDate>Fri, 24 Aug 2012 16:41:43 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Why &quot;Accessify&quot; is a Word </title>
            <description><![CDATA[<p>The accessibility  been using the verb "accessify" in recent months and a question that has come up is - "Is accessify a word?" My answer is yes, and most linguists would agree. Here's why:</p>

<h3>It Sounds Like English</h3>
<p>With very rare exceptions, a word can enter a language only if follows the rules for permissible combinations of consonants and vowels. For instance "accessify" and "access" follow the rules, but something like "bcess" or "bccefmgi" would not.</p>

<h3>It Uses an English Word Formation Rule</h3>
<p>The suffix -ify is a suffix used to make new verbs out of nouns like accessibility or mystery (mystify). acid (acidify) and even class (classify). The suffix -ify isn't the only option. Another more common suffix is -(r)ize, but "accessorize" is too ambiguous to be useful.</p>

<h3>It's on Google!</h3>
<p>The previous two characteristics apply to <b>possible</b> words, but the question "Is accessify a word?" is also asking if it's used, preferably by someone who knows about accessibility. And the Google search results confirm that people are using "accessify" quite a bit, especially the people at <a href="http://www.accessify.com">accessify.com</a>and <a href="http://www.accessifyforum.com">Accessify Forum.</a></p>

<h3>Still the Doubt...</h3>
<p>And yet...this word is not accepted everywhere. For instance, it is not yet listed in the Oxford English Dictionary. The word "accessify" is still working its way through social channels.</p>

<p>I have faith in it though. If there's one thing accessibility can use it's a verb that explains the process of optimizing documents and tools for accessibility concisely and clearly.</p>]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/08/why-accessify-is-a-word.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/08/why-accessify-is-a-word.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Accessibility</category>
            
                <category domain="http://www.sixapart.com/ns/types#category">Cognition/Linguistics</category>
            
            
            <pubDate>Wed, 15 Aug 2012 17:34:29 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Sloan-C Merlot Conference Review</title>
            <description><![CDATA[<p>Last week, I went to the <a href="http://sloanconsortium.org/conference/2012/et4online/welcome">Sloan-C/Merlot Emerging Technology Conference</a> to present a tutorial on accessibility issues. Below is a report of some of the themes from the conference.

<p>Note: <a href="http://sloanconsortium.org/">The Sloan Consortium (aka Sloan-C) </a> is an organization devoted to "quality online instruction. Penn State is a member, so anyone at ETS can establish an account and access many of the online services. The <a href="http://www.merlot.org/">Merlot repository</a> is a curated collection of learning objects and Websites. Certain Penn State <a href="http://www.merlot.org/merlot/viewMaterial.htm?id=76069">ETS Websites</a> have been included in the past.</p>

<h3>Accessibility</h3>
<p>The issue of accessibility was on Sloan-C and Merlot's mind as both organizations worked to provide information and future infrastructure to member institutions. Merlot has established an accessibility information area at <a href="http://oeraccess.merlot.org/">http://oeraccess.merlot.org/</a> and Sloan-C hopes to also start a special interest group. The National Federation of the Blind co-presented a session as part of this effort.</p>

<p>Drexel sponsored a particularly compelling session featuring students needing accommodation. Each spoke about his or needs and challenges. Two interesting cases were a woman with carpal tunnel and another with a speech production deficit. The second student mentioned video recording assignments were very time consuming because he could not just record his thoughts on the fly, but had to edit his recording based on multiple attempts.</p>

<p>Good news for Penn State - the moderator of the student panel pointed out <a href="http://accessibility.psu.edu">http://accessibility.psu.edu</a> as a quality resource.</p>

<p>My session was a tutorial for instructors and instructional designers and was nominated for a Best in Track and a Sloan-C Best Practice award. </p>

<h3>The Place of the MOOC</h3>
<p>Probably the biggest focus of the conference was the role of MOOCs and badges and how they are impacting traditional academia. There was certainly plenty of buzz, but also concern that MOOCs not be a regression to the old information dump model.</p>

<p>Two speakers from the Khan Academy demoed their <a href="http://smarthistory.khanacademy.org/">Art HIstory site</a> which is a comprehensive suite of video lectures on different art history topics. I will admit that the content is well done (although they need captions), but it is essentially a well-performed lecture. </p>

<p>On the other hand, an instructor who does not have access to information on certain art periods could find these invaluable. And Devil's Advocate - a lecture (i.e. a well structured informative narrative) is a very effective method to present the context to help students understand historical content (this is Art History).</p>

<p>When presented with (ahem) a human instructor, the videos can also be good points of departure for further discussion. And even if a student is working independently, viewing more than one discussion of any period would be essential towards gaining the multiple perspectives needed.</p>

<p>I think the interesting question is when does a person need to interact more fully with humans instead of just books and videos.</p>

<p> Just to expand on that, I do think learning from resources like these is an important skill - sometimes you just can't get to an SME. In fact, all the Cornish (a Celtic language)  I have learned was from books. There are just NO Breton courses in the U.S. </p>

<p>On the other hand, if I really wanted to be a Cornish expert, I would have to interact with human Cornish language experts, most of whom are in the U.K. This may be where Skype and e-mail become the crucial technologies...although I would never say no to a trip to the Cornwall coast.</p>

<h3>Motivation</h3>

<p>On a side note, while I was attending a session about the needs for students to have rich, meaningful interactions with content within a context of a community of practice the following question occurred to me - What happens when a student doesn't want to bother with all that?</p>

<p>Depending on what I am teaching (phonetics, accessibility, copyright law...) I often hear students/administrators/busy faculty ask "Can you just list what I need to know on a single page?" It's usually because the person is not especially interested in a topic but is forced by circumstances to deal with it. Motivation is definitely an important element of learning. </p>

<p>Will I be able to persuade everyone needing to learn accessibility to be an "a11y" guru monitioring multiple listservs and attending webinars? Probably not. But that's not the level of expertise needed...or is it?</p>

<h3>My Takeaways</h3>

<p>The theme of the conference is open resources, but the question continues to be what kind of open resource? I think a number of viable models are available, but any design needs to consider which one is the best.</p>

<p>Ultimately the most common model will probably be the "content" model in which a content provider posts information to a Website for others to freely use. This is the model of Wikipedia, YouTube knitting videos and the Kahn academy. When done well, this is an effective means of distributing unique content cheaply and efficiently.</p>

<p>Note: I would agree that putting up a set of lecture notes is NOT good design even in this model because they have not been edited for a remote audience who cannot communicate directly with the instructor.</p>

<p>There is another model that's important and that is one that allows for students to interact with each other. This has the potential for expanding the student experience, but I find that the logistics have to be thought VERY CAREFULLY.</p>

<p>One version of this model is the topic Listserv, but as research has shown, this format is often dominated by a small percentage of active users and a large percentage of lurkers...just as in any large classroom.</p>

<p>Another model breaks out a MOOC community into smaller discussion groups, but if that is not planned well, students can get frustrated very quickly, as seen in this rambling blog entry of <a href="http://www.personal.psu.edu/ejp10/blogs/tlt/2010/10/new-media-seminar-week-7-what.html">my experience of the New Media Reader MOOC experiment</a> and more in<a href="http://www.personal.psu.edu/ejp10/blogs/tlt/2010/10/"> my October 2010</a> archives.  In order for this model to work, there has to be a method to ensure that group leaders are confident with the material. If not, then the group leader might want to bring in some back up doughnuts.

<p>An possible model to look at might be the  bookclub model in which <a href="http://classiclit.about.com/od/nineteeneightyfour/a/aa_1984question.htm">pre-framed questions</a> are given to reading groups. Is this too dumbed down though or is the structure needed?</p>]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/07/sloan-c-merlot-conference-revi.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/07/sloan-c-merlot-conference-revi.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Commentary</category>
            
            
                <category domain="http://www.sixapart.com/ns/types#tag">tlttraveltraining</category>
            
            <pubDate>Mon, 30 Jul 2012 15:05:10 -0500</pubDate>
			
			



        </item>
        
        <item>
            <title>Accessibility Presentation for Network of Trainers/LD Camp</title>
            <description><![CDATA[<p>I'll be presenting a Lightning Talk about accessibility for the Network of Trainer event. If you go to the Summer Camp, I'll be doing a Q &amp; A session also.</p>

<a href="http://www.personal.psu.edu/ejp10/blogs/tlt/2012/07/12/TrainingNetofTrainers.pptx">TrainingNetofTrainers.pptx</a>]]></description>
            <link>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/07/accessibility-presentation-for-1.html</link>
            <guid>http://www.personal.psu.edu/ejp10/blogs/tlt/2012/07/accessibility-presentation-for-1.html</guid>
            
                <category domain="http://www.sixapart.com/ns/types#category">Accessibility</category>
            
            
            <pubDate>Thu, 12 Jul 2012 10:27:46 -0500</pubDate>
			
			



        </item>
        
    </channel>
</rss>
