<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" >
<channel>
    
    <title>Serendipity35 - Classroom</title>
    <link>http://www.serendipity35.net/</link>
    <description>Learning and technology</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.6 - http://www.s9y.org/</generator>
    <ttl>5</ttl>
<pubDate>Thu, 28 Feb 2013 18:11:03 GMT</pubDate>

    <image>
        <url>http://www.serendipity35.net/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Serendipity35 - Classroom - Learning and technology</title>
        <link>http://www.serendipity35.net/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Computational Thinking</title>
    <link>http://www.serendipity35.net/index.php?/archives/2756-Computational-Thinking.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2756-Computational-Thinking.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2756</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2756</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    I stumbled upon a Google site to promote computational thinking in K-12 classrooms.&amp;#160; &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.google.com/edu/computational-thinking/&#039;]);&quot;  href=&quot;http://www.google.com/edu/computational-thinking/&quot;&gt;http://www.google.com/edu/computational-thinking/&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;Computational thinking (which they abbreviate as CT, but I think of CT as critical thinking) involves a set of problem-solving skills and techniques that software engineers use. It makes sense from a Google perspective to approach things like an engineer, but I am not so sure that all things in education need to be approached that way. I always thought that Google&#039;s problem with doing social (see Orkut, Wave, Plus) was that it was designed by engineers rather than a mix of people with the emphasis on non-engineers.&lt;br /&gt;&lt;br /&gt;Nevertheless, here are a few examples they give of techniques that their engineers use to write programs.&lt;br /&gt; &lt;br /&gt;
&lt;ul&gt; &lt;/ul&gt; &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.google.com/edu/computational-thinking/what-is-ct.html#decomposition&#039;]);&quot;  href=&quot;http://www.google.com/edu/computational-thinking/what-is-ct.html#decomposition&quot;&gt; Decomposition&lt;/a&gt;: When we taste an unfamiliar dish and identify several ingredients based on the flavor, we are &lt;strong&gt;decomposing&lt;/strong&gt; that dish into its individual ingredients.&lt;br /&gt;&lt;br /&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.google.com/edu/computational-thinking/what-is-ct.html#pattern-recognition&#039;]);&quot;  href=&quot;http://www.google.com/edu/computational-thinking/what-is-ct.html#pattern-recognition&quot;&gt;Pattern Recognition&lt;/a&gt;: People look for &lt;strong&gt;patterns&lt;/strong&gt; in stock prices to decide when to buy and sell.&lt;br /&gt;&lt;br /&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.google.com/edu/computational-thinking/what-is-ct.html#pattern-generalization-abstraction&#039;]);&quot;  href=&quot;http://www.google.com/edu/computational-thinking/what-is-ct.html#pattern-generalization-abstraction&quot;&gt;Pattern Generalization and Abstraction&lt;/a&gt;: A daily planner uses &lt;strong&gt;abstraction&lt;/strong&gt; to represent a week in terms of days and hours, helping us to organize our time.&lt;br /&gt;&lt;br /&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.google.com/edu/computational-thinking/what-is-ct.html#algorithm-design&#039;]);&quot;  href=&quot;http://www.google.com/edu/computational-thinking/what-is-ct.html#algorithm-design&quot;&gt;Algorithm Design&lt;/a&gt;: When a chef writes a recipe for a dish, she is creating an &lt;strong&gt;algorithm&lt;/strong&gt; that others can follow to replicate the dish.&lt;br /&gt;That last item,&lt;strong&gt; Algorithm Design&lt;/strong&gt;, is something we hear about frequently these days even though most of us have no idea what that measn other than &amp;quot;it has something to do wih math.&amp;quot;&amp;#160; They define it as the ability to develop a step-by-step strategy for solving a problem. Algorithm design seems to include the other techniques: look at the decomposition of a problem and the identification of patterns that help to solve the problem. In computer science as well as in mathematics, algorithms are often written abstractly, utilizing variables in place of specific numbers. Look at the examples they provide:&lt;br /&gt;- When a chef writes a recipe for a dish, she is creating an &lt;em&gt;algorithm&lt;/em&gt; that others can follow to replicate the dish.&lt;br /&gt;- When a coach creates a play in football, he is designing a set of &lt;em&gt;algorithms&lt;/em&gt; for his players to follow during the game.&lt;br /&gt;- In mathematics, when we calculate the percent change between two numbers, we follow an &lt;em&gt;algorithm&lt;/em&gt; along the lines of: &lt;br /&gt; &lt;br /&gt;
&lt;blockquote&gt;If the original number is greater than the new number, use the following equation to calculate the percent change: percent decrease = 100*(original - new)/original. &lt;br /&gt;If the new number is greater than the original number, use the following equation to calculate the percent change: percent increase = 100*(new - original)/original. &lt;br /&gt;If neither is true, then the original and new numbers must equal each other and there is no percent change.&lt;/blockquote&gt; They lose me when they say that you can take it &amp;quot;a step further&amp;quot; and implement this algorithm in Python so that a computer calculates this for us:&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;font face=&quot;courier new,courier,monospace&quot;&gt;original = float(input(&#039;Enter the original number: &#039;))&lt;br /&gt;new = float(input(&#039;Enter the new number: &#039;))&lt;br /&gt;if original &amp;gt; new:&lt;br /&gt;  percent_decrease = 100 &lt;strong&gt; (original - new) / original&lt;br /&gt;  print &#039;Percent decrease:&#039;, percent_decrease, &#039;%&#039;&lt;br /&gt;elif new &amp;gt; original:&lt;br /&gt;  percent_increase = 100 &lt;/strong&gt; (new - original) / original&lt;br /&gt;  print &#039;Percent increase:&#039;, percent_increase, &#039;%&#039;&lt;br /&gt;else:&lt;br /&gt;  print &#039;There is no percent change.&#039;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt; Of course, the &amp;quot;step further&amp;quot; is the key for an educator. Google says in its &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.google.com/edu/computational-thinking/getting-started.html&#039;]);&quot;  href=&quot;http://www.google.com/edu/computational-thinking/getting-started.html&quot; target=&quot;_blank&quot; title=&quot;prof devel&quot;&gt;professional development&lt;/a&gt; section that this is intended for math teachers and on the &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.google.com/edu/computational-thinking/resources.html&#039;]);&quot;  href=&quot;http://www.google.com/edu/computational-thinking/resources.html&quot; target=&quot;_blank&quot; title=&quot;resources&quot;&gt;web resources&lt;/a&gt; page it is all math, science and computer science. What I would be interested in seeing are some applications in other areas. &lt;br /&gt;&lt;br /&gt;The one site I could find was the &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.tcnj.edu/%7Eijims/&#039;]);&quot;  href=&quot;http://www.tcnj.edu/%7Eijims/&quot;&gt;Interactive Journalism Institute for Middle Schoolers&lt;/a&gt; which is a research project that introduces students  to CT via the creation of online magazines. The computational thinking is via digital media, interactive graphics, animation, video and database design in a collaborative setting. It is designed to foster computational and writing skills and they also get to to share their &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/highered.commandprompt.com/news&#039;]);&quot;  href=&quot;http://highered.commandprompt.com/news&quot;&gt;online magazine&lt;/a&gt; with family, friends and teachers. This research project is led by three computer science and journalism faculty and a gender-equity specialist at &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.tcnj.edu&#039;]);&quot;  href=&quot;http://www.tcnj.edu&quot; target=&quot;_NEW&quot;&gt;The College of New Jersey&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt; 
    </content:encoded>

    <pubDate>Mon, 04 Mar 2013 08:08:00 -0500</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2756-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>Advance Your Search</title>
    <link>http://www.serendipity35.net/index.php?/archives/2751-Advance-Your-Search.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2751-Advance-Your-Search.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2751</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2751</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    I&#039;m always a bit surprised when I see someone do a search online and be disappointed to get either too few results or, more likely, too many irrelevant results. Most search sites have an &amp;quot;advanced search&amp;quot; feature which often solves those issues and others.==On my Serendipity35 tech learning blog, I wrote about &lt;a target=&quot;_blank&quot; href=&quot;http://www.serendipity35.net/index.php?/archives/2557-Google-101-and-maybe-102.html&quot;&gt;using Google for better search&lt;/a&gt;. That&#039;s useful for yourself and is also something anyone who teaches should make sure their students know and use.&lt;br /&gt;&lt;br /&gt;I want to note here an example of a vendor search. Most of us use Amazon to find books and media, but far fewer people use their advanced search feature.==Start by going to the &lt;strong&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Advanced-Search-Books/b/?_encoding=UTF8&amp;amp;amp;*Version*=1&amp;amp;amp;*entries*=0&amp;amp;amp;camp=1789&amp;amp;amp;creative=390957&amp;amp;amp;linkCode=ur2&amp;amp;amp;node=241582011&amp;amp;amp;tag=poetsonline&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://www.amazon.com/Advanced-Search-Books/b/?_encoding=UTF8&amp;amp;*Version*=1&amp;amp;*entries*=0&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;linkCode=ur2&amp;amp;node=241582011&amp;amp;tag=poetsonline&quot;&gt;Advanced Search on Amazon&lt;/a&gt;&lt;/strong&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; style=&quot;border: medium none ! important; margin: 0px ! important;&quot; src=&quot;https://www.assoc-amazon.com/e/ir?t=poetsonline&amp;amp;l=ur2&amp;amp;o=1&quot; /&gt;. From there I could set up a search for books on &amp;quot;HTML5&amp;quot; published after &amp;quot;2011&amp;quot;, and available for the Kindle and get only &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/gp/search/ref=sr_adv_b/?search-alias=stripbooks&amp;amp;amp;unfiltered=1&amp;amp;amp;field-keywords=html5&amp;amp;amp;field-author=&amp;amp;amp;field-title=&amp;amp;amp;field-isbn=&amp;amp;amp;field-publisher=&amp;amp;amp;node=5&amp;amp;amp;field-p_n_condition-type=&amp;amp;amp;field-feature_browse-bin=618073011&amp;amp;amp;field-subject=&amp;amp;amp;field-language=English&amp;amp;amp;field-dateop=After&amp;amp;amp;field-datemod=&amp;amp;amp;field-dateyear=2011&amp;amp;amp;sort=relevanceexprank&amp;amp;amp;Adv-Srch-Books-Submit.x=29&amp;amp;amp;Adv-Srch-Books-Submit.y=9&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://www.amazon.com/gp/search/ref=sr_adv_b/?search-alias=stripbooks&amp;amp;unfiltered=1&amp;amp;field-keywords=html5&amp;amp;field-author=&amp;amp;field-title=&amp;amp;field-isbn=&amp;amp;field-publisher=&amp;amp;node=5&amp;amp;field-p_n_condition-type=&amp;amp;field-feature_browse-bin=618073011&amp;amp;field-subject=&amp;amp;field-language=English&amp;amp;field-dateop=After&amp;amp;field-datemod=&amp;amp;field-dateyear=2011&amp;amp;sort=relevanceexprank&amp;amp;Adv-Srch-Books-Submit.x=29&amp;amp;Adv-Srch-Books-Submit.y=9&quot;&gt;those results&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;div style=&quot;clear: both; text-align: center;&quot; class=&quot;separator&quot;&gt; &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/1.bp.blogspot.com/-wIkO_RPRx9Q/USoSGBoLBOI/AAAAAAAAG8E/3pZp7HSLCSw/s1600/search.JPG&#039;]);&quot;  style=&quot;margin-left: 1em; margin-right: 1em;&quot; imageanchor=&quot;1&quot; href=&quot;http://1.bp.blogspot.com/-wIkO_RPRx9Q/USoSGBoLBOI/AAAAAAAAG8E/3pZp7HSLCSw/s1600/search.JPG&quot;&gt;&lt;img width=&quot;640&quot; height=&quot;303&quot; border=&quot;0&quot; src=&quot;http://1.bp.blogspot.com/-wIkO_RPRx9Q/USoSGBoLBOI/AAAAAAAAG8E/3pZp7HSLCSw/s640/search.JPG&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;After doing my advanced search, I can even limit the search further from the list provided in the left column on the results page. If I wanted the really new publications, I could choose to see only the titles&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/s/ref=sr_nr_p_n_publication_date_0?rh=n%3A283155%2Cn%3A!1000%2Cn%3A5%2Cp_n_feature_browse-bin%3A618073011%2Cp_47%3A2011%2Cp_20%3AEnglish%2Cp_46%3AAfter%2Ck%3Ahtml5%2Cp_n_publication_date%3A1250226011&amp;amp;amp;bbn=5&amp;amp;amp;sort=relevanceexprank&amp;amp;amp;keywords=html5&amp;amp;amp;unfiltered=1&amp;amp;amp;ie=UTF8&amp;amp;amp;qid=1361713266&amp;amp;amp;rnid=1250225011&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://www.amazon.com/s/ref=sr_nr_p_n_publication_date_0?rh=n%3A283155%2Cn%3A!1000%2Cn%3A5%2Cp_n_feature_browse-bin%3A618073011%2Cp_47%3A2011%2Cp_20%3AEnglish%2Cp_46%3AAfter%2Ck%3Ahtml5%2Cp_n_publication_date%3A1250226011&amp;amp;bbn=5&amp;amp;sort=relevanceexprank&amp;amp;keywords=html5&amp;amp;unfiltered=1&amp;amp;ie=UTF8&amp;amp;qid=1361713266&amp;amp;rnid=1250225011&quot;&gt; published in the last 30 days&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Amazon&#039;s advanced search also works for music, TV, movies, magazines and toys and games.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; 
    </content:encoded>

    <pubDate>Mon, 25 Feb 2013 10:09:00 -0500</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2751-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>Using Wikipedia To Kill A Mockingbird</title>
    <link>http://www.serendipity35.net/index.php?/archives/471-Using-Wikipedia-To-Kill-A-Mockingbird.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/471-Using-Wikipedia-To-Kill-A-Mockingbird.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=471</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=471</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    UPDATED from 11/20/07 &lt;br /&gt;&lt;!-- s9ymdb:5122 --&gt;&lt;img width=&quot;522&quot; height=&quot;234&quot; alt=&quot;entry&quot; title=&quot;entry&quot; src=&quot;http://www.serendipity35.net/uploads/tkam.JPG&quot; class=&quot;serendipity_image_center&quot; /&gt;&lt;br /&gt; &lt;br /&gt;
&lt;p&gt;As a follow-up to my post &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/serendipity35.net/index.php?/archives/434-Educators-Using-Wikis-Or-Not.html&#039;]);&quot;  title=&quot;earlier post&quot; href=&quot;http://serendipity35.net/index.php?/archives/434-Educators-Using-Wikis-Or-Not.html&quot; target=&quot;_self&quot;&gt;on using wikis&lt;/a&gt;, I came across a short post from &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.gearfire.net/4-ways-wikipedia-needing-cite/&#039;]);&quot;  title=&quot;gearfire&quot; href=&quot;http://www.gearfire.net/4-ways-wikipedia-needing-cite/&quot; target=&quot;_blank&quot;&gt;gearfire.net&lt;/a&gt; with 4 suggestions on how students should use Wikipedia in research.&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;The preface is something students have already figured out for most classes: Never cite Wikipedia in an academic paper. But that&#039;s just for the benefit of your teacher (and your grade) because &lt;strong&gt;&lt;em&gt;you should use Wikipedia&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;Here&#039;s my take on those suggestions in a classroom scenario of my own where I&#039;m teaching &lt;em&gt;To Kill A Mockingbird&lt;/em&gt;.&lt;/p&gt;&lt;hr width=&quot;98%&quot; size=&quot;3&quot; /&gt; &lt;br /&gt;
&lt;p&gt;Okay class, now I know some teachers here have you told you that you can&#039;t use Wikipedia for your research, but I know that you &lt;em&gt;are&lt;/em&gt; using it. So, I actually will &lt;em&gt;require&lt;/em&gt; you to use it for this paper we&#039;re going to be doing on the novel. I&#039;ve got some suggestions for right now while we are formulating topics. Look up at the Wikipedia page I have on the projector and let&#039;s use Wikipedia to get background information. &lt;/p&gt; &lt;br /&gt;
&lt;p&gt;For example, I would be happy to see one of you decide to learn something about &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/en.wikipedia.org/wiki/Monroeville,_Alabama&#039;]);&quot;  title=&quot;hometown&quot; href=&quot;http://en.wikipedia.org/wiki/Monroeville,_Alabama&quot; target=&quot;_blank&quot;&gt;Harper Lee&#039;s hometown&lt;/a&gt; which served as a model for the book&#039;s setting. Not a bad topic, though I caution you that it might be tough to find out very much. Then again, these papers are short, so do you really want to find five whole books on your topic? &lt;br /&gt;&lt;br /&gt;What else do we see here?&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;Yes, one of you future lawyers might want to write something on the impact of the fictional Atticus Finch &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/en.wikipedia.org/wiki/To_Kill_a_Mockingbird#Atticus_Finch_as_lawyer-hero&#039;]);&quot;  title=&quot;law&quot; href=&quot;http://en.wikipedia.org/wiki/To_Kill_a_Mockingbird#Atticus_Finch_as_lawyer-hero&quot; target=&quot;_blank&quot;&gt;on the real legal profession&lt;/a&gt;. &lt;/p&gt; &lt;br /&gt;&lt;br /&gt;We won&#039;t have time in class to talk much about the Great Depression, but I assume that the class has studied it at least once in some history class. Just in case, before we get into a discussion tomorrow, I put two questions on the side board for homework. &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/en.wikipedia.org/wiki/Great_Depression&#039;]);&quot;  title=&quot;Great D&quot; href=&quot;http://en.wikipedia.org/wiki/Great_Depression&quot; target=&quot;_blank&quot;&gt;Take a look at this&lt;/a&gt; on Wikipedia in order to answer them and if you can add something from your study of history or find any errors, let us know tomorrow.&lt;br /&gt; &lt;br /&gt;
&lt;p&gt; &lt;/p&gt;Melissa, as our lovable class radical, perhaps you&#039;d like to look at the &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/en.wikipedia.org/wiki/To_Kill_a_Mockingbird#Controversies&#039;]);&quot;  title=&quot;controversy&quot; href=&quot;http://en.wikipedia.org/wiki/To_Kill_a_Mockingbird#Controversies&quot; target=&quot;_blank&quot;&gt;controversial nature of this book&lt;/a&gt; for your paper? Think about it.&lt;br /&gt;&lt;br /&gt;Did everyone notice the LINKS at the bottom of the article? These are &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/en.wikipedia.org/wiki/To_Kill_a_Mockingbird#External_links&#039;]);&quot;  title=&quot;links&quot; href=&quot;http://en.wikipedia.org/wiki/To_Kill_a_Mockingbird#External_links&quot; target=&quot;_blank&quot;&gt;EXTERNAL links&lt;/a&gt; (unlike the ones we just looked at that are internal and go to other Wikipedia entries). TIP: the sources cited in these links are more likely to be accepted on a final paper by the other teachers in this school.&lt;br /&gt;&lt;br /&gt; I thought that someone might want to read some or all of &lt;em&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/gp/product/0805083197/ref=as_li_ss_tl?ie=UTF8&amp;amp;amp;&amp;amp;lt;span%20id=&#039;]);&quot;  href=&quot;http://www.amazon.com/gp/product/0805083197/ref=as_li_ss_tl?ie=UTF8&amp;amp;&amp;lt;span%20id=&quot;&gt;Mockingbird: A Portrait of Harper Lee&lt;/a&gt;&lt;img style=&quot;border: medium none !important;&quot; src=&quot;http://www.assoc-amazon.com/e/ir?t=poetsonline&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=0805083197&quot; /&gt;&lt;/em&gt;, a book about the author. &amp;#160;Drew, you seemed intrigued that Harper Lee never wrote another novel, and remembered her as a character in the movie &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.imdb.com/title/tt0379725/&#039;]);&quot;  href=&quot;http://www.imdb.com/title/tt0379725/&quot;&gt;&lt;em&gt;Capote&lt;/em&gt;&lt;/a&gt;. Want to take this book as your topic?&lt;br /&gt;&lt;br /&gt;If you are going to the library or a search engine to find interesting topics for your TKAM paper for me, consider the KEYWORDS hyperlinked in the articles. &lt;br /&gt;&lt;br /&gt;Linda, a legal eagle in my other class, read this section online this morning:&lt;br /&gt;&lt;br /&gt;&lt;em&gt;When Lee was 10 years old, a white woman near Monroeville accused a black man named Walter Lett of raping her. The story and the trial were covered by her father&#039;s newspaper. Lett was convicted and sentenced to death, but a series of letters claiming Lett had been falsely accused caused his sentence to be commuted to life in prison where he died of tuberculosis in 1937.&lt;sup class=&quot;reference&quot; id=&quot;_ref-bigg_0&quot;&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/en.wikipedia.org/wiki/To_Kill_a_Mockingbird#_note-bigg&#039;]);&quot;  href=&quot;http://en.wikipedia.org/wiki/To_Kill_a_Mockingbird#_note-bigg&quot;&gt;[9]&lt;/a&gt;&lt;/sup&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/en.wikipedia.org/wiki/Scottsboro_Boys&#039;]);&quot;  title=&quot;Scottsboro Boys&quot; href=&quot;http://en.wikipedia.org/wiki/Scottsboro_Boys&quot;&gt;Scottsboro Boys&lt;/a&gt; incident occurred when she was six years old and would also be covered by her father&#039;s paper, Lee has stated that she had in mind something less sensational than that, although the case served the same purpose in displaying Southern attitudes about prejudice.&lt;sup class=&quot;reference&quot; id=&quot;_ref-portrait_1&quot;&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/en.wikipedia.org/wiki/To_Kill_a_Mockingbird#_note-portrait&#039;]);&quot;  href=&quot;http://en.wikipedia.org/wiki/To_Kill_a_Mockingbird#_note-portrait&quot;&gt;[1] &lt;/a&gt;&lt;/sup&gt;&lt;/em&gt; - &lt;br /&gt;&lt;br /&gt;Linda decided to do her paper on the actual cases of that time to see how realistic the legal portrayal is in the novel. She decided to focus on the Scottsboro Boys incident to start even though it&#039;s not the incident that really inspired Lee. She&#039;ll see if she can come up with more on the case in Monroeville. I look forward to that paper. &lt;br /&gt;&lt;br /&gt;Oh, Drew - if you come across anything in that biography you&#039;re reading on Lee about this, please share it with Linda. No, that&#039;s not cheating. It&#039;s collaboration. It&#039;s good, and, No, I didn&#039;t say it was for extra credit - but maybe I&#039;ll make collaboration a requirement of the grade. OK, stop groaning. &lt;br /&gt;&lt;br /&gt; I would like to point out to the class those little superscript numbers in that passage. Look familiar? Yes, that&#039;s right, much of what is on Wikipedia has footnotes. Those REFERENCES at the bottom are to books and articles that were used to put this article together. I&#039;m hoping that this year I can get you guys to read some of those original sources. Yes Jason, you can cite those &lt;em&gt;if you actually use them&lt;/em&gt;.&lt;br /&gt; &lt;br /&gt;
&lt;p&gt;So what we&#039;re trying to do here is have you use Wikipedia to get started. &lt;br /&gt;&lt;br /&gt;You need to really focus your research, get some background and context for the topic, so that you won&#039;t waste time looking up stuff and reading things you don&#039;t need. &lt;br /&gt;&lt;br /&gt;Yes, this will save you time. You don&#039;t want to write a long paper for this, and I don&#039;t really want to read a pile of them for the next week. I want 2 or 3 pages of brilliance on something neither one of us ever thought about before this assignment. &lt;br /&gt;&lt;br /&gt;No one will be able to do their paper by just using Wikipedia, but all of us can get started there. &lt;br /&gt;&lt;br /&gt;And don&#039;t cite Wikpedia as a source - cite the source that was used to create the Wikipedia entry. Got it?&lt;br /&gt;&lt;br /&gt;So, have a nice Thanksgiving weekend, give this some thought and we&#039;ll hit the road with it on Monday.&lt;br /&gt;&lt;br /&gt;&lt;!-- s9ymdb:387 --&gt;&lt;img width=&quot;609&quot; height=&quot;186&quot; style=&quot;border: 0px none; padding-right: 5px; padding-left: 5px;&quot; src=&quot;http://www.serendipity35.net/uploads/wiki-lee.jpg&quot; /&gt; &lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 21 Nov 2012 07:30:00 -0500</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/471-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>An Online Digital Citizen Curriculum</title>
    <link>http://www.serendipity35.net/index.php?/archives/2623-An-Online-Digital-Citizen-Curriculum.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2623-An-Online-Digital-Citizen-Curriculum.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2623</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2623</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    I recently discovered a Google/YouTube collaboration for teaching proper digital citizenship practices. The curriculum is for teachers to use to teach students what digital citizenship means and how it impacts their online and offline lives.&lt;br /&gt;&lt;br /&gt;The interactive curriculum is on YouTube. There was a time in the early days of the Internet when I would hear that teachers felt an obligation to educate students on how to be safe, engaged and confident model &amp;quot;Netizens.&amp;quot; It has been awhile since I heard that term used, and I&#039;m not sure if this is still a topic that is taught. Perhaps, we are assuming that students are born into Net citizenship.&lt;br /&gt;&lt;br /&gt; This initiative is aimed at students aged 13 to 17, but elements could certainly be used with older and younger students with some adaptations. For example, the lesson on&lt;strong&gt; Copyright&lt;/strong&gt; includes a &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/docs.google.com/document/d/1xyyX7J02r1rm2tDIkT3DxTVSOYUsCw--DC71aKgV26U/edit&#039;]);&quot;  href=&quot;https://docs.google.com/document/d/1xyyX7J02r1rm2tDIkT3DxTVSOYUsCw--DC71aKgV26U/edit&quot;&gt;Teacher&#039;s Guide&lt;/a&gt; and &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/docs.google.com/presentation/d/1tswIRX4UQQ-idH7trd4jieW8forGGSZKmiHhVQNcI7s/edit#slide=id.g14a17dff_1_14&#039;]);&quot;  href=&quot;https://docs.google.com/presentation/d/1tswIRX4UQQ-idH7trd4jieW8forGGSZKmiHhVQNcI7s/edit#slide=id.g14a17dff_1_14&quot;&gt;Slides&lt;/a&gt; that would easily work with an introductory college group.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;
&lt;iframe width=&quot;560&quot; height=&quot;315&quot; frameborder=&quot;0&quot; src=&quot;http://www.youtube.com/embed/vXw55E2JbPE&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;Google is using its own YouTube as the content for the lessons provided. They cover YouTube’s policies, how to report content, how to protect their own privacy, and how to be responsible YouTube community members. Teachers would hopefully lead students to see the wider implications of being part of an online community and how this applies to places like Facebook.&lt;br /&gt;&lt;br /&gt;Each lesson comes with guidelines for teachers and ready-made slides for presentation. There’s also a YouTube Curriculum channel where videos related to the project will be posted.&lt;br /&gt;&lt;br /&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.google.com/edu/teachers/youtube/curric/i&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://www.google.com/edu/teachers/youtube/curric/i&quot;&gt;http://www.google.com/edu/teachers/youtube/curric/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.youtube.com/user/YouTubeCurriculum&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://www.youtube.com/user/YouTubeCurriculum&quot;&gt;http://www.youtube.com/user/YouTubeCurriculum&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt; 
    </content:encoded>

    <pubDate>Wed, 15 Aug 2012 13:00:56 -0400</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2623-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>Flipping Video Lectures for the Classroom</title>
    <link>http://www.serendipity35.net/index.php?/archives/2600-Flipping-Video-Lectures-for-the-Classroom.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2600-Flipping-Video-Lectures-for-the-Classroom.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2600</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2600</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    As a follow up to yesterday&#039;s post about the flipped classroom, here are &amp;quot;Lessons Worth Sharing&amp;quot; which is &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/ed.ted.com/&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://ed.ted.com/&quot;&gt;TED-Ed&lt;/a&gt;’s idea of sharing presentations (lectures? sort of) on great ideas. &lt;br /&gt;&lt;br /&gt;Probably some of you already use a TED talk with your students. The example mentioned in the video promo below is &amp;quot;Just How Small is an Atom?&amp;quot; By Jon Bergmann.   More &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/ed.ted.com/videos&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://ed.ted.com/videos&quot;&gt;videos that were flipped by teachers&lt;/a&gt; are being posted all the time. &lt;br /&gt;&lt;br /&gt;I have used videos online as flipped (and short) lectures. One I like to use is from a talk given by &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.sirkenrobinson.com/&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://www.sirkenrobinson.com/&quot;&gt;Sir Ken Robinson&lt;/a&gt; about &amp;quot;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/youtu.be/zDZFcDGpL4U&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://youtu.be/zDZFcDGpL4U&quot;&gt;Changing Education Paradigms&lt;/a&gt;.&amp;quot; Though I had education majors in my class this semester, the &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/pccc.libguides.com/ct101&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://pccc.libguides.com/ct101&quot;&gt;class was on critical thinking&lt;/a&gt;. Students watched, enjoyed and remembered the video throughout the semester and the discussion was lively.&lt;br /&gt;&lt;br /&gt;One thing I liked about this particular version of his talk is that the video of Robinson actually speaking is replaced by an animated version of someone drawing (very well) on a white board to illustrate Robinson&#039;s points. I ask them to answer some questions based on their viewing at home the 12 minute video.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;
&lt;li&gt;Robinson &lt;em&gt;assumes&lt;/em&gt; you know this - What is a paradigm? &lt;/li&gt; &lt;br /&gt;
&lt;li&gt;Why does he believe that we need to change public education today?&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;What is his opinion about ADHD?&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;How would he group students in classes?&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;How would he compare divergent thinking versus creativity?&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;Explain his example of geniuses in kindergarten.&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;How would Robinson compare/contrast cheating versus collaboration?&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;Summarize what you feel are his 3 main arguments.&lt;/li&gt; &lt;br /&gt;
&lt;li&gt;How does having the visualization of his talk change the way we hear/see his talk?&amp;#160; Is this visual thinking?&lt;/li&gt; &lt;br /&gt; &lt;br /&gt;
&lt;iframe width=&quot;500&quot; height=&quot;281&quot; frameborder=&quot;0&quot; src=&quot;http://www.youtube.com/embed/JQDgE_eJGTM&quot;&gt;&lt;/iframe&gt; &lt;br /&gt;
&lt;p&gt; &lt;/p&gt; &lt;br /&gt;
&lt;p&gt; &lt;/p&gt; &lt;br /&gt;
&lt;p align=&quot;right&quot;&gt;cross-posted from &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/pcccwriting.blogspot.com&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://pcccwriting.blogspot.com&quot;&gt;pcccwriting.blogspot.com&lt;/a&gt;&lt;br /&gt; &lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 26 Jun 2012 07:19:00 -0400</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2600-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>YouTube for Teachers Site Launches</title>
    <link>http://www.serendipity35.net/index.php?/archives/2481-YouTube-for-Teachers-Site-Launches.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2481-YouTube-for-Teachers-Site-Launches.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2481</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2481</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    YouTube has launched a channel specifically aimed at teachers at &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.youtube.com/teachers&#039;]);&quot;  href=&quot;http://www.youtube.com/teachers&quot; target=&quot;_blank&quot; title=&quot;http://www.youtube.com/teachers&quot;&gt;http://www.youtube.com/teachers&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;It contains guides on how to use YouTube in the classroom, curated video playlists that will be suitable for teachers to use and a YouTube Teachers Community to receive regular updates from the YouTube team, including tips and tricks for incorporating YouTube in your classroom, best practices from other teachers, and new content uploaded to YouTube.&lt;br /&gt;&lt;br /&gt;This is an additional area to the EDU section of the site at &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.youtube.com/education&#039;]);&quot;  href=&quot;http://www.youtube.com/education&quot; target=&quot;_blank&quot; title=&quot;http://www.youtube.com/education&quot;&gt;http://www.youtube.com/education&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; 
    </content:encoded>

    <pubDate>Mon, 26 Sep 2011 00:38:00 -0400</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2481-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>National Jukebox</title>
    <link>http://www.serendipity35.net/index.php?/archives/2427-National-Jukebox.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2427-National-Jukebox.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2427</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2427</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    Teachers can now listen to more than 10,000 historical sound recordings using the &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.loc.gov/jukebox/&#039;]);&quot;  title=&quot;jukebox&quot; target=&quot;_blank&quot; href=&quot;http://www.loc.gov/jukebox/&quot;&gt;Library of Congress&#039; new National Jukebox&lt;/a&gt;. From ragtime to novelty songs to opera, these songs are now available in an easy-to-use player that lets users create and manage their own playlists. More songs will become available over time, so please visit and explore often. &lt;br /&gt;&lt;br /&gt;The Library of Congress makes historical sound recordings available to the public free of charge. The Jukebox includes recordings from the extraordinary collections of the Library of Congress Packard Campus for Audio Visual Conservation and other contributing libraries and archives.&lt;br /&gt;&lt;br /&gt;Try out the &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.loc.gov/jukebox/playlists/detail/id/1&#039;]);&quot;  title=&quot;sampler&quot; target=&quot;_blank&quot; href=&quot;http://www.loc.gov/jukebox/playlists/detail/id/1&quot;&gt;National Jukebox Sampler&lt;/a&gt; which has 14 selections representing the diversity of repertoire to be found in this repository. These performances were recorded between 1901 and 1912.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; 
    </content:encoded>

    <pubDate>Tue, 17 May 2011 01:59:00 -0400</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2427-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>9th Annual Around the World Videoconferencing Event</title>
    <link>http://www.serendipity35.net/index.php?/archives/2419-9th-Annual-Around-the-World-Videoconferencing-Event.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2419-9th-Annual-Around-the-World-Videoconferencing-Event.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2419</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2419</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    &lt;img align=&quot;top&quot; vspace=&quot;9&quot; src=&quot;http://pvhs.k12.nj.us/userimages/myglobe3.gif&quot; alt=&quot;globe&quot; /&gt;&lt;br /&gt;Check out an innovative use of video conferencing by Passaic Valley Regional High School, New Jersey, USA. Their 9th Annual &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/pvhs.k12.nj.us/atw/atwindex.asp&#039;]);&quot;  href=&quot;http://pvhs.k12.nj.us/atw/atwindex.asp&quot; target=&quot;_blank&quot; title=&quot;info&quot;&gt;Around the World Videoconferencing Event&lt;/a&gt; starts on Wednesday, May 11th at 7:30 am EST and continues to Thursday, May 12th at 4 am EST.&lt;br /&gt;&lt;br /&gt;Their current schedule includes the Isle of Jersey, Russia, the Kotel in Israel, Mexico, Georgia, USA, Canada, Australia, Singapore, Hong Kong, Pakistan, India, and Croatia. An updated schedule can be found at&lt;span&gt;&lt;/span&gt; &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/pvhs.k12.nj.us/atw/atw.asp?FeatureID=13&#039;]);&quot;  title=&quot;schedule&quot; target=&quot;_blank&quot; href=&quot;http://pvhs.k12.nj.us/atw/atw.asp?FeatureID=13&quot;&gt;http://pvhs.k12.nj.us/atw/atw.asp?FeatureID=13&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;To view the live stream of each video conference go to &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.njvid.net/live-atw2011.php&#039;]);&quot;  title=&quot;stream&quot; target=&quot;_blank&quot; href=&quot;http://www.njvid.net/live-atw2011.php&quot;&gt;http://www.njvid.net/live-atw2011.php&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;From their site:&lt;br /&gt;&lt;br /&gt;&lt;font face=&quot;tahoma,arial,helvetica,sans-serif&quot;&gt;The purpose of our project is to bring students from different cultures and backgrounds together to promote global awareness and understanding. &lt;br /&gt;&lt;br /&gt;We hope to do this through a combination of activities that utilize videoconferencing and an interactive website for the exchange of information and ideas. The culminating activity will involve Passaic Valley High School hosting a series of approximately one-hour individual videoconferences with participating schools during one 24-hour period. Students will be engaged in discussion on selected topics and problem-solving. &lt;br /&gt;&lt;br /&gt;The project has two basic elements: the actual videoconferences themselves and an interactive website to promote the exchange of information and ideas. The advances in communication technology offers this generation valuable and fruitful multicultural dialogs. Videoconferencing allows people separated by distance to verbally and visually communicate in real time. Interactive websites allow for the continuation of dialogue long after the videoconferences are over. It is our wish here at Passaic Valley High School that this type of hands-on learning prepares our students to be intelligently engaged in diagnostic analysis and lively discussion with their peers from around the world. We also want this project to serve as a basis for our students to understand their relationships and responsibilities to people, institutions and the environment. &lt;/font&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; 
    </content:encoded>

    <pubDate>Wed, 11 May 2011 17:23:32 -0400</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2419-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>Lesson Plans for Martin Luther King Day</title>
    <link>http://www.serendipity35.net/index.php?/archives/2336-Lesson-Plans-for-Martin-Luther-King-Day.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2336-Lesson-Plans-for-Martin-Luther-King-Day.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2336</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2336</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    Teachers looking for new things to do for Martin Luther King Day (January 17) next week might find some ideas in these resources from &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org&#039;]);&quot;  title=&quot;http://www.learner.org&quot; target=&quot;_blank&quot; href=&quot;http://www.learner.org&quot;&gt;Annenberg Learner&lt;/a&gt;.&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;
&amp;quot;Egalitarian America,&amp;quot; unit 20 of America&#039;s History in the Making, looks&lt;br /&gt;
 at the struggle for civil rights in the U.S. from the 1940s to the &lt;br /&gt;
1970s. Be sure to fully explore the unit&#039;s rich video, audio, and text &lt;br /&gt;
resources. &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org/courses/amerhistory/units/20/&#039;]);&quot;  href=&quot;http://www.learner.org/courses/amerhistory/units/20/&quot; target=&quot;_blank&quot;&gt;http://www.learner.org/&lt;wbr /&gt;courses/amerhistory/units/20/&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;
Look back at the social movements of the 1960s and the work of Dr. King with A Biography of America program 24, &amp;quot;The Sixties.&amp;quot; &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org/biographyofamerica/prog24/&#039;]);&quot;  href=&quot;http://www.learner.org/biographyofamerica/prog24/&quot; target=&quot;_blank&quot;&gt;http://www.learner.org/&lt;wbr /&gt;biographyofamerica/prog24/&lt;/a&gt; &amp;#160;This program covers King&#039;s leadership in both the Civil Rights Movement and Vietnam War protest.&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;
View a picture of the 1963 March on Washington for Jobs and Freedom &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org/amerpass/slideshow/archive_search.php?number=2254&amp;amp;amp;fullsize=1&#039;]);&quot;  href=&quot;http://www.learner.org/amerpass/slideshow/archive_search.php?number=2254&amp;amp;fullsize=1&quot; target=&quot;&lt;u&gt;blank&quot;&gt;http://www.learner.org/&lt;wbr /&gt;amerpass/slideshow/archive&lt;/u&gt;&lt;wbr /&gt;search.php?number=2254&amp;amp;&lt;wbr /&gt;fullsize=1&lt;/a&gt; from the American Passages archive.&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;
For Grades 6-8: Find an engaging lesson for teaching the book &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/amzn.to/i9xUaD&#039;]);&quot;  title=&quot;info&quot; target=&quot;_blank&quot; href=&quot;http://amzn.to/i9xUaD&quot;&gt;&lt;em&gt;The Watsons Go to &lt;br /&gt;
Birmingham--1963&lt;/em&gt; by Christopher Paul Curtis&lt;/a&gt;. Look at workshop 5 of &lt;br /&gt;
Teaching Multicultural Literature: A Workshop for the Middle Grades, &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org/workshops/tml/workshop5/&#039;]);&quot;  href=&quot;http://www.learner.org/workshops/tml/workshop5/&quot; target=&quot;_blank&quot;&gt;http://www.learner.org/&lt;wbr /&gt;workshops/tml/workshop5/&lt;/a&gt; and another lesson on the same novel in Making Meaning in Literature: A Video Library, Grades 6-8. &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org/libraries/makingmeaning/makingmeaning/dramatic/&#039;]);&quot;  href=&quot;http://www.learner.org/libraries/makingmeaning/makingmeaning/dramatic/&quot; target=&quot;_blank&quot;&gt;http://www.learner.org/&lt;wbr /&gt;libraries/makingmeaning/&lt;wbr /&gt;makingmeaning/dramatic/&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;
Grades K-5&lt;br /&gt;&lt;br /&gt;
In Social Studies in Action: A Teaching Practices Library, K-12, &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org/libraries/socialstudies/&#039;]);&quot;  href=&quot;http://www.learner.org/libraries/socialstudies/&quot; target=&quot;_blank&quot;&gt;http://www.learner.org/&lt;wbr /&gt;libraries/socialstudies/&lt;/a&gt;&lt;br /&gt;
 elementary teacher Cynthia Vaughn shows how the concepts of equality &lt;br /&gt;
and fairness can be incorporated into a general social studies lesson in&lt;br /&gt;
 the session &amp;quot;Leaders, Community, and Citizens.&amp;quot; The session &amp;quot;Unity and &lt;br /&gt;
Diversity&amp;quot; introduces ways of teaching students to overcome their &lt;br /&gt;
differences and develop a sense of community.&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;
Observe teachers introducing their 4th-, 5th-, and 6th-grade students to&lt;br /&gt;
 literature about Martin Luther King and the Civil Rights Movement in &lt;br /&gt;
Engaging with Literature: A Video Library, Grades 3-5 in two programs &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org/libraries/engagingliterature/&#039;]);&quot;  href=&quot;http://www.learner.org/libraries/engagingliterature/&quot; target=&quot;_blank&quot;&gt;http://www.learner.org/&lt;wbr /&gt;libraries/engagingliterature/&lt;/a&gt; &amp;quot;Building Community,&amp;quot; and &amp;quot;Finding Common Ground.&amp;quot; 
    </content:encoded>

    <pubDate>Mon, 10 Jan 2011 00:38:00 -0500</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2336-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>Isaac Newton - One Man STEM Lesson</title>
    <link>http://www.serendipity35.net/index.php?/archives/2339-Isaac-Newton-One-Man-STEM-Lesson.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2339-Isaac-Newton-One-Man-STEM-Lesson.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2339</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2339</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    &lt;p&gt;Isaac Newton was born January 4, 1643. He was an English physicist, mathematician, astronomer, and natural philosopher.&amp;#160; He was also an alchemist and theologian.&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;Newton is considered by many scholars and members of the general public to be one of the most influential people in human history. He&#039;s a great figure for study in the classroom and a natural way to mix science, technology, engineering and math (STEM) - and even some history and humanities.&lt;br /&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;His &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/amzn.to/eIP21B&#039;]);&quot;  href=&quot;http://amzn.to/eIP21B&quot; target=&quot;_blank&quot; title=&quot;book&quot;&gt;&lt;em&gt;Philosophiæ Naturalis Principia Mathematica&lt;/em&gt;&lt;/a&gt; (Latin for &amp;quot;Mathematical Principles of Natural Philosophy&amp;quot; and usually called the &lt;em&gt;Principia&lt;/em&gt;), published in 1687, is probably the most important scientific book ever written.&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;The book lays the groundwork for most of classical mechanics. Newton described universal gravitation and the three laws of motion, which dominated the scientific view of the physical universe for the next three centuries. Newton showed that the motions of objects on Earth and of celestial bodies are governed by the same set of natural laws, by demonstrating the consistency between Kepler&#039;s laws of planetary motion and his theory of gravitation.&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;I have always found it very interesting that Newton was also highly religious. He was an unorthodox Christian, and during his lifetime actually wrote more on Biblical hermeneutics and occult studies than on science and mathematics.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;For some free and easy schooling, take a look at him in video program 6 in &lt;em&gt;The Mechanical Universe...and Beyond&lt;/em&gt;, &amp;quot;Newton&#039;s Laws&amp;quot; &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org/resources/series42.html%20&#039;]);&quot;  title=&quot;see&quot; href=&quot;http://www.learner.org/resources/series42.html%20&quot; target=&quot;_blank&quot;&gt;http://www.learner.org/resources/series42.html &lt;/a&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;In&amp;#160; &amp;quot;Physics for the 21st Century,&amp;quot;&amp;#160; Newton is discussed in the video and online text in unit 3, &amp;quot;Gravity.&amp;quot;&amp;#160;&amp;#160; &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org/courses/physics/unit/text.html?unit=3&amp;amp;amp;secNum=0%20&#039;]);&quot;  title=&quot;see&quot; href=&quot;http://www.learner.org/courses/physics/unit/text.html?unit=3&amp;amp;secNum=0%20&quot; target=&quot;_blank&quot;&gt;http://www.learner.org/courses/physics/unit/text.html?unit=3&amp;amp;secNum=0 &lt;/a&gt;&lt;/p&gt; &lt;br /&gt;
&lt;p&gt;And look at &lt;em&gt;Mathematics Illuminated&lt;/em&gt; where Newton is discussed in the context of &amp;quot;Concepts of Chaos,&amp;quot; program 13. &amp;#160;&amp;#160; &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.learner.org/courses/mathilluminated/units/13/&#039;]);&quot;  title=&quot;see&quot; href=&quot;http://www.learner.org/courses/mathilluminated/units/13/&quot; target=&quot;_blank&quot;&gt;http://www.learner.org/courses/mathilluminated/units/13/&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt; 
    </content:encoded>

    <pubDate>Tue, 04 Jan 2011 00:04:00 -0500</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2339-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>Economics Yada Yada</title>
    <link>http://www.serendipity35.net/index.php?/archives/2305-Economics-Yada-Yada.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2305-Economics-Yada-Yada.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2305</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2305</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Seinfeld-Season-6-Andy-Ackerman/dp/B000BBOUFE?ie=UTF8&amp;amp;amp;tag=poetsonline&amp;amp;amp;link_code=bil&amp;amp;amp;camp=213689&amp;amp;amp;creative=392969&#039;]);&quot;  imageanchor=&quot;1&quot; target=&quot;&lt;u&gt;blank&quot; href=&quot;http://www.amazon.com/Seinfeld-Season-6-Andy-Ackerman/dp/B000BBOUFE?ie=UTF8&amp;amp;tag=poetsonline&amp;amp;link_code=bil&amp;amp;camp=213689&amp;amp;creative=392969&quot;&gt;&lt;img hspace=&quot;12&quot; align=&quot;left&quot; alt=&quot;Seinfeld - Season 6&quot; src=&quot;http://ws.amazon.com/widgets/q?MarketPlace=US&amp;amp;ServiceVersion=20070822&amp;amp;ID=AsinImage&amp;amp;WS=1&amp;amp;Format=_SL160&lt;/u&gt;&amp;amp;ASIN=B000BBOUFE&amp;amp;tag=poetsonline&quot; /&gt;&lt;/a&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; src=&quot;http://www.assoc-amazon.com/e/ir?t=poetsonline&amp;amp;l=bil&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=B000BBOUFE&quot; style=&quot;border: medium none ! important; margin: 0px ! important; padding: 0px ! important;&quot; /&gt; &lt;br /&gt;&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Seinfeld&lt;/strong&gt;&lt;/em&gt; ran for nine seasons on NBC and I have seen every episode. The line was that it was a “show about nothing” but almost every episode is about at least three different stories which are sometimes intertwined.&lt;br /&gt;&lt;br /&gt;Jerry, George, Elaine, and Kramer encounter odd people and unusual situation that are surprisingly not so different from our own lives. &lt;br /&gt;&lt;br /&gt;If you have ever had to deal with a rental car agency at an airport, you can probably identify with Jerry&#039;s consternation at a reservation that doesn&#039;t actually hold a car for you.&lt;p&gt;Here&#039;s &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.youtube.com/watch?v=dSZYsyrP3Co&#039;]);&quot;  title=&quot;clip&quot; target=&quot;&lt;u&gt;blank&quot; href=&quot;http://www.youtube.com/watch?v=dSZYsyrP3Co&quot;&gt;a clip of that episode&lt;/a&gt; (probably a copyright infringement and it will disappear at some , but...)&lt;br /&gt;&lt;br /&gt;&lt;object width=&quot;480&quot; height=&quot;385&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/dSZYsyrP3Co?fs=1&amp;amp;hl=en_GB&quot; /&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot; /&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot; /&gt;&lt;embed width=&quot;480&quot; height=&quot;385&quot; src=&quot;http://www.youtube.com/v/dSZYsyrP3Co?fs=1&amp;amp;hl=en_GB&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; /&gt;&lt;/object&gt;END&lt;br /&gt;&lt;br /&gt;There&#039;s a good classroom lesson there for a business class. That&#039;s true for many of the episodes. &lt;br /&gt;&lt;br /&gt;So, some academics have decided to use this popular series in their classrooms.&lt;br /&gt;&lt;br /&gt;I first saw a piece &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/blogs.wsj.com/economics/2010/07/21/the-economics-of-seinfeld/%20&#039;]);&quot;  title=&quot;blog post&quot; target=&quot;_blank&quot; href=&quot;http://blogs.wsj.com/economics/2010/07/21/the-economics-of-seinfeld/%20&quot;&gt;on a Wall Street Journal blog&lt;/a&gt; about a professor using the show in their economics course.&lt;br /&gt;&lt;br /&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Seinfeld-Seasons-Giftset-Limited-Shakers/dp/B0002UE1X0?ie=UTF8&amp;amp;amp;%E2%81%9Etag=poetsonline&amp;amp;amp;link_code=bil&amp;amp;amp;camp=213689&amp;amp;amp;creative=392969&#039;]);&quot;  imageanchor=&quot;1&quot; target=&quot;_blank&quot; href=&quot;http://www.amazon.com/Seinfeld-Seasons-Giftset-Limited-Shakers/dp/B0002UE1X0?ie=UTF8&amp;amp;%E2%81%9Etag=poetsonline&amp;amp;link_code=bil&amp;amp;camp=213689&amp;amp;creative=392969&quot;&gt;&lt;img hspace=&quot;11&quot; align=&quot;right&quot; alt=&quot;Seinfeld: Seasons 1, 2 and 3 Giftset (includes Limited Edition Script, Monk&#039;s Salt &amp;amp; Pepper Shakers &amp;amp; Playing Cards)&quot; src=&quot;http://ws.amazon.com/widgets/q?MarketPlace=US&amp;amp;ServiceVersion=20070822&amp;amp;ID=AsinImage&amp;amp;WS=1&amp;amp;Format=_SL160&lt;/u&gt;&amp;amp;ASIN=B0002UE1X0&amp;amp;tag=poetsonline&quot; /&gt;&lt;/a&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; src=&quot;http://www.assoc-amazon.com/e/ir?t=poetsonline&amp;amp;l=bil&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=B0002UE1X0&quot; style=&quot;border: medium none ! important; margin: 0px ! important; padding: 0px ! important;&quot; /&gt; &lt;br /&gt;&lt;br /&gt;&lt;em&gt;“This is a paper about nothing.” So begins Princeton economics professor Avinash Dixit’s academic paper “ An Option Value Problem from Seinfeld.” The paper uses option pricing theory to deconstruct Elaine’s decisions in the “Seinfeld” episode number 119 “ The Sponge.” &lt;br /&gt;&lt;br /&gt;In it, Elaine’s preferred contraceptive sponge goes off the market, sparking an ultimately fruitless hunt for a greater supply. Her limited supply of contraceptive sponges forces her to reassess their usage, and decide whether a potential partner is “sponge-worthy” or not.&lt;br /&gt;&lt;br /&gt;Using these clips (as well as clips from other television shows or movies) makes economic concepts come alive, making them more real for students. Ultimately, students will start seeing economics everywhere – in other TV shows, in popular music, and most importantly, in their own lives.&lt;br /&gt;&lt;br /&gt; “You are deciding whether or not to make an investment decision,” Prof. Dixit says. “The mathematical techniques are exactly the same as financial options.” &lt;/em&gt;&lt;br /&gt;&lt;br /&gt;Last week, I cam upon a site called &amp;quot;The Economics of Seinfeld&amp;quot; that has the nice URL of&amp;#160; &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/yadayadayadaecon.com&#039;]);&quot;  title=&quot;http://yadayadayadaecon.com&quot; target=&quot;&lt;u&gt;blank&quot; href=&quot;http://yadayadayadaecon.com&quot;&gt;YadaYadaYadaEcon.com&lt;/a&gt; (an inside Seinfeld joke). The &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/yadayadayadaecon.com/about/&#039;]);&quot;  title=&quot;about&quot; target=&quot;_blank&quot; href=&quot;http://yadayadayadaecon.com/about/&quot;&gt;site creators&lt;/a&gt; select clips from the shows and suggest economic concepts that might be taught using them. &lt;br /&gt;&lt;br /&gt;&lt;img hspace=&quot;9&quot; align=&quot;left&quot; src=&quot;http://yadayadayadaecon.com/media/yada/clip_icons/apartment_clip1.jpg&quot; alt=&quot;seinfeld&quot; /&gt;For example, in &amp;quot;The Apartment&amp;quot; we look at Jerry NYC&amp;#160; rent controlled building. If you want an apartment, you need someone to die because no one moves from a rent-controlled place.&amp;#160; Elaine is looking for a place and when Mrs. Hudwalker dies, she finds out about the opening from Jerry. She&#039;s the first one to get it, so it goes for $400 per month. But then the super realizes he can play around with the demand side of this situation. Yada, yada, yada, he is offered a $5,000 bribe and Elaine doesn&#039;t get the place.&lt;br /&gt;&lt;br /&gt;Lessons? Price ceilings and rationing mechanisms.&lt;br /&gt;&lt;br /&gt;The site wisely doesn&#039;t offer the clips, but does give you the DVD information (season, disc and the times for the key scenes) for using them. &lt;br /&gt;&lt;br /&gt;These academics are not the first to consider another side of Jerry and friends. &lt;br /&gt;&lt;br /&gt;I bought &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Seinfeld-Philosophy-about-Everything-Nothing/dp/0812694090?ie=UTF8&amp;amp;amp;%E2%81%9Etag=poetsonline&amp;amp;amp;link_code=bil&amp;amp;amp;camp=213689&amp;amp;amp;creative=392969&#039;]);&quot;  href=&quot;http://www.amazon.com/Seinfeld-Philosophy-about-Everything-Nothing/dp/0812694090?ie=UTF8&amp;amp;%E2%81%9Etag=poetsonline&amp;amp;link_code=bil&amp;amp;camp=213689&amp;amp;creative=392969&quot; imageanchor=&quot;1&quot; target=&quot;_blank&quot;&gt;&lt;img hspace=&quot;11&quot; align=&quot;right&quot; alt=&quot;Seinfeld and Philosophy: A Book about Everything and Nothing&quot; src=&quot;http://ws.amazon.com/widgets/q?MarketPlace=US&amp;amp;ServiceVersion=20070822&amp;amp;ID=AsinImage&amp;amp;WS=1&amp;amp;Format=_SL160&lt;/u&gt;&amp;amp;ASIN=0812694090&amp;amp;tag=poetsonline&quot; /&gt;&lt;/a&gt; &lt;img width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; src=&quot;http://www.assoc-amazon.com/e/ir?t=poetsonline&amp;amp;l=bil&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0812694090&quot; style=&quot;border: medium none ! important; margin: 0px ! important; padding: 0px ! important;&quot; /&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Seinfeld-Philosophy-about-Everything-Nothing/dp/0812694090?ie=UTF8&amp;amp;amp;tag=poetsonline&amp;amp;amp;link_code=btl&amp;amp;amp;camp=213689&amp;amp;amp;creative=392969&#039;]);&quot;  href=&quot;http://www.amazon.com/Seinfeld-Philosophy-about-Everything-Nothing/dp/0812694090?ie=UTF8&amp;amp;tag=poetsonline&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969&quot; target=&quot;&lt;u&gt;blank&quot;&gt;Seinfeld and Philosophy: A Book about Everything and Nothing&lt;/a&gt; when it came out. It&#039;s for those with or without any real philosophical background. There are essays grouped into four acts. &lt;strong&gt;Act One&lt;/strong&gt; looks at the four Seinfeld characters through a philosophical lens - Jerry and Socrates: The Examined Life? &lt;strong&gt;Act Two&lt;/strong&gt; examines historical philosophers from a Seinfeldian standpoint (Plato or Nietzsche? Time, Essence, and Eternal Recurrence in Seinfeld). &lt;strong&gt;Act Three&lt;/strong&gt; is Untimely Meditations by the Water Cooler, which explores philosophical issues raised by the show - Is it rational for George to do the opposite? &lt;strong&gt;Act Four&lt;/strong&gt; is called Is There Anything Wrong with That? and has discussions of ethical problems of everyday.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Tao-Pooh-Piglet-Boxed-Set/dp/014095144X?ie=UTF8&amp;amp;amp;tag=poetsonline&amp;amp;amp;link_code=bil&amp;amp;amp;camp=213689&amp;amp;amp;creative=392969&#039;]);&quot;  href=&quot;http://www.amazon.com/Tao-Pooh-Piglet-Boxed-Set/dp/014095144X?ie=UTF8&amp;amp;tag=poetsonline&amp;amp;link_code=bil&amp;amp;camp=213689&amp;amp;creative=392969&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; margin-bottom: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;&lt;img hspace=&quot;9&quot; align=&quot;left&quot; alt=&quot;Tao of Pooh and Te of Piglet Boxed Set&quot; src=&quot;http://ws.amazon.com/widgets/q?MarketPlace=US&amp;amp;ServiceVersion=20070822&amp;amp;ID=AsinImage&amp;amp;WS=1&amp;amp;Format=_SL160&lt;/u&gt;&amp;amp;ASIN=014095144X&amp;amp;tag=poetsonline&quot; /&gt;&lt;/a&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; src=&quot;http://www.assoc-amazon.com/e/ir?t=poetsonline&amp;amp;l=bil&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=014095144X&quot; style=&quot;border: medium none ! important; margin: 0px ! important; padding: 0px ! important;&quot; /&gt;Years earlier, I had gone through the series of books that used the characters from the Winnie the Pooh books in a similar way. The &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Tao-Pooh-Piglet-Boxed-Set/dp/014095144X?ie=UTF8&amp;amp;amp;tag=poetsonline&amp;amp;amp;link_code=btl&amp;amp;amp;camp=213689&amp;amp;amp;creative=392969&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://www.amazon.com/Tao-Pooh-Piglet-Boxed-Set/dp/014095144X?ie=UTF8&amp;amp;tag=poetsonline&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969&quot;&gt;Tao of Pooh and Te of Piglet&lt;/a&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; style=&quot;border: medium none ! important; margin: 0px ! important; padding: 0px ! important;&quot; src=&quot;http://www.assoc-amazon.com/e/ir?t=poetsonline&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=014095144X&quot; /&gt; were two popular titles. Then came from another perspective &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Winnie-Pooh-Success-Friends-Important/dp/0525942939?ie=UTF8&amp;amp;amp;tag=poetsonline&amp;amp;amp;link_code=btl&amp;amp;amp;camp=213689&amp;amp;amp;creative=392969&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://www.amazon.com/Winnie-Pooh-Success-Friends-Important/dp/0525942939?ie=UTF8&amp;amp;tag=poetsonline&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969&quot;&gt;Winnie-the-Pooh on Success&lt;/a&gt;&amp;#160; and &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Winnie-Pooh-Management-Important-introduced/dp/0143119664?ie=UTF8&amp;amp;amp;tag=poetsonline&amp;amp;amp;link_code=btl&amp;amp;amp;camp=213689&amp;amp;amp;creative=392969&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://www.amazon.com/Winnie-Pooh-Management-Important-introduced/dp/0143119664?ie=UTF8&amp;amp;tag=poetsonline&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969&quot;&gt;Winnie-the-Pooh on Management&lt;/a&gt; (subtitled: &amp;quot;In which a Very Important Bear and his friends are introduced to a Very Important Subject&amp;quot;) and then &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Winnie-Pooh-Problem-Solving-Stephen/dp/0413707105?ie=UTF8&amp;amp;amp;%E2%81%9Etag=poetsonline&amp;amp;amp;link_code=btl&amp;amp;amp;camp=213689&amp;amp;amp;creative=392969&#039;]);&quot;  target=&quot;_blank&quot; href=&quot;http://www.amazon.com/Winnie-Pooh-Problem-Solving-Stephen/dp/0413707105?ie=UTF8&amp;amp;%E2%81%9Etag=poetsonline&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969&quot;&gt;Winnie-the-Pooh on Problem Solving&lt;/a&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; style=&quot;border: medium none ! important; margin: 0px ! important; padding: 0px ! important;&quot; src=&quot;http://www.assoc-amazon.com/e/ir?t=poetsonline&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0413707105&quot; /&gt;.&lt;br /&gt;&lt;br /&gt;A department could pick up the &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/Seinfeld-Complete-Jerry/dp/B000VECAEE?ie=UTF8&amp;amp;amp;%E2%81%9E%E2%81%9Etag=poetsonline&amp;amp;amp;link_code=btl&amp;amp;amp;camp=213689&amp;amp;amp;creative=392969&#039;]);&quot;  href=&quot;http://www.amazon.com/Seinfeld-Complete-Jerry/dp/B000VECAEE?ie=UTF8&amp;amp;%E2%81%9E%E2%81%9Etag=poetsonline&amp;amp;link_code=btl&amp;amp;camp=213689&amp;amp;creative=392969&quot; target=&quot;_blank&quot;&gt;Seinfeld complete series&lt;/a&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; src=&quot;http://www.assoc-amazon.com/e/ir?t=poetsonline&amp;amp;l=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=B000VECAEE&quot; style=&quot;border: medium none ! important; margin: 0px ! important; padding: 0px ! important;&quot; /&gt; &lt;img width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; src=&quot;http://www.assoc-amazon.com/e/ir?t=poetsonline&amp;amp;%E2%81%9El=btl&amp;amp;camp=213689&amp;amp;creative=392969&amp;amp;o=1&amp;amp;a=0812694090&quot; style=&quot;border: medium none ! important; margin: 0px ! important; padding: 0px ! important;&quot; /&gt;on DVD for under $200 and yada, yada, yada, students are finally smiling in econ classes.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 06 Dec 2010 15:44:00 -0500</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2305-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>
<item>
    <title>Teaching Physics With Movies</title>
    <link>http://www.serendipity35.net/index.php?/archives/2304-Teaching-Physics-With-Movies.html</link>
            <category>Classroom</category>
    
    <comments>http://www.serendipity35.net/index.php?/archives/2304-Teaching-Physics-With-Movies.html#comments</comments>
    <wfw:comment>http://www.serendipity35.net/wfwcomment.php?cid=2304</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.serendipity35.net/rss.php?version=2.0&amp;type=comments&amp;cid=2304</wfw:commentRss>
    

    <author>nospam@example.com (Ken Ronkowitz)</author>
    <content:encoded>
    &lt;strong&gt;Class assignment:&amp;#160; Stop the train loaded with hazardous chemicals before this “missile the size of the Chrysler Building” hits a populated area and “vaporizes everything in front of it.” &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Okay, that&#039;s actually a summary of the premise in the new thriller film, &lt;em&gt;Unstoppable&lt;/em&gt;.&amp;#160; But that doesn&#039;t mean that a class couldn&#039;t consider the assignment virtually using the film.&lt;br /&gt;&lt;br /&gt;Could a train even be as powerful as a Chrysler Building-sized missile? &lt;br /&gt;&lt;br /&gt; &lt;object width=&quot;640&quot; height=&quot;385&quot;&gt;&lt;param value=&quot;http://www.youtube.com/v/532oWEw8G-A?fs=1&amp;amp;hl=en_US&quot; name=&quot;movie&quot; /&gt;&lt;param value=&quot;true&quot; name=&quot;allowFullScreen&quot; /&gt;&lt;param value=&quot;always&quot; name=&quot;allowscriptaccess&quot; /&gt;&lt;embed width=&quot;640&quot; height=&quot;385&quot; allowfullscreen=&quot;true&quot; allowscriptaccess=&quot;always&quot; type=&quot;application/x-shockwave-flash&quot; src=&quot;http://www.youtube.com/v/532oWEw8G-A?fs=1&amp;amp;hl=en_US&quot; /&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;The lesson idea comes from Emory physics professor Sidney Perkowitz. He is a good source considering that he wrote &lt;em&gt;&lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.amazon.com/gp/product/0231142803?ie=UTF8&amp;amp;amp;tag=serendipity35-20&amp;amp;amp;linkCode=as2&amp;amp;amp;camp=1789&amp;amp;amp;creative=390957&amp;amp;amp;creativeASIN=0231142803&#039;]);&quot;  href=&quot;http://www.amazon.com/gp/product/0231142803?ie=UTF8&amp;amp;tag=serendipity35-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=0231142803&quot;&gt;&lt;strong&gt;Hollywood Science&lt;/strong&gt;: Movies, Science, and the End of the World&lt;/a&gt;&lt;img width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot; style=&quot;border: medium none ! important; margin: 0px ! important;&quot; src=&quot;http://www.assoc-amazon.com/e/ir?t=serendipity35-20&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=0231142803&quot; /&gt;&lt;/em&gt;&lt;em&gt;.&lt;br /&gt;&lt;br /&gt;MORE: &lt;a onclick=&quot;_gaq.push([&#039;_trackPageview&#039;, &#039;/extlink/www.scienceandentertainmentexchange.org/&#039;]);&quot;  href=&quot;http://www.scienceandentertainmentexchange.org/&quot; target=&quot;_blank&quot;&gt;&lt;br /&gt;Science and Entertainment Exchange&lt;/a&gt; - National Academy of Sciences program to bring scientific accuracy to media entertainment.&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;
&lt;iframe frameborder=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://rcm.amazon.com/e/cm?lt1=_blank&amp;amp;%E2%81%9Ebc1=FBF7F7&amp;amp;IS2=1&amp;amp;npa=1&amp;amp;bg1=FBF7F7&amp;amp;fc1=000000&amp;amp;lc1=FF003C&amp;amp;t=serendipity35-20&amp;amp;o=1&amp;amp;p=8&amp;amp;l=as1&amp;amp;m=amazon&amp;amp;f=ifr&amp;amp;md=10FE9736YVPPT7A0FBG2&amp;amp;asins=0231142803&quot; style=&quot;width: 120px;&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;&lt;/em&gt; 
    </content:encoded>

    <pubDate>Thu, 02 Dec 2010 14:21:00 -0500</pubDate>
    <guid isPermaLink="false">http://www.serendipity35.net/index.php?/archives/2304-guid.html</guid>
    <creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license>
</item>

</channel>
</rss>