<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>brown(e)learning</title>
	<atom:link href="http://brownelearning.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://brownelearning.org/blog</link>
	<description>Assessment, Technology, Teacher Education</description>
	<lastBuildDate>Mon, 23 Apr 2012 22:59:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Quick way to flatten multidimensional arrays in PHP</title>
		<link>http://brownelearning.org/blog/2012/04/quick-way-to-flatten-multidimensional-arrays-in-php/</link>
		<comments>http://brownelearning.org/blog/2012/04/quick-way-to-flatten-multidimensional-arrays-in-php/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 22:59:23 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://brownelearning.org/blog/?p=950</guid>
		<description><![CDATA[Of course, I&#8217;m sure there&#8217;s already a function for it, but here&#8217;s mine: function array_flat($input) { $output = array(); if (is_array($input)) { foreach ($input as $element) { $output = array_merge($output, array_flat($element)); } } else { $output[] = $input; } return $output; } Example: $multidimensional_array = (0, 1, 2, array(3, 4, 5), 6, 7, 8, 9); [...]]]></description>
			<content:encoded><![CDATA[<p>Of course, I&#8217;m sure there&#8217;s already a function for it, but here&#8217;s mine:</p>
<p><code>
<pre>function array_flat($input) {
  $output = array();
  if (is_array($input)) {
    foreach ($input as $element) {
      $output = array_merge($output, array_flat($element));
    }
  }
  else {
    $output[] = $input;
  }
  return $output;
}</pre>
<p></code></p>
<p>Example:<br />
<code>$multidimensional_array = (0, 1, 2, array(3, 4, 5), 6, 7, 8, 9);<br />
$flat_array = array_flat($multidimensional_array);<br />
// $flat_array will look like array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);</code></p>
]]></content:encoded>
			<wfw:commentRss>http://brownelearning.org/blog/2012/04/quick-way-to-flatten-multidimensional-arrays-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are some dreams too big to chase?</title>
		<link>http://brownelearning.org/blog/2012/04/are-some-dreams-too-big-to-chase/</link>
		<comments>http://brownelearning.org/blog/2012/04/are-some-dreams-too-big-to-chase/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 02:26:18 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://brownelearning.org/blog/?p=943</guid>
		<description><![CDATA[A colleague of mine recently proposed a crazy idea. Now, I&#8217;ve been known to come up with a few wacky notions of my own, and I’m halfway through my second book about paradigm shifts (Money Ball, the first was Better), so I, of all people, should welcome this colleague&#8217;s proposal. And, at first, I did. [...]]]></description>
			<content:encoded><![CDATA[<p>A colleague of mine recently proposed a crazy idea. Now, I&#8217;ve been known to come up with a few wacky notions of my own, and I’m halfway through my second book about paradigm shifts (<em>Money Ball</em>, the first was <em>Better</em>), so I, of all people, should welcome this colleague&#8217;s proposal. And, at first, I did.</p>
<p>My initial reaction was this: &#8220;Although I can think of a dozen reasons why this won&#8217;t work, the idea has enough merit to be worth pursuing.&#8221; This comment reflected my personal conviction that all knowledge is worthy of pursuit, even when it doesn&#8217;t hold my interest.</p>
<p>But there was something that kept nagging at my mind.</p>
<p>This morning it hit me: The problem wasn&#8217;t that the idea was crazy; it&#8217;s that it was big. It was so big that an initial investigation would require a massive amount of resources. Mustering these resources would require the cooperation of many large, independent institutions. But my concern was not in conquering these challenges; it was in this unanswered question: What happens when we get everything moving and then the data show it was a bad idea?</p>
<p>What we know about confirmation bias suggests that individuals have difficulty acknowledging evidence that contradicts their already-established views. The greater the individuals’ investment in the a priori view, the weaker the effect of contradictory evidence. This operates at the organizational level as well. (Nickerson reserved a section for “policy rationalization” in his great overview of confirmation bias.) If a great deal of organizational mass is required to investigate an innovation, a great deal of force will be required to abandon the investigation.</p>
<p>But I have a greater worry than stopping the train once it’s moving (or getting the sitting elephant to stand): It has been my experience that when effort is spent in what turns out to be a fruitless endeavor, those who have invested in the effort will seek to alter reality rather than their course. They’re not wrong for so doing because it may be cheaper (and is always less embarrassing) to alter perception. I admit that this concern is less likely, but it is also more insidious and consequential.</p>
<p>So, I’m considering a new personal new rule: If the institutional inertia required to pursue an idea could not be overcome when evidence demonstrates the idea to be ineffectual, then the idea should not be pursued. That’s not to say that it is impossible to pursue grand ideas, but that one should consider the first steps of the process very carefully.</p>
]]></content:encoded>
			<wfw:commentRss>http://brownelearning.org/blog/2012/04/are-some-dreams-too-big-to-chase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CHum 250 Syllabus</title>
		<link>http://brownelearning.org/blog/2012/01/chum-250-syllabus/</link>
		<comments>http://brownelearning.org/blog/2012/01/chum-250-syllabus/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 16:27:36 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://brownelearning.org/blog/?p=927</guid>
		<description><![CDATA[Here&#8217;s a direct link to the CHum 250 Syllabus: http://syllabus.byu.edu/view/D3MbN1KvBr0h.html CHum 250 Survey: https://byu.qualtrics.com/SE/?SID=SV_5jUFJL3RM976YPa]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a direct link to the CHum 250 Syllabus: <a href="http://syllabus.byu.edu/view/D3MbN1KvBr0h.html">http://syllabus.byu.edu/view/D3MbN1KvBr0h.html</a></p>
<p>CHum 250 Survey: <a href="https://byu.qualtrics.com/SE/?SID=SV_5jUFJL3RM976YPa">https://byu.qualtrics.com/SE/?SID=SV_5jUFJL3RM976YPa</a></p>
]]></content:encoded>
			<wfw:commentRss>http://brownelearning.org/blog/2012/01/chum-250-syllabus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Research Design of Teacher Evaluations</title>
		<link>http://brownelearning.org/blog/2011/09/the-research-design-of-teacher-evaluations/</link>
		<comments>http://brownelearning.org/blog/2011/09/the-research-design-of-teacher-evaluations/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 18:47:00 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[Lessons]]></category>

		<guid isPermaLink="false">http://brownelearning.org/blog/?p=909</guid>
		<description><![CDATA[The week&#8217;s session of Understanding Educational Research included the great online primer to research design by Trochim. Before diagramming the various designs in articles we had found, we reviewed the classic models: The controlled, randomized experiment: R O X O R O &#160; O The quasi-experiment: O X O O &#160; O The longitudinal study: [...]]]></description>
			<content:encoded><![CDATA[<p>The week&#8217;s session of <em>Understanding Educational Research</em> included the <a href="http://www.socialresearchmethods.net/kb/design.php">great online primer to research design by Trochim</a>. Before diagramming the various designs in articles we had found, we reviewed the classic models:</p>
<p>The controlled, randomized experiment:<br />
<span style="font-family: monospace; background-color: #EEEEEE;">R O X O<br />
R O &nbsp; O</span></p>
<p>The quasi-experiment:<br />
<span style="font-family: monospace; background-color: #EEEEEE;">O X O<br />
O &nbsp; O</span></p>
<p>The longitudinal study:<br />
<span style="font-family: monospace; background-color: #EEEEEE;">O O O O</span></p>
<p>And, of course, the non-experiment:<br />
<span style="font-family: monospace; background-color: #EEEEEE;">X O</span></p>
<p>As we discussed the strengths and weaknesses of each model, we tried to think of research purposes for which each design was suited. Of course, only one of these model can by itself establish causality, which is why it is the “gold standard” of educational research. Both quasi-experiments and longitudinal studies are useful for establishing trends and formulating hypotheses (which are then tested with the first model), but what about that last model?</p>
<p>The non-experiment is pretty much useless. Sure, you give some treatment and you gather some data, but one of two fatal flaws lingers: 1. Either the point of the study was to reveal something about the treatment, but, without  a pretest, we can&#8217;t say anything about it; or 2. the treatment wasn&#8217;t the focus of the study, in which case it shouldn&#8217;t be part of the design. </p>
<p>Towards the end of our discussion, one of the literacy masters students shouted, “The treatment is irrelevant!” I thought that was so astute that I added it to the slide with an APA-formatted citation to the student&#8217;s comment.</p>
<p>The students, most of whom are in-practice teachers, saw this two slides later:</p>
<div style="padding: 12pt; border: 1px solid #000000;">Teacher Evaluations → <span style="font-family: monospace; background-color: #EEEEEE;">X O</span></div>
<p>A study that claimed to establish the effect of any treatment without at least a pre-test would have a hard time getting published in an academic journal. Yet that is the model we&#8217;ve been using for ten years to determine whether teachers, schools, districts, and states are effective.</p>
<p>Some states have moved to the “growth model” for teacher evaluations, which would look like this:<br />
<span style="font-family: monospace; background-color: #EEEEEE;">O X O</span></p>
<p>The major improvement with this model is that we can now establish the change that occurred during the treatment period. On the other hand, it does not tell us the degree to which the treatment was responsible for the observed change. This model is still not appropriate if its results are to be used to hold individuals and groups accountable.</p>
<p>It is becoming sadly commonplace to see policymakers misuse social science methods, but, in this case, there is also a high degree of hypocrisy: At the same time state offices of education have attempted to discover teacher effectiveness via research models that cannot produce such evidence, those same offices have called for teachers to use only “evidence-based methods” of instruction. It&#8217;s a classic case of do-as-we-say-not-as-we-do.</p>
]]></content:encoded>
			<wfw:commentRss>http://brownelearning.org/blog/2011/09/the-research-design-of-teacher-evaluations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing State Test Security Practices</title>
		<link>http://brownelearning.org/blog/2011/09/changing-state-test-security-practices/</link>
		<comments>http://brownelearning.org/blog/2011/09/changing-state-test-security-practices/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 01:11:06 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[In the News]]></category>

		<guid isPermaLink="false">http://brownelearning.org/blog/?p=905</guid>
		<description><![CDATA[I&#8217;ve been growing more concerned with the field of educational research, especially in testing and assessment. It seems that nothing the experts say and no research they do is able to convince policymakers that they&#8217;re misusing tests and test results. For example, it&#8217;s been six years since Freakonomics showed how to detect cheating on state [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been growing more concerned with the field of educational research, especially in testing and assessment. It seems that nothing the experts say and no research they do is able to convince policymakers that they&#8217;re misusing tests and test results.</p>
<p>For example, it&#8217;s been six years since <em>Freakonomics</em> showed how to detect cheating on state tests. It&#8217;s worth noting that the authors thought a modicum of test security measures would make most anti-cheating analyses unnecessary. You know, an ounce of prevention&#8230;</p>
<p>Despite the popularity of that book and the soundness of its arguments, very few states have adopted anti-cheating techniques. It took the <em>Atlanta Journal Constitution</em>&#8216;s application of those methods to uncover an enormous cheating program in Georgia (as well as similar scandals in Pennsylvania, Connecticut, and New Jersey) to get states to move. </p>
<p>So it was some relief that I read <a href="http://www.nyssba.org/index.php?src=news&#038;srctype=detail&#038;category=On%20Board%20Online%20September%2019%202011&#038;refno=1881">this announcement from NYSSBA</a>. Some highlights:</p>
<ol>
<li>Teachers will no longer proctor tests to their own students.</li>
<li>Teachers will no longer be able to grade their own students&#8217; tests.</li>
<li>The county-based canning/scoring systems will be replaced with one centralized system.</li>
</ol>
<p>If you&#8217;re like I was when I arrived in NY, your first reaction was, &#8220;Wait, teachers, whose evaluations depend in part on their students&#8217; test scores, are the ones who give and score their students&#8217; tests?&#8221; Yeah, crazy, huh?</p>
<p>I guess I should be happy that some change is finally happening, but, in reality, I&#8217;m trying to figure out how to cause a scandal that will force states to develop tests that yield adequately reliable results.</p>
]]></content:encoded>
			<wfw:commentRss>http://brownelearning.org/blog/2011/09/changing-state-test-security-practices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Educational Technology as Precursor to the Digital Humanities</title>
		<link>http://brownelearning.org/blog/2011/09/educational-technology-as-precursor-to-the-digital-humanities/</link>
		<comments>http://brownelearning.org/blog/2011/09/educational-technology-as-precursor-to-the-digital-humanities/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 16:52:11 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[In the News]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://brownelearning.org/blog/?p=895</guid>
		<description><![CDATA[My good friend Margaret Merrill sent this article from the New York Times, which, once again, calls into question the value of integrating technology into education. In a nutshell: schools are spending billions on technology, even as they cut budgets and lay off teachers, with little proof that this approach is improving basic learning. This [...]]]></description>
			<content:encoded><![CDATA[<p>My good friend Margaret Merrill sent <a href="http://www.nytimes.com/2011/09/04/technology/technology-in-schools-faces-questions-on-value.html?_r=1&#038;pagewanted=all">this article from the New York Times</a>, which, once again, calls into question the value of integrating technology into education.</p>
<blockquote><p>In a nutshell: schools are spending billions on technology, even as they cut budgets and lay off teachers, with little proof that this approach is improving basic learning.</p>
<p>This conundrum calls into question one of the most significant contemporary educational movements.</p></blockquote>
<p>This should come as no surprise to researchers in educational technology, a field that has never felt the need to justify itself through, say, quantitative data.</p>
<blockquote><p>“The data is pretty weak. It’s very difficult when we’re pressed to come up with convincing data,” said Tom Vander Ark, the former executive director for education at the Bill and Melinda Gates Foundation and an investor in educational technology companies. When it comes to showing results, he said, “We better put up or shut up.”</p></blockquote>
<p>I don&#8217;t hope that they suddenly find the data because that data should have been there all along. It would take a decade&#8217;s worth of research to justify the last decade of investment in educational technology. I only hope the pendulum doesn&#8217;t swing back with too much force.</p>
<p>I also hope other fields are watching this tragedy play out. I can&#8217;t help thinking of the emerging subfield of “Digital Humanities,” which is essentially the integration of technology into the traditional aspects of humanist inquiry (<a href="http://chronicle.com/blogs/brainstorm/guest-post-by-scott-sprenger-in-the-humanities-how-should-we-define-decline/29846">another field that has never seen the need to justify itself</a>). The digital humanities is the spitting image of educational technology circa 1995. Though the technology they employ is more sophisticated than what was (and is) used in education, digital humanists are battling the same cultural issues that educational technologists thought they defeated more than a decade ago.</p>
<p>Digital humanists are making the same mistakes as well.</p>
<p>If the digital humanities continues to exist mainly in an echo chamber, you can bet that they will be rejected by their own. And even if they somehow gain entrance into the humanist canon of research methods (e.g., via administrative fiat), within ten years they will see the same counter-technology movement going on in education today. That is, unless they move forward deliberately and document the benefits of their methods.</p>
<p>But the price of this documentation and the motivation for this deliberation is the confession that technology may not be the solution or that its benefits may not outweigh its costs. Digital humanists would have to be suspicious of their methods – of their field – and that is difficult for any academic. On the other hand, such sincere research ought to be the hallmark of academics. </p>
]]></content:encoded>
			<wfw:commentRss>http://brownelearning.org/blog/2011/09/educational-technology-as-precursor-to-the-digital-humanities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Technologies and the TICS</title>
		<link>http://brownelearning.org/blog/2011/08/mobile-technologies-and-the-tics/</link>
		<comments>http://brownelearning.org/blog/2011/08/mobile-technologies-and-the-tics/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 19:57:10 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://brownelearning.org/blog/?p=889</guid>
		<description><![CDATA[I don’t blog every time someone contacts be about the TICS, but today I received an email with an intriguing question: I&#8217;m going to be working with a school where the teachers are going to be given iPads. I was wondering if you had given any thought to adding items [to the TICS] that measured [...]]]></description>
			<content:encoded><![CDATA[<p>I don’t blog every time someone contacts be about the TICS, but today I received an email with an intriguing question:</p>
<blockquote><p>I&#8217;m going to be working with a school where the teachers are going to be given iPads. I was wondering if you had given any thought to adding items [to the TICS] that measured the confidence of the use of mobile technologies? </p></blockquote>
<p>The quick answer is no, but the more sincere (and correct) answer is maybe. </p>
<p>On the one hand, I don’t see how using a tablet or other wireless device changes effective technology integration practice. On the other hand, the TICS items should represent a broad range of current classroom technologies, which would include tablets. On the other hand (yes, we’re up to three hands), the TICS will never be an effective measure if it shimmies and shakes to the rhythm of each month’s gadgetry. There are no TICS items on podcasts, location-based social networking, SmartBoards or SmartTables, ARGs, cloud-based computing… Why would mobile solutions be included?</p>
<p>I know there are many, many, many researchers in educational technology working with tablets and other mobile technologies. Their work is already important and may prove even more so. However, given the time it takes to craft, pilot, and validate self-efficacy items, I don’t think mobile technologies deserve a spot on the TICS.</p>
<p>But don’t fret! This is not the end of the road. The TICS is distributed under the Creative Commons By/Share-Alike license. This means that you can alter the TICS to your heart’s content, so long as you 1) credit the creator of the original TICS and 2) allow others to modify the resulting product. I encourage you to add your own items on mobile technologies (or whatever your specific tool-of-interest may be), gather data on those items, and publish your findings (even if it’s on your blog or in an email to me).</p>
]]></content:encoded>
			<wfw:commentRss>http://brownelearning.org/blog/2011/08/mobile-technologies-and-the-tics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Honeypot follow-up</title>
		<link>http://brownelearning.org/blog/2011/06/honeypot-follow-up/</link>
		<comments>http://brownelearning.org/blog/2011/06/honeypot-follow-up/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 08:20:07 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://brownelearning.org/blog/?p=880</guid>
		<description><![CDATA[Two months ago I set up a page on my domain that contained an SQL injection vulnerability. I had accidentally signed up for a service that scans my server for security issues, and I intended to tests its effectiveness. Well, that service finally ran a scan, and here are the results: The scan picked up [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://brownelearning.org/blog/2011/04/an-experiement-inspired-by-binggoogle/">Two months ago</a> I set up a page on my domain that contained an SQL injection vulnerability. I had accidentally signed up for a service that scans my server for security issues, and I intended to tests its effectiveness. Well, that service finally ran a scan, and here are the results:</p>
<p><img src="http://brownelearning.org/blog/wp-content/uploads/2011/06/img2.png" alt="" title="img2" width="500" height="230" class="alignnone size-full wp-image-881" /></p>
<p>The scan picked up a XSS flaw on the page because the PHP echoed the username GET var, which could have contained malicious Javascript. The Firefox add-on NoScript successfully blocked my attempts to exploit it. They get points for that one.</p>
<p>But they completely missed the more severe SQL injection.</p>
<p><img src="http://brownelearning.org/blog/wp-content/uploads/2011/06/img1.png" alt="" title="img1" width="492" height="269" class="alignnone size-full wp-image-882" /></p>
<p>I&#8217;m tempted to mention the service by name, but I have a feeling that would violate the TOS agreement somehow. Instead, I recommend staying away from all such site-scanning scams.</p>
]]></content:encoded>
			<wfw:commentRss>http://brownelearning.org/blog/2011/06/honeypot-follow-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defining Design</title>
		<link>http://brownelearning.org/blog/2011/06/defining-design/</link>
		<comments>http://brownelearning.org/blog/2011/06/defining-design/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 12:59:47 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://brownelearning.org/blog/?p=875</guid>
		<description><![CDATA[There was a web meeting today on instructional design. I was in another meeting, so I was unable to tune in, but I was interested in something from the session’s abstract: Author and designer Victor Papanek (1985) defines design as “the conscious and intuitive effort to impose meaningful order” (p.4) This can mean that whether [...]]]></description>
			<content:encoded><![CDATA[<p>There was a web meeting today on instructional design. I was in another meeting, so I was unable to tune in, but I was interested in something from the session’s abstract:</p>
<blockquote><p>Author and designer Victor Papanek (1985) defines design as “the conscious and intuitive effort to impose meaningful order” (p.4) This can mean that whether we are involved in instructional design, or in other endeavors in which something is to be created different than what existed before; “all that we do, almost all the time, is design, for design is basic to all human activity” (Papanek, 1985, pg. 4).</p></blockquote>
<p>Beginning with Papanek’s specific definition, I can’t get over the union of “conscious and intuitive effort.” My dictionary places these adjectives in slight opposition: Conscious entails awareness, while intuition occurs in the absence of reason. Perhaps these terms were included as either-or descriptors (e.g., “both conscious and intuitive efforts may be counted as design”). Such inclusion would be consistent with another point I’ll make below.</p>
<p>I’m less certain the requirement that design assumes the intention to “impose meaningful order.” That limitation appears useful to distinguish design from its superset <em>art</em>, but I waiver on ostracizing creation without meaning. I’d like to ponder the implications of this specification a bit longer.</p>
<p>I noticed that fields attempting to define themselves often do so with implicit goals of inclusion. This motivation drives the theorists toward definitions that are no less abstract than the term’s generally accepted meanings. Take, for example, Papanek’s comment that design is “all that we do, almost all the time.” To quote David Merrill’s protestations against learning objects, “If something is everything, then it is nothing.” In other words, defining something to encompass anything or almost everything renders the term useless; it would be more useful to define what design isn’t.</p>
<p>Perhaps the difference between Papanek’s definitions and my own efforts to lock-down the meaning of design has been the angle of attack: Papanek was a designer who believes his field to be truly broad, while I was a design student trying to delineate the difference between my field and art. I eventually accepted this distinction:</p>
<blockquote><p>Design is creation within constraints.<br />
Art is creation that may or may not be constrained.</p></blockquote>
<p>By my definitions, some design is clearly a subset of art, but art is a larger umbrella. I placed the “constraints” in design because I noticed that in practical fields – from my father’s engineering, to my graphic design (and later to my software, research, and instructional design) – the design process included acknowledgement of the functional requirements and limitations of the work. </p>
<p>I’m not sure that either of these definitions is adequate, but hearing Papanek’s definition stirred the memories of a long-settled self-debate.</p>
]]></content:encoded>
			<wfw:commentRss>http://brownelearning.org/blog/2011/06/defining-design/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Conference on ed tech leads me to wonder about historical revisionism in the field</title>
		<link>http://brownelearning.org/blog/2011/05/conference-on-ed-tech-leads-me-to-wonder-about-historical-revisionism-in-the-field/</link>
		<comments>http://brownelearning.org/blog/2011/05/conference-on-ed-tech-leads-me-to-wonder-about-historical-revisionism-in-the-field/#comments</comments>
		<pubDate>Fri, 27 May 2011 15:26:39 +0000</pubDate>
		<dc:creator>jeremy</dc:creator>
				<category><![CDATA[Lessons]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Reports]]></category>

		<guid isPermaLink="false">http://brownelearning.org/blog/?p=867</guid>
		<description><![CDATA[I attended a regional conference on instruction and technology this week. I’ll admit I didn’t know what to expect – I had never been to anything smaller than a national conference – but I should have been able to predict that the sessions would be highly variable in their quality. Of course, there were the [...]]]></description>
			<content:encoded><![CDATA[<p>I attended a regional conference on instruction and technology this week. I’ll admit I didn’t know what to expect – I had never been to anything smaller than a national conference – but I should have been able to predict that the sessions would be highly variable in their quality. Of course, there were the vendor demonstrations and the how-to reports devoid of data, but there were also more discussion-oriented presentations on issues of common-yet-unexplored techniques, and business reports on local issues.</p>
<p>I was satisfied with the quality of several of the presentations I attended, especially one on rubrics wherein, once the presenter discovered (by – gasp! – asking the audience questions) that most of the attendees had experience developing rubrics, she decided to let us do the talking. She would pose a question (which she knew to be the topic of her next slide), and then she would moderate our conversation. After four or five comments, she would flip to the next slide and show us that we had covered everything on it. Her effort in organizing the information wasn’t wasted just because the group in the room already knew it; see, we only knew it collectively, and she helped move that information from collective to individual.</p>
<p>Sadly, the worst hour I spent was during on keynote address. I’ve known for a while that the educational technology field is driven more by marketing hype (and the artificial demand it creates) than by the effectiveness of the technology. This presentation made me wonder the degree to which historical revisionism has helped maintain that unhealthy producer-consumer relationship.</p>
<p>The presenter stated as fact that the early computer-assisted educational programs translated the production mentality of early computers into a one-size-fits-all approach to education. While there were mass-produced products of this type, it’s wrong to ignore the more instructionally-appropriate efforts that included student tracking and automatically adjusted to their needs.</p>
<p>Ten years ago I sat on a committee with some very bright professors in the field. We discussed requirements for instructional authoring systems and, as each “cutting edge” feature was brought up, someone would ask a distinguished professor, “Didn’t [insert thirty-year-old system] have that?” He would nod or give a simple, “yep” in response.</p>
<p>The ed tech field’s collective ignorance of the depth and meaningfulness of their roots is not only wrong because it slights the visionaries of decades past; it’s also wrong because it allows us to be wooed by technologies that appear new, but are only new in that industry has never pushed them before.</p>
<p>This ignorance is most observable in our field’s unabashed embrace of the mobile “app” model. Those of us who have given decades of effort to establishing open, standards-based technology thoroughfares should be revolted that making our wares available on monopolized toll-roads is now seen as a requirement. (For more reading, see <a href="http://www.bothsidesofthetable.com/2010/02/17/app-is-crap-why-apple-is-bad-for-your-health/">The App is Crap</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://brownelearning.org/blog/2011/05/conference-on-ed-tech-leads-me-to-wonder-about-historical-revisionism-in-the-field/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

