<?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>Bloviate</title>
	<atom:link href="http://lukewaltzer.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://lukewaltzer.com</link>
	<description>the periodic musings of a sometimes know-it-all</description>
	<lastBuildDate>Thu, 19 Aug 2010 21:05:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Blogs@Baruch, now with BuddyPress!</title>
		<link>http://lukewaltzer.com/blogs-at-baruch-now-with-buddypress/</link>
		<comments>http://lukewaltzer.com/blogs-at-baruch-now-with-buddypress/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 21:01:32 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[blogsatbaruch]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[edtech]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1259</guid>
		<description><![CDATA[I recently completed a significant upgrade to Blogs@Baruch, and I thought I&#8217;d blog my hacks and some of the thinking behind them for teh Google to index. The goal of the upgrade was to get BuddyPress up and running, which will create additional avenues for social publishing and networking around academic interests across the College. [...]]]></description>
			<content:encoded><![CDATA[<p>I recently completed a significant upgrade to <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu/contact/">Blogs@Baruch</a>, and I thought I&#8217;d blog my hacks and some of the thinking behind them for teh Google to index.</p>
<p>The goal of the upgrade was to get BuddyPress up and running, which will create additional avenues for social publishing and networking around academic interests across the College. The upgrade included two new WordPress child themes, one that uses bp-default (for the home site and all BuddyPress functionality) and one that uses TwentyTen (a new default theme).</p>
<h3><span style="text-decoration: underline;">if ( is_user_logged_in() )</span></h3>
<p>Since we&#8217;re rolling BuddyPress into a system that&#8217;s been active for almost two years already, and which has more than four thousand users, I was hesitant to just automatically give everybody public profiles or to make the member list publicly visible. The following simple argument came in very handy in these cases:</p>
<pre class="brush: php">

&lt;?php if ( is_user_logged_in() ) : ?&gt;
&lt;?php else : ?&gt;
&lt;?php endif; ?&gt;			
</pre>
<p>I snaked this code through functions in a number of places:</p>
<ul>
<li> in header of the BP child theme to hide the Members list (by excluding the page id for the Members page in the &#8220;else&#8221; statement)</li>
<li>in sidebar.php file of my child theme, to give logged-in users relevant quick links</li>
<li>in members/index.php of my child theme, to hide the Members directory</li>
<li>in members/single/home.php to hide individual Profile pages</li>
</ul>
<p>I also hide the BP admin bar for logged out users (which is an option built into BP)&#8230; So if you&#8217;re a visitor to the site, BuddyPress won&#8217;t be visible to you.</p>
<p>Logged out:</p>
<p style="text-align: center;"><a href="http://lukewaltzer.com/wp-content/uploads/2010/08/loggedout.png"><img class="size-large wp-image-1319 alignnone" style="margin: 10px;" title="loggedout" src="http://lukewaltzer.com/wp-content/uploads/2010/08/loggedout-1024x567.png" alt="" width="491" height="272" /></a></p>
<p>Logged in:</p>
<p style="text-align: center;"><a href="http://lukewaltzer.com/wp-content/uploads/2010/08/loggedin.png"><img class="size-large wp-image-1320    aligncenter" style="margin: 10px;" title="loggedin" src="http://lukewaltzer.com/wp-content/uploads/2010/08/loggedin-1024x538.png" alt="" width="491" height="258" /></a></p>
<p>This is the way we&#8217;re going to keep it for now, and I think such a structure reflects our sense of BuddyPress primarily as a tool for the community to get to know itself a little better. Rumor has it that some more granular privacy control will be coming down the pike in future versions of BuddyPress, and we&#8217;ll revisit this issue as appropriate.</p>
<h3><span style="text-decoration: underline;">bp-custom.php etc.</span></h3>
<p>Every BuddyPress install should have a bp-custom.php file located in wp-content/plugins/ which houses customizations. I used this file to change the order of the tabs on Profile pages, and to insert additional menus on the BuddyPress admin bar.</p>
<p>One of the great challenges I&#8217;ve had is the fact that one of my good buddies and partners in pizza-eating crime has become one of the top BuddyPress/WordPress developers around, and <a title="Boone" href="http://teleogistic.net" target="_blank">Boone&#8217;s</a> on my IM rolls. I&#8217;m often faced with the dilemma of taking an hour to figure something out, or bothering him and getting some code in about 3 minutes. He helped me with code for the tab order:</p>
<pre class="brush: php">

function change_profile_tab_order() {
	global $bp;

	$bp-&gt;bp_nav[&#039;profile&#039;][&#039;position&#039;] = 10;
	$bp-&gt;bp_nav[&#039;activity&#039;][&#039;position&#039;] = 20;
	$bp-&gt;bp_nav[&#039;blogs&#039;][&#039;position&#039;] = 30;
	$bp-&gt;bp_nav[&#039;friends&#039;][&#039;position&#039;] = 40;
	$bp-&gt;bp_nav[&#039;messages&#039;][&#039;position&#039;] = 50;
	$bp-&gt;bp_nav[&#039;groups&#039;][&#039;position&#039;] = 60;
	$bp-&gt;bp_nav[&#039;settings&#039;][&#039;position&#039;] = 70;
}

add_action( &#039;bp_setup_nav&#039;, &#039;change_profile_tab_order&#039;, 999 );
</pre>
<p>The additional menus in the admin bar, I figured out with help from <a title="BP Codex" href="http://codex.buddypress.org/how-to-guides/modifying-the-buddypress-admin-bar/">the Codex</a>:</p>
<pre class="brush: php">

function my_help_link(){
  ?&gt;
  &lt;li&gt;&lt;a href=&quot;http://blsciblogs.baruch.cuny.edu/support/explanation-of-buddypress/&quot;&gt;HELP!&lt;/a&gt;

 &lt;ul class=&quot;wp-admin-bar&quot;&gt;
&lt;li&gt;&lt;a href=&quot;http://blsciblogs.baruch.cuny.edu/support/guide-to-buddypress/&quot;&gt;Guide to Buddypress&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://blsciblogs.baruch.cuny.edu/support/for-blog-authors/&quot;&gt;Support for Students&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://blsciblogs.baruch.cuny.edu/support/for-blog-administrators/&quot;&gt;Support for Faculty&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://blsciblogs.baruch.cuny.edu/contact/&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;
  &lt;/li&gt;
  &lt;?php
}
add_action( &#039;bp_adminbar_menus&#039;, &#039;my_help_link&#039;, 14 );

function quick_links(){
  ?&gt;
  &lt;li&gt;&lt;a href=&quot;http://blsciblogs.baruch.cuny.edu/support/explanation-of-buddypress/&quot;&gt;Quick Links&lt;/a&gt;

 &lt;ul class=&quot;wp-admin-bar&quot;&gt;
  &lt;li&gt;&lt;a href=&quot;http://blsciblogs.baruch.cuny.edu/about-blogsbaruch/terms-of-service/&quot;&gt;Terms of Service&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://www.baruch.cuny.edu/blsci&quot;&gt;BLSCI&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://www.baruch.cuny.edu/bctc&quot;&gt;BCTC&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://www.baruch.cuny.edu/&quot;&gt;Baruch College&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;
  &lt;/li&gt;
  &lt;?php
}
</pre>
<p>And, with Boone&#8217;s help, I made a change to my wp-config.php file so that Profile (rather than the Activity Stream) became the default component loaded when you visited a member&#8217;s page. (I located this line of code just beneath the &#8220;/* That&#8217;s all, stop editing! Happy blogging. */&#8221; comment, as it didn&#8217;t work when I put it at the end of the wp-config.php file).</p>
<pre class="brush: php">

 /** Sets BP Nav to load Profile first */
define( &#039;BP_DEFAULT_COMPONENT&#039;, &#039;profile&#039; );
</pre>
<p>These changes are intended to prioritize Profiles. We want our users to share information about themselves and to use Boone&#8217;s <a title="Custom Profile Filters" href="http://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/" target="_blank">Custom Profile Filters</a> to connect with others at the College with similar interests. While the <a title="The CUNY Academic Commons" href="http://commons.gc.cuny.edu/">CUNY Academic Commons</a>, for which that plugin was written, hopes to connect CUNYs across campuses, we want do this on a more local scale. When all of our incoming students get their Blogs@Baruch accounts next week, they will be asked to fill out their profiles and to begin exploring.</p>
<h3><span style="text-decoration: underline;"><span style="text-decoration: underline;">New Default Theme<br />
</span></span></h3>
<p>I also used the upgrade opportunity to create a new default theme for sites created on Blogs@Baruch, a child of TwentyTen which features some Baruch College and CUNY branding/linking and altered css. Aided by <a title="Thirty Ten" href="http://aaron.jorb.in/blog/2010/04/introducing-thirty-ten/" target="_blank">this tutorial</a>, I  swapped out the built-in header images that ship with TwentyTen for images taken from Baruch College&#8217;s library of photographs.  Here&#8217;s the code for that, placed into the theme&#8217;s functions.php file:</p>
<pre class="brush: php">

define( &#039;HEADER_IMAGE&#039;, get_bloginfo(&#039;stylesheet_directory&#039;) .&#039;/images/headers/baruchcollege.jpg&#039; );

add_action( &#039;after_setup_theme&#039;, &#039;blogsatbaruch_setup&#039; );
function blogsatbaruch_setup(){

/* Add additional default headers: All Photos are from Baruch College Visual Standards Library: http://www.baruch.cuny.edu/visualstandards/photos.htm */

	$blogsatbaruch_dir =	get_bloginfo(&#039;stylesheet_directory&#039;);
	register_default_headers( array (
		&#039;Baruch&#039; =&gt; array (
			&#039;url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/baruchcollege.jpg&quot;,
			&#039;thumbnail_url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/baruchcollege-thumbnail.jpg&quot;,
			&#039;description&#039; =&gt; __( &#039;Baruch College&#039;, &#039;blogsatbaruch&#039; )
		),
		&#039;Elevators&#039; =&gt; array (
			&#039;url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/elevators.jpg&quot;,
			&#039;thumbnail_url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/elevators-thumbnail.jpg&quot;,
			&#039;description&#039; =&gt; __( &#039;Elevators&#039;, &#039;blogsatbaruch&#039; )
		),
		&#039;Reading&#039; =&gt; array (
			&#039;url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/reading.jpg&quot;,
			&#039;thumbnail_url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/reading-thumbnail.jpg&quot;,
			&#039;description&#039; =&gt; __( &#039;Reading&#039;, &#039;blogsatbaruch&#039; )
		),
		&#039;Streetsign&#039; =&gt; array (
			&#039;url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/streetsign.jpg&quot;,
			&#039;thumbnail_url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/streetsign-thumbnail.jpg&quot;,
			&#039;description&#039; =&gt; __( &#039;Street Sign&#039;, &#039;blogsatbaruch&#039; )
		),
		&#039;Turnstiles&#039; =&gt; array (
			&#039;url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/turnstiles.jpg&quot;,
			&#039;thumbnail_url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/turnstiles-thumbnail.jpg&quot;,
			&#039;description&#039; =&gt; __( &#039;Turnstiles&#039;, &#039;blogsatbaruch&#039; )
		),
		&#039;VC View&#039; =&gt; array (
			&#039;url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/vcview.jpg&quot;,
			&#039;thumbnail_url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/vcview-thumbnail.jpg&quot;,
			&#039;description&#039; =&gt; __( &#039;View from VC&#039;, &#039;blogsatbaruch&#039; )
		),
		&#039;Windows&#039; =&gt; array (
			&#039;url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/windows.jpg&quot;,
			&#039;thumbnail_url&#039; =&gt; &quot;$blogsatbaruch_dir/images/headers/windows-thumbnail.jpg&quot;,
			&#039;description&#039; =&gt; __( &#039;Windows&#039;, &#039;blogsatbaruch&#039; )
		),

	));
}

function remove_twenty_ten_headers(){
	unregister_default_headers( array(
		&#039;berries&#039;,
		&#039;cherryblossom&#039;,
		&#039;concave&#039;,
		&#039;fern&#039;,
		&#039;forestfloor&#039;,
		&#039;inkwell&#039;,
		&#039;path&#039; ,
		&#039;sunset&#039;)
	);
}

add_action( &#039;after_setup_theme&#039;, &#039;remove_twenty_ten_headers&#039;, 11 );
</pre>
<p>And here&#8217;s what it looks like:</p>
<p><a href="http://lukewaltzer.com/wp-content/uploads/2010/08/Screen-shot-2010-08-19-at-4.11.11-PM.png"><img class="size-large wp-image-1338 alignnone" style="margin: 10px;" title="Screen shot 2010-08-19 at 4.11.11 PM" src="http://lukewaltzer.com/wp-content/uploads/2010/08/Screen-shot-2010-08-19-at-4.11.11-PM-1024x784.png" alt="" width="491" height="376" /></a></p>
<p>This new theme is sharper than what previously loaded, and TwentyTen is customizable enough that I think a lot of our users will just keep it as their primary theme.</p>
<h3><span style="text-decoration: underline;"><span style="text-decoration: underline;"><span style="text-decoration: underline;"><span style="text-decoration: underline;">Bye Bye Userthemes</span></span></span></span></h3>
<p>Finally, I&#8217;ve done away Userthemes on Blogs@Baruch. The last two WP upgrades have required hacks to keep the plugin only half-working (I&#8217;ve never been able to turn off Userthemes on blogs&#8230; once you go Userthemes you&#8217;ll never go back!). It&#8217;s such an important part of what we do on the system that I wanted to cease relying on such an unstable plugin. Instead, with <a title="Harbison" href="http://en.wikipedia.org/wiki/Superman">Tom Harbison&#8217;s</a> help, we copied all of our custom themes into the theme library and renamed their folders to the site id for which they were intended. We didn&#8217;t activate these themes site wide, but rather went one by one through the blogs, editing the template, stylesheet, and theme settings for each. Not the perfect solution, but it feels more stable than relying on Userthemes.</p>
<p>Those are the hacks that I remember. I&#8217;m sure there are a few that I missed.</p>
<p>If you&#8217;d like to take a look at the child themes, here they are: <a href="http://lukewaltzer.com/wp-content/uploads/2010/08/blogsatbaruchbp.zip">Blogs at Baruch BP (child of bp-default)</a> <a href="http://lukewaltzer.com/wp-content/uploads/2010/08/blogsatbaruchbp.zip"></a>and <a href="http://lukewaltzer.com/wp-content/uploads/2010/08/blogsatbaruch.zip">Blogs at Baruch (child of TwentyTen)</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/blogs-at-baruch-now-with-buddypress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Path to Blogs@Baruch</title>
		<link>http://lukewaltzer.com/the-path-to-blogsbaruch/</link>
		<comments>http://lukewaltzer.com/the-path-to-blogsbaruch/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 15:42:44 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[alt-ac]]></category>
		<category><![CDATA[edtech]]></category>
		<category><![CDATA[higher-ed]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1245</guid>
		<description><![CDATA[photo credit: Ian Sane™ Jim Groom and Brian Lamb recently asked me and some of my fellow CUNYs to reflect on how we&#8217;ve &#8220;designed or conceptualized&#8221; the publishing platforms we oversee, with a focus on the role of networked collaboration in public higher education. The question is a big one, and it spurred me to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="“The road of life twists and turns and no two directions are ever the same. Yet our lessons come from the journey, not the destination.” - Don Williams, Jr." href="http://www.flickr.com/photos/31246066@N04/4719290483/" target="_blank"><img src="http://farm5.static.flickr.com/4066/4719290483_de089f9c2c.jpg" border="0" alt="“The road of life twists and turns and no two directions are ever the same. Yet our lessons come from the journey, not the destination.” - Don Williams, Jr." /></a><br />
<small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://lukewaltzer.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="Ian Sane™" href="http://www.flickr.com/photos/31246066@N04/4719290483/" target="_blank">Ian Sane™</a></small></p>
<p><a href="http://bavatuesdays.com/">Jim Groom</a> and <a href="http://blogs.ubc.ca/brian/">Brian Lamb</a> recently asked me and some of my fellow CUNYs to reflect on how we&#8217;ve &#8220;designed or conceptualized&#8221; the publishing platforms we oversee, with a focus on the role of networked collaboration in public higher education. The question is a big one, and it spurred me to think about the roots of my work as an educational technologist, an <a title="#alt-ac" href="http://nowviskie.org/2010/alt-ac/">#alt-ac</a> that emerged for me rather incidentally out of the work I was doing while training to become a historian at the CUNY Graduate Center, and which has led to <a href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a>.</p>
<p>See, a myth is out there that one day the Reverend Jim Groom wandered into the University of Mary Washington from the wilds and revolutionized open source university-based personal publishing when he launched <a href="http://umwblogs.org">UMWBlogs</a> in 2007. But this is only part of the story. Jim cut his teeth as an educational technologist in the same accidental way I did; we were both graduate students preparing for traditional academic careers. Our paths converged in 2004 when we met as Instructional Technology Fellows at the CUNY Honors College (which is now the <a href="http://macaulay.cuny.edu/">Macaulay Honors College</a>). I had already worked for four years at the <a href="http://ashp.cuny.edu/new-media-lab/">New Media Lab</a>, with the <a href="http://ashp.cuny.edu/">American Social History Project/Center for Media and Learning</a>, building <a href="http://www.virtualny.cuny.edu/">Virtual New York City</a>, and had taught history at Baruch. My work with ASHP taught me much about collaboration and the power and necessity of networks when doing new kinds of intellectual work in a discipline, and my teaching at Baruch had introduced me to the challenges and rewards of teaching at a public institution with an incredibly diverse and unique student body. Even before doing work as an instructional technologist, then, I had learned the catalytic value of connective networks and the pedagogical rewards of working in a &#8220;non-traditional&#8221; classroom setting.</p>
<p>As ITFs (a group of graduate students who are now overseen by the great <a title="Joe Ugoretz" href="http://prestidigitation.commons.gc.cuny.edu/">Joseph Ugoretz</a>, who unfortunately came on-board after Jim and I had moved on) our job was to work with faculty members who were teaching in the College&#8217;s core curriculum to make smart use of the laptops every student was given by integrating technology into pedagogy and cross-campus events. As Fellows, we met every couple of weeks to discuss our work and share ideas, and while many Fellows saw these meetings as a burdensome distraction from their much more important doctoral work, I always saw in them an opportunity to think collaboratively through methods and pedagogies that were in circulation but were not very present throughout much of CUNY. Those exchanges with Jim, <a title="Zach Davis" href="http://castironcoding.com/about-us/meet-cast-iron-coding/index.html">Zach Davis</a>, <a href="http://gc-cuny.academia.edu/JeffDrouin">Jeff Drouin</a>, <a title="Wendy Williams" href="http://cac.ophony.org/author/wendy/">Wendy Williams</a>, <a href="http://www.emilypugh.com/index.html">Emily Pugh</a> and others were very much the foundation of the work I&#8217;m now doing. They helped shape my sense that teaching with technology was about exploring and embracing new possibilities rather than reinforcing existing structures. They showed me that there was as much to learn from breaking down and reflecting upon the processes by which we produce knowledge as there was in using technology to engage deeply with content. They sharpened my understanding of experiential learning, and got me to focus more on nurturing sustained engagement than meeting the heavy coverage that&#8217;s always expected of teachers of history. They also taught me that doing this kind of work while in constant conversation with others is really the only way to do it, for if you&#8217;re doing it right you should be raising more questions than you&#8217;re answering. Many spaces in higher education &#8212; especially those that revolve around making sense and use of new technologies &#8212; would benefit from increased dialogue, reflection, and collaboration. Being part of a network that exists within and beyond our home institutions foregrounds those qualities in our work.</p>
<p>I remember the specific ITF meeting in Spring 2005 where Jim shared a maps project he had done on WordPress with a class at Hunter College, and excitedly riffed on the pedagogical possibilities of self-publishing on the open web. It wasn&#8217;t until that Summer when I started to play with WordPress on my own that I saw what had gotten him so excited. I&#8217;ve mused before that the edtech revolution started not in the classroom, but in the baby blogosphere. In February 2005, Zach Davis and his wife launched a blog (using Movable Type, if I recall correctly) about their young daughter; in March 2005, Jim and <a href="http://twitter.com/mikhailg">Mikhail Gershovich</a> launched blogs to document the lives of their young sons; I followed suit a couple of months later with my own baby blog. I can&#8217;t speak for the other blogfathers, but in my case blogging about my child served multiple purposes: it was a needed distraction from my dissertation research that also pleased far-away grandparents; it spurred me to explore presenting a wide range of media online; and it lulled me into my first tentative steps towards real hacking. I knew HTML and CSS and had built sites using Dreamweaver and Fireworks and Flash, but I was no hacker and was never much interested in code. But by blogging and making movies and art about my child I came to see more clearly the power of the lowered barriers to self-publishing provided by a software like WordPress. And that I was doing this in concert with other like-minded academic geek dads made me feel as though my efforts were part of some larger trajectory.</p>
<p>By Fall 2005, I was ready to roll WordPress into my support for courses. I had worked for two years with a faculty member, Roz Bernstein, whose pedagogy was proto-edupunk in that she always required her students, after studying a particular art form, to produce work of their own in that form. We had previously done a project where students crafted PowerPoint presentations inspired by the movie <em><a href="http://en.wikipedia.org/wiki/Capturing_the_Friedmans">Capturing the Friedmans</a></em> about their own families, and the students had come up with some fantastic creative work (work that I still use today to challenge arguments that there&#8217;s no such thing as a good PowerPoint). So when her students were studying collage, they were tasked with making collages of their own and to write about their creations. We scanned the collages and shared them along with the notes via a <a href="http://collage.sahawaltzer.org/">WordPress blog</a>. This process opened up second and third layers of dialogue, as students commented on each others&#8217; work asynchronously and then reflected upon the process in classroom discussions (including a memorable discussion of what was gained and loss by the process of digitization). I&#8217;ve often said that Baruch students are among the most interesting college students in the world, and none of them realize this. Their stories are so rich and varied that assignments which urge them to mine their pasts to find the raw materials with which to create and reflect are invariably rewarding. Maker assignments done here that encourage students to bring what they already know to what they&#8217;re learning are successful time and time again.</p>
<p>After a few additional projects at the Honors College I joined the <a title="BLSCI" href="http://faculty.baruch.cuny.edu/blsci">Bernard L. Schwartz Communication Institute</a> in 2006 as a CUNY Writing Fellow. Mikhail, the Director of the Institute (who I had first learned of through his baby blog), wanted to bolster support for &#8220;computer-mediated instruction,&#8221; and had talked me into leaving the Honors College. The opportunity to see what could be accomplished with these tools in a non-honors setting appealed to me, as did the opportunity to get experience with WAC/WID theory. Finally, I was interested in seeing if we could expand support for open-source applications at the College. Mikhail gave me the freedom to develop some faculty development initiatives around teaching with blogs, and we ultimately supported 10-12 different course blogs per semester (on single installations of WordPress) between Fall 2006 and Spring 2008. We worked with English, Law, Sociology, Anthropology, and Journalism course, and we did everything from small, project-based assignments, to research paper scaffolding, to collaborative research using a wiki, to creating a news blog of student reporting about New York. And I started blogging about my work at <a title="Cac.ophony.org" href="http://cac.ophony.org/">Cac.ophony.org</a>.</p>
<p>Those two years of work as a Writing Fellow, while I was finishing my dissertation, really drove home the extent to which we were working on something that was new to our campus and University, something that was needed because it connected the intellectual/academic work that students were doing in school with the digital literacy that they were developing only outside of the curriculum, and which they would need wherever their careers took them. I continued to stay in touch with Jim and learned from the way he distilled his network through a political and pedagogical prism to which I was sympathetic, a perspective which had in-part been forged by professional experiences at CUNY supporting teaching, learning, and scholarship with technology. I followed with great interest as his experimentation led to UMWBlogs, and discussed with Mikhail the opportunity to systematize and scale up what we had been doing up until then only on a piecemeal basis.</p>
<p>Blogs@Baruch evolved out of these discussions, and has very much depended upon the interplay between a broader network of teachers, learners and scholars out on the interwebs and the unique community we continue to engage with at Baruch College. A significant part of my job is to mediate this interplay, to bring ideas and inspiration mined from my expanding network and to try find a place for them within the curriculum at Baruch, and to then to share back my reflections on the results. We&#8217;re getting ready to roll<a href="http://buddypress.org/"> BuddyPress</a> out on Blogs@Baruch this Fall. Our goal in doing so is to congeal a platform that already has more than 4000 users into an academic publishing network. We hope doing this will make more explicit the fundamental fact that what&#8217;s happening on small corners of our system is connected both to other developments around this school and around CUNY, and also to a broader community within higher education of people finding their footing on the open web, and using that footing to launch themselves forward. Baruch students and faculty have much to learn from these connections, and also much to give.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/the-path-to-blogsbaruch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Slouching Towards BuddyPress</title>
		<link>http://lukewaltzer.com/slouching-towards-buddypress/</link>
		<comments>http://lukewaltzer.com/slouching-towards-buddypress/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 21:01:49 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[edtech]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[wpmued]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1235</guid>
		<description><![CDATA[photo credit: waferboard I&#8217;m preparing to roll BuddyPress out on Blogs@Baruch later this month, and I&#8217;ve grown a little concerned about the implications of doing so. I thought I&#8217;d write up some of my concerns and see if the Internets has anything wise to say about them. Our goal in using BuddyPress is to try [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="planet of the apes" href="http://www.flickr.com/photos/60944931@N00/4437821659/" target="_blank"><img src="http://farm3.static.flickr.com/2776/4437821659_9f4f85c919.jpg" border="0" alt="planet of the apes" /></a><br />
<small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://lukewaltzer.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="waferboard" href="http://www.flickr.com/photos/60944931@N00/4437821659/" target="_blank">waferboard</a></small></p>
<p>I&#8217;m preparing to roll <a href="http://buddypress.org/">BuddyPress</a> out on <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a> later this month, and I&#8217;ve grown a little concerned about the implications of doing so. I thought I&#8217;d write up some of my concerns and see if the Internets has anything wise to say about them.</p>
<p>Our goal in using BuddyPress is to try to draw out and congeal an academic publishing network out of the various work that&#8217;s being done across the system.  We hope to give students a platform to track their work over their careers at the College, to make connections with students with similar interests, and to cultivate a profile in a space they&#8217;re somewhat familiar with that we can support and that they can build as they desire. But I&#8217;m anxious about a few things.</p>
<p>First, we already have more than four thousand users on Blogs@Baruch, and the vast majority of those accounts were created for course-based blogging. I&#8217;m uneasy about turning on profile pages for users who never used the system for that purpose, without their knowledge. My current plan is to send an email out to all users when we turn on BP with instructions about granular control of profile pages. But, as far as I know, that control can only be so granular: with <a title="BuddyPress Profile Privacy" href="http://wordpress.org/extend/plugins/bp-profile-privacy/">BuddyPress Profile Privacy</a> you can set privacy on a field-by-field basis, but you can&#8217;t lock a whole profile page down. I&#8217;m hoping Jeff Sayre&#8217;s Privacy Component, <a href="http://buddypress.org/community/groups/creating-extending/forum/topic/privacy-component-where-is-it/?topic_page=3&amp;num=15">which apparently is nearing a second beta</a>, can help solve this problem. We&#8217;ll be registering incoming first year students for <a title="FRO" href="http://blsciblogs.baruch.cuny.edu/fro/">Freshman Seminar</a> and instructing them on how to use the system beginning in August, and we&#8217;ll keep Profile pages set to &#8220;open&#8221; for new users from that point forward (we&#8217;ll be updating our woeful <a title="TOS" href="http://blsciblogs.baruch.cuny.edu/about-blogsbaruch/terms-of-service/">Terms of Service</a> as well).  I think it might make sense though to lock-down already existing accounts and outreach to those users with details about BuddyPress&#8217;s purpose and instructions on how to manage their profile privacy. I&#8217;m uncertain about this, though, both the ethics and how I&#8217;d manage this technically.</p>
<p>Second, I&#8217;d like for the primary engine of Blogs@Baruch to continue to be course-based blogging. BuddyPress, however, elevates the social networking function to equivalence with the blogging functionality of a WP-MS installation. We&#8217;re not building ePortfolios like our friends at <a href="http://macaulay.cuny.edu/eportfolios/">Macaulay</a> and don&#8217;t have the resources to closely support the development of profiles on a system as big as ours. And I certainly want to avoid the creepy treehouse factor, which is an issue with incoming Freshman.  I just want students to use BuddyPress@Baruch to connect with each other around interests and academic work. So there are a few spots where I&#8217;d like to make some choices or changes that could nurture that understanding; for instance, I don&#8217;t think I&#8217;ll have a link to the members directory from the front page (but have it publicly accessible via internal links); I&#8217;ll hide the BuddyPress admin bar for logged out users; and, I&#8217;d like to hack BuddyPress so that upon log in, instead of landing at the front page of the home blog, users land at the Dashboard for their primary blog. Any other ideas?</p>
<p>Third, I have to revisit our registration process. In most classes, we use <a href="http://www.dagondesign.com/articles/import-users-plugin-for-wordpress/">DDImportUsers</a> to bulk register new users. Our most technologically capable faculty members can handle the intimidating two-step of a &#8220;self-registration&#8221; and the addition of Andre Malan&#8217;s <a title="Andre Malan Add User" href="http://andremalan.net/blog/2008/03/31/add-user-widget/">&#8220;Add User to Blog&#8221;</a> widget. Now, with BuddyPress functionality turned on, registration <em>can</em> become more complicated and require more information, which is fine for self-registering users but potentially problematic for those who are bulk-added. The bulk process also only creates new accounts, which I&#8217;ve been struggling with for some time; existing users need to be added to new sites individually, and to do so you need both a username and an email address (if I had my druthers, the DDImportUsers plugin would be able to check a list of newusernames|newemailaddress against the user_email field in the wp_users table and if a email address exists, add the user with that address to the individual site… and then to go on to register all the new users).</p>
<p>As the system grows, this is becoming a bigger problem since every semester a higher percentage of Baruch students have accounts on the system and find their way into new classes that use it. In an older version of WPMu you were able to add users to individual blogs simply with an email address, which was preferable because the cross-referencing is a pain. But that pain is balanced on the other side by the agita that would be caused if nervous first-time blogfessors are made to manage a multi-step registration process. In the past, I&#8217;ve taken the pain on in exchange for the benefit of drawing more users onto the system, and it&#8217;s been a good trade. I&#8217;m not sure yet how BuddyPress fits into this equation and how it will impact my overarching goal of easing the registration process, but wanted to get the issue out there. In the long term we&#8217;re looking at LDAP integration, but we&#8217;re not there yet. One solution is <a href="http://wordpress.org/extend/plugins/bp-groupblog/">BP Group Blogs</a>; but that creates additional steps in the registration process and we still want to make things as sleek and streamlined as possible.</p>
<p>These are my concerns for now, and I&#8217;m sure there&#8217;ll be more to come… any feedback, questions, and exchanges from out there in the wild are welcome and greatly appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/slouching-towards-buddypress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>What a Difference&#8230;</title>
		<link>http://lukewaltzer.com/what-a-difference/</link>
		<comments>http://lukewaltzer.com/what-a-difference/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 01:23:38 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Parenting]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1216</guid>
		<description><![CDATA[My little girl finished kindergarten today. Here she was on her first day: And here she is today: The difference in her face is striking to me; it&#8217;s like a year of school has swapped out her babyness and replaced it with, I don&#8217;t know&#8230; wisdom? Knowing? I mean, yes, she&#8217;s like 15% older than [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="150" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="window" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="hostname=cowbell.grooveshark.com&amp;widgetID=21618310&amp;style=metal&amp;bbg=000000&amp;bfg=666666&amp;bt=FFFFFF&amp;bth=000000&amp;pbg=FFFFFF&amp;pbgh=666666&amp;pfg=000000&amp;pfgh=FFFFFF&amp;si=FFFFFF&amp;lbg=FFFFFF&amp;lbgh=666666&amp;lfg=000000&amp;lfgh=FFFFFF&amp;sb=FFFFFF&amp;sbh=666666&amp;p=0" /><param name="src" value="http://listen.grooveshark.com/widget.swf" /><embed type="application/x-shockwave-flash" width="550" height="150" src="http://listen.grooveshark.com/widget.swf" flashvars="hostname=cowbell.grooveshark.com&amp;widgetID=21618310&amp;style=metal&amp;bbg=000000&amp;bfg=666666&amp;bt=FFFFFF&amp;bth=000000&amp;pbg=FFFFFF&amp;pbgh=666666&amp;pfg=000000&amp;pfgh=FFFFFF&amp;si=FFFFFF&amp;lbg=FFFFFF&amp;lbgh=666666&amp;lfg=000000&amp;lfgh=FFFFFF&amp;sb=FFFFFF&amp;sbh=666666&amp;p=0" allowscriptaccess="always" wmode="window"></embed></object></p>
<p>My little girl finished kindergarten today.</p>
<p>Here she was on her first day:</p>
<p style="text-align: center;"><a href="http://lukewaltzer.com/wp-content/uploads/2010/06/beginning-e1277342194312.jpg"><img class="aligncenter size-large wp-image-1217" title="beginning" src="http://lukewaltzer.com/wp-content/uploads/2010/06/beginning-e1277343300688-1024x724.jpg" alt="" width="553" height="391" /></a></p>
<p style="text-align: left;">And here she is today:<a href="http://lukewaltzer.com/wp-content/uploads/2010/06/end.jpg"><img class="aligncenter size-full wp-image-1218" title="end" src="http://lukewaltzer.com/wp-content/uploads/2010/06/end-e1277343368329.jpg" alt="" width="543" height="249" /></a></p>
<p style="text-align: left;">The difference in her face is striking to me; it&#8217;s like a year of school has swapped out her babyness and replaced it with, I don&#8217;t know&#8230; wisdom? Knowing? I mean, yes, she&#8217;s like 15% older than when we took the first picture&#8230; but she looks like she&#8217;s <em>aged</em>.</p>
<p style="text-align: left;">I have a <a href="http://lukewaltzer.com/the-scariest-story-ever-or-the-tyranny-of-taxomony/">mixture of emotions</a> about her experience and her school and the place we&#8217;ve chosen to call home. And she can be incredibly difficult for her mother and myself to deal with to such an extent that I quiver when I think about what awaits us in her teenage years. But I&#8217;m unequivocally proud of what a good, eager and curious learner she is, and more than anything in my life I love watching that take shape. The other day she said to her mom, &#8220;isn&#8217;t it kind of sad when you finish a book?&#8221;  I can&#8217;t think of another phrase I&#8217;d more wish my six year-old to say.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/what-a-difference/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>I Love David Simon, But&#8230;</title>
		<link>http://lukewaltzer.com/i-love-david-simon-but/</link>
		<comments>http://lukewaltzer.com/i-love-david-simon-but/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 16:02:08 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Musings]]></category>
		<category><![CDATA[David-Simon]]></category>
		<category><![CDATA[thewire]]></category>
		<category><![CDATA[Treme]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1139</guid>
		<description><![CDATA[David Simon can&#8217;t seem to open his mouth without revealing what a prick he is, and how proud he is of his eminent prickitude. Let&#8217;s stipulate that he&#8217;s made brilliant television, and to a certain extent I agree with the words of Steve Brier: &#8220;I abide arrogance in people who have something to be arrogant [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/David_Simon">David Simon</a> can&#8217;t seem to open his mouth without revealing what a prick he is, and how proud he is of his eminent prickitude. Let&#8217;s stipulate that he&#8217;s made brilliant television, and to a certain extent I agree with the <a href="http://twitter.com/stevebrier/status/16771914800">words of Steve Brier</a>: &#8220;I abide arrogance in people who have something to be arrogant about.&#8221; I proselytize about <em>The Wire</em> to no end, and I&#8217;ll follow his career and devour everything he does.</p>
<p>But he&#8217;s got two obnoxious beefs that run through his work that I&#8217;d like to highlight: he hates New York and he has disdain for people who watch television. Of course these statements are overdrawn, but only because Simon overdrew them first himself. Here&#8217;s a clip from a talk he gave a couple of years ago at Eugene Lang College at the New School:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/D3Yh2NJWQ1s&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/D3Yh2NJWQ1s&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<blockquote><p>There is no city more vain about its position in popular culture, more indifferent to other realities, more self-absorbed than New York City&#8230;. You guys think you know urban America, you don&#8217;t know shit anymore.</p></blockquote>
<p>Granted this is a rant and certain allowances must be made for imprecise language, but it&#8217;s still surprising to see someone who has done some of the most humanistic work in contemporary culture speak of a city as though it itself has the uniquely human qualities of vanity, indifference, and self-absorption, and then to proceed to correlate the development of these qualities with the extent of crime and suffering currently in the city. If he were to argue that New Yorkers were exceedingly provincial, I&#8217;d agree with him. If he were to argue that the national media is New York-centric, and that this is because of all the money that flows through Manhattan, and that this reality informs stories that do and do not get funded and told, he&#8217;d get no argument from me. But that&#8217;s not what he&#8217;s arguing in the clip above, or in this excerpt from an <a href="http://www.hitfix.com/blogs/whats-alan-watching/posts/interview-treme-co-creator-david-simon-post-mortems-season-one">interview he did with Alan Sepinwall</a> comparing New Yorkers&#8217; reaction in the aftermath of 9/11 to the perspective of New Orleanians after Katrina:</p>
<blockquote><p>Although who isn&#8217;t self-absorbed when their town has a near-death experience? Were New Yorkers not talking about 9/11 for years afterwards? Was it not a subject of intense discussion and self-awareness? Did New Yorkers not sound to outsiders self-absorbed and preachy when they spoke of 9/11? The sense of entitlement that New Yorkers feel and that they&#8217;re not willing to grant to someone else who&#8217;s had a life-changing experience is really remarkable. But that&#8217;s the nature of empathy: it only goes so far.</p></blockquote>
<p>Simon starts this bit off sympathetic to those whose city has been through trauma, but can&#8217;t help himself from throwing a dig in against &#8220;New Yorkers&#8221; and their &#8220;sense of entitlement.&#8221; Fact is, the vast majority of New Yorkers I know who were here on 9/11 wanted immediately to find ways to both remember what happened on that day and get on with the normalcy of their lives. Thought it&#8217;s an unscientific claim, I&#8217;d bet that as much of all that &#8220;never forget&#8221; stuff came from outside the city as from the city&#8217;s citizens; New York has no singular claim on 9/11 fetishism.  Simon seems to be arguing that New York&#8217;s location at the center of American economic and cultural power not only crowd out other stories but also delegitimize to a certain extent the stories and voices that do come out of the city. This perspective flattens and ignores the extent to which human and social conflict propels this city forward just like it does any other city, and it does absolutely nothing to help bring stories from other locales to light (perhaps besides fuel Simon&#8217;s considerable intellectual fire).</p>
<p>Simon&#8217;s beef about New York in <em><a href="http://hbo.com/treme">Treme</a> </em>flows in-part from his sense that New Orleans didn&#8217;t get the national love that New York did after Katrina, and this argument filters into the perspectives of Creighton &#8220;Fuck You You Fucking Fucks&#8221; Bernettte and Davis &#8220;This Can&#8217;t Happen in New York&#8221; McAlary as well as the intense parochialism exhibited by many of the characters on the show. It also leads to groan-inducing expository lines like the one delivered by Annie&#8217;s friend in <a href="http://en.wikipedia.org/wiki/List_of_Treme_episodes#Season_1">Episode 9 of <em>Treme</em></a> when Annie leaves Sonny, her boyfriend and musical partner: &#8220;Fucking is fucking, but music? That&#8217;s personal.&#8221;  In New Orleans, such a perspective is to be celebrated because the music, food and culture are wonderful and bohemian and largely uncapitalized, the city&#8217;s people have been shat upon for generations by government and corporations, and not many people outside the city &#8220;get it.&#8221; In New Orleans, other rules prevail. In New York, if you&#8217;re a New Orleans-bred trumpeter like <a href="http://www.hbo.com/treme/cast-and-crew/delmond-lambreaux/index.html">Delmond Lambreaux</a>, you seem like a turkey paralyzed by an Oedipal complex if you explore music beyond that which is at your roots.</p>
<p>Simon is even more disdainful of television watchers than he is of New Yorkers. He begins his interview with Alan Sepinwall, who has been among the best chroniclers of both <a href="http://sepinwall.blogspot.com/search/label/The%20Wire"><em>The Wire</em></a> and <a href="http://www.hitfix.com/site/search?q=Treme"><em>Treme</em></a>, by insulting him. Sepinwall asked Simon what he was hoping to accomplish with the flashback scene that occurs in the season finale of Treme, and Simon snaps &#8220;it&#8217;s kind of self-evident, isn&#8217;t it?&#8221; before defending the choice from a critique that the interviewer doesn&#8217;t level. Simon adds:</p>
<blockquote><p>So it&#8217;s kind of frustrating, for people trying to blog the show each week like yourself, people trying to comment on it or to anticipate the storyline, to debate the filmmaker&#8217;s choices. But it&#8217;s a no-win situation. We wouldn&#8217;t want to have people not discussing the show, but at the same time, you can&#8217;t take the discussion seriously until everyone gets to the end. At the end, people can reflect on what they&#8217;ve seen, and whether it added up&#8230;. I&#8217;ve come to realize that the only commentary I can take seriously are people who react to what&#8217;s on screen and how that reflects on the reality they know. That&#8217;s the only biofeedback that matters to me.. All the feedback of, &#8220;I wish the show would be this, I wish the show would be more of this, I wish this character had less to do, I wish this character had more to do,&#8221; that&#8217;s of no use. It&#8217;s of no use because we&#8217;ve already finished production, but on a more philosophical level, it&#8217;s of no use. Choices have been made based on the last half hour of film. Every season of &#8216;The Wire&#8217; built to the last half hour, to the endings. This is my seventh time of having the initial reaction to our storylines be, &#8220;I don&#8217;t understand where they&#8217;re going. Why do they have this? This doesn&#8217;t make sense to me. I don&#8217;t like this character.&#8221; If you go back and watch the first episode of any season of &#8220;The Wire,&#8221; or the first episode of &#8220;Treme&#8221; or &#8220;Generation Kill,&#8221; knowing the ending, the choices will be entirely reasonable as a first chapter of something that is novelistic. If you experience it only as something that&#8217;s an episodic entity unto itself, I can&#8217;t answer that, because I don&#8217;t really think about that. I&#8217;m not irate about it, I just can&#8217;t take it seriously.</p></blockquote>
<p>So, this is effectively a rant against the consideration as episodes of blocks of television that are constructed and presented as unique entities once a week, with beginning and ending credits, and an assertion that you really can&#8217;t say much of value about the arc of a season or a series or a character until you first see all that the &#8220;filmmakers&#8221; have to say. That&#8217;s just idiotic, and flies directly in the face of Simon&#8217;s own claims that the art he produces will not allow fundamental human truths to be distorted by the restrictions of form.</p>
<p>Simon acknowledges in the interview that there is space for criticism and discussion of his work, yet he repeatedly detours any question Sepinwall asks about arc and plot and characters and choices that might lead to some reflection and introspection about human nature into rants about how most viewers and critics are brainwashed by tv so deeply that we don&#8217;t really know how to watch a show like this:</p>
<blockquote><p>I don&#8217;t mind if a character is selfish or insecure. I just don&#8217;t need all my characters to be winning. And in the same way that people often miscalculate or fail to acknowledge the equivocation between high-stakes and plot itself, I think people generally mistake their dislike of a character as poor acting.</p></blockquote>
<p>Simon has, over the years, become ever more certain that he knows The Truth and that there&#8217;s a pretty good chance that you and I do not. Much like Creighton Bernette, who we see once in the classroom and learn immediately that he is a pretty crappy teacher, Simon is much more interested in polemic than in dialogue. His polemics are smart, interesting, entertaining and often right-on.  But they&#8217;re also becoming gradually more obnoxious in how they proclaim Simon&#8217;s single perspective and urinate upon all others. This approach informed some of the fifth season of <em>The Wire</em>, which centered around a fairly simplistic and nostalgic rant about the demise of newspapers. And it&#8217;s present periodically in <em>Treme</em>, a show I love, but one whose perspective is represented by a title that doesn&#8217;t sport an accent mark even though it&#8217;s sometimes spelled with one.  If you don&#8217;t know how to pronounce Treme and aren&#8217;t sufficiently motivated to get it right, what you think doesn&#8217;t really matter.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/i-love-david-simon-but/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Where the Control At?</title>
		<link>http://lukewaltzer.com/where-the-control-at/</link>
		<comments>http://lukewaltzer.com/where-the-control-at/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 02:14:46 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[wc2010]]></category>
		<category><![CDATA[worldcup]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1123</guid>
		<description><![CDATA[photo credit: Eustaquio Santimano Right up there with the complaints about the vuvuzelas at the 2010 World Cup has been tsuris about the Adidas &#8220;Jabulani&#8221; ball, which was made specifically for this event. Every four years goalies complain about the new World Cup match balls, which have consistently been made to fly faster and to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="Jabulani Ball" href="http://www.flickr.com/photos/25509772@N00/4695257331/" target="_blank"><img src="http://farm5.static.flickr.com/4048/4695257331_a71441326c.jpg" border="0" alt="Jabulani Ball" /></a><br />
<small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://lukewaltzer.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="Eustaquio Santimano" href="http://www.flickr.com/photos/25509772@N00/4695257331/" target="_blank">Eustaquio Santimano</a></small></p>
<p>Right up there with the complaints about the <em>vuvuzelas </em>at the 2010 World Cup has been <em><a title="Jabulani news" href="http://www.google.com/search?hl=en&#038;client=firefox-a&#038;hs=jPP&#038;rls=org.mozilla%3Aen-US%3Aofficial&#038;tbs=nws%3A1&#038;q=jabulani+ball&#038;aq=f&#038;aqi=g1g-z1&#038;aql=&#038;oq=&#038;gs_rfai=">tsuris</a></em> about the Adidas &#8220;<a title="Jabulani" href="http://www.fifa.com/worldcup/news/newsid=1143498/index.html">Jabulani</a>&#8221; ball, which was made specifically for this event. Every four years goalies complain about the new World Cup match balls, which have consistently been made to fly faster and to swerve more severely.  Glen Levy quotes Cote D&#8217;Ivoire coach Sven-Goran Erikkson as saying FIFA should heed the concerns of keepers and field players, yet Levy ultimately concludes that the concern <a href="http://specials.blogs.time.com/2010/06/16/not-exactly-having-a-ball/?xid=rss-topstories">is nothing</a>: the low scoring is due to playing at altitude and to overly-defensive strategies.</p>
<p>I&#8217;m not so sure. The ball seems to be affecting offensive play more significantly than defensive play. From the opening match the ball looked to me as though it was coming upon players more quickly than they expected, and that passes were outpacing recipients more than what I&#8217;m used to seeing in the football I watch. Goalies were concerned that shots taken from distance would dip and dive and move about unpredictably; but few shots from outside the box even seem to be finding the target.</p>
<p>I decided to crunch some numbers to see if there was any data to support what I thought I was seeing with my eyes. I&#8217;m no <a href="http://www.fivethirtyeight.com/">Nate Silver</a>, though I did stay in a Holiday Inn Express last night. I compared selected ball control <a href="http://www.fifa.com/worldcup/statistics/matches/passes.html">stats from the first sixteen games of this year&#8217;s Cup</a> with those from the <a href="http://www.fifa.com/confederationscup/statistics/matches/passes.html">sixteen matches in 2009&#8242;s Confederation&#8217;s Cup</a>.</p>
<p>The results were pretty striking:</p>
<p><strong><span style="text-decoration: underline;">Total Passes Completed</span></strong><br />
2009: 73.7%<br />
2010: 70.5%</p>
<p><strong><span style="text-decoration: underline;">Short Passes Completed</span></strong><br />
2009: 74.8%<br />
2010: 73.6%</p>
<p><strong><span style="text-decoration: underline;">Medium Passes Completed</span></strong><br />
2009: 77.7%<br />
2010: 77.4%</p>
<p><strong><span style="text-decoration: underline;">Long Passes Completed</span></strong><br />
2009:<strong><span style="text-decoration: underline;"> </span></strong>61%<br />
2010: 47.6%</p>
<p><strong><span style="text-decoration: underline;">Crosses Completed</span></strong><br />
2009: 34.3%<br />
2010: 18.8%</p>
<p><strong><span style="text-decoration: underline;">Corners Completed</span></strong><br />
2009: 62.5%<br />
2010: 40.6%</p>
<p>And, I also looked at shooting and scoring in <a href="http://www.fifa.com/confederationscup/statistics/matches/shots.html">2009</a> and <a href="http://www.fifa.com/worldcup/statistics/matches/shots.html">2010</a>.</p>
<p><strong><span style="text-decoration: underline;">Shots on Target</span></strong><br />
2009: 40.7%<br />
2010: 34.2%</p>
<p><strong><span style="text-decoration: underline;">Shots Wide</span></strong><br />
2009: 42.2%<br />
2010: 47.2%</p>
<p><span style="text-decoration: underline;"><strong>Goals</strong></span><br />
2009: 43<br />
2010: 27</p>
<p>In every one of these categories, control of the ball has been more fleeting in 2010 than 2009.  Specifically, you can see that long passes, crosses, and corners have been the most severely impacted plays, sporting the largest differentials from last year to this.</p>
<p>All 32 of the games considered were played in South Africa, so the altitude question is neutralized. I supposed that strategic differences between a 32 team tournament and an 8 team tournament could have some impact on these numbers, as might the pressure of playing in the World Cup. I&#8217;m nowhere near equipped to integrate these allowances into my analysis. Now, everyone plays with the same ball, so I don&#8217;t think there are any questions about whether or not this situation is &#8220;fair.&#8221; But what&#8217;s above certainly combines with what I&#8217;ve witnessed with my own eyes to lead me to conclude that the <em>Jabulani </em>is having a negative impact on the ability of field players to control the ball.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/where-the-control-at/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Viva los Vuvuzelas*</title>
		<link>http://lukewaltzer.com/viva-los-vuvuzelas/</link>
		<comments>http://lukewaltzer.com/viva-los-vuvuzelas/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 14:22:26 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[wc2010]]></category>
		<category><![CDATA[worldcup]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1101</guid>
		<description><![CDATA[When I was a youth soccer player growing up in Lansing, Michigan we used to regularly play against Eaton Rapids, a farming town about 20 miles outside the urban center. These were always tough games, mostly because the boys from Eaton Rapids were big and strong. Their squads were like little versions of the German [...]]]></description>
			<content:encoded><![CDATA[<p>When I was a youth soccer player growing up in Lansing, Michigan we used to regularly play against Eaton Rapids, a farming town about 20 miles outside the urban center. These were always tough games, mostly because the boys from Eaton Rapids were big and strong. Their squads were like little versions of the German national team, and this feeling was reinforced by the occasional racist taunts they hurled at our teams, which featured black and Latino players (and one Jew, me, who was often confused for a Puerto Rican).</p>
<p>But one of the most annoying things about playing Eaton Rapids was that their fans always brought these goddamn cowbells to the games, and would bang them throughout the match. I hated those cowbells, which came to mind this weekend amidst the furor against the <em><a href="http://en.wikipedia.org/wiki/Vuvuzela">vuvezelas</a> </em>that have blared and bleated throughout the first few days of the World Cup.  They&#8217;ve caused such an uproar that World Cup organizers were <a href="http://soccernet.espn.go.com/world-cup/story/_/id/796347/ce/uk/&amp;cc=5901?ver=us">considering banning them from matches</a>.</p>
<p style="text-align: center;"><a title="Vuvuzela" href="http://www.flickr.com/photos/56087830@N00/4698730731/" target="_blank"><img src="http://farm5.static.flickr.com/4050/4698730731_f83674cf0d.jpg" border="0" alt="Vuvuzela" /></a><br />
<small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://lukewaltzer.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="markhillary" href="http://www.flickr.com/photos/56087830@N00/4698730731/" target="_blank">markhillary</a></small></p>
<p>Any soccer fan who watched the <a href="http://en.wikipedia.org/wiki/2009_FIFA_Confederations_Cup">Confederation&#8217;s Cup</a> last year or who has watched South American soccer in the past 30 years will already be familiar with this noise, and discussions about whether or not they should be banned from the Cup have <a href="http://www.guardian.co.uk/football/blog/2009/jun/20/confederations-cup-world-cup-vuvuzela">been going on for a year</a>. My feelings? Get over it. I&#8217;d much rather the Black Eyed Peas and, especially, Bono and R. Kelly be banned from the Cup; the vuvuzelas are less annoying, and at least they have character and impart a local feeling to the goings on.  Who knows, maybe they even give African and South American squads that are used to hearing them an advantage, which I&#8217;m all for given that this is the first World Cup in Africa. That they give <a href="http://profootballtalk.nbcsports.com/2010/06/13/look-out-futbol-here-comes-football-1/">idiotic American cretins another thing to whine about</a> also seems an argument in their favor, doesn&#8217;t it?</p>
<p>If it annoys you, turn your sound down, go to a bar, or simply watch more matches. I&#8217;ve acclimated myself to them already, much more so than I ever did those goddamn Eaton Rapids cowbells.</p>
<p>Jason Gay offers an even heartier defense of the vuvezela <a href="http://online.wsj.com/article/SB10001424052748703389004575304783846077168.html">here</a>.</p>
<p>* Yes, I realize that &#8220;vuvezela&#8221; is not Spanish, but the alliteration was too alluring.</p>
<p>** <a href="http://twitter.com/the_vuvuzela">PS.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/viva-los-vuvuzelas/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>1 Day to the Cup</title>
		<link>http://lukewaltzer.com/1-day-to-the-cup/</link>
		<comments>http://lukewaltzer.com/1-day-to-the-cup/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 15:37:39 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[USMNT]]></category>
		<category><![CDATA[wc2010]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1075</guid>
		<description><![CDATA[As a certified lefty historian, I am well aware of the damage wrought by nationalism, and in almost all areas of my life I abhor the elevation of the group over the common bonds of humanity. But not when it comes to soccer. The confluence of my own past with the sport, America&#8217;s historic mediocrity [...]]]></description>
			<content:encoded><![CDATA[<p>As a certified lefty historian, I am well aware of the damage wrought by nationalism, and in almost all areas of my life I abhor the elevation of the group over the common bonds of humanity.</p>
<p>But not when it comes to soccer.</p>
<p>The confluence of my own past with the sport, America&#8217;s historic mediocrity on the pitch, and my religious conviction that sport fandom not only justifies but in fact <em>requires</em> a certain level of irrationality make me pull deeply for the <a href="http://www.ussoccer.com/">Yanks</a>.</p>
<p>We&#8217;re in our sixth straight World Cup after missing them for 40 years. Here&#8217;s a brief review of the past five performances.</p>
<p><a href="http://en.wikipedia.org/wiki/1990_FIFA_World_Cup"><span style="text-decoration: underline;"><strong>1990</strong></span></a></p>
<p>The US qualified for the 1990 World Cup on this goal by Paul Caligiuri at Trinidad &amp; Tobago:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/ymQ-fIwVnV8&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ymQ-fIwVnV8&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>They showed up in Italy with the youngest squad in the tournament, consisting almost entirely of recent college players. They lost all three games: 5-1 to <a title="Czechoslovakia national football team" href="http://en.wikipedia.org/wiki/Czechoslovakia_national_football_team">Czechoslovakia</a>, 1-0 to <a title="Italy national football team" href="http://en.wikipedia.org/wiki/Italy_national_football_team">Italy,</a> and 2-1 to <a title="Austria national football team" href="http://en.wikipedia.org/wiki/Austria_national_football_team">Austria</a>. The achievement of this tournament was merely reaching it, though the US did show well against Italy, and would have tied the game had <a href="http://en.wikipedia.org/wiki/Walter_Zenga">Walter Zenga</a> not stopped a <a href="http://en.wikipedia.org/wiki/Peter_Vermes">Peter Vermes</a> blast with his rear end.</p>
<p><a href="http://en.wikipedia.org/wiki/1994_FIFA_World_Cup"><strong>1994</strong></a></p>
<p>The US qualified as hosts of the 1994 World Cup, and I was lucky enough to see them play <a title="Switzerland national football team" href="http://en.wikipedia.org/wiki/Switzerland_national_football_team">Switzerland</a> in their opening match, which they tied 1-1 thanks to this goal by Eric Wynalda:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/MHtbb3yd9wM&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/MHtbb3yd9wM&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>In the second game, the US faced <a title="Colombia national football team" href="http://en.wikipedia.org/wiki/Colombia_national_football_team">Colombia</a>, who were fashionable picks that year to make a deep run behind <a title="Carlos Valderrama" href="http://en.wikipedia.org/wiki/Carlos_Valderrama">Carlos Valderrama</a> and <a title="Faustino Asprilla" href="http://en.wikipedia.org/wiki/Faustino_Asprilla">Faustino Asprilla</a>. The US shocked <em>Los Cafeteros</em>, behind this fateful own goal by <a title="Andrés Escobar" href="http://en.wikipedia.org/wiki/Andr%C3%A9s_Escobar">Andrés Escobar</a> (which led to his <a href="http://en.wikipedia.org/wiki/Andr%C3%A9s_Escobar#Death">murder</a> two weeks later): <a title="Andrés Escobar" href="http://en.wikipedia.org/wiki/Andr%C3%A9s_Escobar"></a></p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/MUW8wFOytiY&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/MUW8wFOytiY&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>And then this beauty of a game winner by <a title="Earnie Stewart" href="http://en.wikipedia.org/wiki/Earnie_Stewart">Earnie Stewart</a>:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/63XeH5q8aKM&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/63XeH5q8aKM&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The US slipped into the second round after losing their third match to <a title="Romania national football team" href="http://en.wikipedia.org/wiki/Romania_national_football_team">Romania</a>, and was rewarded with a match against mighty Brazil on July 4. Despite the fact that Brazil played the second half with ten men after <a title="Leonardo Araújo" href="http://en.wikipedia.org/wiki/Leonardo_Ara%C3%BAjo">Leonardo</a> fractured <a title="Tab Ramos" href="http://en.wikipedia.org/wiki/Tab_Ramos">Tab Ramos&#8217;</a> skull with this nasty elbow &#8211;</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/30rSHY9aFBI&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/30rSHY9aFBI&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>&#8211; the US couldn&#8217;t overcome <a title="Bebeto" href="http://en.wikipedia.org/wiki/Bebeto">Bebeto&#8217;s </a>second half tally and the Brazilian ball control, and fell to the eventual champions.</p>
<p>Getting out of the first round was unquestionable progress.</p>
<p><a href="http://en.wikipedia.org/wiki/1998_FIFA_World_Cup"><strong>1998</strong></a></p>
<p>Any progress made in 1994 was returned in 1998 when the US stunk up France worse than the most aged blue cheese. The team entered the tournament in total disarray, and suffered resounding defeats to Germany, Iran, and Yugoslovia. It&#8217;s recently come out that <a href="http://en.wikipedia.org/wiki/John_Harkes">John Harkes</a>, who then national team coach <a title="Steve Sampson" href="http://en.wikipedia.org/wiki/Steve_Sampson">Steve Sampson</a> had recently named &#8220;Captain for Life,&#8221; had been stripped of his captaincy and dismissed from the team for (allegedly) <a href="http://www.huffingtonpost.com/2010/02/03/john-harkes-affair-soccer_n_447704.html">sleeping with a teammate&#8217;s wife</a>. This no doubt contributed to the Yanks&#8217; miserable performance on the field, and one can only hope that the <a href="http://www.guardian.co.uk/football/2010/feb/25/wayne-bridge-quits-england-john-terry">similar controversy</a> that recently emerged from within the English side has a deadening effect on the British legs. The <a href="http://www.fifa.com/worldcup/archive/edition=1013/results/matches/match=8738/report.html">effort against Germany</a> was especially troubling, as the usually plucky Americans caved to the physical assertiveness of their opponents.</p>
<p><a href="http://en.wikipedia.org/wiki/2002_FIFA_World_Cup"><strong>2002</strong></a></p>
<p>The 2002 World Cup was the high point of American soccer. After the dismal performance of 1998, few expected the US to get out of a group that featured the host country, the <a title="Korea Republic national football team" href="http://en.wikipedia.org/wiki/Korea_Republic_national_football_team">Korea Republic</a>, a tough team from <a title="Poland national football team" href="http://en.wikipedia.org/wiki/Poland_national_football_team">Poland</a>, and <a title="Portugal national football team" href="http://en.wikipedia.org/wiki/Portugal_national_football_team">Portugal</a>, who had <a title="Luís Figo" href="http://en.wikipedia.org/wiki/Lu%C3%ADs_Figo">Luís Figo</a>, the reigning <a title="2001 FIFA World Player of the Year" href="http://en.wikipedia.org/wiki/2001_FIFA_World_Player_of_the_Year">FIFA World Player of the Year</a>, and a was a team chosen by many to break through to the late stages. The US faced Portugal in their opening game (which I watched at 7 am ET), and came out confident and aggressive and with nothing to lose.  They scored three goals in the first half (one was an own goal), and held on in the second for a shocking 3-2 victory.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/CzfC8FkuZcc&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CzfC8FkuZcc&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>After tying Korea (on this Clint Mathis goal):</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/UfaAlXRl_So&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UfaAlXRl_So&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>and then losing to Poland, the US emerged from its group to face arch rival <a title="Mexico national football team" href="http://en.wikipedia.org/wiki/Mexico_national_football_team">Mexico</a> in the Round of 16: the biggest match the country has ever played. This one was a 4:30 am ET start time, and the US dominated and forced the Mexicans to completely unravel at the end of the game (<a title="Rafael Marquez" href="http://en.wikipedia.org/wiki/Rafael_Marquez">Rafael Marquez&#8217;s</a> hit on Cobi Jones was just as dirty as the Leonardo elbow to Tab Ramos in 1994).</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/TQqSdn_9FEc&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/TQqSdn_9FEc&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The reward for beating Mexico was a matchup with Germany in the quarterfinals, the same German team that had pushed around the Americans four years earlier. <a title="Claudio Reyna" href="http://en.wikipedia.org/wiki/Claudio_Reyna">Claudio Reyna</a>, who at that point had enjoyed more success as a professional in Europe than any other American player (and who carried the nickname &#8220;Captain America&#8221;), had been especially abused by strongman <a href="http://en.wikipedia.org/wiki/Jens_Jeremies">Jens Jeremies</a> in 1998.  But on this day he was the best player on the field, and the US got the better of play through most of the game. The refs missed a blatant German handball on the goaline, and the US couldn&#8217;t ultimately punch home a goal.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/fLtT0imwdCQ&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/fLtT0imwdCQ&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>This was a remarkable showing, and indicated to the world that American soccer was indeed capable of a world class performance.  The run in 2002 set a new standard for the US side.</p>
<p><a href="http://en.wikipedia.org/wiki/2006_FIFA_World_Cup"><strong>2006</strong></a></p>
<p>The 2006 World Cup greeted the Americans with high expectations, but an extremely difficult draw: <a title="Czech Republic national football team" href="http://en.wikipedia.org/wiki/Czech_Republic_national_football_team">Czech Republic</a>, <a title="Italy national football team" href="http://en.wikipedia.org/wiki/Italy_national_football_team">Italy</a>, and the top African side, <a title="Ghana national football team" href="http://en.wikipedia.org/wiki/Ghana_national_football_team">Ghana</a>.  The US came out flat in their first match, falling to the Czech Republic 3-0, before showing brilliantly and confidently against Italy in a physical 1-1 tie in which two Americans (against one Italian) were ejected. Again, the US benefited from an <a href="http://www.youtube.com/watch?v=PYRIsnFxxdw">own goal</a>, the only score the Italians would concede on their march to the final. Needing a victory in their final group match against Ghana to advance, the US fell to Ghana 2-1, victims of the Ghanian&#8217;s speed and a horrid penalty call in the first half injury time.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/AOCLXoSyqPU&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/AOCLXoSyqPU&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>That the US failure to advance from this difficult group was seen as a disappointment showed how far American soccer had evolved since 1990.  You want to enter your third match of the group stage with a shot to advance, and the US has done that the past two World Cups&#8211; although they&#8217;ve lost both games!</p>
<p><a href="http://en.wikipedia.org/wiki/2010_FIFA_World_Cup"><strong>2010</strong></a></p>
<p>As the US preps for Saturday&#8217;s match with England, expectations are extremely high. Given the US&#8217;s experience &#8212; including a<a href="http://www.youtube.com/watch?v=S58rstMhKK8"> victory over a full-strength Spanish side</a> and a<a href="http://www.youtube.com/watch?v=FoEbwoik1Hc"> near upset of Brazi</a>l at last year&#8217;s Confederation&#8217;s Cup &#8212; there&#8217;s simply no excuse for them to fail to advance from a group that includes <a title="England national football team" href="http://en.wikipedia.org/wiki/England_national_football_team">England</a>, <a title="Slovenia national football team" href="http://en.wikipedia.org/wiki/Slovenia_national_football_team">Slovenia</a>, and <a title="Algeria national football team" href="http://en.wikipedia.org/wiki/Algeria_national_football_team">Algeria</a>. If history is any indication, however, the US could struggle with this group. They haven&#8217;t beaten England since 1950, and always have a tough time with big Eastern European sides (see losses to the Czechs, Poland, Romania, and Yugoslavia). Slovenia is less experienced and talented than each of those sides, and the US is much more poised than in the past, so they should pull out a victory or at least earn a tie.  They&#8217;ll be in good shape if they go into the final group match against Algeria with 3 points, and they&#8217;d be in great shape if they can get a draw against England in the first game and a win over Slovenia.  The US has historically played one great match, one mediocre one, and a stinker in the group stages.  Where those efforts are located will make all the difference in the world this year.</p>
<p>The US team has significant questions on the pitch. In previous years, central defense has been a strength, showcasing American toughness, size  and poise with <a title="Eddie Pope" href="http://en.wikipedia.org/wiki/Eddie_Pope">Eddie Pope</a> and <a title="Oguchi Onyewu" href="http://en.wikipedia.org/wiki/Oguchi_Onyewu">Oguchi Onyewu</a>. Gooch is just returning from a knee injury, and hasn&#8217;t played 90 minutes in nearly 8 months. The other two center backs are the tough-but-slow <a title="Jay DeMerit" href="http://en.wikipedia.org/wiki/Jay_DeMerit">Jay DeMerit</a> (who tends to play too far off the ball in the defensive third) and the untested <a title="Clarence Goodson" href="http://en.wikipedia.org/wiki/Clarence_Goodson">Clarence Goodson</a> (who&#8217;s good in the air but not nearly as physical as what this position calls for). This could spell trouble for a side that likes to play compact defensively and spring counter attacks. Wing defenders (<a title="Carlos Bocanegra" href="http://en.wikipedia.org/wiki/Carlos_Bocanegra">Carlos Bocanegra</a>, <a title="Jonathan Spector" href="http://en.wikipedia.org/wiki/Jonathan_Spector">Jonathan Spector</a>, and <a title="Steve Cherundolo" href="http://en.wikipedia.org/wiki/Steve_Cherundolo">Steve Cherundolo</a>) are solid but again, slow. Head coach <a title="Bob Bradley" href="http://en.wikipedia.org/wiki/Bob_Bradley">Bob Bradley</a> loves <a title="Jonathan Bornstein" href="http://en.wikipedia.org/wiki/Jonathan_Bornstein">Jonathan Bornstein</a>, who has speed but lacks the size and toughness to compete at this level. We may see him as a situational substitute.</p>
<p>The strength of the current US team is in its midfield, and there&#8217;s more talent than can fit on the pitch. <a title="Michael Bradley (soccer)" href="http://en.wikipedia.org/wiki/Michael_Bradley_(soccer)">Michael Bradley</a>, <a title="Clint Dempsey" href="http://en.wikipedia.org/wiki/Clint_Dempsey">Clint Dempsey</a>, and <a title="Landon Donovan" href="http://en.wikipedia.org/wiki/Landon_Donovan">Landon Donovan</a> are sure to be in the starting eleven.  Bradley generally plays a 4-4-2 lineup, and though he&#8217;s tried to play Dempsey up front with <a title="Jozy Altidore" href="http://en.wikipedia.org/wiki/Jozy_Altidore">Jozy Altidore</a>, he&#8217;s indicated he&#8217;d like to play two true forwards  (it&#8217;s looking that the second will be <a title="Edson Buddle" href="http://en.wikipedia.org/wiki/Edson_Buddle">Edson Buddle</a>, who comes in to the tournament in great goal scoring form).  So, the big question is, who will be the fourth midfielder? <a title="Ricardo Clark" href="http://en.wikipedia.org/wiki/Ricardo_Clark">Ricardo Clark</a> has gotten most of the time there in tune up matches, but hasn&#8217;t particularly impressed; I&#8217;d prefer to see <a title="Maurice Edu" href="http://en.wikipedia.org/wiki/Maurice_Edu">Maurice Edu</a>, who tackles just as hard as Clark but is more solid with the ball (and also has a nose for the goal). The other midfielders &#8212; <a title="Stuart Holden" href="http://en.wikipedia.org/wiki/Stuart_Holden">Stuart Holden</a>, <a title="José Francisco Torres" href="http://en.wikipedia.org/wiki/Jos%C3%A9_Francisco_Torres">José Francisco Torres</a>, and <a title="DaMarcus Beasley" href="http://en.wikipedia.org/wiki/DaMarcus_Beasley">DaMarcus Beasley</a> are capable substitutes, and can each go a full 90 if needed. I hope we don&#8217;t see <a title="Benny Feilhaber" href="http://en.wikipedia.org/wiki/Benny_Feilhaber">Benny Feilhaber</a> in a game; although he&#8217;s got the ability to possess the ball, he consistently disappears from matches and is a horrid defender.  Up front, expect to see <a title="Herculez Gomez" href="http://en.wikipedia.org/wiki/Herculez_Gomez">Herculez Gomez</a> as a late game substitute if the US needs a goal, and <a title="Robbie Findley" href="http://en.wikipedia.org/wiki/Robbie_Findley">Robbie Findley</a> if the US feels it needs to exploit a speed advantage. <a title="Tim Howard" href="http://en.wikipedia.org/wiki/Tim_Howard">Tim Howard</a> will man the goal, and will both make the spectacular save and do his best to keep the rag-tag back line organized.</p>
<p>The World Cup is one day away, and we&#8217;re two days from what promises to be an epic US match against England. Let&#8217;s get the party started!</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/1-day-to-the-cup/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>2 Days to the Cup</title>
		<link>http://lukewaltzer.com/2-days-to-the-cup/</link>
		<comments>http://lukewaltzer.com/2-days-to-the-cup/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 15:53:19 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[nyc]]></category>
		<category><![CDATA[wc2010]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1068</guid>
		<description><![CDATA[On Friday I&#8217;ll get to begin enjoying my fourth World Cup since moving to New York City. When the World Cup was in the States in 1994, I attended two group stage games at the Pontiac Silverdome: USA v. Switzerland and Brazil v. Sweden. Nothing beats attending a game and absorbing the spectacle and celebration [...]]]></description>
			<content:encoded><![CDATA[<p>On Friday I&#8217;ll get to begin enjoying my fourth World Cup since moving to New York City. When the World Cup was in the States in 1994, I attended two group stage games at the <a href="http://en.wikipedia.org/wiki/Pontiac_Silverdome">Pontiac Silverdome</a>: USA v. Switzerland and Brazil v. Sweden. Nothing beats attending a game and absorbing the spectacle and celebration that surrounds it, and seeing it played on real grass inside a dome (<a href="http://detnews.com/article/20091117/METRO/911170327/Silverdome-sale-price-disappoints">that recently sold for just over $500k</a>) was a surreal experience that I&#8217;ll vividly remember the rest of my life.</p>
<p>But If you can&#8217;t attend the tournament, NYC must be the next best place to be. Thousands of folks are out in their kits, draped with flags, and every other conversation you overhear on the street seems to be about the Cup.  The event unites the focus of the world, and that effect&#8217;s on full display in New York. It gives those with ties to other countries permission to flamboyantly celebrate those connections, and for other New Yorkers to join or mock them.  Soccer bars (like <a href="http://www.nevadasmiths.net/">Nevada Smith&#8217;s</a> or <a href="http://www.nydailynews.com/latino/2010/06/09/2010-06-09_gol_for_it.html">these national rooting spots</a>) are packed with fans throughout the day watching games played halfway around the world, and those fans are usually banging on drums, singing and screaming at each other, and downing pints (whether they have to go back to work or not). Whole blocks shut down in Little Italy, Koreatown, and Little Brazil on those countries&#8217; match days, and fans watch from the street on gigantic displays amidst a carnival.</p>
<p>The best thing about New York City is the opportunity it gives us to sample the world. That&#8217;s never more true than during the World Cup.</p>
<p style="text-align: center;"><a title="2006 July - World cup Soccer final with Steel and Michelle" href="http://www.flickr.com/photos/33125787@N00/3627562853/" target="_blank"><img class="aligncenter" src="http://farm4.static.flickr.com/3320/3627562853_432b15dc8b.jpg" border="0" alt="2006 July - World cup Soccer final with Steel and Michelle" /></a><br />
<small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://lukewaltzer.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="jenschapter3" href="http://www.flickr.com/photos/33125787@N00/3627562853/" target="_blank">jenschapter3</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/2-days-to-the-cup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Days to the Cup</title>
		<link>http://lukewaltzer.com/4-days-to-the-cup/</link>
		<comments>http://lukewaltzer.com/4-days-to-the-cup/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 16:46:19 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Silliness]]></category>
		<category><![CDATA[Sport]]></category>
		<category><![CDATA[wc2010]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1052</guid>
		<description><![CDATA[I&#8217;m going to really, really hate England this week. I mean, this human aspect ratio buster features as a striker for that country? For real? Peter Crouch is a tool. More evidence: Holmes needs to bounce The Robot up from out his repertoire. He&#8217;s embarrassing himself and his girlfriend, and pissing Don Cornelius off. One [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to really, really hate England this week. I mean, this human aspect ratio buster features as a striker for that country? For real?</p>
<p><a href="http://en.wikipedia.org/wiki/Peter_Crouch"><img class="alignnone" title="Crouch" src="http://upload.wikimedia.org/wikipedia/commons/b/b3/Peter_Crouch_Russia_vs_England_17_o%D1%81tober_2007_training_one_day_prior_to_a_match.jpg" alt="" width="537" height="1042" /></a></p>
<p>Peter Crouch is a tool. More evidence:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/b90gpqFp5Bw&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/b90gpqFp5Bw&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Holmes needs to bounce The Robot up from out his repertoire. He&#8217;s embarrassing himself and his <a href="http://en.wikipedia.org/wiki/Abigail_Clancy">girlfriend</a>, and pissing <a href="http://en.wikipedia.org/wiki/Don_Cornelius" target="_blank">Don Cornelius</a> off.</p>
<p>One of the few things of value to come out of England over the past decade is Ricky Gervais, and even he ragged on this goof:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/38T0BF2WAHk&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/38T0BF2WAHk&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Now, if I was at all confident in the ability of the US central defense to actually beat this guy to a ball played in the air, I&#8217;d get really mean. Or maybe I&#8217;m just saving that for Terry, who might be shagging Crouch&#8217;s fiance.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/4-days-to-the-cup/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>7 Days to the Cup</title>
		<link>http://lukewaltzer.com/7-days-to-the-cup/</link>
		<comments>http://lukewaltzer.com/7-days-to-the-cup/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 17:00:48 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[wc2010]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1044</guid>
		<description><![CDATA[The only side to underachieve in major international competition anywhere near as much as the Dutch is Spain. Coming off their rousing victory in the 2008 European Championship, the Spaniards are considered one of the favorites in the 2010 World Cup. This is a team without a significant weakness, and draws heavily from FC Barcelona [...]]]></description>
			<content:encoded><![CDATA[<p>The only side to underachieve in major international competition anywhere near as much as the Dutch is <a href="http://en.wikipedia.org/wiki/Spain_national_football_team">Spain</a>. Coming off their rousing victory in the <a href="http://en.wikipedia.org/wiki/2008_European_Football_Championship">2008 European Championship</a>, the Spaniards are considered one of the favorites in the 2010 World Cup.  This is a team without a significant weakness, and draws heavily from <a href="http://en.wikipedia.org/wiki/FC_Barcelona">FC Barcelona</a> for its spine: <a title="Carles Puyol" href="http://en.wikipedia.org/wiki/Carles_Puyol">Carlos Puyol</a>, <a title="Xavi" href="http://en.wikipedia.org/wiki/Xavi">Xavi Hernández</a>, and <a title="Andrés Iniesta" href="http://en.wikipedia.org/wiki/Andr%C3%A9s_Iniesta">Andrés Iniesta</a>. Add in <a title="Xabi Alonso" href="http://en.wikipedia.org/wiki/Xabi_Alonso">Xabi Alonso</a>, <a title="Cesc Fàbregas" href="http://en.wikipedia.org/wiki/Cesc_F%C3%A0bregas">Cesc Fàbregas</a>, <a title="David Villa" href="http://en.wikipedia.org/wiki/David_Villa">David Villa</a>, and <a title="Fernando Torres" href="http://en.wikipedia.org/wiki/Fernando_Torres">Fernando Torres</a> and this team is simply stacked.  The only player missing from the squad who played a significant role in the 2008 Euros is holding midfielder <a href="http://en.wikipedia.org/wiki/Marcos_Senna">Marcos Senna</a>, and it will be interesting to see if an another attacking midfielder moves into the starting XI, or if <a title="Vicente del Bosque" href="http://en.wikipedia.org/wiki/Vicente_del_Bosque">Vicente del Bosque</a> opts for a destroyer like <a title="Sergio Busquets" href="http://en.wikipedia.org/wiki/Sergio_Busquets">Sergio Busquets</a>. There&#8217;s some concern with whether or not Torres will recover from a knee injury in time to be effective the in Cup, but in this team there&#8217;s more than enough firepower to overcome his absence.</p>
<p>Spain will breeze through it&#8217;s group (Chile, Switzerland, and Honduras), and could be matched up with Cote D&#8217;Ivore (though it looks as though <a href="http://soccernet.espn.go.com/world-cup/story/_/id/5250486/ce/us/didier-drogba-broken-arm?cc=5901&#038;ver=us">Drogba is out with a broken arm</a>) or face fellow Iberians Portugal in the second round, before likely facing Italy in the quarterfinals.</p>
<p>Here&#8217;s the best tribute video I could find&#8230; it&#8217;s also a bit bizarre.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/z3WtXtNd1aU&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/z3WtXtNd1aU&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/7-days-to-the-cup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Days to the Cup</title>
		<link>http://lukewaltzer.com/8-days-to-the-cup/</link>
		<comments>http://lukewaltzer.com/8-days-to-the-cup/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 21:28:42 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[wc2010]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1037</guid>
		<description><![CDATA[The Netherlands are the greatest footballing nation never to hoist the World Cup.  They came close in 1974, when, led by the great Johan Cruyff, they got Beckenbaured by West Germany in the championship match. Their &#8220;Total Football&#8221; innovations brought the free-flowing style of Ajax to international football, and to great effect. Here&#8217;s snippets of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Netherlands_national_football_team">The Netherlands</a> are the greatest footballing nation never to hoist the World Cup.  They came close in 1974, when, led by the great <a href="http://en.wikipedia.org/wiki/Johan_Cruyff">Johan Cruyff</a>, they got Beckenbaured by West Germany in the championship match. Their &#8220;<a href="http://en.wikipedia.org/wiki/Total_Football">Total Football</a>&#8221; innovations brought the free-flowing style of <a href="http://en.wikipedia.org/wiki/AFC_Ajax">Ajax</a> to international football, and to great effect.</p>
<p>Here&#8217;s snippets of their victory over Brazil in the 1974 semi-finals:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/ZTs2iwMqVMg&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZTs2iwMqVMg&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The Netherlands won the <a href="http://en.wikipedia.org/wiki/UEFA_Euro_1988">European Championship in 1988</a> behind <a title="Ruud Gullit" href="http://en.wikipedia.org/wiki/Ruud_Gullit">Gullit</a>, <a title="Marco van Basten" href="http://en.wikipedia.org/wiki/Marco_van_Basten">van Basten</a> and <a title="Frank Rijkaard" href="http://en.wikipedia.org/wiki/Frank_Rijkaard">Rijkaard</a>, but haven&#8217;t moved beyond the semi-finals in a major tournament since. I think they&#8217;ve got a shot this year, as they blazed through qualifying behind the tremendous form of <a title="Wesley Sneijder" href="http://en.wikipedia.org/wiki/Wesley_Sneijder">Wesley Sneijder</a> and <a title="Arjen Robben" href="http://en.wikipedia.org/wiki/Arjen_Robben">Arjen Robben</a>, who pair with the explosive <a title="Robin van Persie" href="http://en.wikipedia.org/wiki/Robin_van_Persie">Robin van Persie</a> and the tough-as-nails <a title="Dirk Kuyt" href="http://en.wikipedia.org/wiki/Dirk_Kuyt">Dirk Kuyt</a> in the attack, with <a title="Mark van Bommel" href="http://en.wikipedia.org/wiki/Mark_van_Bommel">Mark van Bommel</a> holding and banging away in the middle of the field (and <a title="Nigel de Jong" href="http://en.wikipedia.org/wiki/Nigel_de_Jong">Nigel de Jong</a> attempting to <a href="http://vodpod.com/watch/3163201-nigel-de-jong-takes-out-stuart-holden-holland-usa">break people&#8217;s legs</a> behind him).  They&#8217;ve also got a ridiculous amount of attacking talent beyond those four but, like Argentina, are somewhat suspect at the back.</p>
<p>If everything goes to form, they&#8217;re likely to face Brazil in the quarterfinals.  What a match <em>that </em>could be. Here&#8217;s a look at some of their stars&#8230; remember, a lot of these guys will be on the <em>bench</em>:</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/scIRLyBgqMA&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/scIRLyBgqMA&#038;fs=1" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/8-days-to-the-cup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perfection and History</title>
		<link>http://lukewaltzer.com/perfection-and-history/</link>
		<comments>http://lukewaltzer.com/perfection-and-history/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 14:53:52 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[History]]></category>
		<category><![CDATA[Sport]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1019</guid>
		<description><![CDATA[Frame grab from Fox Sports of Armando Galarraga&#8217;s near perfect game. For me, last night&#8217;s near-perfect game by Armando Galarraga and the Detroit Tigers is as memorable for the events in its aftermath as it is for the blown call on Cleveland&#8217;s 27th out, which kept the game from the record books. The weight of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.freep.com/apps/pbcs.dll/gallery?Site=C4&amp;Date=20100602&amp;Category=SPORTS02&amp;ArtNo=6030801&amp;Ref=PH&amp;Profile=1050&amp;Params=Itemnr=4"><img class="  alignnone" title="Galarraga 27th Out" src="http://cmsimg.freep.com/apps/pbcsi.dll/bilde?NewTbl=1&amp;Avis=C4&amp;Dato=20100602&amp;Kategori=SPORTS02&amp;Lopenr=6030801&amp;Ref=PH&amp;Item=4&amp;MaxW=600&amp;MaxH=450&amp;border=0&amp;Quality=100" alt="" width="540" height="303" /></a></p>
<p style="text-align: center;"><em>Frame grab from Fox Sports of Armando Galarraga&#8217;s near perfect game.</em></p>
<p>For me, last night&#8217;s near-perfect game by Armando Galarraga and the Detroit Tigers is as memorable for the events in its aftermath as it is for the blown call on Cleveland&#8217;s 27th out, which kept the game from the record books. The weight of history hovers over no sport so much as baseball, where the past is enshrined in statistics that upon a single glance might tell you the story of a moment, a game, a season, a career, an era. That weight is at the heart of baseball&#8217;s struggle to deal with steroids, which have totally distorted our knowledge and memory of a whole generation of achievement in the sport.</p>
<p>The reactions of both the Tigers and Jim Joyce give us occasion to reflect upon the way we connect records to meaning. For all intents and purposes the Tigers viewed Galarraga&#8217;s performance as perfect. Some joked that it was the first 28 out perfect game, and the pitcher received the customary &#8220;beer shower&#8221; bestowed upon hurlers who accomplish this miraculous feat. Though the Tigers gave it fiercely to Joyce on the field, without exception those who were interviewed later in the clubhouse treated the umpire and the moment with an astonishing level of class. Manager Jim Leyland spoke about what a great umpire Joyce is, about how Joyce was going to feel worse about this than anyone, and, crucially, about how the humanity and error that are at the center of the game are what makes it so great. Austin Jackson, whose <a title="A Jax" href="http://www.youtube.com/watch?v=JTBVo8L94gM">Willie Mays-ish over-the-shoulder-catch</a> secured the first out of the ninth for the Tigers, also talked of mistakes as being part of the game, and about how hard it is to be am ump. Third baseman Brandon Inge raved about how proud he was of Galarraga&#8217;s poise and performance.</p>
<p>Joyce, upon seeing the replay, immediately <a title="Joyce PIece from SI" href="http://sports.espn.go.com/mlb/recap?gameId=300602106">copped</a> &#8220;I just cost that kid a perfect game,&#8221; and went to the Tigers clubhouse to apologize, tears in his eyes. Galarraga gave Joyce a hug, then told reporters that &#8220;he feel worse than I do.&#8221; He added &#8220;nobody&#8217;s perfect&#8221; with a smile. He then noted that he would save the tape to show his son. Joyce will be haunted by this moment the rest of his career, much more so than Galarraga.</p>
<p>The class shown by Galarraga and his teammates revealed their deep satisfaction with the content of the performance, which reminds us of what records sometimes miss. They knew this was a perfect game, and what frustration they showed was due to the fact that they immediately understood that history would not reflect what they knew to their very cores to be true. The &#8220;incident&#8221; is already enveloped in <a href="http://content.usatoday.com/communities/dailypitch/post/2010/06/armando-galarragas-imperfect-game-revs-up-instant-replay-debate/1">larger debates about whether to institute instant replay</a> in the game. There&#8217;s <a href="http://www.sbnation.com/2010/6/3/1499318/Armando-Galarraga-jim-joyce-mlb-commissioners-office-meeting">debate about whether the Commissioner&#8217;s</a> office should give Galarraga the perfect game anyway and Michigan&#8217;s Governor, never one to miss an opportunity, has <a title="Granholm" href="http://twitter.com/GovGranholm/status/15290930845">already arrogantly done so</a>!</p>
<p>But the Tigers, at least as they reacted last night, don&#8217;t seem like they&#8217;re too interested in all this. They know what they did, and whether or not they&#8217;re included in the record books won&#8217;t change that knowledge, which this Tiger fan hopes makes them pick things up a notch in their battle for the Central with the Twins.  They know there&#8217;s a hundred and twenty more games to play, a hundred and twenty more opportunities to strive for perfection, and ten thousand times that many mistakes to avoid.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/perfection-and-history/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>9 Days to the Cup</title>
		<link>http://lukewaltzer.com/9-days-to-the-cup-2/</link>
		<comments>http://lukewaltzer.com/9-days-to-the-cup-2/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 20:30:31 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[wc2010]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1006</guid>
		<description><![CDATA[I used to really dislike the Argentinian national soccer team. Maradona, despite all his talent, displayed an arrogance that was off-putting, especially when compared with the joyful exuberance of the Brazilian side I and just about every one else loved.  I also thought the team was prone to cynical, defensive football in 1990 and 1994. [...]]]></description>
			<content:encoded><![CDATA[<p>I used to really dislike the Argentinian national soccer team. <a href="http://en.wikipedia.org/wiki/Diego_Maradona">Maradona</a>, despite all his talent, displayed an arrogance that was off-putting, especially when compared with the joyful exuberance of the <a href="http://lukewaltzer.com/9-days-to-the-cup/">Brazilian side</a> I and just about every one else loved.  I also thought the team was prone to cynical, defensive football in 1990 and 1994.</p>
<p>Though this Maradona goal was ludicrous:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/DbbsytHDp2o&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/DbbsytHDp2o&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>These were amazing:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/-rW-lK9F6TU&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/-rW-lK9F6TU&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/hlYYP-QbiGU&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/hlYYP-QbiGU&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I warmed to Argentinian football in 2006, when they played with an unbelievable team flair. This gem from the first round is an example:</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/6R_iYLca2gc&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/6R_iYLca2gc&#038;fs=1" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>And I&#8217;ve become a huge <a title="MEssi" href="http://en.wikipedia.org/wiki/Lionel_Messi">Leo Messi</a> fan:</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/WtuC_nhTezA&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/WtuC_nhTezA&#038;fs=1" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Argentina will be very interesting to watch in South Africa, as they have perhaps the most attacking talent of any side.  They have significant questions in the middle of the field (will they be able to get Leo the ball in dangerous places?) and at the back.  With Maradona at their helm, they may perhaps lack some <a href="http://www.footballingworld.com/wordpress/wp-content/uploads/2010/03/Maradona.jpg">emotional</a> <a href="http://dwink.com/_upload/1267191772_free%20the%20teenagers.jpg">stability</a> <a href="http://soccernet.espn.go.com/world-cup/story/_/id/790643/ce/uk/?cc=5901&amp;ver=us">and</a> <a href="http://www.virginmedia.com/images/maradona1.jpg">discipline</a>.</p>
<p>Argentina should advance out of a tough but not spectacular group that includes Nigeria, South Korea, and Greece, and I think they&#8217;ll make it to the quarterfinals where they&#8217;ll likely face England, setting the stage for <a href="http://en.wikipedia.org/wiki/Argentina_and_England_football_rivalry">another installment in a classic rivalry.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/9-days-to-the-cup-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>10 Days to the Cup</title>
		<link>http://lukewaltzer.com/9-days-to-the-cup/</link>
		<comments>http://lukewaltzer.com/9-days-to-the-cup/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 21:17:10 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[wc2010]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1000</guid>
		<description><![CDATA[Below is every goal Brazil scored &#8212; and a few near misses &#8212; during their march to the 1970 World Cup title. This Brazil side is the consensus best national team that ever was, and the collection of goals below is nothing short of sublime. Enjoy! Via.]]></description>
			<content:encoded><![CDATA[<p>Below is every goal Brazil scored &#8212; and a few near misses &#8212; during their march to the <a title="1970 World Cup" href="http://en.wikipedia.org/wiki/1970_FIFA_World_Cup">1970 World Cup</a> title.  This Brazil side is the consensus best national team that ever was, and the collection of goals below is nothing short of sublime. Enjoy!</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/Bq06QssMHk8&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Bq06QssMHk8&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://sportsillustrated.cnn.com/2010/soccer/world-cup-2010/writers/rob_smyth/05/29/top10.champions/index.html?eref=sihp">Via.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/9-days-to-the-cup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lakers vs. (yawn) Celtics</title>
		<link>http://lukewaltzer.com/lakers-vs-yawn-celtics/</link>
		<comments>http://lukewaltzer.com/lakers-vs-yawn-celtics/#comments</comments>
		<pubDate>Mon, 31 May 2010 04:17:08 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[nba]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=979</guid>
		<description><![CDATA[The Lakers will meet the Celtics in the NBA Finals starting Thursday. I come at the Lakers-Celtics rivalry from a deeply personal place. Earvin Johnson grew up about a mile from where I was raised, and was slotted to go to the high school I attended until a bussing initiative sent him across town to [...]]]></description>
			<content:encoded><![CDATA[<p>The Lakers will meet the Celtics in the NBA Finals starting Thursday. I come at the Lakers-Celtics rivalry from a deeply personal place. Earvin Johnson grew up about a mile from where I was raised, and was slotted to go to the <a href="http://sexton.lansingschools.net/pages/JWSexton_HS">high school I attended</a> until a bussing initiative sent him across town to Everett High School. For most folks, going from being a West-side Winner to being a South-side Sucker would have been devastating, and Earvin has stated that he was initially pretty bummed out about it. But he was a winner wherever he went, and soon led the Vikings to a state championship, picked up the nickname &#8220;Magic,&#8221; and became the hottest basketball recruit in the country. He signed with hometown Michigan State, and my parents, like so many other locals, immediately purchased seasons tickets to watch Magic lead Jud Heathcote&#8217;s Spartans at <a href="http://en.wikipedia.org/wiki/Jenison_Fieldhouse">Jenison Fieldhouse</a>.</p>
<p><a href="http://sportsillustrated.cnn.com/2009/writers/seth_davis/03/26/magic.larry/index.html"><img class="alignright" style="margin: 5px;" title="Magic Dunking" src="http://i2.cdn.turner.com/si/2009/writers/seth_davis/03/26/magic.larry/magic-bird-cover.jpg" alt="" width="298" height="410" /></a>I was a pup at the time, and my memories of MSU&#8217;s run to the <a title="1979" href="http://sportsillustrated.cnn.com/2009/writers/seth_davis/03/26/magic.larry/index.html">1979 National Championship</a> over Larry Bird and Indiana State are fuzzy at best. I remember everyone was happy, and to this day I don&#8217;t recall a time before I was conscious of Magic.  In 1980 I was somewhat conscious of Larry Bird, too.  When he became a Celtic, though, I remember being confused that there had been a black guy who wore number 33 in green and white and whose poster was on my bedroom wall who dominated on the court, and then the following year there was a white guy who wore number 33 in green and white and dominated on the court.</p>
<p>Magic was a major a presence in 1980s Lansing, from the &#8220;Magic Johnson Donuts&#8221; at local bakery chain <a href="http://qualitydairy.com/qd/">Quality Dairy</a> (gold frosting with a purple &#8220;32&#8243; drawn on top), to the softball team he played for in the summer that would draw hundreds of spectators, to the constant reporting on the trajectory of his career. If you didn&#8217;t know him personally, you knew someone who did, and I met him multiple times as a kid. He visited my elementary school on a couple of occasions, and in fourth grade I won a competition for a full scholarship to the local basketball camp he ran with his agent, Charles Tucker. I attended the camp two consecutive years, spending a week each year in the presence of Magic and other stars of the 1980s NBA: Isaiah Thomas, Dominique Wilkins, Spud Webb, Tiny Archibald, Mark Aguirre, Herb Williams, Jay and Sam Vincent.   Roy Tarpley and William Bedford, two talented big men who would soon snort themselves out of the NBA, served as counselors (I remember Bedford being especially nice). I remember two specific encounters with Magic: one, a left-handed lay up drill done without a ball, so you would concentrate on your form. Magic stood under the basket and if you did it wrong, he made you do 20 push-ups. I was absolutely terrified, but somehow managed to fluidly lift off my right foot and pass the test (though I could never make a left-handed lay up in a game).  The second was my second year, when I made the All-Star team for my age group. I hit a 15 foot jumper in the All-Star game and Magic, who was reffing the game along with Herb Williams, gave me a high five as I ran back down the court.</p>
<p><a href="http://www.google.com/imgres?imgurl=http://www.sportsbusinessdaily.com/Content/Image/06-05-2008/Bird-Magic.jpg&amp;imgrefurl=http://www.sportsbusinessdaily.com/article/121357&amp;usg=__JQwm0tQjTw6o8hgwW2z6mOcmeOI=&amp;h=256&amp;w=250&amp;sz=73&amp;hl=en&amp;start=6&amp;sig2=dfcClQG87KxjRAmAjaMKuw&amp;um=1&amp;itbs=1&amp;tbnid=9W1_ZkDCb3yktM:&amp;tbnh=111&amp;tbnw=108&amp;prev=/images%3Fq%3Dmagic%2Bbird%26um%3D1%26hl%3Den%26client%3Dfirefox-a%26sa%3DN%26rls%3Dorg.mozilla:en-US:official%26ndsp%3D18%26tbs%3Disch:1&amp;ei=2jcDTNX0MoH-8Aax3uSeDQ"><img class="alignleft" style="margin: 8px;" title="Magic v Bird" src="http://www.sportsbusinessdaily.com/Content/Image/06-05-2008/Bird-Magic.jpg" alt="" width="250" height="256" /></a>It&#8217;s from within this context that I approached the <a href="http://en.wikipedia.org/wiki/Celtics%E2%80%93Lakers_rivalry">Lakers-Celtics rivalry</a>, which reached its <a href="http://en.wikipedia.org/wiki/Celtics%E2%80%93Lakers_rivalry#1980s:_Bird_vs._Magic">rabid apex in the 1980s</a>. (To learn more about the rivalry between Magic and Bird, see the terrific documentary <a href="http://www.hbo.com/sports/magic-and-bird-a-courtship-of-rivals/index.html">&#8220;Magic &amp; Bird: A Courtship of Rivals&#8221;</a>). Everyone I knew rooted for the Lakers, mostly because they loved Magic. But there was a broader national breakdown along racial and social lines, crudely constructed as follows: If you were black or liberal or hip, you rooted for the showtime Lakers, and delighted in Magic&#8217;s daring passes to Worthy and Scott, and Kareem&#8217;s skyhook. But if you were working-class white, or conservative, or lame, you rooted for the Celtics, and celebrated Bird&#8217;s grit, McHale&#8217;s low post moves and wet hairy armpits, the Chief&#8217;s stoic gaze, and whatever the hell Danny Ainge did. Of course, regional allegiance played a large role in who you rooted for, but the sense that the breakdown was as described above did much to invigorate the rivalry by embedding it within the broader political narratives of Reagan&#8217;s America. Both teams represented elements of that transitional decade: the Lakers were glitz and excess, and the Celtics were a resurgent conservativism and traditionalism.  If nothing else, the rivalry revealed the resilience of the racialized lens through which much of the American public saw sport (and thus life).  Yet at the heart of it all was a deep truth: these were two fundamentally brilliant basketball teams, with styles fully realized and stars in constant search of another challenge to conquer.</p>
<p>I pulled for the Lakers through their championship years until they met my Detroit Pistons in the Finals in 1988, when I maturely said to Magic: you&#8217;ve won enough. It&#8217;s the D&#8217;s turn. My Magic love persisted, though, so much so that <a href="http://www.youtube.com/watch?v=iSfy4AhDDnw">November 7, 1991</a> is just as seared into my memory as <a href="http://www.youtube.com/watch?v=j4JOjcDFtBE">January 28, 1986</a>. But as Magic&#8217;s career ended awkwardly over several years, I lost interest in the Lakers.</p>
<p>The NBA has changed significantly since the 1980s, when Magic and Bird rescued the league from its image as a refuge for drug-addled social miscreants, and handed to Michael Jordan and David Stern a &#8220;product&#8221; primed for global expansion and resonance, and set to churn out megarich icons. The game has changed, too, from an era when big stars regularly <a href="http://dimemag.com/2009/11/dr-j-larry-bird-fight/">threw down in pursuit of a win</a> to a league where accruing too many physical fouls well get you suspended.  Fact is, college basketball is a much more physical game than the NBA, which is part of the reason that it&#8217;s more watchable.</p>
<p>It&#8217;s also part of the reason that we don&#8217;t have rivalries like what we had with the Lakers and Celtics in the 1980s. Too many players and coaches are mercenaries, playing for their next contract. These guys are professionals, to be sure, and most care deeply about winning (no one can tell me Kobe Bryant wants to win any less than Magic or Bird).  The skill level and physical ability is amazing, and the game is played at as high a level as ever.  But, the context has clearly changed; the game is too clean, too corporate, too image conscious, and exceedingly concerned with being family friendly.  As a result, the politics that infused Lakers-Celtics in the 1980s are absent from the contemporary game and hard to imagine ever being so prominent again. Rivalries now only gain intensity from tight contests in the immediate past.</p>
<p>I&#8217;ll watch the upcoming Finals, but it won&#8217;t be must-see tv in my house. I&#8217;m sure these guys&#8217;ll play great basketball, and the networks will roll out references to the <a href="http://en.wikipedia.org/wiki/1985_NBA_Finals#Game_1">&#8220;Memorial Day Massacre&#8221;</a> and the <a href="http://www.youtube.com/watch?v=WAMuXrTegSY&amp;feature=related">&#8220;Baby Hook&#8221;</a> in an attempt to infuse these games with the weight of history. Personally, though, I don&#8217;t really care who wins, and unless something unexpected and remarkable happens, I&#8217;ll probably forget this year&#8217;s Finals as quickly as I forgot the <a href="http://en.wikipedia.org/wiki/2008_NBA_Finals">2008 Finals</a>.  The fact that I can barely bring myself to hate the Celtics anymore probably has something to do with the fact that I&#8217;ve aged and mellowed and have better priorities more widely dispersed. But it also has something to do with the game, which is at least as responsible for my connection to it as I am.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/lakers-vs-yawn-celtics/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Guerrillas in the Midst</title>
		<link>http://lukewaltzer.com/guerrillas-in-the-midst/</link>
		<comments>http://lukewaltzer.com/guerrillas-in-the-midst/#comments</comments>
		<pubDate>Fri, 28 May 2010 18:27:17 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[cac]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=925</guid>
		<description><![CDATA[One of the secret missions behind my work with Mikhail Gershovich in developing an open source publishing platform at Baruch College is to gradually integrate into the school&#8217;s general education curriculum the deep, critical examination of how digital tools are changing the way we think and live. This curricular purpose is not currently present on [...]]]></description>
			<content:encoded><![CDATA[<p>One of the secret missions behind my work with <a title="Mikhail on Twitter" href="http://www.twitter.com/mikhailg">Mikhail Gershovich</a> in developing an open source publishing platform at Baruch College is to gradually integrate into the school&#8217;s general education curriculum the deep, critical examination of how digital tools are changing the way we think and live. This curricular purpose is not currently present on any kind of scale at our college. Because of political realities at the school, we&#8217;ve very much built <a href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a> in a haphazard, take-what-we-can-get kind of way, and we haven&#8217;t had the luxury of being systematic about the thing. But we&#8217;re now two years into our experiment, and we&#8217;re widely established enough throughout the college that we&#8217;re confident we will continue to operate.  We&#8217;re now able to theorize what we&#8217;ve done and to strengthen our case for more attention to the types of curricular innovation we&#8217;d like to see.</p>
<p><a href="http://www.flickr.com/photos/jectre/544530898/"><img class="alignnone" style="margin: 10px;" title="Peasant Warfare" src="http://farm2.static.flickr.com/1302/544530898_792155e9b3_o.jpg" alt="" width="550" /></a></p>
<p style="text-align: center;"><em><small><a title="Attribution-NoDerivs License" href="http://creativecommons.org/licenses/by-nd/2.0/" target="_blank"><img src="../wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a href="http://www.flickr.com/photos/jectre/544530898/">jectre</a><br />
</small></em></p>
<p>Of course, we&#8217;re far from the only ones considering these questions, and we&#8217;re certainly not the only ones who&#8217;ve borrowed the terminology of revolution to cheekily make our case. Matt Gold has already done <a href="http://guerrillapedagogy.mkgold.net/">a fantastic job creating a hit-and-run guide to guerrilla pedagogy</a> that delineates the tools, philosophy, and connective processes requisite at its core. Gardner Campbell has argued for a trajectory in liberal education towards the development of <a href="http://www.gardnercampbell.net/blog1/?p=1238">media fluency</a> and in favor of a shift from both &#8220;signature pedagogies&#8221; to &#8220;pedagogies of signature&#8221; and from <a href="http://www.slideshare.net/GardnerCampbell/integrative-learning-and-the-gift-of-new-media-general-education-for-the-21st-century-3543849">general education to <em>generalizable</em> education.</a> Gardner has also spoken passionately about the role of movements around the integration of digital tools into the work of higher education in destabilizing the institutions at our center. Joss Winn and Mike Neary have written of <a href="http://eprints.lincoln.ac.uk/1675/">&#8220;The Student as Producer,&#8221;</a> connecting pedagogies that place the student squarely in the role of knowledge-maker within broader efforts to combat the corporatization of higher education and to reimagine a university that for once might be fully committed to the development of humanistic thinkers.  Jeff McClurken has <a href="http://mcclurken.blogspot.com/2008/12/digital-history-and-undergraduate.html">argued smartly that digital literacy is something that should be developed within the disciplines and shown how</a>, though I&#8217;d guess he&#8217;d agree that such an approach does not preclude a broader college-wide addressing of these questions.  And besides being actively involved in building the tools from the ground up, Boone Gorges has <a href="http://teleogistic.net/2010/03/my-queens-college-presidential-roundtable-talk/"> brilliantly theorized</a> the structural similarities between the types of communication and personalized connections that happen within social media and the specific goals of a college&#8217;s general education program.</p>
<p>There are others, many others, who&#8217;ve been doing this type of <a href="http://umwblogs.org">work</a> and <a href="http://bavatuesdays.com">thinking</a>, and their models and theories are very much the fuel that propels us along our path.</p>
<p style="text-align: center;"><a href="http://www.flickr.com/photos/5tein/3609261904/"><img class=" aligncenter" style="margin: 10px;" src="http://farm4.static.flickr.com/3636/3609261904_b5289bf985_o.jpg" alt="" width="556" height="556" /></a><em><strong>Che Groom</strong></em></p>
<p style="text-align: center;"><em><small><a title="Attribution-NoDerivs License" href="http://creativecommons.org/licenses/by-nd/2.0/" target="_blank"><img src="../wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a href="http://www.flickr.com/photos/5tein/3609261904/">5tein</a></small></em></p>
<p style="text-align: center;">
<p><a href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a> has evolved along three broad publishing contours in its first two years, and each can be seen as a step towards developing a foundation upon which those in power at the College might do some tough thinking about how the general education could be reimagined. This said, I have no idea whether or not they might do this, or even when the gen ed was last revisited.  But if they call, we&#8217;ll be ready to contribute what we&#8217;re learning.</p>
<p><span style="text-decoration: underline;"><strong>Non-Course Publishing</strong></span><br />
We&#8217;ve become the go-to shop for folks at the College who want to get stuff online. <a href="http://blsciblogs.baruch.cuny.edu/luc">Student publications</a>, <a href="http://blsciblogs.baruch.cuny.edu/dollarsandsense">online magazines</a>, <a href="http://blsciblogs.baruch.cuny.edu/teachingblog">faculty development sites</a>, <a href="http://blsciblogs.baruch.cuny.edu/photoexhibit">exhibits</a>, <a href="http://blsciblogs.baruch.cuny.edu/cfk">extra-curricular project journals</a>, document reviews using <a href="http://www.futureofthebook.org/commentpress/">CommentPress</a>, <a href="http://blsciblogs.baruch.cuny.edu/performingdiasporas">grant competitions</a> and committee sites… we host them all.</p>
<p>Members of our community now recognize that they no longer need HTML skills to be able to publish to the web or CSS skills to control how what they publish looks. On the flip side, each of the individuals and groups involved in these projects has been forced to confront questions of audience, tone, purpose, tools, design, and connectedness. This has spurred conversations that otherwise might have been offloaded to a contracted web group, or might not have happened at all. The <a href="http://faculty.baruch.cuny.edu/blsci">Schwartz Institute</a>, through our nurturing of these conversations, has joined the staff of the <a href="http://newman.baruch.cuny.edu/index.php">Newman Library</a> at the center of thinking on campus about the role of digital tools in the varied work of the college. This broad &#8220;culture of self-publishing&#8221; is raising the overall digital literacy of staff, faculty, and administrators at the College by creating and sustaining unavoidable engagement with the implications of doing professional and intellectual work on the open web. This engagement has been more incidental than systematic, but it&#8217;s been ongoing and persistent, and more and more people are taking part.</p>
<p><span style="text-decoration: underline;"><strong>Course-based Publishing</strong></span><br />
Our most exciting work is taking place inside of courses. We&#8217;ve supported more than a hundred course sections over the last two years, and they are inspiring faculty members towards more experimental and experiential pedagogy. We&#8217;ve featured much of this work at <a href="http://cac.ophony.org">Cac.ophony.org</a>. Some courses are using <a href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a> as little more than an open CMS, taking advantage of a <a href="http://cac.ophony.org/2006/11/02/the-aesthetics-of-the-virtual-learning-space/">flexible aesthetic</a> to create a more intimate relationship between students and their engagement with course materials online. Others have used the system to explode students&#8217; prevailing understandings of audience by creating and capturing collaborative writing through the integration of wikis, scaffolding research papers in public groups, or bringing in the voices of outside authorities. Many have used the power of writing for classmates&#8217; consumption (and beyond) to raise the stakes of an assignment. Some have staged engagement with a difficult text through a dialogic close reading that evolves into performed knowledge about the themes of the work. Many have taken advantage of lowered barriers of entry to the production of multi-media work to create opportunities for students to engage with course themes and texts through video and other media, and then to write about how the process impacts their understanding of the genres studied in the course. Most have embraced the connectedness of the web to integrate additional resources into their teaching and expose students to a range of critical research methods.</p>
<p>These courses have done three types of work. First, they&#8217;ve produced models that are replicable within this college and beyond, and fueled a buzz and interest in teaching with digital tools that hadn&#8217;t been very present on campus until recently. Second, they&#8217;re helping us develop a local &#8220;community of practice&#8221; committed to dialogue around the implications of digital pedagogy, which has filtered into the faculty development initiatives already afoot at the Schwartz Institute.  And, third and most importantly, these courses have worked to instill in students a critical sense of how to exist intellectually and professionally on the Web by spurring dozens of small conversations about online ethics, linking, sharing, identity, performance, knowledge building, collaboration, mashing, hacking, looking, listening, and learning. These conversations have not been systematized, but they&#8217;re most definitely happening.</p>
<p><span style="text-decoration: underline;"><strong>Social Publishing</strong></span><br />
The third contour in which we&#8217;ve been working is social publishing. This is an infant compared to the two toddlers described above, and is based primarily in our work supporting <a href="http://blsciblogs.baruch.cuny.edu/fro">Freshman Seminar</a>, which draws all incoming students into conversations on <a href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a>. I&#8217;ll spare you the details of how the project has evolved, which you can read up on by following <a href="http://cac.ophony.org/tag/fro/">this tag on Cac.ophony.org</a>. We hope that our pending integration of <a href="http://buddypress.org">BuddyPress</a> will both challenge some of the alienation that happens on a purely commuter campus, and enable what <a href="http://mkgold.net/">Matt Gold</a> has called &#8220;serendipitous connections&#8221; around shared interests that otherwise might not happen. Matt and <a href="http://purelyreactive.commons.gc.cuny.edu/">George Otte&#8217;s</a> framing and stewardship of the <a href="http://commons.gc.cuny.edu/">CUNY Academic Commons</a> is very much our model for structuring and naming such a possibility. This coming Fall our first year students will be writing creative blog posts that integrate freely-available digital tools to examine their own processes of identity formation. In doing so, they will be sharing and connecting their experiences to others at the school and beyond, and also reflecting upon the choices they make and tools they use. This is non-credit bearing work, but we hope that it will provide for our students a critical base from which to use the web to engage and learn that they will carry through their four years at the College.</p>
<p>All of the above work intersects only incidentally with the formal general education curriculum at the College. And, yet, I think we can safely say that what we&#8217;ve built with <a href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a> has impacted the <em>generalizable education</em> that our students are getting. What&#8217;s needed, however, is more systematization, more points of reflection and articulation, more staging towards digital and media fluency, and more buy-in across the curriculum. As guerrillas, we&#8217;ve made and built our critique while modeling an alternative approach to supporting educational technology that saves the College money and raises its profile. If we are indeed in the midst of the revolution that will remake higher education, then we stand with our <a href="http://hackingtheacademy.org/">colleagues</a> at the vanguard, arguing that universities must embrace the core values of the open web, and work them systematically into curricula.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/guerrillas-in-the-midst/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>The Luck of Essien</title>
		<link>http://lukewaltzer.com/the-luck-of-essien/</link>
		<comments>http://lukewaltzer.com/the-luck-of-essien/#comments</comments>
		<pubDate>Fri, 28 May 2010 01:23:57 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[wc2010]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=907</guid>
		<description><![CDATA[We&#8217;re less than two weeks away from the World Cup, and football fans &#8212; Ghanaians in particular (sorry, Mo) &#8212; are cringing from the news that Michael Essien won&#8217;t recover from a January knee injury in time to participate in the first Cup to take place in Africa. I&#8217;ll assume that this blog is read [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re less than two weeks away from the World Cup, and football fans &#8212; Ghanaians in particular (sorry, <a title="Mo Ali" href="http://en.wikipedia.org/wiki/Mohammed_Naseehu_Ali" target="_blank">Mo</a>) &#8212; are cringing from the news that <a title="Essien" href="http://en.wikipedia.org/wiki/Michael_Essien">Michael Essien</a> won&#8217;t recover from a January knee injury in time to participate in the first Cup to take place in Africa. I&#8217;ll assume that this blog is read by folks (both of you) who don&#8217;t know much about world football, and will warn you now that I&#8217;m going to use this space to document my thoughts on the tournament as the anticipation builds and the drama unfolds.</p>
<p>Over the past five years, Ghana&#8217;s Essien has become one of my favorite players, despite playing for a club team &#8212; <a title="Chelsea FC" href="http://www.chelseafc.com/page/Home/0,,10268,00.html">Chelsea</a> &#8212; who I don&#8217;t particularly care for. Nicknamed &#8220;The Bison&#8221; for his exceptional speed and strength, he&#8217;s the prototypical defensive midfielder (or &#8220;holding midfielder&#8221;). Essien is beautiful to watch because he&#8217;s always involved in the action, and glides across the field from goal box to goal box, exploding towards the ball when it&#8217;s available.  The defensive midfielder is tasked with breaking up the other team&#8217;s attack and linking the ball between the defense and the offense. This player must be tough, possess great stamina, and be able to anticipate and take the right angle on the ball. Since the defensive midfielder plays just behind the attack, he/she should be able to shoot the ball on goal with power from range, and should also be able to win balls at every level of the field. In short, the defensive midfielder has to do everything that&#8217;s required of a soccer player, and do it well.  <a title="Michael Bradley" href="http://en.wikipedia.org/wiki/Michael_Bradley_%28soccer%29">Michael Bradley</a> and <a title="Rico Clark" href="http://en.wikipedia.org/wiki/Ricardo_Clark">Ricardo Clark</a> share that position for the United States, and they&#8217;re both solid and sometimes better than that. Bradley is a great tackler and able distributor, and Clark is a fantastic athlete who covers a lot of ground.</p>
<p>Without Essien, Ghana is going to have a tough time advancing from a difficult group that includes Germany, Australia, and Serbia, but I still think and hope they will (they have another fantastic player in <a title="Appiah" href="http://en.wikipedia.org/wiki/Stephen_Appiah">Stephen Appia</a>).  Going in, I thought that Ghana and <a title="Cote D'Ivoire" href="http://en.wikipedia.org/wiki/C%C3%B4te_d%27Ivoire_national_football_team">Cote D&#8217;Ivoire</a> were the two African sides with the best chances to advance deep into the tournament. But <a title="Drogba" href="http://en.wikipedia.org/wiki/Drogba">Didier Drogba&#8217;s</a> <em>Les Elephants</em> have the toughest draw of all, facing Portugal and Brazil in the opening round (and North Korea, which should be interesting).</p>
<p>Here&#8217;s a video of Essien&#8217;s brilliance, which I&#8217;ll be sad not to see in South Africa. Warning: the soundtrack is hideous, so turn it off and put on some <a title="Nas" href="http://en.wikipedia.org/wiki/Nas">Nas</a> or Bach or <a title="Luck of Lucien" href="http://listen.grooveshark.com/#/s/Luck+of+Lucien/2Njd0A" target="_blank">Tribe Called Quest</a> (&#8220;Brother brother brother, Essien you&#8217;re like no other.&#8221;)</p>
<p>Sorry, Michael.</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/ZUWDJTHJkq8&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZUWDJTHJkq8&#038;fs=1" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/the-luck-of-essien/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Scariest Story Ever; or, the Tyranny of Taxomony</title>
		<link>http://lukewaltzer.com/the-scariest-story-ever-or-the-tyranny-of-taxomony/</link>
		<comments>http://lukewaltzer.com/the-scariest-story-ever-or-the-tyranny-of-taxomony/#comments</comments>
		<pubDate>Tue, 25 May 2010 02:37:07 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Parenting]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=883</guid>
		<description><![CDATA[It was night time. I was in bed. I was awakened by a bump. I got out of bed. I looked under my bed. YIKES! I saw a monster. He growled at me. I growled bake. He got agry. I ran away he did to. I ran in my mom&#8217;s and dad&#8217;s room. The monster [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>It was night time. I was in bed. I was awakened by a bump. I got out of bed. I looked under my bed. YIKES! I saw a monster. He growled at me. I growled bake. He got agry. I ran away he did to. I ran in my mom&#8217;s and dad&#8217;s room. The monster ran to the closet. In the morning my mom and dad asked me why I was in ther bed. I told them it all. </em></strong></p>
<p style="text-align: right;"><em>- &#8220;</em>The Monster,&#8221; written precisely as above by a kindergartner I know</p>
<p style="text-align: center;"><a href="http://www.flickr.com/photos/41257438@N06/4218089249/"><img class="aligncenter" title="Where the Wild Thing Is" src="http://farm5.static.flickr.com/4052/4218089249_048702e445.jpg" alt="" width="500" height="373" /></a></p>
<p style="text-align: left;">My oldest child is completing her first year of public school.  While I was mostly pleased with her experience, there are certain components of it that, projecting forward, make me uneasy. Primary among them is the administrative impulse within public education to categorize children. Her classmates have all been divided into groups, and the groups will be evenly distributed across the various first grade classes next year. Boys and girls are each a group. Special needs children are a group, as are the &#8220;troublemakers.&#8221; Then there are the average kids, the &#8220;brights,&#8221; and the few who have horrifyingly been deemed &#8220;gifted and talented.&#8221; They&#8217;ll all be spread across 10 or so classes, with the &#8220;gifted and talenteds&#8221; collected in one lucky classroom that gets a visit from an outside teacher once a week. Once you&#8217;ve entered into the &#8220;gifted and talented&#8221; group, thanks to your performance on a secret test and assessment formula, you stay there for the duration of elementary school, like some sandbox mafia to which other children are occasionally extended an invitation. There&#8217;s also a special arts program, which pulls students out to work on projects with a district art teacher, who handpicked the kids, herself, based on her interactions with them this year.</p>
<p style="text-align: left;">I understand the need to assess students, to identify those who need extra help and to ensure that all are challenged. I understand that in order to distribute students across classes and distribute resources effectively within a system, divisions and choices must be made. But what I am seeing first-hand, which should come as no surprise to anyone who pays attention to public education, is a system that creates giant cracks connected by shoddy netting. Forward, forward, forward the students are marched, their teachers sympathetic drill sergeants who can get them a little help and extra attention within certain confines, but not really much more than that. My state, like many others, <a title="NJ Spotlight" href="http://www.njspotlight.com/stories/10/0506/0900/">doubles down by incentivizing a system</a> that reifies taxonomies that I&#8217;ve been shocked out of my naivete to find start <em>immediately</em>. I have these misgivings even though we live in a very good school district and even though our daughter has done very well.</p>
<p style="text-align: left;">I&#8217;m familiar with but not expert in theories of elementary education, and there is much I don&#8217;t know. What I do know is that I wish we could send our child to a school where she was marched on the path projected forward by the thinking in the story above, not by a system that sorted her by its expectations of what she should be able to do when. There&#8217;s a creativity and focus in &#8220;The Monster&#8221; which I fear will only be tapped and harnessed incidentally given the current trajectory of public schooling, whether she&#8217;s in a &#8220;gifted and talented&#8221; program or not. I want her to get help at school nurturing that ability, mining it and turning it into the base from which she can develop the literacy required to be a well-rounded adult. But the hegemony of quantitative assessment and the taxonomies that it leaves in its wake make me worry that such creativity will be given space to flourish less regularly than it should.</p>
<p style="text-align: left;">Approaches like what I want exist, to be sure, but we can&#8217;t afford to have our kids attend the nearest <a title="MOntessori" href="http://en.wikipedia.org/wiki/Montessori_method">Montessori</a>, and home schooling isn&#8217;t practical given our situation (and sense of what we&#8217;re capable of doing). We also care deeply about public education, and would rather contribute to its richness and successes through the unique perspectives we know our children will bring than to remove ourselves from it all together.</p>
<p style="text-align: left;">Ultimately, we&#8217;ll plan to supplement and support our children&#8217;s pursuit of their passions, and while we&#8217;re confident they&#8217;ll come out the other side whole, talented, adjusted young adults, we&#8217;re also increasingly resigned to the fact that no matter where we are it will take a certain amount of navigation, and that we&#8217;ll see things along they way that don&#8217;t sit well with us. In fact, that&#8217;s already begun.</p>
<p style="text-align: left;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<em><small><a title="Attribution-NoDerivs License" href="http://creativecommons.org/licenses/by-nd/2.0/" target="_blank"><img src="../wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a href="http://www.flickr.com/photos/41257438@N06/">minowa*naitoh</a></small></em></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/the-scariest-story-ever-or-the-tyranny-of-taxomony/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>&#8220;Write the Future&#8221;</title>
		<link>http://lukewaltzer.com/write-the-future/</link>
		<comments>http://lukewaltzer.com/write-the-future/#comments</comments>
		<pubDate>Sat, 22 May 2010 20:20:08 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>
		<category><![CDATA[wc2010]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=861</guid>
		<description><![CDATA[The 2010 World Cup is less than three weeks away, and Nike has released a dramatic three-minute movie directed by Alejandro Gonzalez Inarritu that features some of the game&#8217;s best players: Drogba, Ronaldo, Rooney, Cannavaro, Ribery, Iniesta, Fabregas, Walcott, Evra, Pique, Ronaldinho, Donovan, Howard and Silva. Non-footballers Roger Federer, Kobe Bryant, and Homer Simpson also [...]]]></description>
			<content:encoded><![CDATA[<p>The 2010 World Cup is less than three weeks away, and Nike has released a dramatic three-minute movie directed by <a href="http://www.imdb.com/name/nm0327944/">Alejandro Gonzalez Inarritu</a> that features some of the game&#8217;s best players: <a href="http://en.wikipedia.org/wiki/Didier_Drogba">Drogba</a>, <a title="Ronaldo" href="http://en.wikipedia.org/wiki/Christiano_Ronaldo" target="_blank">Ronaldo</a>, <a href="http://en.wikipedia.org/wiki/Wayne_Rooney">Rooney</a>, <a title="Cannavaro" href="http://en.wikipedia.org/wiki/Cannavaro">Cannavaro</a>, <a title="Ribery" href="http://en.wikipedia.org/wiki/Franck_Ribery">Ribery</a>, <a title="Iniesta" href="http://en.wikipedia.org/wiki/Andr%C3%A9s_Iniesta">Iniesta</a>,  <a title="Fabregas" href="http://en.wikipedia.org/wiki/Cesc_F%C3%A0bregas" target="_blank">Fabregas</a>, <a title="Walcott" href="http://en.wikipedia.org/wiki/Theo_Walcott">Walcott</a>, <a title="Evra" href="http://en.wikipedia.org/wiki/Patrice_Evra">Evra</a>, <a title="Pique" href="http://en.wikipedia.org/wiki/Gerard_Piqu%C3%A9">Pique</a>, <a title="Ronaldinho" href="http://en.wikipedia.org/wiki/Ronaldinho">Ronaldinho</a>, <a title="Donovan" href="http://en.wikipedia.org/wiki/Landon_Donovan">Donovan</a>, <a title="Howard" href="http://en.wikipedia.org/wiki/Tim_Howard">Howard</a> and <a title="Silva" href="http://en.wikipedia.org/wiki/Thiago_Emiliano_da_Silva">Silva</a>. Non-footballers <a title="Federer" href="http://en.wikipedia.org/wiki/Federer">Roger Federer</a>, <a title="Kobe" href="http://en.wikipedia.org/wiki/Kobe_Bryant">Kobe Bryant</a>, and <a title="Hmer" href="http://en.wikipedia.org/wiki/Homer_Simpson">Homer Simpson</a> also make appearances.</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/idLG6jh23yE&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/idLG6jh23yE&#038;fs=1" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The ad is pretty remarkable, cramming in knowing riffs on the personalities and national implications of the performances of many of the players listed above. Cannavaro&#8217;s celebrated glitz, Rooney&#8217;s mercurial personality (and England&#8217;s tabloid obsession with him and his teammates), Howard&#8217;s slyness, the Brazilians&#8217; joyful dancing on and off the ball, Ronaldo&#8217;s statuesque physique and persona: it&#8217;s all in there. So is the &#8220;one worldness&#8221; that the Cup quadrennially creates as people around the world tune in to the same series of events and experience them together even as they&#8217;re filtered through local perspectives.</p>
<p>Unsurprisingly, though, Nike elevates the role of the individual over the team.  Italy, Brazil, and France won the last three Cups because of how they functioned as units, not only because of the play of Pirlo, Ronaldo, or Zidane.  Yet, making and marketing icons has been key to Nike&#8217;s business model since it brought Michael Jordan into the fold, and it was so eager to release this thing that it included one towering figure, Ronaldinho, who <a title="Ronaldinho misses the cuy" href="http://soccernet.espn.go.com/world-cup/story/_/id/785217/ce/uk/&amp;cc=5901?ver=us">didn&#8217;t even make the cut for his national team</a>!</p>
<p>Gestures towards the way that futbol <a title="Weiland, World Cup" href="http://www.amazon.ca/Thinking-Fans-Guide-World-Cup/dp/0061132268">embodies a nation&#8217;s character, culture, and personality</a> <em>are </em>in the ad, though they&#8217;re backgrounded to the celebration of the individual. One of the joys of watching this tournament will be observing and celebrating and theorizing the relationship between individual brilliance and the collaborative coherence of a team. Watch for how the Germans defend, the Brazilian&#8217;s creatively move the ball to space, the Italians work as a tight unit, the Americans scrap, the Dutch fly up the field, the French mix styles, and the Portuguese play dramatically. Individual brilliance will rightly be celebrated, as it will be on full and glorious display in South Africa next month. But the best teams will move forward, and their work will be just as beautiful.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/write-the-future/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ProfPacker</title>
		<link>http://lukewaltzer.com/profpacker/</link>
		<comments>http://lukewaltzer.com/profpacker/#comments</comments>
		<pubDate>Thu, 20 May 2010 22:16:44 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Silliness]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=842</guid>
		<description><![CDATA[It&#8217;s the Spring conference season, and if your graduate school experience was anything like mine, nobody talked to you about how to pack for the semiannual excursions you&#8217;ll have to take to meet up with colleagues from other institutions. This blog post offers a checklist of the questions I ask myself as I prepare for [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s the Spring conference season, and if your graduate school experience was anything like mine, nobody talked to you about how to pack for the semiannual excursions you&#8217;ll have to take to meet up with colleagues from other institutions. This blog post offers a checklist of the questions I ask myself as I prepare for academic travel, and hopefully they can help you too!</p>
<p>First question: where am I going?</p>
<p>There&#8217;s a big difference between going to a conference at, say, University of Minnesota, and going to one at University of Miami. The respective climates of these destinations impacts how you should prepare. If you&#8217;re going to be in Miami, you&#8217;ll likely need linen pants, a bathing suit, and to start doing sit-ups at least six weeks ahead of time. If you&#8217;re going to Minnesota, you&#8217;ll probably need to bring extra sweaters, more books, and either anti-depressants or Advil for the specific type of Midwestern hangover caused by drinking cheap beer.</p>
<p>Second question: who else is going to attend?</p>
<p>There&#8217;s also a big difference between going to a militantly casual hippie love fest in <a title="That Camp" href="http://thatcamp.org/">Fairfax</a> or <a title="NV" href="http://2010.northernvoice.ca/">Vancouver</a> and going to a professional meeting of staid veterans in your discipline at a big conference center. When attending the former taking a shower, ironing your clothes, or even preparing intellectually in any significant way will just make you look like a square.  When attending the latter, you&#8217;ll need to dress as close to the way that the old white men who hold named professorships in your field at the Best Colleges dress (even if you&#8217;re a young brown woman. Actually, probably <em>especially</em> if you&#8217;re a young brown woman).</p>
<p>Third question: what&#8217;s my role at this event?</p>
<p><a href="http://www.flickr.com/photos/bg/3357206777/"><img class="alignright" style="margin: 10px;" title="Groom and Downes" src="http://farm4.static.flickr.com/3542/3357206777_e70c0c93a3.jpg" alt="" width="243" height="300" /></a>If you&#8217;re going to present your work at the conference, it&#8217;s worth thinking about how your dress accompanies or contradicts the thesis of your presentation.  If you&#8217;re making an argument embracing the chaos and revolutionary potential of the open web, jeans, a ripped tee-shirt, and a baseball hat are probably the best outfit (though, avoid wearing a Yankee hat, since that particular organization is seen by many as the embodiment of corporate hegemony). If you&#8217;re making an argument about the role of flora in Emily Dickinson&#8217;s pre-Civil War years, then perhaps consider wearing a suit with a bright colored tie or &#8212; if you&#8217;re a woman or transgendered male &#8212; a long floral-print skirt and a subdued blouse.</p>
<p>If you&#8217;re not presenting, it&#8217;s worth thinking about how your dress accompanies or contradicts your goal in attending the conference. If you&#8217;re there to attract the attention of senior scholars in your field, get a haircut and dress boldly so that they notice you in the hotel bar and remember that earlier you were sitting eagerly in the front row as they read their paper out loud for forty-five minutes. If you&#8217;re there to try to hook up with another attendee, any other attendee, then you might bring leather pants to change into for evening events. If you&#8217;re tenured, your department is picking up your registration fees, and you really just want to hear a few interesting conversations and eat free finger food, then the only reason not to wear sweat pants is that you&#8217;ll be remembered at the following year&#8217;s conference as the person who wore sweat pants in 2010. If that doesn&#8217;t matter to you: go for it!</p>
<p>Fourth question:  I&#8217;m flying. Should I check my bag, or carry it on?</p>
<p>If you&#8217;re used to traveling with children, this is an opportunity to travel light, and your packing skills are probably evolved enough so that you can fit all your things into a carry-on.  But be aware: this will place certain limitations on what you can and cannot pack.  If you&#8217;re bringing a suit, you&#8217;ll probably need a garment bag, though those are kind of expensive, break easily, and hold fewer items than other types of luggage. If you&#8217;re using traditional carry-on luggage, consider choosing a single color scheme for your outfits for the weekend, which will limit the number of items you have to take. For instance, if you&#8217;re wearing a black outfit one day, but a brown one the next, you&#8217;d probably need to bring two pairs of shoes and two belts (that is if you are the kind of academic who cares about things like &#8220;matching&#8221;). Avoid such situations at all costs!</p>
<p>It would also help to think about the various places you might find yourself while on the trip.  Might you lounge by the pool?  Will you have considerable downtime in your hotel, when you might write, grade papers, or do yoga? Do participants in your discipline favor medieval theme restaurants or strip clubs? Each of these endeavors will require a change of clothes you should anticipate.  If you&#8217;re a runner, and you can&#8217;t possibly function unless you get your miles in, factor this into your overall planning, but think long and hard about whether or not your running shoes might also work for the more casual moments on your trip.  Bringing a third pair of shoes which occupy the great distance between formal footwear and dedicated exercise footwear can really put a crimp in your packing efficiency.</p>
<p>Thinking about these questions really helps me get through conference season with minimal packing agita. Even still, sometimes you just can&#8217;t prepare for the unexpected: a torrential downpour, the spilled glass of wine or marinara, or the ripped pant leg.  But as long as you keep a happy outlook, and keep in mind that this conference experience is only one element of what will determine your success as an academic, you&#8217;ll be just fine!</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><em>H/t to Tom Woodward for <a title="Woodward" href="http://bionicteaching.com/?cat=120">first satirizing</a> </em>The Chronicle<em>. </em></p>
<p><em><small><a title="Attribution-NoDerivs License" href="http://creativecommons.org/licenses/by-nd/2.0/" target="_blank"><img src="../wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a href="http://www.flickr.com/photos/bg/3357206777/">bgblogging</a></small></em></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/profpacker/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The ArchAndroid</title>
		<link>http://lukewaltzer.com/the_archandroid/</link>
		<comments>http://lukewaltzer.com/the_archandroid/#comments</comments>
		<pubDate>Wed, 19 May 2010 02:23:15 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=809</guid>
		<description><![CDATA[Janelle Monáe has released her first full-length album &#8212; The ArchAndroid (Suites II and III of IV) &#8212; and she&#8217;s a syncretic force to be reckoned with. She&#8217;s got all the flair and outness of Lady Gaga, but brings serious chops and conceptual courage to the table.  I&#8217;ve listened to the album once all the [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Janelle Monae" href="http://en.wikipedia.org/wiki/Janelle_Mon%C3%A1e">Janelle Monáe</a> has released her first full-length album &#8212; <a title="ArchAndroid" href="http://en.wikipedia.org/wiki/The_ArchAndroid_%28Suites_II_and_III_of_IV%29" target="_blank"><em>The ArchAndroid (Suites II and III of IV)</em></a> &#8212; and she&#8217;s a syncretic force to be reckoned with. <img class="alignright" style="margin: 5px;" title="The ArchAndroid" src="http://ecx.images-amazon.com/images/I/51TW0noiVyL._SL500_AA300_.jpg" alt="" width="180" height="180" />She&#8217;s got all the flair and outness of Lady Gaga, but brings serious chops and conceptual courage to the table.  I&#8217;ve listened to the album once all the way through, and in every song I hear a dozen influences mashed up into something new and challenging.  I hear mid-1980s Prince and Michael Jackson, classic Jackie Wilson, punk-era Blondie to Daft Punk to the retro-swing of the Stray Cats, Lauren Hill, Jessye Norman, Debussy, high concept prog rock, and on and on and on.  It&#8217;s experimental, narrative, androgynous, boldly original. Much of it is really weird, some of it is a bit off-putting; most of it is funky. One song scared my 10 month-old son, and then the next had him bouncing up and down to the beat.</p>
<p>Brentin Mock writes on <a title="Mock on Monae" href="http://www.theatlantic.com/culture/archive/2010/05/the-joyful-noise-of-janelle-monae/56897/" target="_blank">TheAtlantic.com</a>:</p>
<blockquote><p>Monáe has given pop music its first Toni Morrison moment, where fantasy, funk, and the ancestors come together for an experience that evolves one&#8217;s soul. It&#8217;s been attempted before: Janet Jackson&#8217;s <a href="http://www.amazon.com/Rhythm-Nation-1814-Janet-Jackson/dp/B000002GFN/ref=sr_1_1?ie=UTF8&amp;s=music&amp;qid=1274205767&amp;sr=1-1"><em>Rhythm Nation</em></a>, I think, but that failed because it lacked the courage to carry its struggle to the finish, too often interrupted by gooey songs (&#8220;Escapade&#8221;) that reminded us she&#8217;s still a mere mortal who believes girls just wanna have fun,<em> just like you</em>. Listening to Monáe, I felt a chromatic charge, like <a href="http://www.imdb.com/character/ch0005627/">Aunty Entity</a> laughing while pointing a crossbow at my heart in the middle of Thunderdome. Yet I still recognized it as blues and funk—a smothered funk, though perhaps at times too thick, too inaccessible, but not so much I didn&#8217;t want to shake my ass. It was like the first time I read <a href="http://www.amazon.com/Beloved-Toni-Morrison/dp/0452280621"><em>Beloved</em></a>, or better <a href="http://www.amazon.com/Song-Solomon-Toni-Morrison/dp/140003342X"><em>Song of Solomon</em></a>—I didn&#8217;t quite know what to make of it, but I knew I felt 100 feet taller after reading it.</p></blockquote>
<p>You can get a sense of her style (as well as her moves) in this video for the first single off the album, &#8220;Tightrope,&#8221; a funky dance number that quotes Ingmar Bergman and features Outkast&#8217;s Big Boi in all his aesthetic glory.</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/pwnefUaKCbc&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/pwnefUaKCbc&#038;fs=1" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Listen to the whole album <a title="ArchAndroid on Grooveshark" href="http://listen.grooveshark.com/#/album/The+ArchAndroid/4016062">here</a>. Buy it <a title="Monae on iTunes" href="http://itunes.apple.com/us/artist/janelle-monae/id157483945">here</a>. Below is a playlist of a few tracks that immediately jumped out at me.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="window" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="hostname=cowbell.grooveshark.com&amp;widgetID=21206733&amp;style=metal&amp;bbg=000000&amp;bfg=666666&amp;bt=FFFFFF&amp;bth=000000&amp;pbg=FFFFFF&amp;pbgh=666666&amp;pfg=000000&amp;pfgh=FFFFFF&amp;si=FFFFFF&amp;lbg=FFFFFF&amp;lbgh=666666&amp;lfg=000000&amp;lfgh=FFFFFF&amp;sb=FFFFFF&amp;sbh=666666&amp;p=0" /><param name="src" value="http://listen.grooveshark.com/widget.swf" /><embed type="application/x-shockwave-flash" width="550" height="400" src="http://listen.grooveshark.com/widget.swf" flashvars="hostname=cowbell.grooveshark.com&amp;widgetID=21206733&amp;style=metal&amp;bbg=000000&amp;bfg=666666&amp;bt=FFFFFF&amp;bth=000000&amp;pbg=FFFFFF&amp;pbgh=666666&amp;pfg=000000&amp;pfgh=FFFFFF&amp;si=FFFFFF&amp;lbg=FFFFFF&amp;lbgh=666666&amp;lfg=000000&amp;lfgh=FFFFFF&amp;sb=FFFFFF&amp;sbh=666666&amp;p=0" allowscriptaccess="always" wmode="window"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/the_archandroid/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Step into the Sensory Box</title>
		<link>http://lukewaltzer.com/step-into-the-sensory-box/</link>
		<comments>http://lukewaltzer.com/step-into-the-sensory-box/#comments</comments>
		<pubDate>Tue, 18 May 2010 19:28:30 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Art]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=802</guid>
		<description><![CDATA[Wowzers. I think this would fit within Gardner Campbell&#8217;s definition of &#8220;media fluency.&#8221; ENVISION : Step into the sensory box from SUPERBIEN on Vimeo. h/t Greg Zinman (Greg, if you read this, give me a single preferred place to link to&#8230; you&#8217;re mad distributed yo!)]]></description>
			<content:encoded><![CDATA[<p>Wowzers. I think this would fit within <a title="Gardner on Fluency" href="http://www.gardnercampbell.net/blog1/?p=1238" target="_blank">Gardner Campbell&#8217;s definition of &#8220;media fluency.&#8221; </a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="549" height="309" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=10692284&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="549" height="309" src="http://vimeo.com/moogaloop.swf?clip_id=10692284&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/10692284">ENVISION : Step into the sensory box</a> from <a href="http://vimeo.com/user606055">SUPERBIEN</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>h/t Greg Zinman (Greg, if you read this, give me a single preferred place to link to&#8230; you&#8217;re mad distributed yo!)</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/step-into-the-sensory-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Once Again Back it’s the Incredible…</title>
		<link>http://cac.ophony.org/2010/05/18/once-again-back-its-the-incredible/</link>
		<comments>http://cac.ophony.org/2010/05/18/once-again-back-its-the-incredible/#comments</comments>
		<pubDate>Tue, 18 May 2010 15:42:52 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=3961</guid>
		<description><![CDATA[the blog animal, ZOE, blogfessor number one.
For the second straight year, we&#8217;re awarding the Blogfessor of the Year Award to Zoe Sheehan Saldana, of Baruch&#8217;s Fine and Performing Arts Department. The award comes with priority support from the Schwartz Institute on all online publishing endeavors. Of course, Zoe already has that because she&#8217;s so awesome.

Zoe [...]]]></description>
			<content:encoded><![CDATA[<p>the blog animal, ZOE, blogfessor number one.</p>
<p>For the second straight year, we&#8217;re awarding the Blogfessor of the Year Award to <a title="Zoe Sheehan" href="http://www.zoesheehan.com/" >Zoe Sheehan Saldana,</a> of Baruch&#8217;s <a title="Fine and Performing Arts" href="http://www.baruch.cuny.edu/wsas/academics/performing_arts/index.htm">Fine and Performing Arts Department</a>. The award comes with priority support from the Schwartz Institute on all online publishing endeavors. Of course, Zoe already has that because she&#8217;s so awesome.</p>
<p><a href="http://www.lumaxart.com/"><img class="alignright" style="margin: 15px 5px;" title="LuMaxArt Golden Guy Trophy Winner" src="http://farm4.static.flickr.com/3045/2293239853_ddd6bc4ef4.jpg" alt="" width="200" height="200" /></a></p>
<p>Zoe developed three sites on <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a> this academic year.  Last Fall, she did a <a title="DIY Publishing" href="http://blsciblogs.baruch.cuny.edu/art3041_f09/">Do-it-Yourself Publishing</a> site that used <a title="FWP" href="http://wordpress.org/extend/plugins/feedwordpress/">FeedWordPress</a> to syndicate nineteen individual journals where students documented making their own books from scratch (some digital, some not).</p>
<p>This Spring, she used a site in her <a title="Basic Graphic Communication" href="http://blsciblogs.baruch.cuny.edu/art2050spring2010/">Basic Graphic Communication</a> course&#8230; here&#8217;s a description of her course and how she used her course blog from her &#8220;About&#8221; page:</p>
<blockquote>
<div>
<h3>…this course</h3>
<p>This course introduces the graphic design process and methodology. Conceptual and creative thinking is stressed and understood through problem-solving assignments based on research, readings, and classroom demonstrations. The student is introduced to graphic design principles and exposed to historical and contemporary models and current standards of advertising and design. The Macintosh computer is included as the primary graphic design environment. This class is a prerequisite for all advanced Graphic Communication courses. <a href="http://blsciblogs.baruch.cuny.edu/art2050spring2010/files/2010/01/art-2050-course-guide3.pdf">Complete course guide available here, as a PDF file.</a></p>
<h3>…this blog</h3>
<p>This blog is a venue for presenting, exploring, and discussing work, ideas, and topics pertaining to the course.</p>
</div>
</blockquote>
<p>And, finally, together we developed a site for the <a href="http://blsciblogs.baruch.cuny.edu/photoexhibit">Focus on Photography Exhibit</a> which served initially as a processing space for members of the Baruch community to submit photos that they wished to be considered for a physical exhibit (which opened last week at the <a title="Mihskin" href="http://www.baruch.cuny.edu/mishkin/">Mishkin Gallery</a>).  The site&#8217;s since evolved into an online companion displaying close to 200 images submitted by Baruch students, faculty, and staff.  The submissions process used the <a href="http://wordpress.org/extend/plugins/tdo-mini-forms/">TDO Mini Forms</a> plugin to collect information from applicants, allow them to upload their images, and then it published those images to password protected pages where the exhibit judges could asses them. After decisions had been made about which images were accepted for the physical exhibit and which were not, Zoe hacked the <a title="Monotone" href="http://wordpress.org/extend/themes/monotone">Monotone</a> WordPress theme (ideal for photo blogging) to create the online exhibit, which will live beyond the one at Miskhin. The amazing photographic ability of Baruch folks is a topic for another post, but I encourage you to take your time and click through the exhibit to see the fantastic images these folks have captured.</p>
<p>What&#8217;s so great about Zoe, beyond her gracious personality and charm, is that she&#8217;s exactly what an educational technologist like me needs to get better at what I do: someone who asks questions that I don&#8217;t know the answers to, patiently awaits the answer, and works to arrive at a consensus around what can be done with the tools, time, and resources available.  She&#8217;s a great collaborator and a creative teacher.  And, as she showed in talks she gave at last year&#8217;s <a title="CUNY WordCampEd" href="http://blsciblogs.baruch.cuny.edu/cunywordcamped/">CUNY WordCampEd</a> and this year at the <a href="http://www.baruch.cuny.edu/teachtech/">Baruch Teaching and Technology Conference</a>, she has a strong grasp of the <a title="EdTech at CUNY" href="http://cac.ophony.org/2009/05/29/towards-the-next-stage-of-edtech-at-cuny/">pedagogical, political, and philosophical impulse</a> behind what we&#8217;re trying to do with educational technology at the Schwartz Institute.  As her course blogs and her own art show, she&#8217;s an O.E.: Original Edupunk, and both Baruch and the Schwartz Institute are lucky to have her around.</p>
<p><img class="alignnone" title="cc" src="http://cac.ophony.org/wp-content/plugins/photo-dropper/images/cc.png" alt="" width="16" height="16" /> <em>image credit: <a title="Lumax ARt" href="http://www.flickr.com/photos/lumaxart/2293239853/">lumax art</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2010/05/18/once-again-back-its-the-incredible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;You&#8217;ve Got to Be A Real Fat Man&#8230;&#8221;</title>
		<link>http://lukewaltzer.com/youve-got-to-be-a-real-fat-man/</link>
		<comments>http://lukewaltzer.com/youve-got-to-be-a-real-fat-man/#comments</comments>
		<pubDate>Tue, 18 May 2010 01:47:53 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[EdTech]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=782</guid>
		<description><![CDATA[Sometime last month Jeff Swain asked on Twitter &#8220;what makes something funny?&#8221; I replied with one of the foundational statements of my world view, from Woody Allen&#8217;s Crimes and Misdemeanors: &#8220;If it bends, it&#8217;s funny. If it breaks, it&#8217;s not funny.&#8221; This exchange came to mind when I was listening to Elvis Mitchell&#8217;s interview with [...]]]></description>
			<content:encoded><![CDATA[<p>Sometime last month <a title="Jeff Swain" href="http://www.personal.psu.edu/wjs186/blogs/five-4-six/" target="_blank">Jeff Swain</a> asked on Twitter &#8220;what makes something funny?&#8221; I replied with one of the foundational statements of my world view, from Woody Allen&#8217;s <em><a title="Crimes and Misdemeanors" href="http://en.wikipedia.org/wiki/Crimes_and_Misdemeanors" target="_blank">Crimes and Misdemeanors</a>: </em>&#8220;If it bends, it&#8217;s funny. If it breaks, it&#8217;s not funny.&#8221;</p>
<p>This exchange came to mind when I was listening to <a title="Michael Caine on The Treatment" href="http://www.kcrw.com/etc/programs/tt/tt100512michael_caine" target="_blank">Elvis Mitchell&#8217;s interview</a> with one of my favorite actors, <a title="Michael Caine IMDB" href="http://www.imdb.com/name/nm0000323/">Michael Caine</a>, which included the following snippet:</p>
<p><a href="http://lukewaltzer.com/wp-content/uploads/2010/05/caine.mp3">caine</a></p>
<p><em>(You&#8217;ve gotta base everything on truth and reality. Even comedy has gotta be real.  You know,  you&#8217;ve gotta be a real fat man, and the people gotta know the banana skin&#8217;s there, and you&#8217;ve gotta fall over properly.)</em></p>
<p><em><a title="00046f" href="http://www.flickr.com/photos/20711027@N07/3311614393/" target="_blank"><img class="alignright" style="border: 0pt none; margin: 5px;" src="http://farm4.static.flickr.com/3599/3311614393_beed24ac83.jpg" border="0" alt="00046f" width="187" height="288" /></a></em>Besides being a fantastic turn of phrase elegantly spun, there&#8217;s a fundamental truth here not only about comedy and acting but also about many types of communicative endeavors, including blogging. My nemesis Jim Groom <a title="Groom on Branding" href="http://bavatuesdays.com/on-uncertain-terms/">wrote a bang-up post</a> today about the concept of personal branding and the inflated role it seems to have in the work of those at the intersection of technology and education.  My hero <a title="CogDog" href="http://cogdogblog.com/">CogDog</a> <a title="Cog Dog on branding" href="http://bavatuesdays.com/on-uncertain-terms/#comment-86414">chimed in</a> with a dismissal of the phrase for elevating &#8220;the attention itself as the goal.&#8221; CogDog notes that there is something there though, something that comes in the &#8220;wake&#8221; of the ship that&#8217;s good work built up and out the right way over time.  Call it intellectual capital, call it a reputation, call it a professional persona, whatever.  Calling it a &#8220;brand&#8221; though suggests it&#8217;s the end in and of itself.  Whatever it is should be organic, earned, and reciprocated, not cultivated, nurtured, and proclaimed. D&#8217;Arcy Norman&#8217;s <a title="D'Arcy Nornan on Brands " href="http://twitter.com/dlnorman/statuses/14168452919" target="_blank">reaction to someone noting he had &#8220;built his brand&#8221; was right-on</a>.</p>
<p>This is on my mind because I&#8217;m just starting off trying to do this stuff at a regular clip and I want to try to stay focused on the reasons that I think I&#8217;m doing it.  I&#8217;m writing because I like to write to engage with my ideas and other folks&#8217; and I haven&#8217;t been doing enough of that on my own terms recently. I&#8217;m writing because I have a couple of bigger projects that I want to get to and I feel I need to write regularly to prepare.</p>
<p>But I&#8217;m writing also to test some of my theories about the roles of openness and honesty in the formation of knowledge. What I love most about the blogs of the guys I cite above is that they very much use their spaces to think through ideas in process. Jim is especially not afraid of being <a title="Designer Labels" href="http://bavatuesdays.com/the-ipad-its-all-about-the-designer-label/">extremely wrong</a>, and I only hope that if I can keep this space alive for even a short while I&#8217;ll have a sliver of the same courage. If you base &#8220;everything on truth and reality,&#8221; and if when you fall you fall over properly, it seems to me that whether or not you have a &#8220;brand&#8221; becomes irrelevant. Your work&#8217;ll be right there.</p>
<p><em><small><a title="Attribution-NoDerivs License" href="http://creativecommons.org/licenses/by-nd/2.0/" target="_blank"><img src="../wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="crazyoctopus" href="http://www.flickr.com/photos/20711027@N07/3311614393/" target="_blank">crazyoctopus</a></small></em></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/youve-got-to-be-a-real-fat-man/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
<enclosure url="http://lukewaltzer.com/wp-content/uploads/2010/05/caine.mp3" length="219974" type="audio/mpeg" />
		</item>
		<item>
		<title>Phil Jackson is a Fraud</title>
		<link>http://lukewaltzer.com/phil-jackson-is-a-fraud/</link>
		<comments>http://lukewaltzer.com/phil-jackson-is-a-fraud/#comments</comments>
		<pubDate>Mon, 17 May 2010 20:35:02 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Sport]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=774</guid>
		<description><![CDATA[I can&#8217;t think of another figure in American sport who has a persona based in such unreality as Phil Jackson. He&#8217;s nurtured an image of himself as some left-leaning progressive Zen guru all based on the fact that he looked like an Animal House-era Donald Sutherland when he played, dabbled in Buddhism, vegetarianism and drugs, [...]]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t think of another figure in American sport who has a persona based in such unreality as Phil Jackson. <a href="http://thebestten.wordpress.com/2010/02/25/chapter-42-the-phil-jackson-era/"><img class="alignright" style="margin: 10px;" title="Jackson" src="http://thebestten.files.wordpress.com/2010/02/phil-jackson-knick1.jpg" alt="" width="256" height="338" /></a>He&#8217;s nurtured an image of himself as some left-leaning progressive Zen guru all based on the fact that he looked like an <a title="Sutherland: Animal House" href="http://imagecache6.allposters.com/LRG/27/2771/HHKTD00Z.jpg">Animal House-era Donald Sutherland</a> when he played, dabbled in Buddhism, vegetarianism and drugs, and gives his players &#8220;inspirational books.&#8221;</p>
<p>And yet he got away with this racist remark when the NBA passed its dress code rule a few years ago:</p>
<blockquote><p>I don&#8217;t mean to say [this] as a snide remark toward a certain population in our society, but they have a limitation of their attention span, a lot of it probably due to too much rap music going in their ears and coming out their being….The players have been dressing in prison garb the last five or six years. All the stuff that goes on, it&#8217;s like gangster, thuggery stuff.</p></blockquote>
<p>Now, <a title="The Nation on Phil" href="http://www.thenation.com/blog/boycott-phil-jackson-why-lakers-fans-should-root-los-suns" target="_blank">he&#8217;s lecturing the Phoenix Suns</a>, who the Lakers face in the Western Conference Finals starting tonight, for taking a stand against the reactionary Arizona immigration law <em>while he at the same time speaks out in defense of it. </em></p>
<p>He sits smugly on the sidelines and whines incessantly about the officiating in-between games (when they can&#8217;t T him up). Yes, he&#8217;s a good coach, handsomely rewarded for his 10 championships (at over $10 m a year). But six of those were won with the <a title="Jordan" href="http://en.wikipedia.org/wiki/Michael_Jordan">best player to ever play the game</a>, and three were won with Shaquille O&#8217;Neal at the heights of his powers as the most dominant force of the past generation. Last year&#8217;s championship was his most impressive by a mile.</p>
<p>Contrast him with the Suns, a team of veterans that plays at warp speed, and is propelled by over-35s like Grant Hill and Steve Nash who play the right way and have paid their dues, but have never won a ring. They disagreed with the immigration law and at the urging of their owner (Robert Sarver) wore jerseys that read &#8220;Los Suns&#8221; as a protest, risking significant backlash and the loss of gate receipts to take a stand against a reactionary law.</p>
<p>They should have been praised for it, and you&#8217;d think that a hippie like Phil Jackson would support them.  But he&#8217;s a fraud.  I hope the Suns win in 6.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/phil-jackson-is-a-fraud/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>City of Refuge and Treme</title>
		<link>http://lukewaltzer.com/city-of-refuge-and-treme/</link>
		<comments>http://lukewaltzer.com/city-of-refuge-and-treme/#comments</comments>
		<pubDate>Mon, 17 May 2010 15:31:47 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[David-Simon]]></category>
		<category><![CDATA[Treme]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=754</guid>
		<description><![CDATA[Last night&#8217;s sixth episode of Treme was written by Tom Piazza, extending David Simon&#8217;s habit of bringing local voices to bear on local stories, and also of hiring writers (like George Pelecanos) who&#8217;ve mastered the art of embedding in a story the deep and persistent internal conflicts that make us human. I&#8217;m taking an educated [...]]]></description>
			<content:encoded><![CDATA[<p>Last night&#8217;s sixth episode of <em><a title="Treme" href="http://www.hbo.com/treme">Treme</a></em> was written by <a href="http://www.tompiazza.com/">Tom Piazza</a>, extending David Simon&#8217;s habit of bringing local voices to bear on local stories, and also of hiring writers (like <a title="Pelecanos" href="http://www.hachettebookgroup.com/features/georgepelecanos/">George Pelecanos</a>) who&#8217;ve mastered the art of embedding in a story the deep and persistent internal conflicts that make us human. I&#8217;m taking an educated guess that large parts of <a title="Bernette at Bava" href="http://bavatuesdays.com/thinking-about-treme-or-creighton-bernettes-youtube-rant/">Creighton Bernette&#8217;s</a> character are based upon Piazza&#8217;s experience writing about New Orleans after Katrina.  <a href="http://www.amazon.com/gp/reader/0061238619/ref=sib_dp_pop_ff?ie=UTF8&amp;p=S002#reader-link" target="_blank"><img class="alignright" style="margin: 5px;" title="Tom Piazza, City of Refuge" src="http://ecx.images-amazon.com/images/I/51ISyKQN4gL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA300_SH20_OU01_.jpg" alt="" width="300" height="300" /></a>In 2005, he published <em><a title="Piazza, Why New Orleans Matters" href="http://www.amazon.com/Why-New-Orleans-Matters-Piazza/dp/0061124834">Why New Orleans Matters</a></em>, which offers a defense of the city based in its culture and history that anticipates the simmering anger that flows through Bernette&#8217;s YouTube rants.  Piazza&#8217;s 2008 novel <em><a title="City of Refuge" href="http://www.amazon.com/City-Refuge-Novel-Tom-Piazza/dp/0061238619">City of Refuge</a></em> is one of the more captivating books I&#8217;ve read in the past few years, and anyone digging the combination of tough questions and local flavor dripping from episodes of <em>Treme</em> should check it out. It tells the story of two very different families dispersed by the flood and their efforts to reconnect with their lives, their pasts, New Orleans, and their futures. While a bit on the sentimental side, and less powerful than the true stories captured by Spike Lee&#8217;s masterful documentary <em><a title="When the Levees Broke" href="http://www.imdb.com/title/tt0783612/">When the Levees Broke</a></em> and Douglas Brinkley&#8217;s <a title="The Great Delufe" href="http://www.amazon.com/Great-Deluge-Hurricane-Katrina-Mississippi/dp/0061124230"><em>The Great Deluge</em></a>, it&#8217;s a worthy companion to <a title="Ben Waltzer on Treme" href="http://benwaltzer.org/archives/1202">all the thinking about life and culture</a> that <em>Treme</em> is spurring us to do.</p>
<p><em>Update: <a title="NOLA on PIazza" href="http://www.nola.com/treme-hbo/index.ssf/2010/05/from_page_to_screen_-_writer_t.html">here&#8217;s more from nola.com on Piazza&#8217;s role on the series. </a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/city-of-refuge-and-treme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8:30 pm</title>
		<link>http://lukewaltzer.com/830-pm/</link>
		<comments>http://lukewaltzer.com/830-pm/#comments</comments>
		<pubDate>Sun, 16 May 2010 15:45:24 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Parenting]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=744</guid>
		<description><![CDATA[One of my favorite times of day is 8:30 pm. That&#8217;s usually when I scoop up my 10 month-old son and we say good night to his didi and mommy and go upstairs to start our little ritual. First, we read a short book, like Peekaboo Puppy, Chicka Chicka Boom Boom, Goodnight Gorilla. Second, we [...]]]></description>
			<content:encoded><![CDATA[<p>One of my favorite times of day is 8:30 pm. That&#8217;s usually when I scoop up my 10 month-old son and we say good night to his didi and mommy and go upstairs to start our little ritual.</p>
<p>First, we read a short book, like <a title="Peekaboo Puppy" href="http://www.babyclassroom.com/amazing-baby-peekaboo.html">Peekaboo Puppy</a>, <a title="Chicka Chicka" href="http://www.amazon.com/Chicka-Boom-Bill-Martin-Jr/dp/068983568X" target="_blank">Chicka Chicka Boom Boom</a>, <a title="Goodnight Gorilla" href="http://www.amazon.com/Good-Night-Gorilla-Peggy-Rathmann/dp/0399230033">Goodnight Gorilla</a>.</p>
<p>Second, we turn off the lights and turn on the <a title="Night Light" href="http://www.amazon.com/Cloud-Twilight-Turtle-Constellation-Night/dp/B000BNQC58" target="_blank">Twilight Constellation Night Light</a>.</p>
<p>Then, we put on a song and have a cuddle. We tried the cry it out thing, and after a couple rough nights, it worked ok.  But then teething, ear infections, and general lack of parental constitution landed us at this new process, and it&#8217;s worked pretty well (at least for our first shot at getting him asleep at night). I know that without a doubt we&#8217;ll have a drag it out <a title="Sleep Wars" href="http://www.sweet-juniper.com/search/label/sleep%20wars" target="_blank">sleep war</a> in our future, but I&#8217;m not much for grand parental theories about getting them to sleep. Both my wife and are I pragmatists, for better or worse. We&#8217;ll try to be systematic and think about the consequences of the decisions&#8230; but we&#8217;re not much for short term sacrifice when we don&#8217;t have much faith (no matter what other parents say about sleep training) in the long term returns. Besides, this process is the opposite of onerous.</p>
<p>Usually, my boy&#8217;s asleep before the end of a couple songs.  Often, he gets real drowsy, and I put him down and rub his back until he falls asleep.  The whole time he&#8217;s chilled out and adorable, and I absolutely love this time we spend together. Sometimes, when the music turns off, I use a glowing seahorse (that plays <a title="Messiah" href="http://en.wikipedia.org/wiki/Messiah_%28Handel%29">Handel&#8217;s Messiah</a>) to transition him. </p>
<p>When my 6 year-old daughter was his age, before she developed stronger opinions than <a title="Robert Hughes" href="http://en.wikipedia.org/wiki/Robert_Hughes_%28critic%29">Robert Hughes</a>, we were able to choose the music that she listened to, and used it as an opportunity to expose her to sounds we really liked.  We&#8217;re trying that again with our second. He doesn&#8217;t need any particular song, so I&#8217;m fortunate to be able to try different tunes out.</p>
<p>Below is a playlist of songs that have recently been in the 8:30 pm rotation at our house.  Maybe they&#8217;ll bring some smiles and peaceful zzz&#8217;s to yours.  Hope you enjoy.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="250" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="window" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="hostname=cowbell.grooveshark.com&#038;widgetID=21174673&#038;style=metal&#038;bbg=000000&#038;bfg=666666&#038;bt=FFFFFF&#038;bth=000000&#038;pbg=FFFFFF&#038;pbgh=666666&#038;pfg=000000&#038;pfgh=FFFFFF&#038;si=FFFFFF&#038;lbg=FFFFFF&#038;lbgh=666666&#038;lfg=000000&#038;lfgh=FFFFFF&#038;sb=FFFFFF&#038;sbh=666666&#038;p=0" /><param name="src" value="http://listen.grooveshark.com/widget.swf" /><embed type="application/x-shockwave-flash" width="250" height="400" src="http://listen.grooveshark.com/widget.swf" flashvars="hostname=cowbell.grooveshark.com&#038;widgetID=21174673&#038;style=metal&#038;bbg=000000&#038;bfg=666666&#038;bt=FFFFFF&#038;bth=000000&#038;pbg=FFFFFF&#038;pbgh=666666&#038;pfg=000000&#038;pfgh=FFFFFF&#038;si=FFFFFF&#038;lbg=FFFFFF&#038;lbgh=666666&#038;lfg=000000&#038;lfgh=FFFFFF&#038;sb=FFFFFF&#038;sbh=666666&#038;p=0" allowscriptaccess="always" wmode="window"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/830-pm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Name</title>
		<link>http://lukewaltzer.com/the-name/</link>
		<comments>http://lukewaltzer.com/the-name/#comments</comments>
		<pubDate>Sat, 15 May 2010 03:33:02 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=738</guid>
		<description><![CDATA[photo credit: DieselDemon I changed it. I&#8217;ll probably change it again. I&#8217;m kind of jumping in here with half-formed plans, hoping the plunge will help me form them. I&#8217;ve had this space for a while as an aggregator and digital cv, and it was called, smartly, &#8220;Luke Waltzer: Educational Technologist &#124; Historian.&#8221; When I was [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="Olly Olly Oxen Free, Day 318 of 365" href="http://www.flickr.com/photos/28096801@N05/4581041971/" target="_blank"><img src="http://farm5.static.flickr.com/4046/4581041971_b52be61f07.jpg" border="0" alt="Olly Olly Oxen Free, Day 318 of 365" /></a><br />
<small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"><img src="http://lukewaltzer.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="DieselDemon" href="http://www.flickr.com/photos/28096801@N05/4581041971/" target="_blank">DieselDemon</a></small></p>
<p>I changed it. I&#8217;ll probably change it again. I&#8217;m kind of jumping in here with half-formed plans, hoping the plunge will help me form them.</p>
<p>I&#8217;ve had this space for a while as an aggregator and digital cv, and it was called, smartly, &#8220;Luke Waltzer: Educational Technologist | Historian.&#8221; When I was about to hit publish this afternoon I shuddered at the header, and quickly changed it to <span style="text-decoration: line-through;">A Blog of My Own</span> A Space of My Own.  I&#8217;ve written at and edited <a href="http://cac.ophony.org">Cac.ophony.org</a> for a few years now, and have gotten to feeling somewhat restrained by that space: our wonderful fellows post there, and I feel as though increasingly my posts there should be tied to my ed tech work at the College. But I want to write about other things, too &#8212; sports, music, politics, parenthood, history &#8212; and don&#8217;t want to feel I have to think twice before doing so.  So here I am.</p>
<p>Bloviate it is&#8230; for now.  Not only am I hostile to the concept personal branding, but I also have the good fortune of sucking at it.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/the-name/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>No Red Cards, Yet</title>
		<link>http://lukewaltzer.com/no-red-cards-yet/</link>
		<comments>http://lukewaltzer.com/no-red-cards-yet/#comments</comments>
		<pubDate>Fri, 14 May 2010 22:49:51 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Parenting]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=570</guid>
		<description><![CDATA[I&#8217;ve always wanted to coach soccer. I played competitively through college, and always was a better thinker of the game than athlete. I also love to teach. So when the opportunity to help out with my daughter&#8217;s kindergarten team came up, I jumped at the chance. We&#8217;re midway through the season, and I&#8217;m having a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always wanted to coach soccer.  I played competitively through college, and always was a better thinker of the game than athlete.  I also love to teach.  So when the opportunity to help out with my daughter&#8217;s kindergarten team came up, I jumped at the chance.</p>
<p>We&#8217;re midway through the season, and I&#8217;m having a blast. For the most part, the kids are awful. They suck big time. They suck so bad that more than half the time they don&#8217;t even know that there&#8217;s a game going on.  They suck so bad that they aren&#8217;t embarrassed when they purposefully shoot the ball into their own goals.</p>
<p>And yet, they&#8217;re actually getting better. They&#8217;re dribbling more confidently. On occasion, they&#8217;ll even pass the ball. It&#8217;s pretty amazing to see a 6 year old girl look up, see her teammate wide open across the field in front of the goal, and to watch her kick it to him.  It doesn&#8217;t even matter that instead of shooting the ball on goal, he picked it up and went and got an orange wedge.  It was a moment.</p>
<p>The improvement and comfort they&#8217;re developing with a ball at their feet means that there&#8217;s actually some space opened up for myself and the other coaches to do some teaching. The overarching goal of this enterprise is fun. Next in line is to develop in the kids an appreciation of the game. If they can get some skills out of it as well: score.</p>
<p>So, imagine my surprise when during last week&#8217;s game I felt a trickle of competitiveness flow through my veins.  We played against a team that has a kid who should be playing with 8 or 10 year-olds. He destroyed us. He had 10 goals before half-time. Every time he touched the ball, he dribbled it around our team and scored. Most of our players didn&#8217;t care. Our best goal scorer turned to me and said, &#8220;there&#8217;s no way we can beat them. He&#8217;s way gooder than me.&#8221;  Then he called the other team a &#8220;bunch of dummies&#8221; and sat down.</p>
<p><a href="http://www.flickr.com/photos/75885890@N00/393603149"><img class="alignright" style="margin: 10px;" title="Bobby Knight" src="http://farm1.static.flickr.com/127/393603149_825f0f86de.jpg" alt="" width="202" height="300" /></a>Yet, we have one player who&#8217;s shown an affinity for playing determined defense. This kid rarely smiles and talks very little. But he listens, he watches, and he loves to take the ball from other kids. After realizing that the coach of the other team was never doing to take their little Messi out of the game, or even say something to him like, &#8220;pass the ball to your teammates&#8230; you don&#8217;t need a twelfth goal,&#8221; I decided I would put my best defender on this kid to see if we could stop him.  I instructed our kid to just stay in front of him; that&#8217;s all he had to do, all he should do. Our kid looked at me and nodded. He was determined.</p>
<p>He did his best.  He really did.  The stud only scored four more goals the rest of the game, and our defender got his fair share of take-aways.  But on one play towards the end of the game our kid just plowed this dude. It wasn&#8217;t dirty, he just played through the ball, knocked Pele Jr. on his butt, and then rolled over his head. I realize that description doesn&#8217;t make it sound clean, but it was. That Ronaldinho went crying to the sidelines doesn&#8217;t make it a dirty play.</p>
<p>I was so proud of our kid, of all of our kids. Not because he hurt another player, but because he totally spilled it in pursuit of an unobtainable goal: stopping Lebron James. The other kid learned a lesson too: this is exactly what happens to highly-skilled players. Probably better he learned it now than later. And I hope that other coach was paying attention, because he put his own player in that position.</p>
<p>Jesus Christ. Am I totally nuts? Is this what it&#8217;s coming to? They&#8217;re SIX! I look forward and see my middle age filled with repeated efforts to calibrate my passion and competitiveness and love of a game well-played to moments that require restraint, good graces, and perspective. I don&#8217;t want to be the coach screaming on the sideline at a bunch of 12 year-old girls.</p>
<p>But I get it. I really do.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/no-red-cards-yet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I Can&#8217;t Quit You, Facebook!</title>
		<link>http://lukewaltzer.com/i-cant-quit-you-facebook/</link>
		<comments>http://lukewaltzer.com/i-cant-quit-you-facebook/#comments</comments>
		<pubDate>Fri, 14 May 2010 18:32:32 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=539</guid>
		<description><![CDATA[While I&#8217;d like to think that I sound like Otis Rush when I agonize over quitting Facebook, truth is, I probably sound a lot more like Jack Twist. I find Facebook&#8217;s well-documented privacy shenanigans completely abhorrent, and, like Nancy Baym, I admire friends and acquaintances who have up and left. I&#8217;ve been trying to better [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="575" height="150" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="window" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="hostname=cowbell.grooveshark.com&#038;widgetID=21154492&#038;style=metal&#038;bbg=000000&#038;bfg=666666&#038;bt=FFFFFF&#038;bth=000000&#038;pbg=FFFFFF&#038;pbgh=666666&#038;pfg=000000&#038;pfgh=FFFFFF&#038;si=FFFFFF&#038;lbg=FFFFFF&#038;lbgh=666666&#038;lfg=000000&#038;lfgh=FFFFFF&#038;sb=FFFFFF&#038;sbh=666666&#038;p=0" /><param name="src" value="http://listen.grooveshark.com/widget.swf" /><embed type="application/x-shockwave-flash" width="575" height="150" src="http://listen.grooveshark.com/widget.swf" flashvars="hostname=cowbell.grooveshark.com&#038;widgetID=21154492&#038;style=metal&#038;bbg=000000&#038;bfg=666666&#038;bt=FFFFFF&#038;bth=000000&#038;pbg=FFFFFF&#038;pbgh=666666&#038;pfg=000000&#038;pfgh=FFFFFF&#038;si=FFFFFF&#038;lbg=FFFFFF&#038;lbgh=666666&#038;lfg=000000&#038;lfgh=FFFFFF&#038;sb=FFFFFF&#038;sbh=666666&#038;p=0" allowscriptaccess="always" wmode="window"></embed></object></p>
<p><a href="http://www.flickr.com/photos/x_runaway/3853898095/"><img class="alignright" style="margin: 10px;" title="Can't Quit You" src="http://farm4.static.flickr.com/3527/3853898095_314083f2ec.jpg" alt="" width="307" height="500" /></a>While I&#8217;d like to think that I sound like Otis Rush when I agonize over quitting Facebook, truth is, I probably sound a lot more like <a href="http://en.wikipedia.org/wiki/Jack_Twist">Jack Twist</a>.</p>
<p>I find Facebook&#8217;s <a title="Times On Facebook" href="http://www.nytimes.com/2010/05/13/technology/personaltech/13basics.html?scp=2&#038;sq=facebook&#038;st=cse" target="_blank">well-documented privacy shenanigans</a> completely abhorrent, and, like <a title="Nancy Baym" href="http://mediacommons.futureofthebook.org/content/why-despite-myself-i-am-not-leaving-facebook-yet" target="_blank">Nancy Baym</a>, I admire friends and acquaintances who have up and left. I&#8217;ve been trying to better understand my own rather visceral reactions to all of this and why I&#8217;m so hesitant to quit. Many who have left are fine with Twitter being their primary mode of online social connection. I&#8217;m not, and here&#8217;s why.</p>
<p>On Facebook, I&#8217;m connected to people I grew up with, went to Hebrew school or college with, to family members and to friends I&#8217;ve made in adulthood.  They&#8217;re teachers, lawyers, journalists, professors, writers, nurses, doctors, engineers, social workers, artists, musicians, coaches, students, business folk, congressional aides, soldiers, and retirees.  They&#8217;re Jewish, Hindu, Jain, Muslim, Christian, Buddhist, Atheist, secular humanist, and there&#8217;s a few who&#8217;ve dabbled in Santaria.  Many, but not all, are to the left of center, and most are to the right of me.  These are folks from every step of my life, and I feel a lot of warmth in that space. When I post anecdotes about or photos of my kids, people comment or like or share stories of their own.  When I post interesting things I&#8217;ve read or watched or listened to, people thank me, or pass along what I&#8217;ve shared.  It&#8217;s a validating space, not least of all because of the bonds of affection I share with these folks.  At one point or another they&#8217;ve all been non-digital &#8220;friends&#8221; of mine; we all occupy a space in each others&#8217; memories.  I don&#8217;t really have the time &#8212; or even, in many cases, the inclination &#8212; to put in the effort to stay in close touch with every one of them.  But each I feel warmth towards, and think they probably feel it towards me too; ultimately, it&#8217;s nice to share an interest in each others lives.  While it&#8217;s possible I&#8217;d be able to recreate this without Facebook, I think it&#8217;s doubtful.  It wouldn&#8217;t be a tragedy to lose, but I&#8217;d miss it.</p>
<p>On Twitter, I&#8217;m connected to people I know mostly through work; either through CUNY or edtech/Wordpress or scholarly connections.  Though I tweet personal things quite often, this is primarily a professional network.  With a few notable exceptions, the people who talk to me on Twitter (those who @ me) are people I&#8217;ve known outside of the digital realm. I&#8217;ve had no shortage of folks whom I&#8217;ve spoken to on Twitter who&#8217;ve never acknowledged my presence, and while I don&#8217;t take it personally, I do find it kind of rude in an abstract way. When someone eng@ges me, I try my best to respond.</p>
<p>My Twitter network, though larger, has nowhere near the ethnic, religious, or class diversity of my Facebook network.  When I put out a question, generally people who are my friends outside of Twitter are the ones who respond.  I know that&#8217;s not the experience of many of my Tweeps, but it&#8217;s been mine.  The bonds of affection that characterize my Facebook network are rarely present for me on Twitter; when they do appear in a shared story or a knowing quip, they&#8217;re especially noteworthy.  My Twitter network does inspire and challenge and inform me more than my Facebook network. But at the same time, if I disagree with something or try to engage someone on an idea, I am almost never satisfied by the exchange.</p>
<p>Someone (whom I&#8217;ve met and like very much) retweeted the other day something along the lines of &#8220;Facebook is for who you went to high school with; Twitter is for who you WISH you went to high school with.&#8221;  Gotta say, this is one of the more obnoxious things I&#8217;ve read.  I don&#8217;t like all the people I went to high school with; but I don&#8217;t hate the fact that I went to high school with them.  I am what I am because of what was.  I feel like there&#8217;s a lot of this kind of snobbiness and self-righteousness and posturing in my Twitter network (says a poster who&#8217;s prone to snobby self-righteousness).  I know I&#8217;m free to construct the network I want to have, but since Twitter is primarily a professional space, I feel I mostly have to construct the network I <em>need</em> to have.  There are certain people I follow because they say smart things, even if I don&#8217;t think I&#8217;d really like hanging out with them.  That calculus isn&#8217;t really present for me on Facebook, which filters I think into my overall affection for the network.  Twitter can be a warm place, but it&#8217;s not always: there are people in my network who&#8217;ve displayed serious anxiety about a decision or the arc of their lives, and who&#8217;ve been met mostly with silence. On Facebook when this happens, I tend to see an outpouring of support.  Twitter is great, but it&#8217;s a wholly different experience from the one I have on Facebook, and couldn&#8217;t really fill the gap that would be created if I deleted my account.</p>
<p>I keep telling myself that the next Facebook privacy fuck up will send me packing.  In reality, I just don&#8217;t know.  Facebook, you suck.  I&#8217;m gonna lock my info down, but I don&#8217;t know if I can quit you.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/i-cant-quit-you-facebook/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Clay Shirky at the 2010 Symposium</title>
		<link>http://cac.ophony.org/2010/05/07/clay-shirky-at-the-2010-symposium/</link>
		<comments>http://cac.ophony.org/2010/05/07/clay-shirky-at-the-2010-symposium/#comments</comments>
		<pubDate>Fri, 07 May 2010 16:47:25 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=3893</guid>
		<description><![CDATA[We were very lucky to have Clay Shirky provide the morning keynote at our Tenth Annual Symposium on Communication and Communication Intensive Instruction.
We were very unlucky in that we could not get the live stream to work.  But we&#8217;re happy to be able to bring Clay&#8217;s talk to you now:

]]></description>
			<content:encoded><![CDATA[<p>We were very lucky to have <a title="Clay Shirky" href="http://shirky.com/" >Clay Shirky</a> provide the morning keynote at our <a title="Symposium" href="http://blsciblogs.baruch.cuny.edu/symposium">Tenth Annual Symposium on Communication and Communication Intensive Instruction</a>.</p>
<p>We were very unlucky in that we could not get the live stream to work.  But we&#8217;re happy to be able to bring Clay&#8217;s talk to you now:</p>
<p><object type="application/x-shockwave-flash" data="http://vimeo.com/moogaloop.swf" width="500" height="375"><param name="allowscriptaccess" value="always"/><param name="allowfullscreen" value="true"/><param name="movie" value="http://vimeo.com/moogaloop.swf"/><param name="flashvars" value="clip_id=11556174&#038;server=vimeo.com&#038;fullscreen=1&#038;show_title=1&#038;show_byline=1&#038;show_portrait=1&#038;color=00ADEF"/></object></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2010/05/07/clay-shirky-at-the-2010-symposium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performing Diasporas: Identities in Motion</title>
		<link>http://cac.ophony.org/2010/04/09/performing-diasporas-identities-in-motion/</link>
		<comments>http://cac.ophony.org/2010/04/09/performing-diasporas-identities-in-motion/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 15:26:02 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=3639</guid>
		<description><![CDATA[Several units at Baruch College, including the Schwartz Institute, are planning an initiative for the next two academic years: Performing Diasporas: Identities in Motion. The broad goal of the project is to raise the profile of the Baruch Performing Arts Center while more deeply integrating the performing arts into the curriculum and the life of [...]]]></description>
			<content:encoded><![CDATA[<p>Several units at Baruch College, including the Schwartz Institute, are planning an initiative for the next two academic years: <em><a href="http://blsciblogs.baruch.cuny.edu/performingdiasporas/" >Performing Diasporas: Identities in Motion</a></em>. The broad goal of the project is to raise the profile of the <a title="BPAC" href="http://www.baruch.cuny.edu/bpac/" >Baruch Performing Arts Center</a> while more deeply integrating the performing arts into the curriculum and the life of the College. We are finalists for a <a href="http://www.apapconference.org/creative-campus-guidelines-and-application.html?CFID=458330&amp;CFTOKEN=89169735">Creative Campus Grant</a>, a competition funded by the Doris Duke Foundation, and organized by the <a href="http://www.apapconference.org/">Association of Performing Arts Presenters</a>. The project will proceed even if we don&#8217;t get the grant (winners will be announced in August), although the programming will be more robust with the additional resources.</p>
<p style="text-align: center;"><a title="Performing Diasporas" href="http://blsciblogs.baruch.cuny.edu/performingdiasporas"><img class="size-full wp-image-3640 aligncenter" style="border: 0pt none;" title="performingdiasporas" src="http://cac.ophony.org/wp-content/uploads/2010/04/performingdiasporas.jpg" alt="" width="484" height="217" /></a></p>
<p>Performing Diasporas is centered around artists-in-residence &#8212; in 2010-2011, <a href="http://www.mayalilly.com/">Maya Lilly</a>; in 2011-2012, <a href="http://www.randyweston.info/">Randy Weston</a>; and, both years, <a href="http://yana.landowne.org/">Mahayana Landowne</a> &#8212; each of whom&#8217;s work engages questions of group and individual identity formation. These artists will perform throughout their residencies, and also lead and participate in workshops. Much of the programming, however, will be directed at incoming students. The first year experience for the next two years will revolve in large part around exploration of the project theme: the Freshman Text will be about diasporic identity, the artists-in-residence will perform at August&#8217;s Convocation, and significant components of Freshman Seminar and the curricula of selected Learning Communities will be devoted to the theme.</p>
<p>As part of the Steering Committee planning this project, I&#8217;m especially excited by a few particulars. Too often the administrative labor of higher education falls into silos whose work is narrowly focused and lacks programmatic coordination with other initiatives at the College. This project is structured to counter that impulse by drawing <a href="http://blsciblogs.baruch.cuny.edu/performingdiasporas/partners/">several partners</a> into a collaborative effort to inject consideration of both the arts and the themes of identity and diaspora into the curriculum. Obviously, this will most directly impact our first year students. But it&#8217;s also good for everyone at the College for the various moving administrative parts to find synergies. The project will raise the profile of BPAC, inject the first year experience with a variety of new ideas, and dovetails nicely with Dean Jeff Peck&#8217;s <a href="http://www.baruch.cuny.edu/wsas/academics/GlobalStudiesWeissman.htm">Global Studies Initiative</a>.</p>
<p>The project also will also help lead <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a> into its next phase.  Last Fall, <a href="http://cac.ophony.org/2009/09/24/freshbloggers/">we began supporting Freshman Seminar</a>. 1200 first year students wrote more than 6500 blog posts to 60 weblogs, all of which were aggregated ultimately into <a href="http://blsciblogs.baruch.cuny.edu/fro">a single space</a>.  FRO Blogging was a success, if solely because we were able to pull it off with little time to plan. Feedback from last Fall&#8217;s students and the Peer Mentors who led the seminars suggested the desire for more creative leeway and fewer required blog posts (students were expected to author at least six reflections on enrichment workshops they attended over the course of the term). The feedback also showed appreciation for the social component of the project; students used their blogging to get to know each other and to form community, something that&#8217;s always a challenge at a commuter campus like Baruch.</p>
<p>We&#8217;ve redesigned FRO Blogging to incorporate this feedback and to intersect with the goals of <em>Performing Diasporas</em>. There will be three specific components to FRO Blogging in Fall 2010:</p>
<ul>
<li>Students will be required to write blog posts at the beginning and end of the semester reflecting on their adjustment to college and, in the middle of the semester, will post monologues about their own backgrounds that they develop with their Peer Mentors (who will receive training). Selected monologues will be shaped and then performed by professional actors at an end-of-the-semester event: &#8220;Baruch&#8217;s Voices.&#8221;  In Spring 2011, students who are interested in performing their own monologues will workshop them and then perform at a series of Coffee Houses.</li>
<li>Each seminar will be asked to develop its blog over the course of the Fall semester. We will push this process along by crafting prompts that are distributed weekly and that encourage students to reflect upon and share their own stories.  Peer Mentors will guide the process, with assistance, and students will be nudged, but not required.  At the end of the semester, the most fully developed sites will be recognized with an award. This is an experiment in voluntary buy-in, and we realize that student investment of effort will be uneven. Yet, the constraints of a non-credit course make this approach necessary, and the goal is less to have students develop polished public spaces than to get their feet wet thinking critically about how to present artistic and intellectual material on the open web.</li>
<li>Finally, I&#8217;m excited to note that we&#8217;ll be rolling out <a href="http://www.buddypress.org">BuddyPress</a> this Fall, which will add a social networking layer to Blogs@Baruch, and afford students additional opportunities to connect with and get to know one another.</li>
</ul>
<p>Ultimately, what I like most about this project is that it treats our students as creators and makers of knowledge, not merely as consumers. Baruch students are among the most interesting students in the world, and yet few of them seem to realize this (in fact, that&#8217;s one of the things that makes them interesting). <em>Performing Diasporas</em>, because it will draw our students inside productive processes and creates multiple opportunities for them to see and share the art in their own lives, is going to be something special to watch.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2010/04/09/performing-diasporas-identities-in-motion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our Course Blog Will Eat Your Brains</title>
		<link>http://cac.ophony.org/2010/03/12/our-course-blog-will-eat-your-brains/</link>
		<comments>http://cac.ophony.org/2010/03/12/our-course-blog-will-eat-your-brains/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 17:02:32 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=3452</guid>
		<description><![CDATA[One of our goals in supporting Blogs@Baruch is to generate new models for online and hybrid instruction. We encourage the faculty we work with to confront the challenging question of what&#8217;s made pedagogically possible by using an online publishing platform.
The potential answers are vast. They include, but are not limited to, extending the classroom by [...]]]></description>
			<content:encoded><![CDATA[<p>One of our goals in supporting <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a> is to generate new models for online and hybrid instruction. We encourage the faculty we work with to confront the challenging question of what&#8217;s made pedagogically possible by using an online publishing platform.</p>
<p>The potential answers are vast. They include, but are not limited to, extending the classroom by tying together face-to-face meetings; creating opportunities for the social consideration of course material; imagining a range of audiences; staging larger assignments; inviting and providing a platform for students to easily create and share work that is visual and/or aural in nature; providing a tool for nurturing, reinforcing, and tapping into the sense of community in a course; and, of course, easily sharing course materials with students.</p>
<p>Faculty who are relatively new to teaching with technology usually design course sites that take advantage of one or maybe two of the possibilities above. So, I have to give it up for Mikhail Gershovich and his students, who are absolutely killing it on the course blog for <a href="http://blsciblogs.baruch.cuny.edu/eng3940h/">&#8220;Topics in Film: Fear, Anxiety, and Paranoia.&#8221;</a> I&#8217;ve tried not to blog about this course blog because I don&#8217;t want to be seen as buttering up the boss.  But when students showed up this week for a presentation dressed as zombies and attacked one of their classmates, I simply had to bite the bullet and write about this awesomeness.</p>
<p style="text-align: center;"><a href="http://blsciblogs.baruch.cuny.edu/eng3940h/2010/03/10/zombie-presentation-pictures/"><img class="  aligncenter" style="margin: 10px;" title="Zombie Baruch Students" src="http://blsciblogs.baruch.cuny.edu/eng3940h/files/2010/03/P11107524.jpg" alt="" width="512" height="363" /></a></p>
<p style="text-align: center;"><a href="http://blsciblogs.baruch.cuny.edu/eng3940h/2010/03/10/zombie-presentation-pictures/"><img class="  aligncenter" style="margin: 10px;" title="Eat Ur Brainz" src="http://blsciblogs.baruch.cuny.edu/eng3940h/files/2010/03/P11107542.jpg" alt="" width="512" /></a></p>
<p>They&#8217;re using their blog for a variety of purposes:</p>
<p>First, Mikhail uses it to share information with his students so that they can easily access course readings and find their way to a wide range of required and recommended films, compiled from disparate locations.</p>
<p>Second, the students are posting in a rotation to very <a href="http://blsciblogs.baruch.cuny.edu/eng3940h/2010/02/05/blogging-assignment-and-posting-schedule/">specific</a> <a href="http://blsciblogs.baruch.cuny.edu/eng3940h/2010/03/03/blog-assignment-2/">prompts</a> that he spent much time designing, and which mix an emphasis on close readings of text and film, allow students to write to reflect, and encourage students to find visual representations of their ideas.</p>
<p>Third, Mikhail has very much constructed the blog as a kind of social glue, tying students together by encouraging all to get <a href="http://gravatar.com/">Gravatars</a> (though only some have… I&#8217;m surprised Dr. G hasn&#8217;t docked their grades), to comment regularly, and to write freely.</p>
<p>Fourth, the students will be using the blog to develop and present remixes or re-enactments of short sections of films they&#8217;ve engaged this semester, and will write to reflect upon how going inside the productive process impacts their perspectives on both the themes of the course, and the art of film overall.</p>
<p style="text-align: center;"><a rel="attachment wp-att-3454" href="http://cac.ophony.org/wp-content/uploads/2010/03/Screen-shot-2010-03-12-at-11.50.57-AM.png"><img class="aligncenter size-full wp-image-3454" title="Screen shot 2010-03-12 at 11.50.57 AM" src="http://cac.ophony.org/wp-content/uploads/2010/03/Screen-shot-2010-03-12-at-11.50.57-AM.png" alt="" width="500" /></a></p>
<p>So, kudos to this group: this is a ton of work they&#8217;ve taken on, and they&#8217;ve done so openly, creatively, and collaboratively. Mikhail has taken advantage of various support services in the most productive way, from the library&#8217;s subscription to the film repository <a href="http://swank.com/college/index.html">Swank.com</a>, to his Twitter network (where he crowd sourced ideas for films, readings, and discussion), to his awesome educational technologist &#8212; me &#8212; who he&#8217;s consulted on both technology and assignment design.  We&#8217;re lucky to have their model to build upon.</p>
<p>I encourage you all to check out the site, and to scare the students by leaving some spooky comments.</p>
<p><em>*note: Jim Groom <a href="http://bavatuesdays.com/my-students-were-teenage-zombies/">posted about this course blog simultaneously</a>. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2010/03/12/our-course-blog-will-eat-your-brains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogs@Baruch Semester in Review: Part Four, Extra-Curricular Blogging</title>
		<link>http://cac.ophony.org/2009/12/17/blogsbaruch-semester-in-review-part-four-extra-curricular-blogging/</link>
		<comments>http://cac.ophony.org/2009/12/17/blogsbaruch-semester-in-review-part-four-extra-curricular-blogging/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 17:55:46 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Blogs@Baruch]]></category>
		<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=3171</guid>
		<description><![CDATA[The Baruch College community has begun to see Blogs@Baruch not just as a blogging platform or substitute course management system, but also as powerful tool for meeting a wide range of self-publishing needs.
A variety of constituencies at the College have begun using the system for a range of internal and external communication. We have some [...]]]></description>
			<content:encoded><![CDATA[<p>The Baruch College community has begun to see <a href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a> not just as a blogging platform or substitute course management system, but also as powerful tool for meeting a wide range of self-publishing needs.</p>
<p><a href="http://blsciblogs.baruch.cuny.edu/idealab"><img class="alignright size-medium wp-image-3177" style="margin: 10px;" title="Screen shot 2009-12-17 at 12.30.35 PM" src="http://cac.ophony.org/wp-content/uploads/2009/12/Screen-shot-2009-12-17-at-12.30.35-PM-300x286.png" alt="Screen shot 2009-12-17 at 12.30.35 PM" width="234" height="224" /></a>A variety of constituencies at the College have begun using the system for a range of internal and external communication. We have some fantastic librarians at the <a title="Newman Library" href="http://newman.baruch.cuny.edu/index.php" >Newman Library</a>, and they&#8217;re using Blogs@Baruch for a <a href="http://blsciblogs.baruch.cuny.edu/newmanreference/">Reference Blog</a>, an <a href="http://blsciblogs.baruch.cuny.edu/idealab/">Idea Lab</a>, and a <a href="http://blsciblogs.baruch.cuny.edu/graduateresearch/">Graduate Research Blog</a>.  They&#8217;ve also begun using <a title="CommentPress" href="http://www.futureofthebook.org/commentpress/" >CommentPress</a> to discuss a <a href="http://blsciblogs.baruch.cuny.edu/libraryplanning/">Library Planning</a> document.  The Institute shares many interests and goals with the College&#8217;s librarians, and we have so much to learn from them. I&#8217;m particularly interested in collaborating with them to explore the role of technology and self-publishing in cultivating digital literacies among our students.  This semester&#8217;s conversations were a great start.</p>
<p><a href="http://blsciblogs.baruch.cuny.edu/honors"><img class="size-medium wp-image-3173 alignright" style="margin: 10px;" title="Screen shot 2009-12-17 at 12.29.08 PM" src="http://cac.ophony.org/wp-content/uploads/2009/12/Screen-shot-2009-12-17-at-12.29.08-PM-300x262.png" alt="Screen shot 2009-12-17 at 12.29.08 PM" width="234" height="204" /></a>The Baruch College Honors Program has begun using Blogs@Baruch this semester for a number of projects.  They&#8217;re now <a href="http://blsciblogs.baruch.cuny.edu/honors/">hosting their homepage</a> on the site, taking advantage of WordPress&#8217; elegant content management features, and offering the staff an easy way to stay in contact with students (current and prospective).  Also, first year Baruch Scholars have been given their own blogs to cultivate over their careers here, and their posts aggregate <a href="http://blsciblogs.baruch.cuny.edu/baruchscholars/">here</a>.  This is envisioned as a kind-of low stakes eportfolio project: give the students the space, and encourage (but don&#8217;t require) them to explore it. Another interesting Honors publishing initiative is the <a href="http://blsciblogs.baruch.cuny.edu/cfk/">Change For Kids</a> blog, where students working as reading tutors in a number of New York City elementary schools are blogging about their experiences, taking advantage of the opportunity to collaboratively reflect on and work through the challenges of working with children.  Kudos to the Baruch Honors Program!</p>
<p>Frank Fletcher, the Executive Director of the Graduate Programs at the Zicklin School of Business, has been spearheading the business school&#8217;s move towards self-publishing. Frank has been encouraging his colleagues in Zicklin to explore a variety of initiatives on Blogs@Baruch over the past six months, and is now publishing to <a href="http://blsciblogs.baruch.cuny.edu/zickgradprograms/">Lexington 24:25</a>, where he&#8217;ll highlights developments in the MBA program and &#8220;identify emerging needs and trends in management education.&#8221; We look forward to supporting Zicklin, particularly in their efforts to connect Baruch students with potential employers and alumni.</p>
<p><a href="http://blsciblogs.baruch.cuny.edu/dollarsandsense"><img class="alignright size-medium wp-image-3176" style="margin: 10px;" title="Screen shot 2009-12-17 at 12.27.53 PM" src="http://cac.ophony.org/wp-content/uploads/2009/12/Screen-shot-2009-12-17-at-12.27.53-PM-300x281.png" alt="Screen shot 2009-12-17 at 12.27.53 PM" width="234" height="220" /></a>Three journals are now hosted on Blogs@Baruch. <a href="http://blsciblogs.baruch.cuny.edu/luc/">Lexington Universal Circuit: A Journal of Economics and Politics</a> is edited and authored by Baruch undergrads, launched last month (<a href="http://cac.ophony.org/2009/11/30/just-launched-lexington-universal-circuit/">see details here</a>), and we look forward to seeing that project continue to evolve.  Dollars &amp; Sense, which used to publish the selected journalism of Baruch students once a year as a beautiful (but costly to produce) magazine, now <a href="http://blsciblogs.baruch.cuny.edu/dollarsandsense/">publishes on a rolling basis</a>, for free, using Blogs@Baruch. While I myself miss the bound hard copy version, and see this transition as a microcosm of the larger troubles facing journalism, I&#8217;m happy that the faculty members who oversee the project&#8211; Josh Mills and Andrea Gabor&#8211; see the opportunities that are made available by self-publishing.  For instance, student work produced in the fall doesn&#8217;t need to wait until the spring for publication; a wider range of work can be featured; and it&#8217;s now easier to share the work of our students with a much broader audience.  Finally, iMagazine, the journal of student writing overseen by the Baruch College Writing Center, is in the process of migrating to Blogs@Baruch; stay tuned for a launch early next calendar year at <a href="http://cac.ophony.org/2009/12/17/blogsbaruch-semester-in-review-part-four-extra-curricular-blogging/blsciblogs.baruch.cuny.edu/imagazine">this url</a>.</p>
<p>There are other ongoing initiatives: the journalism department is using Blogs@Baruch <a href="http://blsciblogs.baruch.cuny.edu/east20s/">to plan a new The East 20s</a>, a food news site being created by the Department of Journalism and the Writing Professions at Baruch, and to <a href="http://blsciblogs.baruch.cuny.edu/jrn3510/">serve the multimedia reporting of its students</a>.  The <a href="http://blsciblogs.baruch.cuny.edu/jrn3510/">Baruch College Teaching Blog</a> remains active.  And, well, we can even include Cac.ophony.org as a Blogs@Baruch initiative; our fellows have simply been killing it this semester.</p>
<p>These are just a few of the most exciting non course-based uses of Blogs@Baruch; there are others in the planning stages that promise to take advantage of the power of this publishing platform to create unique opportunities for members of the Baruch community to interact with each other and audiences beyond the campus.  One is our plan to support selected student bloggers who&#8217;ll be tasked with chronicling their lives at the College for a broader audience.  I&#8217;ve often said that we have the most interesting students in the world, but few of them know just how interesting they are.  Blogs@Baruch, by providing multiple paths into the work our students and faculty are doing, makes the case more powerfully than I ever could.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/12/17/blogsbaruch-semester-in-review-part-four-extra-curricular-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogs@Baruch Semester in Review: Part Three, Course Blogging</title>
		<link>http://cac.ophony.org/2009/12/16/blogsbaruch-semester-in-review-part-three-course-blogging/</link>
		<comments>http://cac.ophony.org/2009/12/16/blogsbaruch-semester-in-review-part-three-course-blogging/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 21:55:21 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Blogs@Baruch]]></category>
		<category><![CDATA[Cacophony Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=3119</guid>
		<description><![CDATA[Blogs@Baruch was used in approximately two dozen courses this semester, in disciplines that included Fine and Performing Arts, English, Sociology/Anthropology, Journalism, Library Information Systems, Communication, History, and Management.

WPMu continues to provide a flexible platform for our faculty members to structure and explore online communication and composition in their courses. Course blogs this semester have been [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu" >Blogs@Baruch</a> was used in approximately two dozen courses this semester, in disciplines that included Fine and Performing Arts, English, Sociology/Anthropology, Journalism, Library Information Systems, Communication, History, and Management.</p>
<p style="text-align: center;"><a href="http://blsciblogs.baruch.cuny.edu/art3041_f09/" ><img class="aligncenter size-full wp-image-3120" style="border: 0pt none; margin: 10px;" title="Screen shot 2009-12-16 at 4.43.13 PM" src="http://cac.ophony.org/wp-content/uploads/2009/12/Screen-shot-2009-12-16-at-4.43.13-PM.png" alt="Screen shot 2009-12-16 at 4.43.13 PM" width="496" height="491" /></a></p>
<p><a title="WPMu" href="http://mu.wordpress.org" >WPMu</a> continues to provide a flexible platform for our faculty members to structure and explore online communication and composition in their courses. Course blogs this semester have been used to aggregate individual student portfolios in a <a href="http://blsciblogs.baruch.cuny.edu/art3041_f09/">Do-It-Yourself Publishing course</a>, for students to share and comment upon <a href="http://blsciblogs.baruch.cuny.edu/eng4140/">Shakespeare Scene Studies</a>, to blog about journalism internships (password protected), to write about <a href="http://blsciblogs.baruch.cuny.edu/mpenaz/">food and sustainable agriculture</a>, and to show off their <a href="http://blsciblogs.baruch.cuny.edu/jrn3510_s09/">multi-media reporting</a>.  Students have debated current events on a blog devoted to reading and discussing the New York Times (password protected), blogged about <a href="http://blsciblogs.baruch.cuny.edu/jrn3050_f09/">blogging as journalists</a>, and added stories to <a href="http://blsciblogs.baruch.cuny.edu/writingny/">Writing New York</a>.  Some faculty members have been using Blogs@Baruch as their <a href="http://blsciblogs.baruch.cuny.edu/fdonnelly/">course management system</a>, while <a href="http://blsciblogs.baruch.cuny.edu/timaubry/">others have used it</a> to try to create public writing opportunities for their students.</p>
<p>For a full listing of course blogs, <a href="http://blsciblogs.baruch.cuny.edu/projects">see our &#8220;projects&#8221; page</a>.</p>
<p>One project in particular embodied the excitement some faculty members and students bring to their work on Blogs@Baruch. Professor Shelly Eversley, in the English Department, had her American Literature students produce pod and vodcasts that analyzed texts they had encountered over the course of the semester. Buoyed by Cogdog&#8217;s <a href="http://cogdogroo.wikispaces.com/StoryTools">&#8220;The Fifty Tools&#8221;</a>, I did an hour in class on free digital story telling tools (including <a href="http://voicethread.com/#home">Voice Thread</a>, <a href="http://www.yodio.com">Yodio</a>, <a href="http://gabcast.com/">Gabcast</a>, and <a href="http://www.podcastpeople.com/">Podcast People</a>), and also gave some advice on how to construct a story that balanced narrative, analysis, and style.  The students produced amazing work, which <a href="http://blsciblogs.baruch.cuny.edu/americanliteratureifall09/category/podcast/">they collected here</a> in advance of their voting for the initial American Literature Podcast Awards (the ALPs).  They ended the semester with an awards ceremony, and have continued to post their thoughts about the class to the blog in the week since.</p>
<p>Here&#8217;s two of my favorite videos from the class:</p>
<p><a href="http://cac.ophony.org/2009/12/16/blogsbaruch-semester-in-review-part-three-course-blogging/"><em>Click here to view the embedded video.</em></a></p>
<p></p>
<p><a href="http://cac.ophony.org/2009/12/16/blogsbaruch-semester-in-review-part-three-course-blogging/"><em>Click here to view the embedded video.</em></a></p>
<p>Prof. Eversley&#8217;s project exemplifies the useful energy that multimedia tools can help students invest in their coursework. These projects are not substitutes for the critical engagement with a text or a canon that some might argue can only be attained through writing an essay; rather, they are additional paths <em>towards</em> that engagement.  These students were excited about showing off their work, used the city as a laboratory and an archive, helped each other master the technology, and showed deep engagement with their chosen texts. This is good teaching and learning, and we&#8217;re happy to support any faculty member who challenges herself and her students to use a variety of tools and literacies in their effort to produce knowledge.</p>
<p>Kudos to all of our intrepid faculty and their students for providing us with yet more examples of innovative pedagogy on Blogs@Baruch. We look forward to Spring 2010, and in particular two film courses that will be taught on the system. Blogfessors, come on down!</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/12/16/blogsbaruch-semester-in-review-part-three-course-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogs@Baruch Semester in Review: Part Two, FRO Blogging</title>
		<link>http://cac.ophony.org/2009/12/15/blogsbaruch-semester-in-review-part-two-fro-blogging/</link>
		<comments>http://cac.ophony.org/2009/12/15/blogsbaruch-semester-in-review-part-two-fro-blogging/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 21:29:39 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Blogs@Baruch]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=3055</guid>
		<description><![CDATA[Approximately 1200 incoming first year students at Baruch participated in the first phase of our experimental integration of Blogs@Baruch into the Freshman Orientation Seminar. They wrote to blogs in approximately sixty individual sections, and their posts were syndicated on the FRO Motherblog.


As I noted a couple of months ago, we had severe constraints in launching [...]]]></description>
			<content:encoded><![CDATA[<p>Approximately 1200 incoming first year students at Baruch participated in the first phase of our experimental integration of <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu" >Blogs@Baruch</a> into the Freshman Orientation Seminar. They wrote to blogs in approximately sixty individual sections, and their posts were syndicated on the <a title="FRO Motherblog" href="http://blsciblogs.baruch.cuny.edu/fro/" >FRO Motherblog</a>.</p>
<p style="text-align: center;"><a href="http://cac.ophony.org/wp-content/uploads/2009/12/diagram.jpg"><img class="aligncenter size-large wp-image-3072" style="border: 0pt none; margin: 10px;" title="diagram2" src="http://cac.ophony.org/wp-content/uploads/2009/12/diagram-1024x980.jpg" alt="diagram" width="498" height="476" /></a></p>
<p style="text-align: center;">
<p>As I noted <a href="http://cac.ophony.org/2009/09/24/freshbloggers/">a couple of months ago</a>, we had severe constraints in launching this project, so we focused primarily on the technological implications of getting it off the ground. We didn&#8217;t have sufficient time to either develop a well thought-out curriculum or to work with the Peer Mentors who oversaw the sections to help them pedagogically manage the work of their students. We might have had we gone with a pilot project, but for various reasons that suggestion was scuttled, and we proceeded full-bore.</p>
<p>These caveats aside, I think the project was a resounding success. It&#8217;s generated a staggering amount of data and also some important questions for us to address, and also helped us see what&#8217;s possible with more thoughtful design and oversight.</p>
<p>More than 6200 posts have been authored by first year students and aggregated into a single space. The vast majority of these posts are student reactions to a variety of &#8220;Enrichment Workshops&#8221; that they were required to attend. As you might imagine, many of the posts are more descriptive than analytical, and some come across as check boxes to be completed on the way to a requirement. The best posts, however, evidence deep and enthusiastic engagement with the workshops or with other elements of transitioning to life at Baruch.</p>
<p>We&#8217;ve already begun to discuss with our colleagues Mark Spergel and Shadia Sachedina how we can encourage posts that students are excited to write and also to read and comment upon. We plan to come up with a range of models and prompts that students can choose from that intersect with some of our broader goals for the project: cultivating digital literacy in our students (I plan to talk and think more with <a title="Boone on Dig Literacy Across the Curriculum" href="http://teleogistic.net/2009/12/digital-literacy-across-the-curriculum-is-it-desirable-is-it-possible/" >Boone Gorges</a> about this), easing their social and intellectual transition to college, and helping them more nimbly and thoughtfully integrate social media into academic work. I envision a series of assignments that build towards these curricular goals, while also generating the kind of shared reflection that our colleagues in Student Life want to see.  I also think we have the great opportunity to show off what interesting lives our students lead.  This is a unique institution, and blogging in Freshman Seminar can show the world just what Baruch College and CUNY are about.</p>
<p>The Peer Mentors are key to this improved design.  We&#8217;ll expand the training that they get so they&#8217;re better prepared to guide their charges.  Next semester, four sections of Freshman Seminar are running, so we finally get to run that pilot project we originally envisioned, though with the implications of scaling the thing up already known.   In the summer we&#8217;ll likely do some outreach directly to incoming students before school starts so that they are aware of this component of Freshman Seminar, and can hit the ground blogging.</p>
<p>As we plan a new design, we&#8217;re trying to figure out how we&#8217;re going to make sense of all of the data we&#8217;ve collected. It&#8217;s difficult, though not impossible, to design an assessment of data that&#8217;s been collected without assessment forefront in mind. Ryan Androsiglio, a psychologist in the Baruch Counseling Center, is helping us look at the project to see what questions can reasonably be asked of it.</p>
<p>We were able to perform a much less formal assessment of the program by soliciting feedback from Peer Mentors and First Year Students themselves. Both groups were between lukewarm and mildly-positive in their feedback, and each desired more leeway in what was blogged about and how.  The Peer Mentors I spoke with were quite clear that the strongest component of the project was the social cohesion it encouraged among the students in their seminars.</p>
<p>For a commuter campus like Baruch, FRO blogging has become a powerful tool simply because it creates more opportunities to interact.  To encourage this, we&#8217;re seriously considering integrating <a title="Buddy Press" href="http://buddypress.org/" >BuddyPress</a> into FRO 2010.</p>
<p>The social benefits of FRO blogging are already crystal clear; we now need to work on defining reasonable curricular goals, and a plan to implement them.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/12/15/blogsbaruch-semester-in-review-part-two-fro-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogs@Baruch Semester in Review: Part One, Triumph and Tribulation</title>
		<link>http://cac.ophony.org/2009/12/14/blogsbaruch-semester-in-review-part-one-triumph-and-tribulation/</link>
		<comments>http://cac.ophony.org/2009/12/14/blogsbaruch-semester-in-review-part-one-triumph-and-tribulation/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 21:31:08 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Blogs@Baruch]]></category>
		<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=2994</guid>
		<description><![CDATA[We&#8217;re winding down another eventful semester on Blogs@Baruch, and over the next few days I&#8217;d like to offer some reflections about where we&#8217;ve been and where we&#8217;re going. Our usership has tripled, and we&#8217;ve also expanded to serve a much broader range of constituencies at the college. This broadening and deepening has taught me much [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re winding down another eventful semester on <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu" >Blogs@Baruch</a>, and over the next few days I&#8217;d like to offer some reflections about where we&#8217;ve been and where we&#8217;re going. Our usership has tripled, and we&#8217;ve also expanded to serve a much broader range of constituencies at the college. This broadening and deepening has taught me much about the opportunities and challenges of supporting Baruch&#8217;s use of this powerful open source publishing platform.</p>
<div id="attachment_3034" class="wp-caption alignright" style="width: 310px"><a href="http://cac.ophony.org/wp-content/uploads/2009/12/ribaudo.png"><img class="size-medium wp-image-3034 " style="margin: 10px;" title="ribaudo" src="http://cac.ophony.org/wp-content/uploads/2009/12/ribaudo-300x218.png" alt="Mikhail Gershovich accepts the Mike Ribaudo Award at the 8th Annual CUNY IT Conference" width="300" height="218" /></a>
<p class="wp-caption-text">Mikhail Gershovich accepts the Mike Ribaudo Award at the 8th Annual CUNY IT Conference</p>
</div>
<p>Two events over the last ten days drew into sharp focus what we have accomplished and also some of the challenges we face.  At the 8th Annual CUNY IT Conference, the Schwartz Institute was awarded the Michael Ribaudo Award for Innovation in Technology. Mikhail, Suzanne, Tom, and I were recognized along with administrative teams from John Jay and the CUNY First project, as well as our good friend <a title="Matt Gold" href="http://www.mkgold.net" >Matt Gold</a>, Project Director for the <a href="http://commons.gc.cuny.edu">CUNY Academic Commons</a>.  The Commons is like a sister project to Blogs@Baruch, since we&#8217;re using the same software, and we share ideas, labor, and a philosophy about  what support for technology at the university level should entail.</p>
<p>It was an honor to be recognized for our innovations and, especially, to share the honor with Matt, since it signaled to the broader CUNY community that the work we&#8217;re undertaking is not only viable, but forward-looking and vital to the work of the University.  At the risk of sounding like an ingrate, though, I noted that the certificates we received read that this was an &#8220;Information Technology&#8221; award.   <a title="Towards the Next Stage of EdTech" href="http://cac.ophony.org/2009/05/29/towards-the-next-stage-of-edtech-at-cuny/" >I&#8217;ve made the point before</a>, and will make it again: instructional technology is not information technology. This is actually acknowledged in how the Ribaudo is awarded, as it&#8217;s split between the two areas (even if the split is not represented on the certificate). This is more than a semantic argument: we need to encourage our communities to understand the differences and to constantly reexamine how the University&#8217;s information technology architecture relates to and interacts with the deployment of technology in the service of teaching, learning, and scholarship.</p>
<p>It&#8217;s always nice to get an award, and last week brought hearty congratulations from inside and outside the Baruch community. In the midst of these pats on the back, however, I learned a little bit more about the difference between information technology and instructional technology. At approximately 7pm on Wednesday evening I happened to look at one of our blogs, and saw the dreaded:</p>
<p style="text-align: center;"><a href="http://cac.ophony.org/wp-content/uploads/2009/12/Screen-shot-2009-12-14-at-2.56.20-PM.png"><img class="size-full wp-image-2996 aligncenter" style="border: 0pt none;" title="Screen shot 2009-12-14 at 2.56.20 PM" src="http://cac.ophony.org/wp-content/uploads/2009/12/Screen-shot-2009-12-14-at-2.56.20-PM.png" alt="Screen shot 2009-12-14 at 2.56.20 PM" width="471" height="45" /></a></p>
<p>(What follows is a bit technical: <a href="http://cac.ophony.org/2009/12/14/blogsbaruch-semester-in-review-part-one-triumph-and-tribulation/#therub">click here to jump to the rub</a>).</p>
<p>The error appeared on all subdirectory blogs, while the main blog was completely white.  I logged into the command line, verified that MYSQL was running, and saw that the load on our server was fine.  The documentation I was able to find suggested either a MYSQL problem or a plugin conflict; I deleted all plugins, with no improvement.  Now, instead of the &#8220;Error Establishing a Database Connection&#8221; I was getting what geeks refer to as the <a title="White Screen of Death" href="http://en.wikipedia.org/wiki/White_screen_of_death" >&#8220;White Screen of Death&#8221;</a> across the entire installation. Having exhausted pretty much the extent of my command line knowledge, I sent out emails to our contacts at <a title="BCTC" href="http://www.baruch.cuny.edu/bctc/" >BCTC</a>, and waited for a response.</p>
<p>A couple hours later, I was contacted by a sysadmin at BCTC; he had gamely returned to work on his way home from the gym to take a look at our server. He immediately noticed that the directory that holds Blogs@Baruch was about 98% full. We knew that we were approaching space limits, but I had (mis)calculated that we could make it to the end of the semester (when we&#8217;ll be moving the entire installation over to a new server).  I was puzzled, however, because we had this issue once before and it didn&#8217;t cause an outage&#8211; it just caused an error in our database backups that resolved as soon as we opened up space. I hoped opening space would clear up our problem, but it did not.</p>
<p>We both thought that the database needed to be repaired, but neither of us were comfortable issuing the repair commands. The admin at BCTC contacted MYSQL, and got assistance repairing and then restarting MYSQL. 1 am, no improvement. We&#8217;d have to wait until morning.</p>
<p>At 6 am I took another look at the server to see if I had missed anything, and began to respond to users who were emailing about the site. I posted a query to our premium support forum with <a title="Automattic" href="http://www.automattic.com" >Automattic</a> describing the problem, and got a quick response from <a title="Donncha" href="http://ocaoimh.ie/" >Donncha</a>, the lead developer of WPMu. Unfortunately, my question included a distracting error that I found in the log that was caused by a bad Phpinfo file I had put on our server (in my haste I wrote the file in Text Edit at home, which put additional characters into the file that I wasn&#8217;t able to see). Donncha thought we might have been hacked, and asked me to check our .htaccess files, which looked ok. I caught my mistake, and explained it (along with a note apologizing for not being a system administrator). Apparently I wasn&#8217;t clear, because Donncha kept pursuing the PHP error&#8230; we weren&#8217;t communicating well.  He suggested I use error_log() to track down where the PHP problem was.</p>
<p>In the meantime, emails and phone calls from users were flowing in, and I did my best to explain to as many as possible that we were investigating the problem and should  be live again soon. Internally, though, I wasn&#8217;t so sure; we had exhausted our knowledge and the knowledge in the free forums, and the premium forum to which I was posting wasn&#8217;t yielding results. <a title="Bava" href="http://bavatuesdays.com" >Jim Groom</a> suggested we contact <a title="WPMU Tutorials" href="http://wpmututorials.com/" >Ron and Andrea Rennick</a>, who I refer to as the &#8220;WPMu Wonder Couple,&#8221; to see if they might be able to help us out.</p>
<p>Within 3 hrs of Jim&#8217;s suggestion, BCTC had vetted Ron and granted him temporary access to our server; he located and fixed the problem in about 20 minutes.  In the meantime, Barry Abrahamson, who runs the servers for <a title="WordPress.Com" href="http://www.wordpress.com">WordPress.com</a> and also posts to the premium support forum, had offered to do the same.</p>
<p>Turns out the problem was one that I had caused while trying to fix the space issue. When I deleted the plugins in mu-plugins, I failed to delete the Supercache file that sits outside of the plugins folder, inside of wp-content. I also deleted the existing cached pages.  Ron concluded that:</p>
<blockquote><p>Once you ran out of disk space, pages expiring in supercache were being refreshed as empty files. Eventually nearly all of your pages were cached as empty files. I disabled supercache by renaming advanced-cache.php in wp-content. MU checks for the file and includes it in the processing if it exists.</p>
</blockquote>
<p>He later added:</p>
<blockquote><p>I did some testing locally and reproduced the white screen by deleting  the contents of the cached version of the index.</p>
</blockquote>
<p><a name="therub">Here&#8217;s the rub:</a> we got through it. Ultimately this was two small problems masquerading as a big one. We ran out of space, then I failed to properly disable a powerful plugin running on our system, which disabled the entire install. We were down less than 20hrs, and that was only because I wasn&#8217;t systematic enough to pick up on the way Supercache works. To a certain extent, something like this was inevitable. All sites go down, even the <a title="Google Outage" href="http://news.cnet.com/widespread-google-outages-rattle-users/" >Big G</a>.   It&#8217;s the risk you run when you work online, and reasonable end users can accept it&#8211; it helps if those running the site aspire towards transparency.</p>
<p>The outage confirmed my belief in open source applications, and particularly the communal ethos that (often) animates them. Three friends: <a title="Boone Gorges" href="http://teleogistic.net" >Boone Gorges</a>, Jim, and <a title="CIC" href="http://www.castironcoding.com">Zach Davis</a>, offered assistance as soon as they learned of the problem, and moral support because they&#8217;ve each been in similar situations. The offers of hands-on help were reassuring, but I didn&#8217;t really need them because I was already in contact with the three most knowledgeable WPMu people in the world.</p>
<p>The outage also reminded me that being able to type stuff at the command line and get stuff in return does not make one a system administrator.  I&#8217;m a humble educational technologist, and I depend on information technology to get my work done.  When the lines are blurred&#8211; and I blurred them here more out of necessity than conceit&#8211; trouble may ensue. Had I been able to look holistically at the problem and troubleshoot it methodically, I probably could have caught the error. But inexperience and the pressure of supporting 3k+ users clouded my vision and convinced me the solution to the problem was out of my reach.  These are valuable lessons to carry forward on this project.</p>
<p>Within an hour of Blogs@Baruch going backup, Baruch College&#8217;s enews arrived in my mailbox, containing a congratulations to the Institute on the Ribaudo Award. I clicked on a link and landed happily at our pretty little homepage, which was humming nicely along.  When I closed my laptop, I still managed to feel pretty good about the week.</p>
<p><em>PS: I&#8217;ve learned that the following cultural artifact can help one oversee an enterprise publishing platform:</em></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="40" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="window" /><param name="allowScriptAccess" value="always" /><param name="flashvars" value="hostname=cowbell.grooveshark.com&amp;widgetID=18500061&amp;style=metal&amp;p=0" /><param name="src" value="http://listen.grooveshark.com/songWidget.swf" /><embed type="application/x-shockwave-flash" width="500" height="40" src="http://listen.grooveshark.com/songWidget.swf" flashvars="hostname=cowbell.grooveshark.com&amp;widgetID=18500061&amp;style=metal&amp;p=0" allowscriptaccess="always" wmode="window"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/12/14/blogsbaruch-semester-in-review-part-one-triumph-and-tribulation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Launched: Lexington Universal Circuit</title>
		<link>http://cac.ophony.org/2009/11/30/just-launched-lexington-universal-circuit/</link>
		<comments>http://cac.ophony.org/2009/11/30/just-launched-lexington-universal-circuit/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 18:05:30 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=2927</guid>
		<description><![CDATA[It pleases me to note the launch on Blogs@Baruch of Lexington Universal Circuit: A Journal of Economics and Politics at Baruch College.

The LUC was founded by Michael Pinto-Fernandes and Sarwat Joarder, two Baruch undergrads who have worked tirelessly to get their journal off the ground, recruiting writers and editors from Baruch and other campuses. They&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>It pleases me to note the launch on <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu" >Blogs@Baruch</a> of <a title="LUC" href="http://blsciblogs.baruch.cuny.edu/luc/" >Lexington Universal Circuit: A Journal of Economics and Politics at Baruch College</a>.</p>
<p style="text-align: center;"><a href="http://blsciblogs.baruch.cuny.edu/luc"><img class="aligncenter size-large wp-image-2930" style="border: 0pt none;" title="Screen shot 2009-11-30 at 12.44.12 PM" src="http://cac.ophony.org/wp-content/uploads/2009/11/Screen-shot-2009-11-30-at-12.44.12-PM-1024x231.png" alt="Screen shot 2009-11-30 at 12.44.12 PM" width="600" /></a></p>
<p>The LUC was founded by Michael Pinto-Fernandes and Sarwat Joarder, two Baruch undergrads who have worked tirelessly to get their journal off the ground, recruiting writers and editors from Baruch and other campuses. They&#8217;ve been an absolute joy to work with, and have thought deeply about everything from the design of their journal, to the intellectual property considerations of online publishing, to recruiting and managing a stable of writers, to integration and growth within the Baruch community.  The writing on the site is serious, thoughtful, well-sourced and solidly argued. Currently, there are 5 pieces published, and you&#8217;ll likely find much to both agree and disagree with.</p>
<p>The LUC &#8212; when combined with the recent transition of <a title="Dollars and Sense" href="http://blsciblogs.baruch.cuny.edu/dollarsandsense/" >Dollars &amp; Sense</a> and the pending move of <a title="iMagazine" href="http://www.baruch.cuny.edu/writingcenter/imagazine/" >iMagazine</a> to our system&#8211; marks the beginning of a new phase of self-publishing at Baruch College, where Blogs@Baruch supports members of our community as they make their unmediated voices heard. While I&#8217;ve worked closely with the LUC crew on the creation of their journal, and helped them think through both the implications and mechanics of online publishing, we&#8217;ve always agreed that the content is theirs, whether it&#8217;s good or bad, whether it&#8217;s Left or Right, whether it&#8217;s right or wrong.  Therein lies one of the best arguments behind Blogs@Baruch: this is a tool to help our students thoughtfully navigate the world of web, and to do so on their own terms.</p>
<p>So, congratulations, Michael, Sarwat, and the rest of the LUC crew: we look forward to following the LUC as it grows (and we might chime in with a comment or two), and we commend you on your ambition!</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/11/30/just-launched-lexington-universal-circuit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lessig at Educause</title>
		<link>http://cac.ophony.org/2009/11/11/lessig-at-educause/</link>
		<comments>http://cac.ophony.org/2009/11/11/lessig-at-educause/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 15:39:12 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=2822</guid>
		<description><![CDATA[Below is Lawrence Lessig&#8217;s keynote at last week&#8217;s Educause 2009: &#8220;It&#8217;s About Time: Getting Our Values Around Copyright.&#8221;  This 60 minute presentation is well worth the time of anyone who&#8217;s interested how antiquated copyright laws are impacting ecologies of freedom, access, education, and science in the digital age.  After delineating how we got to where [...]]]></description>
			<content:encoded><![CDATA[<p>Below is <a title="Lessig" href="http://lessig.org/" >Lawrence Lessig&#8217;s</a> keynote at last week&#8217;s Educause 2009: &#8220;It&#8217;s About Time: Getting Our Values Around Copyright.&#8221;  This 60 minute presentation is well worth the time of anyone who&#8217;s interested how antiquated copyright laws are impacting ecologies of freedom, access, education, and science in the digital age.  After delineating how we got to where we are, he advocates that rather than reforming existing laws, we instead challenge them by building <a title="Creative Commons" href="http://www.creativecommons.org" >alternative structures</a> that will more flexibly, appropriately, and ethically govern information use.  Technologists and educators have specific and crucial roles in this: technologists must &#8220;build the code&#8221; for sanity by making it easier for others to effectively play by new rules, and educators must perform and encourage in our students skepticism towards rules that simply no longer make sense.</p>
<p style="text-align: left;">Also: as always, Lessig provides a captivating model for integrating text, images, and art into a presentation.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="390" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://blip.tv/play/lG2BregsAg" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="390" src="http://blip.tv/play/lG2BregsAg" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/11/11/lessig-at-educause/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Studio H</title>
		<link>http://cac.ophony.org/2009/10/08/studio-h/</link>
		<comments>http://cac.ophony.org/2009/10/08/studio-h/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 14:38:51 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=2609</guid>
		<description><![CDATA[Professor Vera Haller gave Tom and me a tour of the Baruch Journalism Department&#8217;s spanking new Studio H yesterday. We were blown away.  The room, made possible by a generous donation from the Harnisch Foundation (overseen by Baruch graduate William Harnisch, class of 1968, and his wife Ruth Ann) provides a space for our [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Vera Haller" href="http://www.baruch.edu/wsas/departments/journalism/faculty/Haller.html" >Professor Vera Haller</a> gave Tom and me a tour of the Baruch <a title="Journalism Department" href="http://www.baruch.cuny.edu/wsas/departments/journalism/index.html" >Journalism Department&#8217;s</a> spanking new Studio H yesterday. We were blown away.  The room, made possible by a generous donation from the <a title="The Harnisch Foundation" href="http://www.thehf.org/" >Harnisch Foundation</a> (overseen by Baruch graduate William Harnisch, class of 1968, and his wife <a title="Ruth Ann Harnisch" href="http://ruthannharnisch.com/" >Ruth Ann</a>) provides a space for our talented journalism instructors to explore the future of the field with their students.</p>
<p style="text-align: center;"><a href="http://cac.ophony.org/wp-content/uploads/2009/10/studioh1.jpg"><img class="aligncenter size-full wp-image-2615" title="studioh" src="http://cac.ophony.org/wp-content/uploads/2009/10/studioh1.jpg" alt="studioh" width="482" height="363" /></a></p>
<p>The room features 24 new large screen iMacs, loaded with the latest productivity software.  A quarter of the machines have dv-decks, a dozen have microphones, all have nice Sony headphones, and students can arrange to borrow HD cameras for their assignments.  The faculty workstation controls a beautiful projector and two flat panel displays, which can be tuned show cable news or the screen of any computer.  JBL speakers in the ceiling provide terrific sound.</p>
<p>What struck Tom and I most, however, was how the space was laid out, with workstations on the exterior and a seminar table in the middle.  <a title="Computers Invade the Writing Classroom" href="http://cac.ophony.org/2009/09/28/computers-invade-the-writing-classroom/" >Talia&#8217;s post last week</a> wondered about the impact of computers on the writing classroom.  Space was conceived in Studio H in such a way that everyone can see what everyone else is doing&#8230; there&#8217;s simply no hiding.  The class can move from the workstations to the table for discussions, editing sessions, or workshops.  This flexible approach to classroom design is terrific, and reflects the goal of the Journalism Department to create a newsroom-like atmosphere for the students.</p>
<p>In a conversation with Vera, we imagined an assignment where students could watch a YouTube clip of a breaking news story &#8212;  a press conference, perhaps &#8212; and then attack it like a newsroom would on deadline.  This is not a new assignment idea, but Studio H allows faculty members to more realistically mimic the conditions of a news room, with noise, movement, openness, connectivity, chaos, and even a large digital clock counting down to deadline.  What a great example of how space can create pedagogical opportunity.</p>
<p>Congrats to the Baruch Journalism Department and its students on this wonderful new addition.  We have a long history of supporting the department&#8217;s <a title="Writing New York" href="http://blsciblogs.baruch.cuny.edu/writingny" >blogging</a> and <a title="Haller: On Assignment" href="http://blsciblogs.baruch.cuny.edu/jrn3510/" >multimedia reporting</a> initiatives, and their students do fantastic work.  We look forward to seeing and helping publish the work that Studio H helps makes possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/10/08/studio-h/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freshbloggers</title>
		<link>http://cac.ophony.org/2009/09/24/freshbloggers/</link>
		<comments>http://cac.ophony.org/2009/09/24/freshbloggers/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 14:52:37 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=2486</guid>
		<description><![CDATA[This semester, we&#8217;re managing our largest lift on Blogs@Baruch yet.  In addition to an increasing variety of projects that I&#8217;ll blog about in the coming weeks, every Freshman Seminar at Baruch currently is blogging.  That&#8217;s roughly 60 sections, populated by over 1200 students.
Yowser.
Each Seminar is directed by a Peer Mentor, a talented upper [...]]]></description>
			<content:encoded><![CDATA[<p>This semester, we&#8217;re managing our largest lift on <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu" >Blogs@Baruch</a> yet.  In addition to an increasing variety of projects that I&#8217;ll blog about in the coming weeks, every Freshman Seminar at Baruch currently is blogging.  That&#8217;s roughly 60 sections, populated by over 1200 students.</p>
<div class="wp-caption alignright" style="width: 346px"><a href="http://www.baruch.cuny.edu/news/convocation09pics.htm"><img style="margin: 10px;" title="Baruch Freshmen at Convocation, September 2009" src="http://www.baruch.cuny.edu/news/images/convopic5.jpg" alt="" width="336" height="226" /></a>
<p class="wp-caption-text">Baruch Freshmen at Convocation, September 2009.  Click to see photo in its original location.</p>
</div>
<p>Yowser.</p>
<p>Each Seminar is directed by a Peer Mentor, a talented upper level Baruch student responsible for helping newcomers adjust to life at Baruch.  The seminars meet every other week, and Freshpersons are required to attend lectures, panels, exhibits, seminars, and trainings, distributed across six &#8220;enrichment&#8221; areas over the course of the term.  Then they&#8217;re supposed to blog about their experiences, and discuss them when they meet with their classmates.</p>
<p>Launching the project was a bit of bear, as we had to create the blogs, get the users registered, tie the whole deal together, and give some training to the Peer Mentors, who are crucial to the project.  Ultimately, I created a custom theme (built on <a title="Carrington Blog" href="http://wordpress.org/extend/themes/carrington-blog" >Carrington Blog</a>), with certain core components to which each section would have access&#8211; a List of Seminars and Peer Mentors, a Guide to Blogging for Freshmen (produced by the Office of Student Affairs, who directs FRO), a description of the six enrichment areas, and a <a title="FRO Calendar" href="http://blsciblogs.baruch.cuny.edu/fro/monthly-calendar/" >Google Calendar</a> that displays upcoming events.  I then created a <a title="Mother Blog" href="http://blsciblogs.baruch.cuny.edu/fro/" >Mother Blog</a>, which syndicates posts from across the sixty sections of FRO, using the <a title="Feed WP" href="http://wordpress.org/extend/plugins/feedwordpress/" >FeedWordPress</a> plugin.  The Mother Blog collects and stores all of the posts in one place, allowing faculty and administrators to look in on the writing that&#8217;s happening in FRO.  Students are thus contributing to small discussions in their seminars, and also to a broader discussion among all Freshmen.</p>
<p style="text-align: center;"><a href="http://blsciblogs.baruch.cuny.edu/fro"><img class="aligncenter size-full wp-image-2499" title="fro" src="http://cac.ophony.org/wp-content/uploads/2009/09/fro.jpg" alt="fro" width="486" height="80" /></a></p>
<p>Thus far, they&#8217;ve been writing quite willingly.  In the fewer than three weeks since this thing was launched, we&#8217;ve aggregated about 900 posts; at the pace we&#8217;re going, we should reach well more than 4000 unique posts by the end of the semester.  That doesn&#8217;t even begin to address the commenting, which has varied in intensity across the individual blogs.  Unfortunately, we do not have the ability to mirror comments between the original location of the post and the space where it is republished&#8230; if we did, and we hope to be able to do that soon, the level of dynamism would increase.</p>
<p>Needless to say, we&#8217;re looking at an awful lot of writing, and we&#8217;re trying to make sense of it in a few ways.  We&#8217;ve created categories on the Mother Blog for each of the six enrichment areas so that posts directly pertaining to them can be easily sorted.  This will allow the two administrators who oversee FRO&#8211; Mark Spergel, the Director of Student Orientation and Freshman Year Incentive, and Shadia Sachedina, the Associate Director of Student Life&#8211; to get student perspectives on the wide range of extra-curricular programs the school offers.  Further, simple searches will allow certain segments of the Baruch community to see what students are saying about them.  For instance, many of the <a title="Library Posts" href="http://blsciblogs.baruch.cuny.edu/fro/search/library" >early posts</a> offered student perspective on tours of the library.  Our librarians have already begun searching for &#8220;library&#8221; and &#8220;library tour&#8221; on the FRO blog to read student responses.  Several <a title="Reservation Blues-- FRO Posts" href="http://blsciblogs.baruch.cuny.edu/fro/search/reservation" >blog posts</a> have engaged Sherman Alexie&#8217;s <a title="Reservation Blues" href="http://www.groveatlantic.com/grove/bin/wc.dll?groveproc~book~1456" ><em>Reservation Blues</em></a>, the Freshman text.</p>
<p>Other searches hold the potential to help identify students with like interests: &#8220;photography,&#8221; &#8220;history,&#8221; and &#8220;football&#8221; all offer returns.  Such a use of the FRO Mother Blog suggests another function that this project can play, perhaps more effectively in future iterations: social networking.  As a commuter campus, we constantly struggle to help our students see themselves as part of a community, and FRO attempts to address that tension.  Integrating Blogs@Baruch into FRO makes that attempt much stronger, as students can more easily find, connect, and engage with their classmates through our platform.  Next year, I&#8217;d love to get <a title="Buddy Press" href="http://buddypress.org/" >BuddyPress</a> working in this project to foreground the social networking component&#8230; but, one step at a time.</p>
<p>At the end of the term, we&#8217;ll  have, easily collected and archived, multiple writing samples from the majority of incoming students.  With some more thinking and organization, this holds great potential for assessment, integration into writing instruction, early intervention, and assistance for ESL students. Ultimately, this project allows us the opportunity to further the core missions of Blogs@Baruch: increasing the amount and variety of writing that our students do, and nurturing critical thinking about the use of digital tools throughout the Baruch College community.  Given the hectic nature of our launch this year, we weren&#8217;t able to spend enough time thinking collectively about the general education opportunities embedded in this project.  I had argued that we should do a pilot with 20% of the sections so that we could be sure to more closely support our users and think more intensively about the implications of what we&#8217;re doing, but for various reasons, a small-scale pilot wasn&#8217;t feasible. But when we do this again, we know that the canvas works, what the challenges are in the mechanics of the thing, and how to improve our planning.  We&#8217;ll be able to make a more significant investment in helping the Peer Mentors better understand the possibilities and implications of doing college work on the open web, crucial knowledge that they can then pass on to all Freshpersons.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/09/24/freshbloggers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Empathy</title>
		<link>http://dushtumay.sahawaltzer.org/2009/08/empathy/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/08/empathy/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 13:52:18 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=498</guid>
		<description><![CDATA[We&#8217;re dealing with contractors, and Roby feels our frustration.  Unfortunately, he often pulls too hard, and needs assistance to release his hair.

Here are some other pics from the last few weeks.  

]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re dealing with contractors, and Roby feels our frustration.  Unfortunately, he often pulls too hard, and needs assistance to release his hair.</p>
<p><img src="http://farm3.static.flickr.com/2590/3798278212_1165b32449.jpg" border="0" alt="P1020716" width="600" /></p>
<p>Here are some other pics from the last few weeks.  </p>
<p><iframe align="center" src="http://www.flickr.com/slideShow/index.gne?group_id=&#038;user_id=51294084@N00&#038;set_id=72157621846531683&#038;text=" frameBorder="0" width="600" height="600" scrolling="no"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/08/empathy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update From Dushtuville</title>
		<link>http://dushtumay.sahawaltzer.org/2009/08/update-from-dushtuville/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/08/update-from-dushtuville/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 19:49:07 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=480</guid>
		<description><![CDATA[Roby is three and a half weeks old now, and we&#8217;re absolutely loving our new family.  We&#8217;ve had some homeowners&#8217; drama, which will divert some of the money that was going to go into college funds for the kids into a remodeled bathroom.  We may install a desk in the bathroom, though, to enable efficient [...]]]></description>
			<content:encoded><![CDATA[<p>Roby is three and a half weeks old now, and we&#8217;re absolutely loving our new family.  We&#8217;ve had some homeowners&#8217; drama, which will divert some of the money that was going to go into college funds for the kids into a remodeled bathroom.  We may install a desk in the bathroom, though, to enable efficient studying.</p>
<p>The Boy is eating, sleeping, and doing that other thing that babies do like a champ.  He gets fussy in the evenings, but is generally pretty easy to soothe.  We&#8217;re much more relaxed with him than we were with his didi at this age, and I think that at least some part of his agreeable behavior is attributable to our confidence.</p>
<p>It has been a challenge managing Kaya&#8217;s enthusiasm about her little brother.  She&#8217;s unquestionably positive about the whole endeavor, but a bit antsy about where she fits in.  She is also suffering from an extreme case of listenitis.  The most common refrain around our parts is: &#8220;Kaya.  Kaya.  Kaya.  KAYA!&#8221;</p>
<p>In the good moments, we get family cuddles and smiles:</p>
<p><img  src="http://farm4.static.flickr.com/3565/3782729449_af913614c1_b.jpg" border="0" alt="IMG_0544" width="600" /></p>
<p>In the less good moments, we get grand collisions of fussiness (hit play):</p>
<p >
<p>For the most part, though, she&#8217;s helpful, and we try to remember that she&#8217;s doing her best to adjust her expectations of just how much attention she can expect from her mommy and daddy.  She&#8217;s as assertive as ever; if I promised to play with her, and I&#8217;m trying to calm the Robester down, she&#8217;ll let me know that I made a promise and, dammit, we&#8217;re gonna have that game.  That&#8217;s good for her, good for us, and ultimately its good for Roby.</p>
<p>I&#8217;m psyched to see how our family dynamic evolves as Roby becomes more sentient.</p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/08/update-from-dushtuville/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://dushtumay.sahawaltzer.org/wp-content/uploads/2009/08/crying.mp3" length="161952" type="audio/mpeg" />
		</item>
		<item>
		<title>Towards a Dak Nam</title>
		<link>http://dushtumay.sahawaltzer.org/2009/07/towards-a-dak-nam/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/07/towards-a-dak-nam/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 19:09:15 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=465</guid>
		<description><![CDATA[
In childhood, many Bengalis take on two names that follow them through life. The bhalo nam, or &#8220;good name,&#8221; is the name that appears on legal documents.  The dak nam, or &#8220;nickname,&#8221; is used in more casual settings.
Roby&#8217;s sister, his mother, and his mother&#8217;s two sisters only have bhalo nams, perhaps because their names are [...]]]></description>
			<content:encoded><![CDATA[<p><img  src="http://farm3.static.flickr.com/2495/3739329683_b258e01bcc_b.jpg" border="0" alt="P1020565.JPG" width="595" /></p>
<p>In childhood, many Bengalis take on two names that follow them through life. The <em>bhalo nam</em>, or &#8220;good name,&#8221; is the name that appears on legal documents.  The <em>dak nam</em>, or &#8220;nickname,&#8221; is used in more casual settings.</p>
<p>Roby&#8217;s sister, his mother, and his mother&#8217;s two sisters only have <em>bhalo nams</em>, perhaps because their names are so naturally cute that they&#8217;re totally <em>dak</em>-like.  Though &#8220;Roby&#8221; is similarly short and sweet, we have been rehearsing potential <em>dak nams</em> for the young &#8216;un.</p>
<p>Following are a few contenders.  And, forgive the scatological nature of some; the boy just doesn&#8217;t give us much to work with:</p>
<ul>
<li>Gaseous Clay</li>
<li>Farty McCarty</li>
<li>Mr. Poopy Pants</li>
<li>Belchy McBurpenstein</li>
<li>Robespierre</li>
<li>Roby Dooby Do-Da-Day</li>
<li>Roby Robe Robi</li>
<li>The Robester</li>
<li>Robe Bryant</li>
<li>Baby Brudda</li>
<li>Hank</li>
</ul>
<p>Any other suggestions?  In the meantime, here&#8217;s a bunch of recent pics:</p>
<p><iframe align="center" src="http://www.flickr.com/slideShow/index.gne?group_id=&#038;user_id=51294084@N00&#038;set_id=72157621625500443&#038;text=" frameBorder="0" width="600" height="600" scrolling="no"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/07/towards-a-dak-nam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roby’s Big Screen Debut</title>
		<link>http://dushtumay.sahawaltzer.org/2009/07/robys-big-screen-debut/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/07/robys-big-screen-debut/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 02:54:15 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=463</guid>
		<description><![CDATA[Share in the cuteness as Roby gets his hair done and burps for the camera while Didi looks on from the other room.
Warning: this may not be of interest to those unrelated or unimpressed by the simple feats of a 1 week-old. 
]]></description>
			<content:encoded><![CDATA[<p>Share in the cuteness as Roby gets his hair done and burps for the camera while Didi looks on from the other room.</p>
<p><em>Warning: this may not be of interest to those unrelated or unimpressed by the simple feats of a 1 week-old. </em></p>
<p><a href="http://dushtumay.sahawaltzer.org/2009/07/robys-big-screen-debut/">
<p><em>Click here to view the embedded video.</em></p>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/07/robys-big-screen-debut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beautifully Tired</title>
		<link>http://dushtumay.sahawaltzer.org/2009/07/beautifuly-tired/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/07/beautifuly-tired/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 01:05:01 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=447</guid>
		<description><![CDATA[Last night was the first time since Kaya was an infant that I had that odd combination of utter exhaustion and existential satisfaction that many parents know well.  The brain goes to interesting places when it&#8217;s part of a body that&#8217;s fast asleep yet is itself tuned into the frequency of a nearby child [...]]]></description>
			<content:encoded><![CDATA[<p>Last night was the first time since Kaya was an infant that I had that odd combination of utter exhaustion and existential satisfaction that many parents know well.  The brain goes to interesting places when it&#8217;s part of a body that&#8217;s fast asleep yet is itself tuned into the frequency of a nearby child learning to breathe and process saliva and sleep and exist in this world.  I was just as terrified in our first night at home with Roby as I was with Kaya, because his vulnerability is so utterly heartbreaking and he&#8217;s so completely dependent upon us.   Yet I was also able to calm myself more quickly this time; all signs are that he&#8217;s a healthy baby, and they all gurgle and get restless.  Intellectually, I know we&#8217;ll all settle into routine and learn to manage the exhaustion.   I was and am prepared for how tired I&#8217;m going to get these next weeks and months.  Last night as I lay in bed 4 hours after I went to sleep, having gotten all of about 20 minutes, I smiled to myself at how beautifully tired I was.  Only days from now, or perhaps tonight, the beauty will fade away and there&#8217;ll only be exhaustion.  But last night I was surfing on the tension between wanting, <em>needing</em> to sleep <em>so</em> badly, and yet needing even more to bear witness to my boy&#8217;s first night in our home.  It was one of the best feelings I&#8217;ve ever had.</p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/07/beautifuly-tired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roby’s Born Day</title>
		<link>http://dushtumay.sahawaltzer.org/2009/07/robys-born-day/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/07/robys-born-day/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 03:55:37 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=436</guid>
		<description><![CDATA[Today, we welcomed Roby Saha Waltzer into our family.  He arrived at 8:07 pm, weighing in at a solid 7 lbs 12 oz, and stretching a full twenty inches.
The name &#8220;Roby&#8221; (pronounced &#8220;Row-bee&#8221;) is derived from the Bangla pronunciation of Ravi, which means &#8220;sun.&#8221;  We settled on it because of its compatibility with his didi&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Today, we welcomed Roby Saha Waltzer into our family.  He arrived at 8:07 pm, weighing in at a solid 7 lbs 12 oz, and stretching a full twenty inches.</p>
<p>The name &#8220;Roby&#8221; (pronounced &#8220;Row-bee&#8221;) is derived from the Bangla pronunciation of Ravi, which means &#8220;sun.&#8221;  We settled on it because of its compatibility with his didi&#8217;s name (&#8221;Kaya and Roby&#8221; seemed to us to naturally roll off the tongue), and because it feels both familiar and unique at once.  It&#8217;s also close to the name &#8220;Ruby,&#8221; who was a cherished member of the Waltzer family (my grandfather&#8217;s brother, and Kaya&#8217;s cousin Jasper&#8217;s great-grandfather).  We had some disagreement over the way it would be spelled&#8211; momma wanted an &#8220;i&#8221; while daddy wanted a &#8220;y.&#8221;  Ultimately, momma relented, agreeing to spell it any way I wanted&#8230; although when I suggested we spell it &#8220;H-a-n-k,&#8221; she pulled that offer off the table.  </p>
<p>Needless to say, we&#8217;re ecstatic, and looking forward to the challenge of managing and raising DushtuThey instead of Dushtumay.</p>
<p>Here&#8217;s some of The Boy&#8217;s first photos:</p>
<p><iframe align="center" src="http://www.flickr.com/slideShow/index.gne?group_id=&#038;user_id=51294084@N00&#038;set_id=72157621157037908&#038;text=" frameBorder="0" width="600" height="600" scrolling="no"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/07/robys-born-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Posterous: Online Publishing Made Eas(ier)y</title>
		<link>http://cac.ophony.org/2009/06/19/posterous-online-publishing-made-easiery/</link>
		<comments>http://cac.ophony.org/2009/06/19/posterous-online-publishing-made-easiery/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 14:35:23 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/2009/06/19/posterous-online-publishing-made-easiery/</guid>
		<description><![CDATA[Stephen Francoeur, one of Baruch’s many awesome librarians, turned me on to Posterous yesterday.  This is a service that allows you to publish to the web via a simple email to post@posterous.com; your posts will compile in your own space on posterous.com or can be configured to push out to your blog, Facebook or Twitter feeds, [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Francouer Twitter" href="http://twitter.com/s_francoeur"><img class="size-full wp-image-2309 alignright" style="margin: 10px;" title="Picture 4" src="http://cac.ophony.org/wp-content/uploads/2009/06/Picture-4.png" alt="Picture 4" width="119" height="120" />Stephen Francoeur</a>, one of Baruch’s many awesome librarians, turned me on to <a title="Posterous" href="http://www.posterous.com" >Posterous</a> yesterday.  This is a service that allows you to publish to the web via a simple email to <a href="mailto:post@posterous.com">post@posterous.com</a>; your posts will compile in your own space on <a href="http://posterous.com">posterous.com</a> or can be configured to push out to your blog, Facebook or Twitter feeds, Flickr account, etc.  The process elegantly handles image files, mp3s, and videos, and allows for tagging via “tag:” enclosed in double parentheses.  Posterous also offers support for group blogs and custom domains, and it’s easy to see this is a good tool for publishing while mobile or even for enabling those who are reticent to go through the trauma of learning the administrative interface of WordPress to publish easily from their Hotmail or AOL email accounts.</p>
<p>(By the way, I published this through an email to Posterous).</p>
<p>((tag: online-publishing, webtools))</p>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://lukewaltzer.posterous.com/posterous-online-publishing-made-easiery">Luke&#8217;s posterous</a></p>
<p><strong>LW add from inside Cacophony</strong>: I had to come into the Cacophony post to clean up the links and image&#8230; seems as though keeping the html formatting and attachments elegant through the push might take some work.  Further, it looks as though the tags didn&#8217;t talk to the Cacophony tag function.  So, the push is janky&#8230; but the potential is still there.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/06/19/posterous-online-publishing-made-easiery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oy…</title>
		<link>http://dushtumay.sahawaltzer.org/2009/06/oy/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/06/oy/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 02:01:30 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=389</guid>
		<description><![CDATA[Paula&#8217;s now at the stage on her pregnancy calendar where it&#8217;s advising us about buying car seats and picking out outfits in which to bring the baby home.  Meaning, the baby is just fattening up at this point.  She&#8217;ll be full term in a week and a half.
Excuse me, I have to go put the [...]]]></description>
			<content:encoded><![CDATA[<p>Paula&#8217;s now at the stage on her pregnancy calendar where it&#8217;s advising us about buying car seats and picking out outfits in which to bring the baby home.  Meaning, the baby is just fattening up at this point.  She&#8217;ll be full term in a week and a half.</p>
<p>Excuse me, I have to go put the crib together.  In the meantime, 1 year old Kaya just about sums it up:</p>
<p><object width="500" height="450" data="http://blip.tv/play/AYGE7TGPhUc" type="application/x-shockwave-flash"><param name="src" value="http://blip.tv/play/AYGE7TGPhUc" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/06/oy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go Bulldogs!</title>
		<link>http://dushtumay.sahawaltzer.org/2009/06/go-bulldogs/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/06/go-bulldogs/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 01:43:27 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=335</guid>
		<description><![CDATA[Last night we attended a mixer for new families at the elementary school where Kaya will begin her march from kindergarten to the Supreme Court this September (though it still remains to be seen whether she&#8217;ll be there on the bench or as the subject of some sort of appeal).
She&#8217;s now at an age that [...]]]></description>
			<content:encoded><![CDATA[<p>Last night we attended a mixer for new families at the elementary school where Kaya will begin her march from kindergarten to the Supreme Court this September (though it still remains to be seen whether she&#8217;ll be there on the bench or as the subject of some sort of appeal).</p>
<p>She&#8217;s now at an age that I vividly remember, and attending her <strong><a title="Ever Ever After" href="http://blip.tv/file/2138197" >dance recital</a></strong> last month made clear to me that watching Kaya proceed through her childhood will be accompanied by memories of my own.  I&#8217;ve thought much about that dance recital over the past few weeks.  It provoked in me an odd mixture of emotions with which I&#8217;ve yet to adequately come to grips&#8211; I was so proud that she was performing something she worked hard on for months, and impressed by the level of support the community was showing for these girls who strutted their stuff confidently across the stage.  At the same time, I was horrified by the sexualization of pre-pubescent girls evident in many of the performances, and bothered by what I saw as an emphasis on showiness and performance rather than on craft and enjoyment.  While the event was pleasant on the whole, there was simply no need for the expensive, ornate costumes sported by each group.  I know, I know&#8230; they&#8217;re just kids, let them have their fun.  But that&#8217;s my point.  I feel that the dance would have been much more meaningful and perhaps even <em>more</em> fun with a dozen girls in black leotards stripped of the myriad cultural references that signified to the audience so much adorable cuteness.  The kids are naturally adorably cute without all that stuff&#8230; shed it and let them show what they&#8217;ve learned, for crying out loud!  Of course&#8230; I couldn&#8217;t have been prouder of Kaya, and tears streamed down my cheeks throughout her entire performance.</p>
<p>Another component of the recital that bothered me was that such a high percentage of the kids were white.  This is nothing against you, my potential white reader, and certainly nothing against white kids, but rather a byproduct of my strong preference for diverse communal experiences.  The mixer last night was majority minority, which was surprising because the state statistics show that the school is 80%+ white.  P and I remembered that there had also been a mixer in the morning, and thought maybe most of the white families had attended that rather than the evening event?   Who knows.  Maybe white people are less likely to let their kids stay up that late.</p>
<p><img class="size-medium wp-image-336 alignleft"  title="picture-11" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2009/06/picture-11-300x195.png" alt="picture-11" width="300" height="195" /></p>
<p>The school serves close to 600 students from pre-K to 2nd grade, and was impressive&#8230; art and music rooms support vibrant programs, a new playground was just completed for the pre-k and kindergartners, and the library even had a half dozen iMacs.  My elementary school had none of these things (well, we did have a great new playground, which Mrs. Waltzer helped put together, even if she wouldn&#8217;t allow me to go on the monkey bars), but I loved it then and remember it fondly now because of the kinds of people I was exposed to as a Verlinden Little Red (school pictured at left).  I had some good teachers and developed academic skills; but more importantly, I was exposed to a variety of types of kids and families and ways of looking at the world, which shaped me just as much as learning how to read or add and subtract.</p>
<p>Kaya&#8217;s about to become a Bulldog (the mascot of her elementary school), and I hope, hope, hope that when she looks back upon her own elementary school experience as an adult she feels its lasting impact as deeply and fondly as I feel mine.  She did turn to me after we toured the school last night and said &#8220;this looks like it&#8217;s a fun school, dad!&#8221;</p>
<p>That&#8217;s a good start.</p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/06/go-bulldogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 2009 CUNY IT Conference: Managing Complexity</title>
		<link>http://cac.ophony.org/2009/06/09/the-2009-cuny-it-conference-managing-complexity/</link>
		<comments>http://cac.ophony.org/2009/06/09/the-2009-cuny-it-conference-managing-complexity/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 20:44:27 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=2272</guid>
		<description><![CDATA[
 photo credit: tantek

I was excited to get the Call For Papers for the CUNY IT Conference, scheduled for December 4.  This year&#8217;s theme will be &#8220;Information Technology/Instructional Technology in CUNY: Managing Complexity,&#8221; and the presentations will ask:


What works? How has technology not just changed but improved our instructional and administrative practices? What tests have [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="IMG_1894.JPG" href="http://www.flickr.com/photos/39039882@N00/2100632538/" ><img src="http://farm3.static.flickr.com/2324/2100632538_bccdfcc51c.jpg" border="0" alt="IMG_1894.JPG" /></a><br />
<small><a title="Attribution-NonCommercial License" href="http://creativecommons.org/licenses/by-nc/2.0/" ><img src="http://cac.ophony.org/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" >photo</a> credit: <a title="tantek" href="http://www.flickr.com/photos/39039882@N00/2100632538/" >tantek</a></small>
</p>
<p style="text-align: left;">I was excited to get the <a href="http://www.dln.cuny.edu/it/cfp.html" >Call For Papers for the CUNY IT Conference</a>, scheduled for December 4.  This year&#8217;s theme will be <strong>&#8220;Information Technology/Instructional Technology in CUNY: Managing Complexity,&#8221;</strong> and the presentations will ask:</p>
<blockquote style="text-align: left;">
<ol>
<li><em>What works? How has technology not just changed but improved our instructional and administrative practices? What tests have been met? What value added? What innovations deserve to be extended and duplicated?</em></li>
<li><em>What works together? What mixtures of modes or services are available? Are we moving to the use of &#8220;mash-ups&#8221; in teaching and administration, combinations of applications that work together? How do we manage and sustain such combinations?</em></li>
<li><em>What helps us work together? What innovations allow us to be mutually supportive? What are we doing in the way of training and mentoring? How are we spreading the word to colleagues, introducing them to new methods and technologies?</em></li>
<li><em>What points to a shared direction? What changes on our horizon are most promising, most scalable and sustainable? What developments call for collaborative and strategic thinking? What changes are especially important to a multi-campus university?</em></li>
</ol>
</blockquote>
<p style="text-align: left;">Themes the past four years (there doesn&#8217;t seem to have been a theme in <a href="http://www.centerdigitaled.com/conference.php?confid=327" >2006</a>) have included: &#8220;Instructional/Information Technology in CUNY: The Catalyst for Transformational Change,&#8221; &#8220;Instructional/Information Technology in CUNY: Future Present,&#8221; and &#8220;Instructional/Information Technology in CUNY: How Is Change for the Better?&#8221;</p>
<p style="text-align: left;">The notion of &#8220;Managing Complexity,&#8221; when combined with the questions italicized above, contains more of an <em>argument</em> than did themes from previous years.  Yesterday George Otte, CUNY&#8217;s Director of Academic Technology and a former Director of the Bernard L. Schwartz Communication Institute, <a title="Otte on CMS" href="http://purelyreactive.commons.gc.cuny.edu/2009/06/08/looking-for-a-cms-complexity-management-system/" >wrote a post</a> that details much of the thinking behind &#8220;Managing Complexity,&#8221; and that also effectively shoots dead the notion that any single service can meet the edtech needs of our campuses.  This is a very important administrative recognition of the argument that&#8217;s been at the core of our experimentation with personal publishing platforms for the past few years at the Schwartz Institute.</p>
<p style="text-align: left;">The 2009 CUNY IT Conference promises to be yet another in the series of events that has sustained and further distributed throughout CUNY the energetic consideration of the role of technology in the university of the future.  I hope to see more panels that explore the relationships between information technology and instructional technology, that challenge and complicate the client-services model of technology that prevails throughout much of the university, and that highlight and celebrate the innovative teaching, learning, and research projects sprouting up at the campuses.</p>
<p style="text-align: left;">One additional note: <a title="Pogue" href="http://www.davidpogue.com/" >David Pogue</a>, who keynoted the most recent IT Conference, <a title="Pogue at the IT Conference" href="http://www.centerdigitaled.com/conference.php?confid=435" >will come back for a return engagement</a>.  While he was certainly an entertaining presenter, it might have been nice if we had someone who could draw into sharper focus for the community just what&#8217;s at stake in the reimagination of the role of technology at the university.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/06/09/the-2009-cuny-it-conference-managing-complexity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The World Through the Eyes of a Three/Four Year-Old</title>
		<link>http://dushtumay.sahawaltzer.org/2009/06/the-world-through-the-eyes-of-a-four-year-old/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/06/the-world-through-the-eyes-of-a-four-year-old/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 00:42:23 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=319</guid>
		<description><![CDATA[Over the past two years Kaya has gotten ahold of our digital camera on several occasions.  The photos below offer a glimpse into the world as seen by a precocious four year-old.  
At times her perspective is blurry, but she sure does get smiles&#8230;

]]></description>
			<content:encoded><![CDATA[<p>Over the past two years Kaya has gotten ahold of our digital camera on several occasions.  The photos below offer a glimpse into the world as seen by a precocious four year-old.  </p>
<p>At times her perspective is blurry, but she sure does get smiles&#8230;</p>
<p><iframe align="center" src="http://www.flickr.com/slideShow/index.gne?group_id=&#038;user_id=51294084@N00&#038;set_id=72157619212661256&#038;tags=Cars,Lotus,Exige" frameBorder="0" width="600" height="600" scrolling="no"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/06/the-world-through-the-eyes-of-a-four-year-old/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Because this Deserves its Own Post</title>
		<link>http://dushtumay.sahawaltzer.org/2009/06/because-this-deserves-its-own-post/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/06/because-this-deserves-its-own-post/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 23:58:48 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=310</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p ><img class="aligncenter"  src="http://farm3.static.flickr.com/2459/3587864266_7f7e0f9323_o.jpg" border="0" alt="P1010795" width="576" height="768" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/06/because-this-deserves-its-own-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kaya + Kavi + Philly + Laurie = Big Fun</title>
		<link>http://dushtumay.sahawaltzer.org/2009/06/kaya-kavi-philly-laurie-big-fun/</link>
		<comments>http://dushtumay.sahawaltzer.org/2009/06/kaya-kavi-philly-laurie-big-fun/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 18:24:07 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=270</guid>
		<description><![CDATA[Thought we&#8217;d kick off &#8220;dushtumay.sahawaltzer.org 2.0&#8243; with some photos from our trip to Philly this past weekend.
Hope you all like the new site&#8230; We promise, it&#8217;ll be a lot more active in the coming months&#8230; bear with us as we work out some kinks.

]]></description>
			<content:encoded><![CDATA[<p >Thought we&#8217;d kick off &#8220;dushtumay.sahawaltzer.org 2.0&#8243; with some photos from our trip to Philly this past weekend.</p>
<p >Hope you all like the new site&#8230; We promise, it&#8217;ll be a lot more active in the coming months&#8230; bear with us as we work out some kinks.</p>
<p><iframe align="center" src="http://www.flickr.com/slideShow/index.gne?group_id=&#038;user_id=51294084@N00&#038;set_id=72157619035728679&#038;text=" frameBorder="0" width="600" height="600" scrolling="no"></iframe></p></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2009/06/kaya-kavi-philly-laurie-big-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Towards the Next Stage of EdTech at CUNY…</title>
		<link>http://cac.ophony.org/2009/05/29/towards-the-next-stage-of-edtech-at-cuny/</link>
		<comments>http://cac.ophony.org/2009/05/29/towards-the-next-stage-of-edtech-at-cuny/#comments</comments>
		<pubDate>Fri, 29 May 2009 16:42:27 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=2118</guid>
		<description><![CDATA[
The tag cloud above was generated by participants at CUNY WordCampEd, which took place last week at the Macaulay Honors College (click to enlarge).  Mikhail and I co-organized the event with Joe Ugoretz of Macaulay and Matt Gold of New York City Tech, and we were astounded that we had to close registration a week [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://macaulay.cuny.edu/cunywordcampedtags.jpg"><img class="alignnone" style="margin: 10px;" title="Tag Cloud from CUNY WordCampEd" src="http://macaulay.cuny.edu/cunywordcampedtags.jpg" alt="This is a cloud drawn from badges tagged and submitted by participants at CUNY WordCampEd.  Thanks to Joe Ugoretz." width="500" height="172" /></a></p>
<p>The tag cloud above was generated by participants at <a title="CUNY WordCampEd" href="http://blsciblogs.baruch.cuny.edu/cunywordcamped" >CUNY WordCampEd</a>, which took place last week at the Macaulay Honors College (click to enlarge).  Mikhail and I co-organized the event with Joe Ugoretz of <a title="Macaulay Honors College" href="http://macaulay.cuny.edu/" >Macaulay</a> and Matt Gold of <a title="City Tech" href="http://www.citytech.cuny.edu/" >New York City Tech</a>, and we were astounded that we had to close registration a week ahead of time.  When we started planning, we thought we <em>might </em>get 50 registrants, bringing together the folks like ourselves who&#8217;ve experimented with WordPress throughout CUNY and who believe deeply in the <a title="About This Site: Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu/about-this-site/" >core components of our mission on Blogs@Baruch</a>.  Instead, we had well over 100 folks who wanted to come, and though we had an overflow room with audio/video connections to accommodate the hordes during morning and afternoon keynote sessions, we still had to turn some away.</p>
<p>The desire to take part in this event &#8212; and, even more, the energy palpable at Macaulay throughout the day &#8212; are testament that something is happening at CUNY.  This feeling was present in December at the CUNY I(nformation) T(echnology) Conference, which paid more attention to <em>instructional technology</em> than it ever has before.  I think some of the same spirit and energy infused the <a title="Symposium" href="http://blsciblogs.baruch.cuny.edu/symposium" >9th Annual Symposium</a>, which for the first time, in my opinion, captured the richness and opportunity embedded in our shifting modes of communication.  At all three events, the Twitter backchannel produced what Boone Gorges has called a <a title="Twitter Back Channel, at Teleogistic" href="http://teleogistic.net/2009/05/the-catalytic-effect-of-a-twitter-backchannel/" >&#8220;catalytic effect&#8221;</a> on the proceedings: collective reflection on the presentations by those on Twitter filtered back into the participation of the audience, which found its way back into the tweets, and so on.  I felt very little passivity at these meetings. (Here you can see Tweets for the <a title="Symposium Tweets" href="http://search.twitter.com/search?q=%23blsci" >Symposium</a> and <a title="CUNY WordCampEd Tweets" href="http://search.twitter.com/search?q=%23cunywc" >CUNY WordCampEd</a>).</p>
<p>But Twitter only deserves a splash of credit for the sea of enthusiasm present at Macaulay last Friday.  CUNY&#8217;s BlackBoard disaster this semester (which you can read about in <a title="The Clarion on BlackBoard" href="http://www.psc-cuny.org/Clarion/ClarionMay2009.pdf" >this piece from The Clarion</a>) no doubt shifted some energy our way as committed teachers and administrators look for alternative edtech solutions.</p>
<p>We welcomed that sort of attention.</p>
<p>In the morning presentations, <a title="Jane Wells" href="http://jane.wordpress.com/" >Jane Wells</a>, from <a title="Automattic" href="http://automattic.com/" >Automattic</a>, pitched WordPress (a bit tongue-in-cheekly) as a &#8220;BlackBoard Killer&#8221; and emphasized the openness of the WordPress community to input from its users.  Her presentation captured all that we like about experimenting with WordPress: embrace of perpetual beta, humility, the celebration of collectivist approaches to problem solving, and the constant striving to improve. <a title="Dave Lester" href="http://blog.davelester.org/" >Dave Lester</a>, from the Center for History and New Media at George Mason, presented <a title="ScholarPress" href="http://scholarpress.net/" >ScholarPress</a>, a suite of WordPress plugins that map course management functionality onto WordPress blogs (doing what BlackBoard does, but much more elegantly and affordably), and also talked about integrating <a title="Zotero" href="http://www.zotero.org/" >Zotero&#8217;s</a> research tools into WordPress.  Baruch&#8217;s own Zoe Sheehan Zaldana then wowed the audience with her wonderfully imaginative use of WordPress in <a title="Zoe's Art 2061" href="http://blsciblogs.baruch.cuny.edu/art3061spring2009/" >photography</a> and <a title="Zoe's Art 3059" href="http://blsciblogs.baruch.cuny.edu/art3059spring2009/" >digital animation</a> courses, embraced the potential of &#8220;shame&#8221; on the open web as a pedagogical tool, and emphasized the useful energy created when students participate in a unique space whose aesthetic reflects the work of their course.</p>
<p>Our good friend <a title="The Bava" href="http://bavatuesdays.com" >Jim Groom</a> returned to CUNY like a prodigal son to give the afternoon keynote (<a title="Open By Design" href="http://openbydesign.wpmued.org/" >&#8220;Open By Design&#8221;</a>), and spoke eloquently and powerfully about how the role of the instructional technologist should be refined in today&#8217;s university, the centrality of &#8220;openness&#8221; to the mission of CUNY and how that should be reflected in our approach to supporting teaching with technology, and the opportunities self-publishing offer universities to train their students for the future.  He also threw a few good <a title="Groom pwns Chasen" href="http://openbydesign.wpmued.org/2009/05/20/open-source/" >shots</a> at BlackBoard, and raised the very important and underexamined question of why CUNY pours millions&#8211; that&#8217;s right, millions&#8211; of dollars into this clunker of a software instead of investing in the people who build the relationships and the models that inject such powerful energy into events like the IT Conference, the Symposium, and CUNY WordCampEd.  Thanks to Dave Lester, <a title="Jim Groom at CUNY WordCampEd" href="http://www.ustream.tv/recorded/1544418" >Jim&#8217;s talk is archived here</a>.</p>
<p>This was a generative event, and it represented the congealing of a community around the shared idea that our institutions&#8217; weight should be behind a scaling approach to support for educational technology that necessarily goes well beyond BlackBoard.  That box is simply not enough.  Rather than helping us explore knowledge and identity, nurture community, and pass on to our students critical approaches to engaging with information  &#8212; core components of a liberal arts education &#8211;  BlackBoard argues that education is a marketplace.  Here&#8217;s my money.  Give me my single sign on and my learning.</p>
<p>Clearly, the participants at CUNY WordCampEd have had just about enough of this, and are looking to <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu" >Blogs@Baruch</a>, <a title="ePortfolios@Macaulay" href="http://macaulay.cuny.edu/eportfolios/" >ePortfolio@Macaualay</a>, the <a title="Academic Commons" href="http://commons.gc.cuny.edu" >CUNY Academic Commons</a>, and each other for alternatives. With that in mind, I&#8217;d suggest that the next stage of edtech at CUNY hold the following core principles.</p>
<p><strong>Instructional Technology is not Information Technology<br />
</strong><img class="alignleft" style="margin: 10px;" title="Technology" src="http://farm4.static.flickr.com/3023/2618804306_5fc5144a3b.jpg?v=0" alt="" width="180" height="135" />For too long, instructional technology has been enveloped within the broader notion of information technology.  We need to drive a permanent wedge between those two areas of university life in the understandings of our communities.  Information technology makes our phones and networks and computers and smart boards work, and collects and protects student, staff, and faculty data so that we can get credits and get paid. This is crucial stuff.  But it&#8217;s not about teaching and learning.</p>
<p>Instructional technology is about pedagogy, about building community, about collaboration and helping each other imagine and realize teaching and learning goals with the assistance of technology.</p>
<p>There must be a close working relationship between CUNY&#8217;s information technology shops and instructional technologists, and they must respect each others&#8217; concerns and interests.  But they must be separate.  When information technologists choose instructional technology solutions, you may get something like BlackBoard, and a community that feels as though the only relationship to technology should be a client-service one.   When instructional technologists administer servers, you may get something like less-than-ideal load times, plugins that expose vulnerabilities, and a system that bursts at the seams when you scale.</p>
<p>We need to acknowledge our strengths and weaknesses, to work with and learn from one another, and also to complicate our community&#8217;s understanding of technology.  Some components &#8212; like phones and networks &#8212; should be, above all, reliable.  Some others &#8212; like blended courses, or the integration of made multimedia into a course &#8212; require more thought, investment, and understanding from students and faculty.  Making clear the separation between information and instructional technology can help nurture this understanding.</p>
<p>But we must remember&#8230; the central mission of a university revolves around teaching, learning, and scholarship.</p>
<p><strong>The Community is Greater than the Sum of Its Parts<br />
</strong><a href="http://farm1.static.flickr.com/174/436670816_841228ae10.jpg?v=0"><img class="alignright" style="margin: 10px;" title="Communities" src="http://farm1.static.flickr.com/174/436670816_841228ae10.jpg?v=0" alt="" width="180" height="119" /></a>The most exciting component of CUNY WordCamp Ed was the connection and sharing that took place at the event, a feeling that&#8217;s also present on the <a title="Academic Commons" href="http://commons.gc.cuny.edu" >Academic Commons</a>.  There was the implicit recognition that we have much to learn from each other, that there are many interesting projects popping up around CUNY, and that we can only benefit from making public and sharing our work.  The Commons can provide a canvas for this, but it will not run on its own&#8230; it requires, above all, a commitment to sharing, to both taking and giving.  We also should harness and seek to reproduce the generative energy of events such as WordCamp Ed, not only with end-of-the-year conferences and symposia, but with meet ups and sharecases throughout the academic year that disperse that energy.</p>
<p><strong>EdTech Solutions Should Grow from the Bottom Up and then Transplant<br />
</strong><a href="http://farm1.static.flickr.com/56/135733622_6cbd81124f.jpg?v=0"><img class="alignleft" style="margin: 10px;" title="GrassRoots" src="http://farm1.static.flickr.com/56/135733622_6cbd81124f.jpg?v=0" alt="" width="180" height="125" /></a>Experimentation with WordPress at CUNY has been a bottom-up process, which serves as a counterpoint to the imposition of BlackBoard, a top-down solution.  Blogs@Baruch, ePortfolio@Macaulay, and the Commons each began small and grew as they integrated more users and diversified their functionality in response to the needs of the communities they serve.  As such, they each reflect those communities in certain visible ways.  Blogs@Baruch provides public space for Baruch&#8217;s strong journalism, writing, and arts programs, and is making inroads into the Zicklin School of Business and the Freshman Seminar; ePortfolios foreground the unique experiences of the Macaulay student; and the Commons is a vibrant and evolving location for all of CUNY to meet and organize.</p>
<p>A new edtech model for CUNY should acknowledge this progression from the bottom up, and imagine ways to project it outwards throughout the university.  One of the arguments for centralizing administration of BlackBoard was that the community colleges had fewer resources than senior colleges, and centralization of course management software was assumed to make resources more equitably distributed.  Of course, now every school has an equally bad solution.  But the notion that those of us with resources should share the wealth with the colleges who have less is an important one.  I can see a model where senior colleges host WPMu installations for community colleges (using domain mapping), and share support&#8211; though, the community colleges&#8211; many of which have as many instructional technologists as does Baruch&#8211; must pony up support and resources when they can.</p>
<p>Grow from the bottom up and then transplant.</p>
<p><strong>End Users Need to Take Ownership of Online Teaching and Learning Tools<br />
</strong><a href="http://farm3.static.flickr.com/2037/2516780900_13e794ee42.jpg?v=0"><img class="alignright" style="margin: 10px;" title="Ownershop" src="http://farm3.static.flickr.com/2037/2516780900_13e794ee42.jpg?v=0" alt="" width="198" height="300" /></a>Let&#8217;s not be shy about reminding our users of their responsibilities, and our users shouldn&#8217;t be shy about asking for help, clarification, or if something is possible.  WPMu and other open source solutions not only benefit from a &#8220;do it yourself<strong>&#8220;</strong> ethos, they <em>require </em>such an approach.  They can&#8217;t function and grow without the investment of the community.</p>
<p>A course management system &#8212; BlackBoard (at a fraction of the current price), or, preferably, Moodle &#8212; could be one component of a tiered support sytem for instructional technology.  Users should have access to an easy way to post documents, access class rosters, and keep a gradebook.  But this is not teaching and learning.  A second tier could exist via distribtued canvases like WPMu or Mediawiki or cloud applications like Flickr and YouTube, where faculty and students can maintain their own spaces and depend on asynchronous support&#8211; with a solid server and documentation, such a process can run itself.  A third tier would offer customized solutions for more advances users&#8211; Zoe&#8217;s rotating flash headers on Blogs@Baruch, or customized spaces to show off class projects or for special departments or programs.  A fourth tier would be a research tier, and entail the imagination and realization of native solutions (such as the <a title="VOCAT" href="http://www.baruch.cuny.edu/vocat" >Video Oral Communication Assessment Tool</a>) or the exploration of the next wave of innovations (semantic web comes to mind).  You could cover all of the edtech needs of your community with such an approach; all that&#8217;s needed, as Jim said, are the instructional technologists and community understanding to shape it and make it operate.</p>
<p><strong>Integrate Digital and Media Literacy into General Education<br />
</strong>Universities are constantly updating their general education programs. If they&#8217;re not, they should be.  Far too few clear out space for coursework that focuses on exploring how the ways that information is produced and consumed are changing in the digital age.  Such work is often outsourced to librarians, who are generally on the leading edge of a campus&#8217;s understanding of these trends, and do yeoman&#8217;s (and, often under appreciated) work.  Or students get trickling components of digital literacy spread haphazardly through their work in the disciplines.</p>
<p>Why not, at a place like CUNY, have 1st year seminars devoted to nurturing critical research skills, understanding online information and identity, learning to look and listen, and mastering how to negotiate the digital life of the campus and the city?  Set students up with eportfolios, and teach them how to cultivate their spaces.  Introduce them to scholarly uses of tools with which they are already familiar, but which they perhaps haven&#8217;t learned to use critically or with rigor.  Make them write; help them connect, share, and explore the visual, the textual, and the aural experience of the web.  This is something that will be useful to them throughout college and beyond.</p>
<p>As Jim has <a title="Groom on CUNY" href="http://bavatuesdays.com/i-bleed-cuny-blood/" >eloquently argued, CUNY</a> is so well-positioned to harness the energy of the participants in CUNY WordCamp Ed, and to put it to good use.  Let&#8217;s keep working.</p>
<p><em>(IMAGE CREDITS: Thanks to <a title="Tag Cloud" href="http://cunywordcamped.commons.gc.cuny.edu/2009/05/29/the-cloud-of-tags/" >Joe Ugoretz for conceiving, compiling, and sharing the CUNY WordCampEd Tag Cloud</a>.  The other images are from Flickr, in order of appearance: </em><a title="Pip on Flickr" href="http://www.flickr.com/photos/pip/" >Pip</a>, <a title="D'arcy Norman on Flickr" href="http://www.flickr.com/photos/dnorman/" >D&#8217;arcy Norman</a>, <a title="Ohad on Flickr" href="http://www.flickr.com/photos/ohadby/" >Ohad</a>, <em>and the</em> <a title="Seattle Municipal Archives on Flickr" href="http://www.flickr.com/photos/seattlemunicipalarchives/" >Seattle Municipal Archives</a><em>). </em></p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/05/29/towards-the-next-stage-of-edtech-at-cuny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jeff Jarvis’s Keynote from the 9th Annual Symposium</title>
		<link>http://cac.ophony.org/2009/05/26/jeff-jarviss-keynote-from-the-9th-annual-symposium/</link>
		<comments>http://cac.ophony.org/2009/05/26/jeff-jarviss-keynote-from-the-9th-annual-symposium/#comments</comments>
		<pubDate>Tue, 26 May 2009 17:50:27 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=2108</guid>
		<description><![CDATA[Here&#8217;s Jeff Jarvis&#8217;s keynote address and Q&#38;A session at the Schwartz Institute&#8217;s 9th Annual Symposium. He explains the argument that lay behind What Would Google Do?, explores the changing role of audience in the Web 2.0 world, and suggests some core components of establishing one&#8217;s professional presence on the web.
Keynote
Q&#38;A


]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s <a title="Buzz Machine" href="http://www.buzzmachine.com" >Jeff Jarvis&#8217;s</a> keynote address and Q&amp;A session at the Schwartz Institute&#8217;s <a title="Symposium" href="http://blsciblogs.baruch.cuny.edu/symposium" >9th Annual Symposium</a>. He explains the argument that lay behind <a title="What Would Google Do?" href="http://www.buzzmachine.com/what-would-google-do/" ><em>What Would Google Do?</em></a>, explores the changing role of audience in the Web 2.0 world, and suggests some core components of establishing one&#8217;s professional presence on the web.</p>
<p><strong>Keynote</strong></p>
<p><a href="http://cac.ophony.org/2009/05/26/jeff-jarviss-keynote-from-the-9th-annual-symposium/"><em>Click here to view the embedded video.</em></a></p>
<p><strong>Q&amp;A</strong></p>
<p>
<p><a href="http://cac.ophony.org/2009/05/26/jeff-jarviss-keynote-from-the-9th-annual-symposium/"><em>Click here to view the embedded video.</em></a></p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/05/26/jeff-jarviss-keynote-from-the-9th-annual-symposium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>David Birdsell’s Symposium Closing</title>
		<link>http://cac.ophony.org/2009/05/18/david-birdsells-symposium-closing/</link>
		<comments>http://cac.ophony.org/2009/05/18/david-birdsells-symposium-closing/#comments</comments>
		<pubDate>Mon, 18 May 2009 19:42:04 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=2070</guid>
		<description><![CDATA[In another of our series of videos from the 9th Annual Symposium, David Birdsell, Dean of Baruch&#8217;s School of Public Affairs, offers an incisive and cascading summation of the day&#8217;s conversation about &#8220;audience.&#8221;
]]></description>
			<content:encoded><![CDATA[<p>In another of our series of videos from the <a title="Symposium" href="http://blsciblogs.baruch.cuny.edu/symposium" >9th Annual Symposium</a>, <a title="Birdsell" href="http://www.baruch.cuny.edu/spa/facultystaff/facultydirectory/bio_david_birdsell.php" >David Birdsell</a>, Dean of Baruch&#8217;s <a title="Baruch SPA" href="http://www.baruch.cuny.edu/spa/home.php" >School of Public Affairs</a>, offers an incisive and cascading summation of the day&#8217;s conversation about &#8220;audience.&#8221;</p>
<p><a href="http://cac.ophony.org/2009/05/18/david-birdsells-symposium-closing/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/05/18/david-birdsells-symposium-closing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gardner Teaches, Part 4</title>
		<link>http://cac.ophony.org/2009/05/09/gardner-teaches-part-4/</link>
		<comments>http://cac.ophony.org/2009/05/09/gardner-teaches-part-4/#comments</comments>
		<pubDate>Sat, 09 May 2009 14:24:57 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1953</guid>
		<description><![CDATA[In this final segment from Gardner Campbell&#8217;s workshop “Speaker, Listener, Network: The Concept of Audience in a Web 2.0 World” from the 9th Annual Symposium on Commumication and Communication-Intensive Instruction, Gardner and the participants look at the &#8220;Mother of the All Funk Chords,&#8221; a Youtube mashup by the Israeli musician Kutiman, they discuss the implications [...]]]></description>
			<content:encoded><![CDATA[<p>In this final segment from Gardner Campbell&#8217;s workshop “Speaker, Listener, Network: The Concept of Audience in a Web 2.0 World” from the <a title="Symposium" onclick="javascript:pageTracker._trackPageview('/outbound/article/blsciblogs.baruch.cuny.edu');" href="http://blsciblogs.baruch.cuny.edu/symposium" >9th Annual Symposium on Commumication and Communication-Intensive Instruction</a>, Gardner and the participants look at the <a title="Mother of All Funk Chords" href="http://www.youtube.com/watch?v=tprMEs-zfQA" >&#8220;Mother of the All Funk Chords,&#8221;</a> a Youtube mashup by the Israeli musician <a title="Thru-You" href="http://thru-you.com/" >Kutiman</a>, they discuss the implications of the notion that &#8220;you choose a channel; your audience will choose the channels after that.&#8221;</p>
<p>This video is 12 minutes long.</p>
<p><a href="http://cac.ophony.org/2009/05/09/gardner-teaches-part-4/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/05/09/gardner-teaches-part-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gardner Teaches, Part 3</title>
		<link>http://cac.ophony.org/2009/05/08/gardner-teaches-part-3/</link>
		<comments>http://cac.ophony.org/2009/05/08/gardner-teaches-part-3/#comments</comments>
		<pubDate>Fri, 08 May 2009 15:21:44 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1942</guid>
		<description><![CDATA[In this third segment from Gardner Campbell&#8217;s workshop “Speaker, Listener, Network: The Concept of Audience in a Web 2.0 World” from the 9th Annual Symposium on Commumication and Communication-Intensive Instruction, Gardner and the participants look at an advertisement from Kaplan University (featuring Uncle Phil) and explore the nature of authenticity and credibility in a Web [...]]]></description>
			<content:encoded><![CDATA[<p>In this third segment from Gardner Campbell&#8217;s workshop “Speaker, Listener, Network: The Concept of Audience in a Web 2.0 World” from the <a title="Symposium" onclick="javascript:pageTracker._trackPageview('/outbound/article/blsciblogs.baruch.cuny.edu');" href="http://blsciblogs.baruch.cuny.edu/symposium" >9th Annual Symposium on Commumication and Communication-Intensive Instruction</a>, Gardner and the participants look at an advertisement from <a title="Kaplan University" href="http://portal.kaplanuniversity.edu/Pages/MicroPortalHome.aspx" >Kaplan University</a> (featuring <a title="Uncle Phil" href="http://en.wikipedia.org/wiki/List_of_The_Fresh_Prince_of_Bel-Air_characters#Philip_Banks" >Uncle Phil</a>) and explore the nature of authenticity and credibility in a Web 2.0 world, the implications of tools that empower the audience on &#8220;for-profit&#8221; higher education, and the challenges producers of information have in maintaining control over their intended messages once they get out.</p>
<p>This video is 10 minutes long. </p>
<p><a href="http://cac.ophony.org/2009/05/08/gardner-teaches-part-3/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/05/08/gardner-teaches-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gardner Teaches, Part 2</title>
		<link>http://cac.ophony.org/2009/05/07/gardner-teaches-part-2/</link>
		<comments>http://cac.ophony.org/2009/05/07/gardner-teaches-part-2/#comments</comments>
		<pubDate>Thu, 07 May 2009 14:08:44 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1893</guid>
		<description><![CDATA[In this second segment from Gardner Campbell&#8217;s workshop “Speaker, Listener, Network: The Concept of Audience in a Web 2.0 World” from the 9th Annual Symposium on Commumication and Communication-Intensive Instruction, Gardner and the participants explore the concept of speaker and audience in the Emily Dickinson poem &#8220;This is My Letter to the World,&#8221; unpack the [...]]]></description>
			<content:encoded><![CDATA[<p>In this second segment from Gardner Campbell&#8217;s workshop “Speaker, Listener, Network: The Concept of Audience in a Web 2.0 World” from the <a title="Symposium" onclick="javascript:pageTracker._trackPageview('/outbound/article/blsciblogs.baruch.cuny.edu');" href="http://blsciblogs.baruch.cuny.edu/symposium" >9th Annual Symposium on Commumication and Communication-Intensive Instruction</a>, Gardner and the participants explore the concept of speaker and audience in the Emily Dickinson poem <a title="Dickinson, Letter to the World" href="http://quotations.about.com/cs/poemlyrics/a/This_IsMyLetter.htm" >&#8220;This is My Letter to the World,&#8221;</a> unpack the meditation on connectedness in the segment &#8220;Truck Stop&#8221; from the film <em><a title="32 Short Films About Glenn Gould." href="http://www.imdb.com/title/tt0108328/" >32 Short Films About Glenn Gould</a></em> (the Youtube version of this film is embedded below workshop video for more easy viewing), and discuss some core defining principles of the Web 2.0 world.</p>
<p>In response to a question about how these tools have altered or challenged our sense of time, Gardner offers this wise nugget, which just about sums up his approach to thinking about all of this stuff:</p>
<blockquote><p>Thinking at that meta level as much as we can without driving ourselves bananas is the only kind of thinking that persists through whatever the next tool is going to be.</p>
</blockquote>
<p>This clip is about 25 minutes.</p>
<p><a href="http://cac.ophony.org/2009/05/07/gardner-teaches-part-2/"><em>Click here to view the embedded video.</em></a></p>
<p>&#8220;Truck Stop,&#8221; from <em><a title="32 Short Films About Glenn Gould." href="http://www.imdb.com/title/tt0108328/" >32 Short Films About Glenn Gould</a></em>.</p>
<p><a href="http://cac.ophony.org/2009/05/07/gardner-teaches-part-2/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/05/07/gardner-teaches-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gardner Teaches, Part I</title>
		<link>http://cac.ophony.org/2009/05/06/gardner-teaches-part-i/</link>
		<comments>http://cac.ophony.org/2009/05/06/gardner-teaches-part-i/#comments</comments>
		<pubDate>Wed, 06 May 2009 14:30:21 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1876</guid>
		<description><![CDATA[This is the first in a series of posts presenting video from our 9th Annual Symposium on Communication and Communication-Intensive Instruction.
We&#8217;re going to start off with four videos (we&#8217;ll publish them over the next four days) from Gardner Campbell&#8217;s workshop &#8220;Speaker, Listener, Network: The Concept of Audience in a Web 2.0 World.&#8221;
What I love about [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first in a series of posts presenting video from our <a title="Symposium" href="http://blsciblogs.baruch.cuny.edu/symposium" >9th Annual Symposium on Communication and Communication-Intensive Instruction</a>.</p>
<p>We&#8217;re going to start off with four videos (we&#8217;ll publish them over the next four days) from <a title="Gardner Campbell" href="http://www.gardnercampbell.net/blog1/" >Gardner Campbell&#8217;s</a> workshop &#8220;Speaker, Listener, Network: The Concept of Audience in a Web 2.0 World.&#8221;</p>
<p>What I love about this particular workshop is the generous balance in Gardner&#8217;s approach to Web 2.0: he talks with equal interest about the inanity present in much online conversation and the new implications for connectedness offered by the Web 2.0 world.  Unlike many thinkers who&#8217;ve chimed in on communication in a Web 2.0 world, he sees it as neither a panacea or a harbinger of doom.  His interest is in exploring the broad, rich ideas generated by these new methods of communication, and in generating more questions than answers.</p>
<p>We were so fortunate to have Gardner play such a significant role in our Symposium for the second straight year.  His enthusiasm was infectious, and his <a title="Gardner on #blsci" href="http://search.twitter.com/search?q=&amp;ands=&amp;phrase=&amp;ors=&amp;nots=&amp;tag=blsci&amp;lang=all&amp;from=GardnerCampbell&amp;to=&amp;ref=&amp;near=&amp;within=15&amp;units=mi&amp;since=&amp;until=&amp;rpp=50" >social note taking was prodigious</a>.</p>
<p>In this first segment, Gardner and the attendees of his workshop explore <a title="Twistori" href="http://twistori.com/" >Twistori</a> and <a title="Twittervision" href="http://twittervision.com/" >Twittervision</a>, two Twitter apps that offer provocative examples of how &#8220;connectedness&#8221; is changing in the Web 2.0 world.  Unfortunately, we weren&#8217;t able to catch the beginning of this workshop; we pick things up a few minutes in, and this first video is a shade under 20 minutes long.</p>
<p><a href="http://cac.ophony.org/2009/05/06/gardner-teaches-part-i/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/05/06/gardner-teaches-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How I Use Twitter (but this is just me)</title>
		<link>http://cac.ophony.org/2009/04/20/how-i-use-twitter-but-this-is-just-me/</link>
		<comments>http://cac.ophony.org/2009/04/20/how-i-use-twitter-but-this-is-just-me/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 13:49:33 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1828</guid>
		<description><![CDATA[Not sure if it was @Oprah joining, #amazonfail, #pman (Moldova), or the tipping point on a meme, but the world is atwitter about Twitter.
I thought I&#8217;d share a few thoughts about how I use and perceive the service, which I joined about a year ago.
I&#8217;m not a Twitter evangelist; I don&#8217;t think it&#8217;s for everyone. [...]]]></description>
			<content:encoded><![CDATA[<p>Not sure if it was @Oprah joining, #amazonfail, #pman (Moldova), or the tipping point on a meme, but the world is atwitter about Twitter.</p>
<p>I thought I&#8217;d share a few thoughts about how I use and perceive the service, which I joined about a year ago.</p>
<p>I&#8217;m not a Twitter evangelist; I don&#8217;t think it&#8217;s for everyone. If you&#8217;re using it and you don&#8217;t know why, maybe you shouldn&#8217;t be using it?</p>
<p>Twitter is not a platform, it&#8217;s an application that allows you to construct and dip in and out of conversations. You should @ often.</p>
<p>Anyone analyzing tweets only as stand alone statements will see self-absorption and &#8220;<a title="Anti-Twitter Huff Post Post" href="http://www.huffingtonpost.com/peter-schwartz/microblogging-with-shitte_b_188816.html" >innate incoherence</a>.&#8221; They miss the point.</p>
<p>Yet it&#8217;s easy to be misled by how Twitter works, because most answers to the question &#8220;What are you doing?&#8221; aren&#8217;t interesting.</p>
<p>But that&#8217;s not how the people I follow or I use it. Most of the people I follow instead answer the question &#8220;what are you thinking?&#8221;</p>
<p>If you follow interesting people who think interesting things, then it follows to think that their tweets might be interesting.</p>
<p>Over time your mind&#8217;s eye will learn to identify tweeters who have something relevant to say and to find yet others. Read critically.</p>
<p>The people I follow on Twitter aren&#8217;t necessarily my &#8220;friends.&#8221; Some people are comfortable with 100% virtual friendships. I&#8217;m not.</p>
<p>(I&#8217;m not raining on online friendships, I&#8217;m just saying they&#8217;re not for me).</p>
<p>The people who aren&#8217;t my friends whom I follow on Twitter I consider &#8220;acquaintances.&#8221; I think that&#8217;s a fairer name for what we share.</p>
<p>I&#8217;m willing to bore friends, but I try not to bore acquaintances, because some day, I might want them to be my friends.</p>
<p>I don&#8217;t &#8212; or try not to &#8212; complain about traffic or the academic #jobmarket, because, really, who&#8217;s interested in my bitching?</p>
<p>I bitch about traffic and the #jobmarket to my friends, and rarely think twice about confronting them when we&#8217;re hanging out.</p>
<p>I always think twice about confronting someone on Twitter. It&#8217;s not polite to disagree with acquaintances, though sometimes it must be done.</p>
<p>Mostly, though, I avoid confronting others because arguments in Twitter are unsatisfying. Neither party gets sufficiently into it.</p>
<p>So when I disagree with a tweet, I resolve the disagreement by reading and thinking more, writing a blog post, or talking with friends.</p>
<p>As a result, my tweetline offers a path into my life, reading, and thinking that&#8217;s perhaps a tad more upbeat than the real thing.</p>
<p>Ultimately, Twitter works for me because through it I am exposed to people that push and prod me to think and read more deeply and broadly.</p>
<p>I follow links from educators &amp; historians &amp; journalists &amp; technologists whose judgments I respect. I learn. Hopefully, I also contribute.</p>
<p>&#8220;Blog to reflect, tweet to connect.&#8221; @bgblogging Claim anything more for Twitter, you&#8217;re either selling something or setting up a straw man.</p>
<p>As such, Twitter is not for people who have uttered the following statements:</p>
<p>&#8220;Twitter won&#8217;t work because it&#8217;s not profitable.&#8221; &#8220;Twitter can&#8217;t save journalism.&#8221; &#8220;Twitter encourages our worst impulses.&#8221;</p>
<p>Those statements are usually uttered by people with closed worldviews, with minds already made up.</p>
<p>Twitter, like everything else, is purposeful only if you use it with a purpose.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/04/20/how-i-use-twitter-but-this-is-just-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Think Before You Snark</title>
		<link>http://cac.ophony.org/2009/04/06/think-before-you-snark/</link>
		<comments>http://cac.ophony.org/2009/04/06/think-before-you-snark/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 19:45:11 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1787</guid>
		<description><![CDATA[We had a bit of an incident last week with a course that&#8217;s using Blogs@Baruch.  In this course, every student was to keep a blog, which was then republished in an aggregator blog so that every participant in the class could easily access and comment upon everything published by the other participants.
Last week the [...]]]></description>
			<content:encoded><![CDATA[<p>We had a bit of an incident last week with a course that&#8217;s using <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a>.  In this course, every student was to keep a blog, which was then republished in an aggregator blog so that every participant in the class could easily access and comment upon everything published by the other participants.</p>
<p>Last week the class abandoned its use of Blogs@Baruch to instead use a group on Facebook called &#8220;Baruch Blogs Down!&#8221;</p>
<p style="text-align: center;"><a title="snark" href="http://www.flickr.com/photos/35118217@N00/370034109/" ><img src="http://farm1.static.flickr.com/122/370034109_9fa06ef17d_m.jpg" border="0" alt="snark" /></a><br />
<small><a title="Attribution-NonCommercial-NoDerivs License" href="http://creativecommons.org/licenses/by-nc-nd/2.0/" ><img src="http://cac.ophony.org/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" >photo</a> credit: <a title="Squid P. Quo" href="http://www.flickr.com/photos/35118217@N00/370034109/" >Squid P. Quo</a></small></p>
<p>The name of the group is a reference to server problems we had at the beginning of the term, which were resolved almost two months ago; we&#8217;ve been up without interruption for almost 60 days. In fact, members of the class were posting to their blogs without problem for a good six weeks before they switched to Facebook.</p>
<p>The faculty member apologized when it was pointed out to him that the name of the Facebook group was insulting and mocked the work that had gone into building our system and supporting his course, last semester and this. He noted that the switch wasn&#8217;t planned, that his students suggested the move and the group name, and that they were more comfortable using Facebook to exchange thoughts about course material.  So he went with it.</p>
<p>I have problems with this on a few levels, even beyond the insulting group name.  First, the only argument to go to Facebook &#8212; which I accept is completely the faculty member&#8217;s prerogative &#8212; seems to be that the students &#8220;felt more comfortable&#8221; with the application than they did Blogs@Baruch. Comfort with a medium has pedagogical value, for sure; but you&#8217;d like to think that more than students&#8217; comfort would determine the choosing of a technological solution.  I&#8217;m not sure that it did.</p>
<p>Second, there&#8217;s the implications of using Facebook in an instructional setting given the recent conflicts over their Terms of Service and assertions of ownership over user content. I don&#8217;t think the class discussed what was to be gained and lost from switching platforms; the students just lobbied the professor to use something &#8220;easier,&#8221; not better.  These points are both problematic in no small part because this is an Internet Marketing class!</p>
<p>Finally, there&#8217;s the inaccurate implication embedded in the group&#8217;s name, which appeared in a public forum.  I&#8217;ve thought a bit about this, since I, too, <a title="Bb Fail Whale" href="http://twitpic.com/22634" >have been guilty</a> of snarking a piece of software. Blogs@Baruch was down periodically early in the semester, and that had a negative impact on some courses&#8217; use of the system.  We DO deserve to get called out for failing to deliver what we promised to deliver.</p>
<p>Yet, there&#8217;s a difference between mocking us and mocking a behemoth corporation with a closed source product.   The difference embodies one of the core issues in instructional technology, which is often seen as a subset of information technology rather than as its own unique area of university life that requires the establishment of relationships and understanding across the disciplines.</p>
<p>If Blackboard goes down, users of the system are helpless, and can only wait for word that the system is back up.  They can call someone, but that person can only tell them that a ticket has been submitted.  Users of Blogs@Baruch have a name, and a number, and someone who can explain to them what the problem is and how it is being addressed. If something on the system isn&#8217;t working the way they want it to work, they can speak with someone about hacking it, adapting it, fixing it, strengthening it.  Blackboard is a closed box without a face, whereas Blogs@Baruch is an open sandbox that gives back in proportion to what you put in.  Blackboard is primarily an administrative system that allows the delivery of information. Blogs@Baruch is primarily a tool for the creative use of technology in instruction.</p>
<p>The faculty member (who has graciously apologized and changed the Facebook&#8217;s group&#8217;s name) should have realized this; he had benefited from our close support in the past and had been told to contact us if and as problems arose. He never did.  Instead, he treated Blogs@Baruch as information technology, as a data delivery service, and wasn&#8217;t really interested in bringing the system and its flexibility to his pedagogy.  He and his students saw no difference between Blogs@Baruch and Blackboard or the escalators in the Vertical Campus.</p>
<p>So, I&#8217;ve learned a couple things from this episode.  First: snark is fine, but if you&#8217;re gonna snark, do it in an informed way or in a hidden place, or you going to be called out.  Second: we need to do a better job of explaining to members of our community what Blogs@Baruch is and what it isn&#8217;t. If you can&#8217;t see any difference between what this system potentially provides and what Blackboard or Facebook provide, then those systems will probably work just fine for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/04/06/think-before-you-snark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wet Spaghetti</title>
		<link>http://cac.ophony.org/2009/03/26/wet-spaghetti/</link>
		<comments>http://cac.ophony.org/2009/03/26/wet-spaghetti/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 19:02:10 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1710</guid>
		<description><![CDATA[At the Harman Writer-in-Residence lecture at Baruch College on March 24, George Packer, who became well known through his reporting for the New Yorker on the invasion of Iraq, spoke of turning his focus to this country. We&#8217;re living through a period of remarkable change, he said &#8212; political change, economic change, cultural change &#8212; [...]]]></description>
			<content:encoded><![CDATA[<p>At the Harman Writer-in-Residence lecture at Baruch College on March 24, <a title="Packer" href="http://www.newyorker.com/online/blogs/georgepacker/" >George Packer</a>, who became well known through his reporting for the <em>New Yorker</em> on the invasion of Iraq, spoke of turning his focus to this country. We&#8217;re living through a period of remarkable change, he said &#8212; political change, economic change, cultural change &#8212; and he doesn&#8217;t want to miss the story.</p>
<p>Everywhere I look, and, it seems, in everything I read, folks are trying to understand, articulate, or make their mark upon these changes. The &#8220;change&#8221; we&#8217;re living through is much deeper than the promises put forth by Barack Obama in the construction of a positive message for his campaign. Packer spoke of a &#8220;tectonic shift&#8221; that&#8217;s impacting every area of American life.</p>
<p>Journalism is transforming before our eyes. <a title="Ann Arbor News" href="http://www.editorandpublisher.com/eandp/news/article_display.jsp?vnu_content_id=1003954087" >Newspaper</a> after <a title="RMN" href="http://www.rockymountainnews.com/" >newspaper</a> is folding, altering its <a title="Ann Arbor.com" href="http://www.annarbor.com" >processes</a>, or drastically <a title="SL" href="http://www.nj.com/news/index.ssf/2008/10/the_starledger_achieves_goal_o.html" >reducing its staff</a> and, as a result, the depth and quality of its coverage.  Newsrooms everywhere are being forced by executives and bean counters to do &#8220;more with less.&#8221;  Yet as <a title="Simon, New Yorker" href="http://www.newyorker.com/reporting/2007/10/22/071022fa_fact_talbot" >David Simon</a> and others have noted, the notion that you can possibly do &#8220;more with less&#8221; is, for want of a better term, bullshit.  You do &#8220;less with less.&#8221;</p>
<p style="text-align: center;">
<div class="wp-caption aligncenter" style="width: 505px"><a title="Boston.com" href="http://cache.boston.com/universal/site_graphics/blogs/bigpicture/recess_03_18/r30_18321551.jpg" ><img title="The Death of Papers" src="http://cache.boston.com/universal/site_graphics/blogs/bigpicture/recess_03_18/r30_18321551.jpg" alt="From Boston.com" width="495" height="265" /></a>
<p class="wp-caption-text">Unused newspaper racks clutter a storage yard in San Francisco, California.  From Boston.com; image taken March 13, 2009. (AP Photo/Noah Berger)</p>
</div>
<p>As stark and clear as that point may seem, some legitimately see opportunity in the restructuring of American newsrooms. &#8220;Crowd-sourcing&#8221; and &#8220;citizen journalism&#8221; seek to take advantage of Web 2.0 technologies to tap into existing pools of knowledge to generate and disseminate information. Journalists &#8212; those still in the business &#8212; break into camps that are either horrified or energized by the prospect of outsourcing society&#8217;s news gathering responsibilities. The most serious of them struggle through the implications of such a direction, asking what will be lost, what will be gained, and what professionalization means in an era that empowers the voice of the amateur.</p>
<p>Clay Shirky recently published a <a title="Shirky" href="http://www.shirky.com/weblog/2009/03/newspapers-and-thinking-the-unthinkable/" >much-discussed blog post</a> about the state of newspapers, comparing our moment to the moment when the printing press was invented, and focusing on the chaotic nature of the transition from one world to another.</p>
<blockquote><p>That is what real revolutions are like. The old stuff gets broken faster than the new stuff is put in its place. The importance of any given experiment isn’t apparent at the moment it appears; big changes stall, small changes spread. Even the revolutionaries can’t predict what will happen&#8230;</p>
</blockquote>
<p>Shirky concludes that we don&#8217;t know, and won&#8217;t know for some time, what the future of journalism is going to look like.  The most important thing is that &#8220;we shift our attention from ’save newspapers’ to ’save society’.&#8221;  Then, &#8220;the imperative changes from ‘preserve the current institutions’ to ‘do whatever works.’&#8221;  What we need is lots of spaghetti against the wall, for &#8220;any experiment designed to provide new models for journalism is going to be an improvement over hiding from the real, especially in a year when, for many papers, the unthinkable future is already in the past.&#8221;  He acknowledges what&#8217;s lost by the death of newspapers, allows us space to mourn, but ultimately settles on the point that what matters most is <em>journalism</em>, not the form that it takes.  He also lays the lie to those who, in the name of entrepreneurship, self-servingly claim that they have a crystal ball rather than a handful of wet spaghetti.</p>
<p>Journalism is not the only realm in American life that&#8217;s standing upon shifting ground; higher education is also in the midst of a wrenching transition.  In <em><a title="Donaghue" href="http://fordhampress.com/detail.html?id=9780823228591" >The Last Professors: The Corporate University and the Fate of the Humanities</a></em>, Frank Donoghue argues that the humanities professor many readers of this blog aspire to become is going the way of the newspaper, swept into the dustbin of history by the market forces and corporatization that increasingly restrict the choices available to well-meaning university administrators. He argues that the humanities aren&#8217;t in crisis; this would imply some future return to normalcy. Rather, a liberal arts education as a requisite component in the formation of an informed citizen, and the celebration of the university as the location where that process takes place, with the professor as a central figure, is dead.  A liberal arts education will increasingly become a luxury rather than the norm, replaced by vocational training and the transfer of skills that have only direct and measurable correlations to bottom lines.</p>
<p>Stanley Fish <a title="Fish1" href="http://fish.blogs.nytimes.com/2009/01/18/the-last-professor/" >posted a reaction</a> to Donaghue&#8217;s book in January, highlighing the rising percentages of undergraduate courses taught by part-time labor and the ascendancy of the &#8220;for profit&#8221; university, where information delivery is all that matters.  An <a title="Fish 2" href="http://fish.blogs.nytimes.com/2008/01/06/will-the-humanities-save-us/" >earlier blog post</a> from Fish glibly dismissed the value of studying the humanities altogether.  Doing so is its own argument, he says, providing or needing no external justification.  If the study of the humanities instilled in one the desire to learn the great moral lessons of the ages, Fish lamely argues, &#8220;the most generous, patient, good-hearted and honest people on earth would be the members of literature and philosophy departments, who spend every waking hour with great books and great thoughts&#8230; as someone who’s been there (for 45 years) I can tell you it just isn’t so.&#8221;</p>
<p>Fish finishes his meditation on <em>The Last Professor</em> with the observation that, thank goodness, he was born at the right time.  &#8220;Just lucky, I guess.&#8221;  Fish&#8217;s landing ultimately on his own good fortune contains none of the perspective evident in Shirky&#8217;s post. The possibility never dawns upon him that he might actually be in a position, from his lofty perch nestled just <a title="Fish's place" href="http://fish.blogs.nytimes.com/" >off the front page</a> of the New York Times website and his influential provenance at two universities, to highlight or even demand an alternative trajectory in higher education.  He doesn&#8217;t seem to want one or think one is necessary.  He accepts the notion that the humanities has little &#8220;<em>value added</em>,&#8221; and returns to his study, satisfied by his ability to find support for his arguments in the schmuck-like behavior of some of his colleagues.</p>
<p>Does the sea change pinpointed by Packer and Shirky have relevance to the university of the future?  If Donaghue and Fish are correct, that future has been written, and those of us who&#8217;ve chosen to make our life studying and helping others study the humanities are just plain out of luck.</p>
<p>There&#8217;s ample evidence however that something similar to the revolution in journalism is happening in academia, though perhaps not so publicly and at a pace that&#8217;s less compressed.  This week the University of Michigan Press <a title="UM Press" href="http://www.insidehighered.com/news/2009/03/23/michigan" >announced that it was going digital</a>, a move that has consequences for the intense and troubled world of academic publishing.  Also, Mark Bauerlein, whose work on &#8220;<a title="Dumbest Gen" href="http://www.dumbestgeneration.com/home.html" >kids these days</a>&#8221; I have significant problems with, wrote a <a title="Bauerlein" href="http://www.aei.org/research/Education/subjectareas/projectID.31/default.asp" >provocative paper</a> about the future of higher education in which he argues &#8220;the coverage project is complete,&#8221; and that graduate schools and P&amp;T committees should be putting more of an emphasis on good teaching.  I disagree with the first argument (admittedly, his statement was about literature and not history, which is my field, and which hasn&#8217;t been &#8220;covered&#8221;); but I concur wholeheartedly with the second.  Donaghue argues something similar when he notes that the culture of the professoriate, to its own detriment, has integrated an emphasis on competitive achievement and productivity that internalizes the values of the very market forces external to the university that find no use for the liberal arts.  Ultimately, Fish&#8217;s &#8220;I got mine&#8221; conclusions are frustrating because this is a moment when humanists should be reasserting the value of their disciplines to the intellectual life of the nation and, like Bauerlein attempts, proposing directions for the university of the future.</p>
<p>Implicit in the distributed community of educational technologists that I&#8217;m a part of &#8212; some have called us &#8220;<a title="Edupunk" href="http://en.wikipedia.org/wiki/Edupunk" >edupunks</a>,&#8221; but I no longer think that term is <a title="Leslie on Edupunk" href="http://twitter.com/sleslie/statuses/1338489811" >big or sufficient enough</a> &#8212; is the sense that we are all together involved in shaping the best model of the future university.  I&#8217;ve long felt that the most compelling aspect of the 1960s &#8212; for all the positive and negative legacies that decade has bequeathed us &#8212; was the broadly dispersed sense that the future was up for grabs, and that one&#8217;s actions could help shape that future.</p>
<div style="text-align: left;">I see some of that same energy in the work of the <a title="CHNM" href="http://chnm.gmu.edu/" >Center for History and New Media</a> at George Mason and the <a title="ASHP/CML" href="http://picturinghistory.gc.cuny.edu/" >American Social History Project/Center for Media and Learning</a> at the Graduate Center, which are creating new tools and paths for us to collectively look upon the past with fresh eyes.  I see it in <a title="HASTAC" href="http://www.hastac.org/" >HASTAC</a>, which is fostering collaboration between academics, librarians, and scientists around innovative uses of technology.  I see it in Matt Gold&#8217;s <a title="Gold" href="http://www.odemagazine.com/exchange/5329/walt_whitman_s_democratic_spirit_lives_on_in_city_tech_professor_s_foray_into_digital_learning" >brilliant multi-campus exploration of Walt Whitman&#8217;s career</a>, which allows students and researchers across the country to better understand both this writer and the relationship between art and the context in which it is produced. I see it in the proliferation of campuses, like ours, that are exploring open source alternatives to the proprietary courseware model, propelled by the argument that local administration and support for teaching and learning with technology better serves the academic community.</div>
<p>Each of the above examples is student-centered, yet also allows space for the researcher to grapple with and reflect upon large questions. They benefit from supportive administrations that recognize the importance of giving scholars the opportunity to explore and develop new ways of thinking, learning, teaching, and connecting. They don&#8217;t necessarily attack the university of the past, but rather imagine a future where participants break out of restrictive silos of departmental politics and disciplines and the campus as we knew it to explore relationships with the world that are, at their core, <em>humanistic</em>.  These, it seems, must be core components of any vision of the future of the humanities.</p>
<p>Then again, maybe Fish and Donaghue are spot on, and those of us creating new courses, constructing new modes of learning in and across our disciplines, and digging through archives are punchlines in some cosmic joke.  I acknowledge that these examples offer no direct answer to Fish and Donaghue&#8217;s argument that the humanities won&#8217;t be valued and funded because they don&#8217;t contribute in obvious ways to the creation of wealth and, like it or leave it, our society prioritizes that question.  Yet the continued broad exploration of the humanities, like  journalism, is absolutely crucial if our society is going to strive towards a better version of itself.</p>
<p>Shirky&#8217;s articulation of our moment as a transitional and perhaps revolutionary one reminds us that the future is yet to be written. We all have a profound stake in working towards our vision.  We all need to pick up some wet spaghetti.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/03/26/wet-spaghetti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GE Will Augment Your Reality</title>
		<link>http://cac.ophony.org/2009/03/06/ge-will-augment-your-reality/</link>
		<comments>http://cac.ophony.org/2009/03/06/ge-will-augment-your-reality/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 20:39:07 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1551</guid>
		<description><![CDATA[I just became aware of an unbelievably cool online interactive ad campaign by GE promoting its smart grid projects.  Check out the movie below, made through this site.
I don&#8217;t know enough to be able to comment intelligently on the extent to which GE is to be lauded or criticized for its smart energy initiatives. [...]]]></description>
			<content:encoded><![CDATA[<p>I just became aware of an unbelievably cool online interactive ad campaign by GE promoting its smart grid projects.  Check out the movie below, made through this <a title="SmartGrid" href="http://ge.ecomagination.com/smartgrid/#/augmented_reality" >site</a>.</p>
<p><a href="http://cac.ophony.org/2009/03/06/ge-will-augment-your-reality/">
<p><em>Click here to view the embedded video.</em></p>
<p></a></p>
<p>I don&#8217;t know enough to be able to comment intelligently on the extent to which GE is to be lauded or criticized for its smart energy initiatives.  I do know though that I&#8217;ve never seen anything like this before, and I don&#8217;t particularly care if I&#8217;ve contributed to their viral ad campaign.</p>
<p>(H/t to Andrew Sulivan, who <a title="Sullivan" href="http://andrewsullivan.theatlantic.com/the_daily_dish/2009/03/this-is-web-40.html" >wrote</a> when presenting a movie similar to what I just recorded, &#8220;Prepare to have your mind blown all over your keyboard&#8221;).</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/03/06/ge-will-augment-your-reality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1000… 1001… 1002…</title>
		<link>http://cac.ophony.org/2009/03/02/1000-1001-1002/</link>
		<comments>http://cac.ophony.org/2009/03/02/1000-1001-1002/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 20:34:34 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1498</guid>
		<description><![CDATA[All the way up to 1143, and counting.  That&#8217;s how many user accounts have been created over at Blogs@Baruch, and the numbers show how naturally Baruch College faculty, staff, and students have taken to academic blogging with WordpressMU since we launched the system in September.
The Ticker, the student newspaper at Baruch, just published Aaron Monteabaro&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>All the way up to 1143, and counting.  That&#8217;s how many user accounts have been created over at <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu" >Blogs@Baruch</a>, and the numbers show how naturally Baruch College faculty, staff, and students have taken to academic blogging with WordPressMU since we launched the system in September.</p>
<p><em>The Ticker</em>, the student newspaper at Baruch, just published Aaron Monteabaro&#8217;s <a title="The Ticker" href="http://theticker.org/sections/features/baruch_bloggers_reach_1%252C000-1.1590671" >very nice feature story on Miya Owens</a>, who was the 1000th user to register. Ms. Owens embodies the strongest part of our argument for Blogs@Baruch: the more chances that students have to write, the better writers and communicators they will become.  She&#8217;s a student in Prof. Bridgett Davis&#8217;s &#8220;Journalistic Writing&#8221; course, and a contributor to <a title="Writing NY" href="http://blsciblogs.baruch.cuny.edu/writingny" >Writing New York</a>, a site devoted to reporting on local news that Prof. Davis and her colleagues Roz Bernstein, Vera Haller, and Andrea Gabor have built over the last two years.  Prof.  Davis notes that the &#8220;blog not only prepares her students for adapting to the challenges of the so-called &#8216;new media&#8217; era, but also ignites in them &#8216;a passion that harks back to the old days of journalism.&#8217;&#8221;</p>
<p>Right on, Professor Davis, for embracing and employing passion as a pedagogical fuel.  And Ms. Owens &#8212; who is considering postgraduate study in business or law &#8212; is a student the Baruch community can be proud of.  She understands the centrality of writing to her education at Baruch and her career beyond school, and welcomes the opportunity to write in a space that&#8217;s read not only by her classmates and professor, but which is also open to the world at large.</p>
<p>So here&#8217;s to Miya Owens, Professors Davis, Bernstein, Gabor, Haller, and all the other students and faculty members who are making Blogs@Baruch go, go, go.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/03/02/1000-1001-1002/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Owns You(r Original Content Produced On or Shared Through Their Tubes)</title>
		<link>http://cac.ophony.org/2009/02/17/facebook-owns-your-original-content-produced-on-or-shared-through-their-tubes/</link>
		<comments>http://cac.ophony.org/2009/02/17/facebook-owns-your-original-content-produced-on-or-shared-through-their-tubes/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 16:38:05 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1330</guid>
		<description><![CDATA[Rest easy, Cacophoners; I just removed the &#8220;Share on Facebook&#8221; option from the &#8220;Share This&#8221; widget that appears beneath every post.
For those who don&#8217;t know, Facebook changed its Terms of Service last week, asserting a perpetual claim to use however it wishes certain content that you post on FB or that is shared on their [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1332" class="wp-caption alignright" ><a href="http://cac.ophony.org/wp-content/uploads/2009/02/fb.jpg"><img class="size-full wp-image-1332"  title="fb" src="http://cac.ophony.org/wp-content/uploads/2009/02/fb.jpg" alt="Image for Art courtesy of Facebook.com." width="321" height="252" /></a>
<p class="wp-caption-text">Image for art courtesy of Facebook.com</p>
</div>
<p>Rest easy, Cacophoners; I just removed the &#8220;Share on Facebook&#8221; option from the &#8220;Share This&#8221; widget that appears beneath every post.</p>
<p>For those who don&#8217;t know, Facebook changed its Terms of Service last week, asserting a perpetual claim to use however it wishes certain content that you post on FB or that is shared on their network via a hosted &#8220;Share on Facebook&#8221; button.   A similar policy was in place prior to the change in terms on February 4, but Facebook&#8217;s claims to your  content used to expired when you deleted items or deleted your account.  That option ultimately gave users control over their content.</p>
<p>No longer. Here&#8217;s the key passage from the new ToS:</p>
<blockquote><p>You hereby grant Facebook an irrevocable, perpetual, non-exclusive, transferable, fully paid, worldwide license (with the right to sublicense) to (a) use, copy, publish, stream, store, retain, publicly perform or display, transmit, scan, reformat, modify, edit, frame, translate, excerpt, adapt, create derivative works and distribute (through multiple tiers), any User Content you (i) Post on or in connection with the Facebook Service or the promotion thereof subject only to your privacy settings or (ii) enable a user to Post, including by offering a Share Link on your website and (b) to use your name, likeness and image for any purpose, including commercial or advertising, each of (a) and (b) on or in connection with the Facebook Service or the promotion thereof.</p>
</blockquote>
<p>Here&#8217;s the clause that was removed:</p>
<blockquote><p>You may remove your User Content from the Site at any time. If you choose to remove your User Content, the license granted above will automatically expire, however you acknowledge that the Company may retain archived copies of your User Content.</p>
</blockquote>
<p>This has produced no shortage of <a title="Facebook on Twitter" href="http://search.twitter.com/search?q=fuck+facebook" >outrage</a>, as well as a totally inadequate response from FB honcho <a title="Zuckerberg" href="http://blog.facebook.com/blog.php?post=54434097130" >Mark Zuckerberg</a> that essentially asserts the ToS does not reflect Facebook&#8217;s <em>true </em>feelings about user generated content (to which friend of the Institute <a title="GOld" href="http://mkgold.net/blog/" >Matt Gold</a> responds: &#8220;What matters is what they *do* with user info, not how they &#8220;think&#8221; about it!&#8221;).</p>
<p>Amanda French of NYU posted a really <a title="French" href="http://amandafrench.net/2009/02/16/facebook-terms-of-service-compared/" >helpful run down</a> of various ToS&#8217;s on other user generated content web sites, which highlights just how off-base and egregious Facebook&#8217;s claims are.  Boone B. Gorges of Queens College <a title="Boone" href="http://teleogistic.net/2009/02/facebook-and-content/" >wonders</a> about the pedagogical ramifications of this change, and also about what Zuckerberg&#8217;s response teaches us about the concept of  <a title="Sharing" href="http://teleogistic.net/2009/02/what-the-facebook-debacle-says-about-sharing/" >&#8220;sharing&#8221;</a> in the digital age.</p>
<p>Ultimately, I hope Facebook sees the error of its ways, because it provides a unique, valuable, and often elegant service.  I have a network on FB which is almost entirely separate and serves a different purpose for me than my networks on Twitter, Ning,  LinkedIn, or BuddyPress; I&#8217;d hate to see that diminished.  At the same, anyone who blogs on Facebook&#8217;s blog utility should think long and hard before continuing.  Photographers who share their photos through Facebook should reconsider, or at least start watermarking the hell out the images they share.  Musicians shouldn&#8217;t upload MP3s of their compositions.  Faculty should reconsider any educational uses of Facebook.  Our students should be informed (though that&#8217;s nothing new).  Web masters should zap those &#8220;Share on Facebook&#8221; buttons from their sites (for clarification, if you post a link directly into Facebook, the claim doesn&#8217;t apply).  And those of us who have posted pictures of our kids on Facebook so that cousins abroad and childhood friends can follow their growth should be prepared to see those images used without our notification or permission.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/02/17/facebook-owns-your-original-content-produced-on-or-shared-through-their-tubes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guest Post: Support for Oral Communication within the ESL Curriculum at Baruch College</title>
		<link>http://cac.ophony.org/2009/02/02/guest-post-support-for-oral-communication-within-the-esl-curriculum-at-baruch-college/</link>
		<comments>http://cac.ophony.org/2009/02/02/guest-post-support-for-oral-communication-within-the-esl-curriculum-at-baruch-college/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 16:00:17 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1276</guid>
		<description><![CDATA[The following is a guest post from Professor Elisabeth Garies, of Baruch College&#8217;s Department of Communication Studies. She can be reached at Elisabeth.Gareis@baruch.cuny.edu.
Oral communication instruction is traditionally somewhat neglected in the ESL curricula and services of colleges. Many programs focus on reading/writing proficiency and give only nominal, if any attention to listening/speaking skills. The imbalance [...]]]></description>
			<content:encoded><![CDATA[<p><em>The following is a guest post from <a title="Elisabeth Gareis" href="http://www.baruch.cuny.edu/wsas/academics/communication/egareis.htm" >Professor Elisabeth Garies</a>, of Baruch College&#8217;s Department of Communication Studies. She can be reached at <a title="Elisabeth Gareis Email" href="mailto:Elisabeth.Gareis@baruch.cuny.edu" >Elisabeth.Gareis@baruch.cuny.edu</a>.</em></p>
<p>Oral communication instruction is traditionally somewhat neglected in the ESL curricula and services of colleges. Many programs focus on reading/writing proficiency and give only nominal, if any attention to listening/speaking skills. The imbalance is due to a great extent to college entrance requirements and grading practices in college classes: Students are often only tested for reading and writing proficiency but not for speaking skills. With the correlation between spoken and written proficiency in nonnative speakers being only moderate, it is no surprise then that some students graduate with low proficiency in spoken English.</p>
<p>This status quo is in stark contrast to the skills needed for integration into the college community and success in the workplace. In fact, oral communication skills are consistently ranked most important by employers of business as well as liberal arts graduates. Yet, every semester, nonnative students report that they are being asked by teammates not to speak during group presentations so that team grades are jeopardized. They also report being dismissed from job interviews due to comprehension-inhibiting accents.</p>
<p>It is paramount, therefore, that we address oral-communication competence. Two services are available for students at Baruch College: (1) Students can go to the Student Academic Consulting Center (SACC, VC 2-116) and make an appointment for free one-on-one tutorials with a professional speech tutor. (2) Students can visit the new ESL Lab (VC6-121, enter through VC6-120) and practice with the excellent software, audio, and video materials there. See <a title="ESL Lab" href="http://www.baruch.cuny.edu/esllab" >http://www.baruch.cuny.edu/esllab</a> for hours, instructions, and materials.</p>
<p>To give an example: It&#8217;s the beginning of a semester. An (ideal) instructor collects writing samples and engages his/her students in speaking activities to determine whether a student may need assistance. The student is then encouraged (required?) to make an appointment with one of the speech tutors at SACC (the tutors, by the way, are all professionally trained speech pathologists and ESL specialists). During the first meeting, a diagnostic conversation/reading takes place, and the tutor determines which speech patterns are the cause of he students comprehensibility problems.</p>
<p>While the student may already have an idea about some patterns (e.g., differentiating between /r/ and /l/), some problems are more difficult to determine. For example, many languages have a syllable-timed rhythm (i.e., syllables have the same length); English, however, is a stressed-timed language (i.e., the rhythm of a sentence is determined by the regular beat of the stressed syllables only). Try to say the following sentences out loud as you clap your hands on the stressed syllables. You will notice that the sentences take the same amount of time, although the first one is much shorter than the last one. This is because of the stress-timed nature of English.</p>
<p>The lion came.<br />
The lioness came.<br />
The lionesses came.<br />
The lionesses arrived.<br />
The lionesses have arrived.</p>
<p>Comprehensibility problems often arise from stress problems; e.g., when a speaker from a syllable-timed language used his/her native rhythm to speak English. A staccato delivery ensues that makes it difficult for English listeners&#8211;who are used to listening for word and sentence stress&#8211;to follow the speaker.</p>
<p>In any case, once the student is diagnosed, the tutor will help the student produce the speech pattern correctly in one-on-one tutorials. When the student can produce the speech pattern, he/she needs to practice to commit the new pattern to muscle memory. It is said that our body has to practice a new movement (including speech organ movement) 1,000 times before the movement becomes muscle memory. Please see the Accent Reduction FAQs at <a title="Accent Reduction" href="http://www.baruch.cuny.edu/esllab" >http://www.baruch.cuny.edu/esllab</a> for more information.</p>
<p>Ideally, a student should see a speech tutor once a week and practice individually in the lab several times a week. With regular practice, significant progress can be made, even in the course of one semester. Please alert your students to these services. and remind them that, to change speech patterns, regular practice is necessary</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/02/02/guest-post-support-for-oral-communication-within-the-esl-curriculum-at-baruch-college/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to Watch For: Super Bowl Edition</title>
		<link>http://cac.ophony.org/2009/01/30/what-to-watch-for-super-bowl-edition/</link>
		<comments>http://cac.ophony.org/2009/01/30/what-to-watch-for-super-bowl-edition/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 21:10:35 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1262</guid>
		<description><![CDATA[I was surprised when I got home last night to hear on my answering machine a message from Christine, the &#8220;Loyalty Team Manager&#8221; at Autoland, where my wife and I purchased a car two years ago.  Christine wanted to let us know that she and her staff were in a &#8220;Yes We Can State of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://z.about.com/d/politicalhumor/1/0/V/x/1/obama_yes_we_can.jpg"><img class="alignright"  title="From: http://z.about.com/d/politicalhumor/1/0/V/x/1/obama_yes_we_can.jpg" src="http://z.about.com/d/politicalhumor/1/0/V/x/1/obama_yes_we_can.jpg" alt="" width="199" height="259" /></a>I was surprised when I got home last night to hear on my answering machine a message from Christine, the &#8220;Loyalty Team Manager&#8221; at Autoland, where my wife and I purchased a car two years ago.  Christine wanted to let us know that she and her staff were in a &#8220;Yes We Can State of Mind,&#8221; and that if we wanted to know more about what that meant then we should call and arrange to come in to talk.</p>
<p>How sweet of Autoland to capitalize upon the Obama-inspired can-do spirit in the country in an attempt to separate me from my credit.</p>
<p>This Sunday is the Super Bowl &#8212; that annual bacchanalia of gluttonous consumption &#8212; and as many of us settle in to watch the Steelers and the Cardinals (in what should be a very good game), we&#8217;ll be scratching our heads at subtle and not-so-subtle attempts to tap into the national mood, for profit.  Commercials during the Super Bowl cost $100,000 a <em>second</em>, and while a few are clever and original, most treat viewers as pigs who like nothing more than bikinis, chicken wings, beer, and trucks.  Cultural and consumer trends tend to filter into these ads, threaded through anthropomorphized animals and talking babies.  <a title="Super Bowl" href="http://www.mahalo.com/Super_Bowl_Commercials_2008" >Clips last year</a> mocked wine tasting, mismatched celebrities, showed how easy it is to buy stocks, and hawked GPS systems.</p>
<p>I&#8217;ve got two predictions.  One: Christine and the Loyalty Team at Autoland aren&#8217;t the last folks who&#8217;ll invoke Obama in a sales pitch to me this week.  And, Two: Steelers 24, Cardinals 20.</p>
<p>* <em>10-minute post-post update</em>. Just sent to me by my wfe, who was much more diligent in her research&#8230; check out this Pepsi ad that will run Sunday, especially the logo at the end:</p>
<p><a href="http://cac.ophony.org/2009/01/30/what-to-watch-for-super-bowl-edition/">
<p><em>Click here to view the embedded video.</em></p>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/01/30/what-to-watch-for-super-bowl-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On the Horizon…</title>
		<link>http://cac.ophony.org/2009/01/22/on-the-horizon/</link>
		<comments>http://cac.ophony.org/2009/01/22/on-the-horizon/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 17:05:46 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1220</guid>
		<description><![CDATA[I&#8217;m happy to note that Blogs@Baruch received a mention in the annual Horizon Report, a document produced by Educause, an international non-profit organization &#8220;whose mission is to advance higher education by promoting the intelligent use of information technology.&#8221;  Every year the report is read by information and instructional technology professionals at universities and colleges [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Horizon Report" href="http://cac.ophony.org/wp-content/uploads/2009/01/horizonreport.pdf" ><img class="size-full wp-image-1221 alignright"  title="horizon2" src="http://cac.ophony.org/wp-content/uploads/2009/01/horizon2.jpg" alt="horizon2" width="224" height="272" /></a>I&#8217;m happy to note that <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu" >Blogs@Baruch</a> received a mention in the annual <a title="Horizon Report" href="http://wp.nmc.org/horizon2009/" ><em>Horizon Report</em></a>, a document produced by <a title="Educause" href="http://www.educause.edu/" ><span><span>Educause</span></span></a>, an international non-profit organization &#8220;whose mission is to advance higher education by promoting the intelligent use of information technology.&#8221;  Every year the report is read by information and instructional technology professionals at universities and colleges across the world to get a sense of the current state of technology adoption, and future directions.  It identifies key trends and critical challenges facing schools as we attempt to keep pace with the technological needs of modern life and as we explore innovative ways to integrate technology into our functions and curricula.</p>
<p>The bulk of the study is focused on describing, analyzing, and sharing prime examples of six &#8220;technologies to watch,&#8221; which are organized by their &#8220;time-to-adoption.&#8221; Click the image above to download a copy of the report; it&#8217;s interesting reading for techies and non-techies alike.  Here&#8217;s a summary of the &#8220;technologies to watch&#8221;:</p>
<h4>Time-to-Adoption: One Year or Less</h4>
<ul>
<li><strong>Mobiles: </strong>making services and information readily available to students and staff on portable devices such as <span><span>iPhones</span></span> and <span><span>Blackberrys</span></span>.  For an example of what this looks like, see Stanford&#8217;s <a title="Stanford iApps" href="http://stanford.terriblyclever.com/" ><span><span>iApps</span></span> Homepage</a>.  <strong><br />
</strong></li>
<li><strong>Cloud Computing:</strong> a new way to think about computers, software, and files, which takes advantage of &#8220;data farms,&#8221; or collections of computers that distribute processing and storage.  You no longer need to run productivity software on your hard drive; Google Apps, for instance, supports word processing, presentations, spreadsheet design, and calendars that are accessible, shareable, and functional through a web browser, wherever you are.   The vanguard in this development is data intensive cloud computing used by the hard sciences, but this also has implications for students and staff, who, perhaps, need not rely so heavily on Microsoft Office in coming years.  (Though not mentioned in the <em>Horizon Report,</em> last September, <span><span>CUNY&#8217;s</span></span> <a title="Online BA" href="http://www1.cuny.edu/online/" >Online Baccalaureate</a> began a <a title="VASPP" href="http://www.convergemag.com/story.php?catid=231&amp;storyid=108272" >&#8220;Virtual Application Streaming Pilot Project,&#8221;</a> a local cloud computing experiment).        <strong><br />
</strong></li>
</ul>
<h4>Time-to-Adoption: Two to Three Years</h4>
<ul>
<li><strong>Geo-Everything: </strong>mobile phones, cameras, and other handheld devices can now automatically attach &#8220;<span><span>geolocative</span></span>&#8221; information to data they produce, such as photographs and videos.  Researchers and teachers are exploring ways to integrate this functionality into their work via annotated maps, visual narratives, and game-based learning.  See <a title="Community Walk" href="http://www.communitywalk.com/" >Community Walk</a> and <a title="Paint Map" href="http://paintmap.com/" >Paint Map</a> for examples.</li>
<li><strong>The Personal Web</strong>: individuals and groups are exploring the &#8220;creation of customized, personal web-based environments to support their social, professional, and learning activities using whatever tools they prefer.&#8221;  At the Institute, we call this &#8220;personal publishing,&#8221; and it is the core idea behind <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu" >Blogs@Baruch</a>, which was mentioned as one of five exemplary &#8220;Scholarly Community Blogs&#8221; cited in this section.  Other examples of &#8220;The Personal Web&#8221; include <a title="Omeka" href="http://www.omeka.org" ><span><span>Omeka</span></span></a>, an open source software developed by the <a title="CHNM" href="http://chnm.gmu.edu/" >Center for History and New Media</a> at <a title="GMU" href="http://www.gmu.edu" >George Mason University</a>, which allows anyone with access to a server and a MYSQL installation to build and share online collections of artifacts; and <a title="SMARTHistory" href="http://smarthistory.org/" ><span><span>SMARTHistory</span></span></a>, an &#8220;edited online art history resource to augment or <span>replace</span> traditional art history texts.&#8221;</li>
</ul>
<h4>Time-to-Adoption: Four to Five Years</h4>
<ul>
<li><strong>Semantic-Aware Applications:</strong> the &#8220;semantic web,&#8221; according to <a title="Semnantic Web" href="http://en.wikipedia.org/wiki/Semantic_Web" ><span><span>Wikipedia</span></span></a>, &#8220;is an evolving extension of the World Wide Web in which the semantics of information and services on the web is defined, making it possible for the web to understand and satisfy the requests of people and machines to use the web content.&#8221; Some refer to this as Web 3.0, or &#8220;using the web as what to write with.&#8221;  <span><span>Educause</span></span> sees the development of &#8220;tools that can simply gather the context in which information is couched, and that use that context to extract <span><span>imbedded</span></span> meaning.&#8221;  <span><span>Woah</span></span>.  Few examples of the semantic web in higher education exist.  <a title="UMW" href="http://semantic.umwblogs.org/about/" >Patrick Murray-John</a>, an instructional technologist at the University of Mary Washington, is exploring what opportunities new tools that look treat online materials as data may have for the studying of teaching, learning, and thinking.</li>
<li><strong>Smart Objects:</strong> &#8220;a smart object is simply any physical object that includes a unique identifier that can track information about the object.&#8221;  Think about a package that&#8217;s tagged with a bar code that is scanned and allows<strong> </strong>you to track it; or the library book you have that&#8217;s way overdue.  Products based on this idea are entering the consumer market, and could be used in archaeology, medicine, and in combination with Geo-Everything approaches.  An example being developed by <a title="UF" href="http://www.harris.cise.ufl.edu/projects_nih.htm" >researchers at the University of Florida</a> would continuously monitor patients for a variety of conditions as they went about their normal lives.</li>
</ul>
<p>We&#8217;re pleased to be included in a report of this magnitude, and to see such a wide variety of innovative deployments of technology.  These are interesting times!</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/01/22/on-the-horizon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>“Students today are…”</title>
		<link>http://cac.ophony.org/2009/01/08/students-today-are/</link>
		<comments>http://cac.ophony.org/2009/01/08/students-today-are/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 15:38:54 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1196</guid>
		<description><![CDATA[Branford Marsalis provocatively lays it down. Thoughts?
Via RateYourStudents.
]]></description>
			<content:encoded><![CDATA[<p>Branford Marsalis provocatively lays it down. Thoughts?</p>
<p><a href="http://cac.ophony.org/2009/01/08/students-today-are/">
<p><em>Click here to view the embedded video.</em></p>
<p></a></p>
<p>Via <a title="Rate Yout Students" href="http://rateyourstudents.blogspot.com/" >RateYourStudents</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2009/01/08/students-today-are/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holiday Habanera with the Muppets</title>
		<link>http://cac.ophony.org/2008/12/23/holiday-habenara-with-the-muppets/</link>
		<comments>http://cac.ophony.org/2008/12/23/holiday-habenara-with-the-muppets/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 14:48:33 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1174</guid>
		<description><![CDATA[Wishing our readers a very happy holidays and a splendid new year!
Hat tip to Hillary Miller, via Facebook.
]]></description>
			<content:encoded><![CDATA[<p>Wishing our readers a very happy holidays and a splendid new year!</p>
<p><a href="http://cac.ophony.org/2008/12/23/holiday-habenara-with-the-muppets/">
<p><em>Click here to view the embedded video.</em></p>
<p></a></p>
<p>Hat tip to <a title="Hillary Miller" href="http://cac.ophony.org/author/hillary/" >Hillary Miller</a>, via Facebook.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/12/23/holiday-habenara-with-the-muppets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In Which We Provide the Butt for Your Jokes</title>
		<link>http://cac.ophony.org/2008/12/08/in-which-we-provide-the-butt-for-your-jokes/</link>
		<comments>http://cac.ophony.org/2008/12/08/in-which-we-provide-the-butt-for-your-jokes/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 16:28:39 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1102</guid>
		<description><![CDATA[According to The Gothamist, the flyer on the right was scattered around the campus of New York University last week.
The flyer announced NYU&#8217;s &#8220;In and Of the City Financial Aid Plan,&#8221; in which students who were unable to fork out 50k/year were told their families could save more than $43k annually if they instead attended [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_1103" class="wp-caption alignright" ><a href="http://cac.ophony.org/wp-content/uploads/2008/12/2008_12_nyucuny.jpg"><img class="size-medium wp-image-1103" title="Go to CUNY" src="http://cac.ophony.org/wp-content/uploads/2008/12/2008_12_nyucuny-229x300.jpg" alt="Click to See Full Size" width="229" height="300" /></a>
<p class="wp-caption-text">Click to See Full Size</p>
</div>
<p>According to <em><a title="In and Of the City" href="http://gothamist.com/2008/12/03/is_nyu_suggesting_cuny_to_students.php#comments" >The Gothamist</a></em>, the flyer on the right was scattered around the campus of <a title="NYU" href="http://www.nyu.edu" >New York University</a> last week.</p>
<p>The flyer announced NYU&#8217;s &#8220;In and Of the City Financial Aid Plan,&#8221; in which students who were unable to fork out 50k/year were told their families could save more than $43k annually if they instead attended CUNY.</p>
<p>Turns out the thing was a <a title="Students Creating Radical Change" href="http://gothamist.com/2008/12/03/is_nyu_suggesting_cuny_to_students.php#comments" >fake</a>, produced by a group that calls itself &#8220;Students Creating Radical Change,&#8221; who &#8220;made up the flyer to encourage discussion about NYU&#8217;s treatment of its students, and to encourage students to question their university&#8217;s priorities.&#8221;  Essentially, the group protests that NYU does not provide sufficient financial support for its students, and focuses instead on expansionist behavior in the real estate market.</p>
<p>The letter to <em>The Gothamist</em> in which the students claim responsibility ends: &#8220;Oh, one other thing: we have nothing against CUNY. We just thought a &#8216;go to CUNY&#8217; plan would make a neat flier. In fact, CUNY is facing its own financial problems these days &#8211; check out <a title="CUNY Social Forum" href="http://www.cunysocialforum.com/" >http://www.cunysocialforum.com/</a> for info on the student resistance to budget cuts and tuition hikes in the state higher-ed system.&#8221;</p>
<p>I might rant about the fetishization of protest embodied by this episode, which is more performative Yippie distractionism than the purposeful speaking of truth to power.  I might compare the postscript about CUNY to the utterances of folks who use phrases like &#8220;I have lots of black friends&#8221; or &#8220;I don&#8217;t mean to cast aspersions&#8221; when saying objectionable things.  I might snark about grammatical errors contained within the group&#8217;s statement, or attack the snobby implication that to go to CUNY is to slum it.</p>
<p>The fact of the matter is, especially in this economy, the group has a point (even if it isn&#8217;t really their point).  The cost of NYU is ridiculous, and is an education there really 8-10 times better than what one could get at CUNY?  From anecdotal evidence, applications for early admission to the <a title="Macauley" href="http://macaulay.cuny.edu/" >Macaulay Honors College</a> are up more than 30% from last year.  I think it&#8217;s pretty safe to say we&#8217;ll see an increase in CUNY and SUNY enrollments over the next couple of years.</p>
<p>So, give us your tired, your poor, your huddled masses.  I&#8217;m not sure there&#8217;s that big a difference between an underpaid adjunct teaching a course with 40 students and and an underpaid adjunct teaching a course with 55 students.  Bring it on.</p>
<p><a title="Boone B Gorges" href="http://twitter.com/boonebgorges" >h/t BooneBGorges</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/12/08/in-which-we-provide-the-butt-for-your-jokes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Experiment in Digital Storytelling</title>
		<link>http://cac.ophony.org/2008/12/02/an-experiment-in-digital-storytelling/</link>
		<comments>http://cac.ophony.org/2008/12/02/an-experiment-in-digital-storytelling/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 21:36:52 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1020</guid>
		<description><![CDATA[I was recently inspired, no surprise, by a post on Jim Groom&#8217;s Bavatuesdays: &#8220;A Childhood Without Proof.&#8221; This was about as close to schmaltz as the right Rev. Groom comes, and being a sap myself, I appreciated both the content and the tone.
Jim, the 6th of 7th children, was aware of only one photograph of [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently inspired, no surprise, by a post on Jim Groom&#8217;s Bavatuesdays: <a title="Bava" href="http://bavatuesdays.com/a-childhood-without-proof/" >&#8220;A Childhood Without Proof.&#8221;</a> This was about as close to schmaltz as the right Rev. Groom comes, and being a sap myself, I appreciated both the content and the tone.</p>
<p>Jim, the 6th of 7th children, was aware of only one photograph of himself as a baby. <em>One</em>.  But last week a Facebook friend from his old neighborhood tagged an image of him at 3.  Jim&#8217;s post praises Facebook for being good at connecting people with the past, and at making the sharing of memories so much easier than it was just a few years ago. This would have been possible without Facebook; but it would have been more difficult, perhaps to such an extent that it wouldn&#8217;t have happened at all.  There&#8217;s a powerful argument in there that connectivity tools don&#8217;t just impact the way that we relate to one another, but also can impact the way we relate to our individual and collective pasts.</p>
<p>This post was on my mind when I began playing with <a title="Google SV" href="http://maps.google.com/help/maps/streetview/" >Google Street View</a>, a component of Google Maps that offers street level views of particular locales.  This isn&#8217;t a new tool, but Google has been steadily adding images as its van tours and shoots different localities (<a title="Google SV Wikipedia" href="http://en.wikipedia.org/wiki/Google_Street_View" >here&#8217;s a list of what&#8217;s been added</a>).  I was surprised to see that the neighborhood in which I grew up has been photographed.  North Genesee Drive is of no great consequence &#8212; beyond being sandwiched between the neighborhoods that produced Magic Johnson and Malcolm X &#8212; but there it is, ready for your virtual tour.</p>
<p>I haven&#8217;t been back to my old neighborhood in years, and was pleased that I was able to recreate the bike rides and explorations of my youth, even if through a somehwat antiseptic, Googleized filter.  There was no cutting through yards, lemonade sales, or bullies to run from.  My memory can fill those things in.  Mostly, it was pleasant to visit from my desk in New York.</p>
<p>Here&#8217;s a gallery of screen captures; click through for captions.</p>
<p >
<a href='http://cac.ophony.org/wp-content/uploads/2008/12/deadmans.jpg' title='Dead Man&#039;s Hill: 8 degree decline.  You could FLY on a big wheel.'><img src="http://cac.ophony.org/wp-content/uploads/2008/12/deadmans-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a><br />
<a href='http://cac.ophony.org/wp-content/uploads/2008/12/witch.jpg' title='Witch of the West Side: Where the scary lady lived'><img src="http://cac.ophony.org/wp-content/uploads/2008/12/witch-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a><br />
<a href='http://cac.ophony.org/wp-content/uploads/2008/12/island.jpg' title='The Island: Whiffle Ball/Football Field. '><img src="http://cac.ophony.org/wp-content/uploads/2008/12/island-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a><br />
<a href='http://cac.ophony.org/wp-content/uploads/2008/12/centenos.jpg' title='Where Centenos Used to Be: Delicious cheap tacos.  And Now and Laters and Atomic Fireballs. '><img src="http://cac.ophony.org/wp-content/uploads/2008/12/centenos-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a><br />
<a href='http://cac.ophony.org/wp-content/uploads/2008/12/verlinden.jpg' title='Verlinden Hoop Court: Played much ball here.  '><img src="http://cac.ophony.org/wp-content/uploads/2008/12/verlinden-150x150.jpg" width="150" height="150" class="attachment-thumbnail" alt="" /></a>
</p>
<p>I recognize that this particular application of the tool appeals to me on a nostalgic level, and while that&#8217;s fine for personal blogging and Facebooking and all that, it&#8217;s hardly a pedagogical argument.  The images above affect me and the kids I grew up with more than they&#8217;ll affect you.</p>
<p>But it&#8217;s also pretty easy to see how tools like this, free tools available from your desktop, can be integrated into college curricula.  Studying the Lower East Side at the turn of the century?  Compare the built environment of Hester Street from Jacob Riis&#8217;s photographs to images of the area on Google Maps.  Use Google Maps to explore planning and architecture in urban, suburban, and exurban neighborhoods.  What can we learn about Barack Obama from a virtual tour of Hyde Park?  Find images of parks in three different European cities; how does their location and construction reflect their usage?  Locate five &#8220;Chinatowns.&#8221;  How are they alike or similar in organization?  Writing a term paper on the Atlantic Yards?  Use Google Maps to show how construction will restrict traffic.  The possibilities are endless. Google Maps won&#8217;t tell us everything we need to know about any of these topics; but then, no single source will.  A virtual tour of a street or a neighborhood can impart a sense of location and feeling that can augment other information on the path to knowledge.  (I should also note that Jim is also <a title="Google My Maps" href="http://bavatuesdays.com/google-my-maps-with-rss/" >ahead of the curve on this</a>).</p>
<p>In the movie below, I use Google Maps to recreate the walk from my home to Verlinden Elementary School.  Yes, again, I know, the nostalgia trap; but I was struck by the sheer number of possible jumping off points for discussion, reflection, and investigation produced just by reliving that two block walk.  There&#8217;s something exciting about an exploratory process that encourages one to explore even more.</p>
<p><a href="http://cac.ophony.org/2008/12/02/an-experiment-in-digital-storytelling/">
<p><em>Click here to view the embedded video.</em></p>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/12/02/an-experiment-in-digital-storytelling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now You Too Can Be An Instructional Technologist!</title>
		<link>http://cac.ophony.org/2008/12/01/now-you-too-can-be-an-instructional-technologist/</link>
		<comments>http://cac.ophony.org/2008/12/01/now-you-too-can-be-an-instructional-technologist/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 15:45:34 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=1007</guid>
		<description><![CDATA[I get to tell Jewish jokes because I&#8217;m Jewish.  I get to tell snob jokes because I&#8217;m a historian.  I also get to tell instructional technologist jokes because I&#8217;m the Project Manager for Digital Learning (aka, &#8220;Blog Guy&#8221;) at the Bernard L. Schwartz Communication Institute.
So, I&#8217;ll let out a little secret: here&#8217;s where we get [...]]]></description>
			<content:encoded><![CDATA[<p>I get to tell Jewish jokes because I&#8217;m Jewish.  I get to tell snob jokes because I&#8217;m a historian.  I also get to tell instructional technologist jokes because I&#8217;m the Project Manager for Digital Learning (aka, &#8220;Blog Guy&#8221;) at the Bernard L. Schwartz Communication Institute.</p>
<p>So, I&#8217;ll let out a little secret: <a title="Empty Characters" href="http://emptybottle.org/bullshit/" >here&#8217;s</a> where we get all those phrases we throw around that make most normal people feel like there&#8217;s a whole world out there they&#8217;ll never understand.  (hat tip <a title="Barbara Sawhill" href="http://www.oberlin.edu/hispanic/Faculty/Sawhill.html" >Barbara Sawhill</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/12/01/now-you-too-can-be-an-instructional-technologist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thinking Behind a Redesign</title>
		<link>http://cac.ophony.org/2008/11/13/thinking-behind-a-redesign/</link>
		<comments>http://cac.ophony.org/2008/11/13/thinking-behind-a-redesign/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 22:34:43 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=940</guid>
		<description><![CDATA[I recently implemented a new design for the homepage for our installation of WordPress MultiUser&#8211; Blogs@Baruch.

I tried to accomplish a few things with this redesign.  Mostly, I wanted to update the look of the site&#8230; the previous version was a bit clunky, a bit 2003 1999, and I didn&#8217;t feel it was popping.  As I [...]]]></description>
			<content:encoded><![CDATA[<p>I recently implemented a new design for the homepage for our installation of <a title="WPMU" href="http://www.wpmu.org" >WordPress MultiUser</a>&#8211; <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu" >Blogs@Baruch</a>.</p>
<p ><a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu/" ><img class="aligncenter size-full wp-image-941"  title="blsciblogs" src="http://cac.ophony.org/wp-content/uploads/2008/11/blsciblogs.jpg" alt="" width="500" height="414" /></a></p>
<p>I tried to accomplish a few things with this redesign.  Mostly, I wanted to update the look of the site&#8230; the previous version was a bit clunky, a bit <span >2003</span> 1999, and I didn&#8217;t feel it was popping.  As I usually say when Mikhail critiques my design (which is often): I&#8217;m no great aesthete, and certainly not a graphic artist.  But I think this version is markedly better, cleaner, and more inviting.  2008.  2009, even.</p>
<p>The inviting part is really the key, because we&#8217;d like to make this page not just a portal to the wide range of blogging being done throughout the Baruch College community, but as a sort of digital commons where ideas and resources and teaching and learning can be shared within the community and beyond.  So I&#8217;ve tried to structure the new site in a way that makes it easy to share a lot of different kinds of information, and for visitors to peer in and get a sense of how folks are using this technology at Baruch.</p>
<p>The site includes:</p>
<p>A <strong><a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu/" >Home Page</a></strong> with featured blogs and links to recently updated and particularly active blogs on the system  At the bottom of the homepage, RSS feeds pull in posts from the CUNY News Wire, from the Baruch College Teaching Blog, from Cacophony, and from the Ticker.  I&#8217;m working on a links list that will be customized for particular pages within the site, and will be using this as a space to tinker, to play with, and to show off the functionality that the WordPress community is constantly building.  All of this is living, and will evolve.</p>
<p>An <strong><a title="About This Site" href="http://blsciblogs.baruch.cuny.edu/about-this-site/" >&#8220;About&#8221;</a> </strong>page with a mission statement about this project :</p>
<blockquote><p><span ><strong>Blogs@Baruch</strong></span> was built on the following core beliefs:</p>
<ul>
<li>College students should write regularly in all disciplines and in a variety of formats and genres</li>
<li>Faculty should have available support for their efforts to create avenues for student communication</li>
<li>Open-source technology has an important role to play in the future of higher education, and colleges will gain much from experimenting with a wide-range of open-source technology solutions</li>
<li>Community users of centrally-administered software should share both the burden and excitement of innovating with technology.  While a strong support network is necessary, a do it yourself ethos should be prominent</li>
<li>WordPress Multiuser is the most powerful and flexible blogging system available, and can be effectively customized to fulfill a wide range of the communicative needs of the college community</li>
</ul>
</blockquote>
<p>A <a title="Projects" href="http://blsciblogs.baruch.cuny.edu/projects/" ><strong>&#8220;Projects&#8221;</strong></a> page where visitors can take a look at current and past blogs and sites supported by the Bernard L. Schwartz Communication Institute.  About three dozen blogs are linked, though some are password protected. Student blogs&#8211; we&#8217;ve got about 140 going right now&#8211; are not linked from this page.</p>
<p>A <strong><a title="Blog about Blogging" href="http://blsciblogs.baruch.cuny.edu/blog" >Blog</a></strong> where we&#8217;ll draw attention to specific things happening throughout the system and make announcement that might be of interest to our users.  This space will, over time, we hope, merge with what&#8217;s under the <a title="Support" href="http://blsciblogs.baruch.cuny.edu/support/" ><strong>&#8220;Support&#8221;</strong></a> area, where I&#8217;m going to be adding to and refining what I hope are helpful materials&#8211; FAQs, a manual for WordPress customized for users of this system, suggestions for using weblogs in college teaching, instructional screencasts, and handouts for faculty to use and adapt.  The manual is in need of an overhaul, and this section will be tightened considerably in the coming weeks.</p>
<p>A <a title="Contact" href="http://blsciblogs.baruch.cuny.edu/contact/" ><strong>&#8220;Contact&#8221;</strong></a> page for visitors to easily contact us.  Features a <a title="ReCaptcha" href="http://cac.ophony.org/2008/10/22/recaptcha-the-essence-of-a-distributed-knowledge-network/" >reCaptcha</a>, for those curious.</p>
<p>Ultimately, we hope users and visitors will find this helpful, and will share in and contribute to the information it provides.  Scott Leslie recently wrote a <a title="Leslie on sharing" href="http://www.edtechpost.ca/wordpress/2008/11/08/just-share-already/" >powerhouse blog post</a> on the ethics of and obstacles to sharing in higher education.  Leslie argues that institution-driven, overly-organized approaches to sharing tend to halt and stutter, while organic, individualized networks are more likely to thrive.  He posits lots of ideas about why and how this is, and concludes ultimately that planning to share gets in the way of actually <em>doing</em> it.  I take and sympathize with his point.</p>
<p>At the same time, I think the technology that eases sharing is still relatively underused and also <em>undertheorized</em> at Baruch and throughout CUNY.  One of our goals is to model just what a distributed learning environment is.  We&#8217;ll be using this new space to push, to compile, and to provide paths to useful information for our wildly diverse range of users.  It will ultimately be up to the users of the system to find value, and maybe to contribute some of their own.</p>
<p>The beauty is that they can do that just by getting a blog and sharing their work with the world.  If there&#8217;s value, and it&#8217;s put out there, it will be found.</p>
<p>In the interest of practicing what I preach&#8211; and since I totally relied on the fruits of the Google as I designed the new home for Blogs@Baruch&#8211; click beneath the fold for some techie detail on the redesign.  If the words &#8220;CSS,&#8221; &#8220;widgets,&#8221; &#8220;plugin,&#8221; &#8220;WordPress theme,&#8221; &#8220;hackalicious,&#8221; and &#8220;pwnd&#8221; mean nothing to you, no need to read on&#8230;.</p>
<p><span id="more-940"></span></p>
<ul>
<li>This new site is based on the <a title="Thematic" href="http://themeshaper.com/thematic-for-wordpress/" >Thematic WordPress Theme Framework</a>, which offers 13 different widgetized areas, and the ability to develop child themes using CSS that will allow you to maintain your customized style through theme upgrades.  I should have probably created a child style, but I didn&#8217;t figure out how to do so until I was already deep into hacking away at the some of the php and css files.  This might come back to bite me later on, but I&#8217;m rather sanguine at this point that I can dig myself out of holes I&#8217;ve dug myself into.</li>
<li>Customization, made possible by a <strong><em>secured</em></strong> version of the Userthemes Management plugin: in the Thematic file structure, I&#8217;ve hacked the following files:
<ul>
<li>Sidebar.php: added search and login code</li>
<li>Header.php: added click to get home, hacked out the branding code, and tweaked the menu</li>
<li>Footer.php: added &#8220;Baruch is CUNY&#8221; logo, and moved site info down a div tag</li>
<li>Library/extensions/hooks-filters.php: added code to make &#8220;home&#8221; button appear in menu</li>
<li>Library/styles/default.css, I hacked to bits; I also an images folder to hold the footer and header images.. the header image is from the Baruch College Visual Standards <a title="Visual Standards" href="http://www.baruch.cuny.edu/visualstandards/logosandphotos.htm" >library of images</a></li>
<li>I made a couple of changes to Library/layouts/2-c-r-fixed.css, which controls spacing of the different areas of the blog</li>
<li>I created two Page templates for displaying mediawiki pulls and screencasts without interference from sidebars</li>
</ul>
</li>
<li>Active plugins:
<ul>
<li>Dagon Design Mailer for the contact page, with reCaptcha active</li>
<li>Flickr Badge Widget, to show those Baruch photos on the front</li>
<li>Widget Logic, to control what widgets appear on what pages</li>
<li>Wiki Inc, to link to the wiki where our manual lives
<ul>
<li>I had some problem with the Wiki Inc plugin, so much of the support section is actually written directly into WordPress, save the FAQs and the screencasts.  For some reason, I can&#8217;t get images to pull.  Brian Lamb and Scott McMillan from the University of British Columbia, who work in the group that produced the plugin, generously gave me some of their time, but we couldn&#8217;t get it going.  I&#8217;ll return to that, because it&#8217;s a kick-ass function.</li>
</ul>
</li>
</ul>
</li>
</ul>
<p>That&#8217;s all for my anatomy of a hack.  So easy, even a historian can do it.  If you have any ideas for additional enhancements, please share them.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/11/13/thinking-behind-a-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Post Election Thoughts</title>
		<link>http://cac.ophony.org/2008/11/05/post-election-thoughts/</link>
		<comments>http://cac.ophony.org/2008/11/05/post-election-thoughts/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 16:59:21 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=880</guid>
		<description><![CDATA[As we all recover from the remarkable events of the past hours, days, and weeks, and begin to look forward at what a President Barack Hussein Obama might mean for the United States and the world, I find the appropriate tone elusive.  My faith in Obama as a leader is buoyed by the following: amidst [...]]]></description>
			<content:encoded><![CDATA[<p>As we all recover from the remarkable events of the past hours, days, and weeks, and begin to look forward at what a President Barack Hussein Obama might mean for the United States and the world, I find the appropriate tone elusive.  My faith in Obama as a leader is buoyed by the following: amidst the pervasive bloviating about the historical nature of this election, with the pundits and commentators falling all over themselves to proclaim a post-racial America, to muse about the Black Camelot, to argue that the election of someone they as recently as yesterday proclaimed a &#8220;socialist&#8221; means that this is in-fact a &#8220;<a title="Center-right" href="http://www.newsweek.com/id/164656" >center-right nation</a>,&#8221; the President-elect himself spoke of his election in terms at once commensurate to the moment and clear-eyed about what awaits.</p>
<p><img class="size-medium wp-image-898 alignright"  title="Obama-NYT" src="http://cac.ophony.org/wp-content/uploads/2008/11/obama-300x177.jpg" alt="" width="273" height="161" />When Obama took the stage last night, I was struck immediately by just how somber he looked.  He seemed both humbled by the moment and completely cognizant of the utter mess he&#8217;s set to inherit.  In the most soaring section of his speech, he cast the history of the past century through the eyes of Ann Nixon Cooper, born in Georgia in 1902 to a former slave.  He recounted the greatest American achievements of the last 100 years &#8212; women&#8217;s suffrage, the New Deal, World War II, the Black Freedom Movement, the moon landing, the fall of the Iron Curtain &#8212; interspersing, in the rhythm of the black church, the phrase &#8220;yes, we can&#8221; to connote that when Americans have faced existential challenges, the majority of them have repeatedly congealed around a shared, fundamental belief in the nation.  He then pivoted to the future, imagining his daughters looking back upon the 21st century, pitching this moment as the one where we chose to give them a history about which they could be proud.  This segment effectively situated the election in our national story and comfortably acknowledged its implications for the history of racism in this country, without letting the idea overwhelm the whole.  It was an <a title="Omni-American" href="http://books.google.com/books?id=tI7ICMKWxZAC&amp;dq=albert+murray+omni+american&amp;pg=PP1&amp;ots=x7vDsdKzwE&amp;source=bn&amp;sig=5p5UanUPL_72Ua-S8cz6Pjv4vgE&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=4&amp;ct=result" >&#8220;omni-American&#8221;</a> moment, drawing upon the pain and richness in our national experience to present an integrative vision of history.</p>
<p>Yet, his sober body language cut somehow against this profound statement of hope, and did so in a way that actually gave me <em>more</em> confidence in his ability to become the greatest president in more than a generation.  This is a politician who is keenly self-aware, who <a title="Newsweek on Obama" href="http://www.newsweek.com/id/167582/output/print" >said</a> in May 2007, while reflecting upon his trouble in the earliest debates, &#8220;there&#8217;s a certain ambivalence in my character that I like about myself. It&#8217;s part of what makes me a good writer, you know? It&#8217;s not necessarily useful in a presidential campaign.&#8221;  In an 180-degree turn from the current occupant of the White House, here is a man who struggles with ideas, who challenges himself to synthesize, who speaks to Americans as adults who can be trusted to see more than two diametrically opposed sides to an issue.  This is the temperament that allowed Obama to surge against the backdrop of an economic crisis, to soar above Rovian politics; it&#8217;s the persona that injected humility into his presentation last night, that led him to address in sympathetic terms those who disagree with him; and it&#8217;s the proper tone to lead the nation as it begins to face this next wave of existential challenges.</p>
<p>This man can&#8217;t solve all of our problems, doesn&#8217;t portend the end of race, and is bound by difficult choices.  But I can think of no better leader for this moment.</p>
<p>Some additional, random thoughts:</p>
<ul>
<li>Delano. S. Fitzgerald. Baines. Herbert Walker. Hussein.</li>
<li>For the first time in my life, we have a President who may be able to convince some people that government is not the biggest problem in their lives.</li>
<li>It will be fascinating to watch the Republican Party as it struggles to pick up the pieces and to find a voice.  It will be at war with itself.</li>
<li>Obama will be the first president my and many of your kids will remember throughout their lives.</li>
<li>It&#8217;s almost as remarkable for a former community organizer to win this office as it is an African-American.</li>
<li>The passage of Proposition 8 in California should lessen the joy progressives take forward from yesterday.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/11/05/post-election-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>reCAPTCHA: The Essence of a Distributed Knowledge Network</title>
		<link>http://cac.ophony.org/2008/10/22/recaptcha-the-essence-of-a-distributed-knowledge-network/</link>
		<comments>http://cac.ophony.org/2008/10/22/recaptcha-the-essence-of-a-distributed-knowledge-network/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 12:02:56 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=790</guid>
		<description><![CDATA[We&#8217;ve all come across a CAPTCHA, a challenge response test that web sites give viewers who are trying to register for an account, leave a comment, or perform some other task that might be vulnerable to spammers or bots.  They are useful because they can differentiate human from machine (Completely Automated Turing Test to Tell [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all come across a <a title="Captcha" href="http://en.wikipedia.org/wiki/Captcha" >CAPTCHA</a>, a challenge response test that web sites give viewers who are trying to register for an account, leave a comment, or perform some other task that might be vulnerable to spammers or bots.  They are useful because they can differentiate human from machine (Completely Automated Turing Test to Tell Computers and Humans Apart&#8230; don&#8217;t ask me how &#8220;turing&#8221; became a &#8220;P&#8221; in that acronym).</p>
<p>They look something like this: <a href="http://cac.ophony.org/wp-content/uploads/2008/10/captcha.jpg"><img class="alignnone size-medium wp-image-791" title="captcha" src="http://cac.ophony.org/wp-content/uploads/2008/10/captcha.jpg" alt="" width="122" height="39" /></a></p>
<p>These things are a minor nuisance, the price we pay to protect the sites we need from bombardment by unwanted traffic or use as a launching pad for spam attacks.  According to researchers at the <a title="Carnegie Mellon Computer Science" href="http://www.cs.cmu.edu/" >School of Computer Science</a> at <a title="Carnegie Mellon" href="http://www.cmu.edu/" >Carnegie Mellon University</a>, &#8220;about 60 million CAPTCHAs are solved by humans around the world every day. In each case, roughly ten seconds of human time are being spent. Individually, that&#8217;s not a lot of time, but in aggregate these little puzzles consume more than 150,000 hours of work each day.&#8221;</p>
<p>What if the time spent solving CAPTCHAs could be harnessed for productive purposes?  Thanks to <a title="ReCaptcha" href="http://www.recaptcha.net" >reCAPTCHA</a>, it can.</p>
<p>Carnegie Mellon is currently working with two organizations (the <a title="internet Archive" href="http://www.archive.org" >Internet Archive</a> and the <a href="http://www.nytimes.com">New York Times</a>) to employ humans to decipher scans of text that are unreadable by OCR software (Optical Character Recognition).  If your site uses reCAPTCHA, your users can contribute to a major digitization project.  For details on how the technology works, click <a title="Learn More" href="http://recaptcha.net/learnmore.html" >here</a>.</p>
<p>This is the latest innovative effort to maximize productivity in a focused way by taking advantage of the reach of the web to congeal a distributed knowledge network.  reCAPTCHA has tapped into existing knowledge and processes to build yet <em>more</em> knowledge through another process.  All of us together are smarter than we are added up.</p>
<p>Brilliant work.</p>
<p>(Nod to <a title="MIkhail" href="http://cac.ophony.org/author/mikhail" >Mikhail</a> for the heads up about this technology.)<em><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/10/22/recaptcha-the-essence-of-a-distributed-knowledge-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Communication and the Campaign</title>
		<link>http://cac.ophony.org/2008/10/06/communication-and-the-campaign/</link>
		<comments>http://cac.ophony.org/2008/10/06/communication-and-the-campaign/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 22:21:42 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=684</guid>
		<description><![CDATA[If Barack Obama is elected President on November 4th, it will be in large part because of the sophisticated way his campaign has communicated with the American public.
I was in Michigan this past weekend, and drove past the &#8220;North Oakland County Victory Office&#8221; of the McCain Campaign, just west of Pontiac, twenty miles north of [...]]]></description>
			<content:encoded><![CDATA[<p>If Barack Obama is elected President on November 4th, it will be in large part because of the sophisticated way his campaign has communicated with the American public.</p>
<p>I was in Michigan this past weekend, and drove past the &#8220;North Oakland County Victory Office&#8221; of the McCain Campaign, just west of Pontiac, twenty miles north of Detroit.  A placard near the street read &#8220;Get your McCain-Palin lawn signs here!&#8221;  The building looked like a small bait shop, set back from the road, in the middle of a big parking lot with few cars.  No one seemed to be there.  On a Saturday afternoon.  A month before the election.</p>
<p>This could have been a reaction against the McCain campaign deciding to give up on Michigan late last week.  But when compared to what I&#8217;m reading about Obama&#8217;s organization, the two campaigns are running entirely different ground games.  A few examples of what Obama&#8217;s been doing:</p>
<p>Here&#8217;s an ad that the bluegrass legend Ralph Stanley made in support of Obama.  It&#8217;s in heavy radio rotation in Virginia:</p>
<p >httpv://www.youtube.com/watch?v=tUOfaIyv4Bs</p>
<p><a title="Fulton Sun" href="http://fultonsun.com/articles/2008/10/02/news/090news01.txt" >Here&#8217;s a report</a> from the Fulton (MO.) Sun, about the Obama campaign&#8217;s use of TTY devices to call hard-of-hearing voters.</p>
<p><a href="http://cac.ophony.org/wp-content/uploads/2008/10/screen_home.jpg"><img class="size-full wp-image-686 alignright"  title="screen_home" src="http://cac.ophony.org/wp-content/uploads/2008/10/screen_home.jpg" alt="" width="133" height="192" /></a><a title="iPhone" href="http://my.barackobama.com/page/content/iphone" >Here&#8217;s a link</a> to the iPhone Obama Application (pictured at right), which sorts contacts by state (putting battlegrounds at the top), and makes it easy for individuals to find their way to campaign events, make calls on behalf of Obama, or get details on the candidate&#8217;s take on particular issues.</p>
<p>The Obama campaign bought a tv channel on the Dish Network. Channel 73 will be playing all-Obama programming through the election.</p>
<p><a title="538" href="http://www.fivethirtyeight.com/2008/10/on-road-st-louis-county-missouri.html" >Here&#8217;s some reporting</a> on the campaigns from fivethirtyeight.com; a couple of bloggers have visited both campaigns&#8217; offices throughout Colorado and Missouri.  Key section:</p>
<blockquote><p><span id="fullpost">Let’s be clear.  <span >We&#8217;ve observed no comparison between these ground campaigns.</span> To begin with, there’s a 4-1 ratio of offices in most states. We walk into McCain offices to find them closed, empty, one person, two people, sometimes three people making calls. Many times one person is calling while the other small clutch of volunteers are chatting amongst themselves. In one state, McCain’s state field director sat in one of these offices and, <span >sotto voce</span>, complained to us that only one man was making calls while the others were talking to each other about how much they didn&#8217;t like Obama, which was true. But the field director made no effort to change this. This was the state field director.</span></p>
<p>The McCain offices are also calm, sedate. Little movement. No hustle. In the Obama offices, it&#8217;s a whirlwind. People move. It&#8217;s a dynamic bustle. You can feel it in our photos.</p>
</blockquote>
<p >Finally, for those who think Obama&#8217;s been too reticent to hit McCain hard: think again.  Much of the more aggressive and negative stuff is happening on a subterranean level (although that&#8217;s about to change with a national ad on McCain and the Keating Five).  Spanish language commercials (radio and tv) are running in New Mexico, Colorado, and Nevada tying McCain to Rush Limbaugh, saying he has &#8220;dos caras,&#8221; or &#8220;two faces.&#8221;  This morning I heard a report featuring a call from a Virginia Obama-supporter to an undecided voter.  It began with a reminder that John McCain would be the oldest President ever elected.  The caller then brought up the specter of McCain&#8217;s death, talked about Sarah Palin&#8217;s embarrassing interview with Katie Couric, and then asked the person on the other line if they really want her as their President.  In national tv appearances and the debates thus far, in recognition of Obama&#8217;s campaign against &#8220;politics as usual,&#8221; the candidate and his running mate have avoided a negative or derisive tone or even challenging Palin.  I think Biden probably could have field dressed Palin last week had he wanted to.  Instead, he treated her and her substanceless winking &#8212; to paraphrase Garry Shandling&#8211; like how &#8220;Johnny Carson treated <a href="http://en.wikipedia.org/wiki/Charo" >Charo</a>.&#8221;  (It&#8217;s only fair when acknowledging Palin&#8217;s winking to also note Biden&#8217;s botox.  He did, however, answer a few of the questions).  At the local level, the Obama campaign has a bit tougher.</p>
<p>There&#8217;s a direct correlation between the sophistication of the Obama ground game and the Democratic gains in affiliated voters.  In Pennsylvania, registered Democrats outnumbered Republicans by 486,000 in 2000 and 580,000 in 2004.  Now?  1.15 million.  In Nevada, four years ago Dems trailed by nearly 5000 registrants.  They currently hold an 80,000 voter edge.  In Florida, the Democrats have added 130,000 more voters than the Republicans over the past four years.  If you&#8217;re an Obama supporter, those numbers are very encouraging.</p>
<p >Other factors explain this swing, including the unpopularity of the current administration and the downturn in the economy.  But it would be foolish to discount the effectiveness of the Obama machine in organizing its base, supporting voter registration (especially among the young), employing <a title="Twitter" href="http://cac.ophony.org/2008/09/12/presidential-tweets/" >technology</a>, and effectively tailoring its message to particular constituencies.  Obama and Biden know who their audiences are, and how to speak to them.</p>
<p><a href="http://cac.ophony.org/wp-content/uploads/2008/10/mccainpalin.jpg"><img class="size-full wp-image-702 alignright"  title="mccainpalin" src="http://cac.ophony.org/wp-content/uploads/2008/10/mccainpalin.jpg" border="0" alt="McCain Palin" width="92" height="102" /></a></p>
<p>Admittedly, I haven&#8217;t been following the McCain campaign as closely as Obama&#8217;s, but I&#8217;ve seen no evidence that there&#8217;s much innovation or energy at its core.  Yes, Palin has fired up the Republican base.  But has that led to more organizing or a flock of volunteers in key locations?  Aside from McCain&#8217;s increasingly negative ads and his hope that the economy becomes less central to the campaign, a few yard signs are all I&#8217;ve really seen.</p>
<p>* <em>Late update</em>: Ben Smith has a piece in <a title="Smith on Race" href="http://www.politico.com/news/stories/1008/14347.html" >Politico</a> on Obama&#8217;s &#8220;quiet efforts&#8221; to target black voters&#8230; subterranean for real.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/10/06/communication-and-the-campaign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>But, professssssor!!!!</title>
		<link>http://cac.ophony.org/2008/09/24/but-professssssor/</link>
		<comments>http://cac.ophony.org/2008/09/24/but-professssssor/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 23:45:56 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=623</guid>
		<description><![CDATA[Dana McCourt, over at Edge of the American West, puts today&#8217;s campaign shenanigans into a context that any college teacher would understand:



to: john.mccain@maverickymaverick.gov
from: dmccourt@youhavegottobekiddingme.edu [Sent On Behalf Of American Public]
subject: extension?
Dear John,
While I sympathize with the demands of balancing both legislative and campaign issues, I cannot, in accord with historical policy, grant your request for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://edgeofthewest.wordpress.com/author/danamccourt/" >Dana McCourt</a>, over at <a href="http://edgeofthewest.wordpress.com/2008/09/24/re-extension/" >Edge of the American West</a>, puts today&#8217;s campaign shenanigans into a context that any college teacher would understand:</p>
<blockquote>
<div class="post-content">
<div class="snap_preview">
<p>to: john.mccain@maverickymaverick.gov<br />
from: dmccourt@youhavegottobekiddingme.edu [Sent On Behalf Of American Public]</p>
<p>subject: extension?</p>
<p>Dear John,</p>
<p>While I sympathize with the demands of balancing both legislative and campaign issues, I cannot, in <a href="http://edgeofthewest.wordpress.com/2008/09/24/neither-rain-nor-sleet-nor-gloom-of-night/">accord with historical policy</a>, grant your request for an extension on the debate. Dean’s excuses can only be granted in the cases of health or personal emergencies, and would need to be submitted to me in writing.  A physician’s note is also acceptable.</p>
<p>Regards,<br />
Dana McCourt</p>
<hr />
<blockquote><p><span >On Tuesday, September 23, 2008 at 12:00pm, John McCain wrote:</span></p>
<p><span >sorry to bother you and i know this request is late but i have been really busy and i want to call an emergency meeting with the president and understanding all the material is taking up a lot of my time so i find myself woefully underprepared and i am throwing myself on your mercy. can i get an extension over the weekend on the debate so i can present my best work to you? or should i get a dean’s excuse?</span></p>
<p><span >thanks,</span></p>
<p><span >john</span></p>
</blockquote>
</div>
</div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/09/24/but-professssssor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Baruch College Teaching Blog</title>
		<link>http://cac.ophony.org/2008/09/22/baruch-college-teaching-blog/</link>
		<comments>http://cac.ophony.org/2008/09/22/baruch-college-teaching-blog/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 14:21:00 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=609</guid>
		<description><![CDATA[I&#8217;d like to call your attention to a new blog we&#8217;re supporting here at Baruch College: The Baruch College Teaching Blog.
Several faculty have agreed to post to the blog regularly, and to lead an ongoing conversation about teaching at Baruch College.  Surprisingly, there are very few blogs like this, which provide the opportunity for members [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to call your attention to a new blog we&#8217;re supporting here at Baruch College: <a title="Baruch College Teaching Blog" href="http://blsciblogs.baruch.cuny.edu/teachingblog/" >The Baruch College Teaching Blog</a>.</p>
<p>Several faculty have agreed to post to the blog regularly, and to lead an ongoing conversation about teaching at Baruch College.  Surprisingly, there are very few blogs like this, which provide the opportunity for members of a college community to discuss pedagogy outside of their disciplines.  This is a unique and exciting development for the college and for CUNY, and I look forward to much interchange between the folks who post to and follow that blog and Cacophonites.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/09/22/baruch-college-teaching-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Presidential Tweets?</title>
		<link>http://cac.ophony.org/2008/09/12/presidential-tweets/</link>
		<comments>http://cac.ophony.org/2008/09/12/presidential-tweets/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 19:23:52 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=569</guid>
		<description><![CDATA[I&#8217;m not really a big fan of the whole &#8220;John McCain is so old he can&#8217;t use a computer&#8221; line the Obama camp rolled out today.  I think there are stronger, more necessary and relevant attacks that Obama should launch.
That said, the activity level on the two candidates&#8217; Twitter pages does seem to back up [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not really a big fan of the whole &#8220;John McCain is so old he can&#8217;t use a computer&#8221; line the Obama camp rolled out today.  I think there are stronger, more necessary and relevant attacks that Obama should launch.</p>
<p>That said, the activity level on the two candidates&#8217; Twitter pages does seem to back up the overarching thesis.</p>
<p>Check out these screenshots.</p>
<p><a title="Obama Twitter" href="http://twitter.com/BarackObama" >Obama&#8217;s</a>:</p>
<p><a href="http://cac.ophony.org/wp-content/uploads/2008/09/obamatwitter.jpg"><img class="aligncenter size-full wp-image-570" title="obamatwitter" src="http://cac.ophony.org/wp-content/uploads/2008/09/obamatwitter.jpg" alt="" width="500" height="232" /></a><br />
<a title="McCain Twitter" href="http://twitter.com/JohnMccain" >McCain&#8217;s</a>:</p>
<p><a href="http://cac.ophony.org/wp-content/uploads/2008/09/mccaintwitter.jpg"><img class="aligncenter size-full wp-image-571" title="mccaintwitter" src="http://cac.ophony.org/wp-content/uploads/2008/09/mccaintwitter.jpg" alt="" width="500" height="303" /></a></p>
<p>(Note the &#8220;Location&#8221; each has signified.  Obama sharply &#8220;outsiders&#8221; his online presence.)</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/09/12/presidential-tweets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Triumphing Over Your “Little Hater”</title>
		<link>http://cac.ophony.org/2008/09/10/triumphing-over-your-little-hater/</link>
		<comments>http://cac.ophony.org/2008/09/10/triumphing-over-your-little-hater/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 15:12:40 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=535</guid>
		<description><![CDATA[My favorite hip-hop vlogger Jay Smooth has eloquently described those nagging voices that reside inside the heads of people who do creative work as  &#8220;little haters.&#8221;

He even wrote a song about his:

When I’m writing, my &#8220;little hater&#8221; tells me I need to find a fifth or a sixth corroborating piece of evidence before I can [...]]]></description>
			<content:encoded><![CDATA[<p >My favorite hip-hop vlogger <a title="Ill Doctrine" href="http://www.illdoctrine.com" >Jay Smooth</a> has eloquently described those nagging voices that reside inside the heads of people who do creative work as  <a title="Little Haters" href="http://www.illdoctrine.com/2007/12/beating_the_little_hater.html" >&#8220;little haters.&#8221;</a></p>
<p ><a href="http://cac.ophony.org/2008/09/10/triumphing-over-your-little-hater/"><em>Click here to view the embedded video.</em></a></p>
<p>He even wrote a song about his:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://blip.tv/play/gaEWy98ogpNs" /><embed type="application/x-shockwave-flash" width="400" height="300" src="http://blip.tv/play/gaEWy98ogpNs"></embed></object></p>
<p>When I’m writing, my &#8220;little hater&#8221; tells me I need to find a fifth or a sixth corroborating piece of evidence before I can make a claim, and even after I do, the damn thing <em>still</em> comes out tentative.  He sometimes makes me think that the idea that I just came up with can’t be anywhere near as good as I originally thought because, well, I&#8217;m the one who came up with it.  Someone else probably wrote something similar somewhere else, and I just haven&#8217;t seen it yet.</p>
<p>I&#8217;ve about had enough of this bastard getting in my way.</p>
<p>Sometimes, when I need get a post up on this blog, I start writing about interests that I don&#8217;t get to explore when I write reports, papers, proposals, or emails.  It&#8217;s possible to tie almost <em>anything</em> into that topic taped up there across the header.  &#8220;Write what you know&#8221; isn&#8217;t useful just for getting our students to break through their shells.  It&#8217;s also a useful way to put your little hater on his heels, get the engine revving, and start a conversation.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/09/10/triumphing-over-your-little-hater/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tsk tsk…</title>
		<link>http://cac.ophony.org/2008/08/29/tsk-tsk/</link>
		<comments>http://cac.ophony.org/2008/08/29/tsk-tsk/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 14:24:44 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=529</guid>
		<description><![CDATA[Further proof as this election season revs up that there&#8217;s more than the future of humanity at stake this November.

Writing teachers everywhere: this is not change you can believe in.
(kudos to TPM)
]]></description>
			<content:encoded><![CDATA[<p>Further proof as this election season revs up that there&#8217;s more than the future of humanity at stake this November.</p>
<p><a title="Students for McCain" href="http://store.johnmccain.com/ProductDetails.asp?ProductCode=PNR2879" ><img class="aligncenter size-full wp-image-530" title="students-for-mccain" src="http://cac.ophony.org/wp-content/uploads/2008/08/students-for-mccain.jpg" alt="" width="291" height="232" /></a><br />
Writing teachers everywhere: <em>this</em> is not change you can believe in.</p>
<p>(kudos to <a title="TPM Pen" href="http://talkingpointsmemo.com/archives/211202.php" >TPM</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/08/29/tsk-tsk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Status Anxiety</title>
		<link>http://cac.ophony.org/2008/07/24/status-anxiety/</link>
		<comments>http://cac.ophony.org/2008/07/24/status-anxiety/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 14:15:39 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=465</guid>
		<description><![CDATA[Yeah, I&#8217;m on the Facebook.  I resisted for some time, but being able to play Scrabble (or, more accurately, &#8220;Scrabulous&#8221;) with friends ultimately got me.  I&#8217;ve developed a bond with the husband of a college friend of my sister-in-law, forged initially through comments on the baby blogosphere, but secured ultimately through online word games played [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://cac.ophony.org/wp-content/uploads/2008/07/scrabble.jpg"><img class="size-medium wp-image-479 alignright"  title="scrabble" src="http://cac.ophony.org/wp-content/uploads/2008/07/scrabble-300x300.jpg" alt="" width="178" height="178" /></a>Yeah, I&#8217;m on the <a href="http://www.facebook.com">Facebook</a>.  I resisted for some time, but being able to play Scrabble (or, more accurately, &#8220;Scrabulous&#8221;) with friends ultimately got me.  I&#8217;ve developed a bond with the husband of a college friend of my sister-in-law, forged initially through comments on the baby blogosphere, but secured ultimately through online word games played on Facebook.  We&#8217;ve met only twice.  The first time was before our online friendship blossomed.  The second was at a party a few weeks ago.  We were both a little nervous, but happy to see each other.  I joked that we met on &#8220;Bromatch.com.&#8221;  We haven&#8217;t played a game in a while, and I just heard from my sister in-law last week that he misses me.  Scrabulous challenge forthcoming&#8230;.</p>
<p><a href="http://cac.ophony.org/wp-content/uploads/2008/07/status1.jpg"><img class="alignright size-medium wp-image-467"  title="status1" src="http://cac.ophony.org/wp-content/uploads/2008/07/status1.jpg" alt="" width="125" height="105" /></a>Apart from Facebook&#8217;s support for connectedness and competitive word twisting, the site allows users to issue  &#8220;status&#8221; updates whenever they want.  This is a delicate but  powerful art form.  I&#8217;ve encountered the following kinds of updates:</p>
<p><strong>Literal: &#8220;</strong>Luke is working on a blog post&#8221;<br />
<strong>Self-promoting: </strong>&#8220;Luke just published this: <span id="sample-permalink">http://cac.ophony.org/2008/07/24/<span id="editable-post-name" title="Click to edit this part of the permalink">status-anxiety</span>/</span>&#8221;<br />
<strong>Philosophical:</strong> &#8220;Luke is&#8221;<br />
<strong>Frustrated:</strong> &#8220;Luke is, but perhaps not according to Human Resources&#8221;<br />
<strong>Resigned: </strong>&#8220;Luke isn&#8217;t&#8221;<strong><br />
Ironic: </strong>&#8220;Luke&#8217;s productivity is unaffected by the distractions of Facebook&#8221;<br />
<strong>Literary (direct quote): </strong>&#8220;Luke is under the brown fog of a winter dawn&#8221;<strong><br />
Literary (reference): </strong>&#8220;Luke thinks the only thing keeping him visible is his whiteness&#8221;<br />
<strong>Historical: </strong>&#8220;Luke thinks the run on Indymac echoes the Panic of 1893&#8243;<br />
<strong>Informed: </strong>&#8220;Luke just got run over by Bob Novak&#8221;<strong><br />
Uninformed: </strong>&#8220;Luke thinks McCain is being too heavily scrutinized by the press&#8221;<br />
<strong>Anticipatory: </strong>&#8220;Luke is looking forward to the new season of Mad Men&#8221;<br />
<strong>Anguished: </strong>&#8220;Luke keeps writing the same &amp;%#(*&amp;@  sentence over and over again!&#8221;<br />
<strong>Confessional: </strong>&#8220;Luke watched Steel Magnolias last night, and is still crying&#8221;<strong><br />
Curious: </strong>&#8220;Luke wonders how many kinds of status updates there are&#8221;<br />
<strong> Evangelical: </strong>&#8220;Luke thinks there will never, ever, ever be anything like The Wire on TV again&#8221;<strong><br />
Nerdy:</strong> &#8220;Luke is a csstud and a phpimp&#8221;<br />
<strong>Political: </strong>&#8220;Luke is chanting No Justice, No Peace&#8221;<br />
<strong>Supportive: </strong>&#8220;Luke thinks that no matter what (redacted)&#8217;s dissertation adviser says, the work is top-notch&#8221;<br />
<strong>Onomatopoeic:</strong> &#8220;Luke thump thump thumped three miles at the track&#8221; (that one is also <strong>alliterative</strong>)<strong><br />
Swinging: </strong>&#8220;Luke is be-bop-be-dee-bop&#8221;<br />
<strong>Sporting: </strong>&#8220;Luke is yelling &#8216;Go Green&#8217;&#8221;<br />
<strong>Stumped, Disinterested, or Over Forty:</strong> &#8221; &#8221;</p>
<p>Of course, there are other ways to announce your status, or lack thereof, to the world.  There&#8217;s <a href="http://www.twitter.com">Twitter</a>, which gives you 140 characters to say what you&#8217;re up to (&#8221;microblogging,&#8221; they call it).  There&#8217;s the status menu feature of an instant messaging client.  There&#8217;s all sorts of ways to unify these statuses, to change them on the fly; or you can choose to keep them separate.</p>
<p>Yet, I imagine the following uttered in the border-state twang of a dear <a title="Ryan" href="http://cac.ophony.org/author/ryan/" >BLSCI comrade</a>: &#8220;who <em>cares</em>?  I don&#8217;t <em>want </em>to know what you&#8217;re doing, and I don&#8217;t want you to know what I&#8217;m doing.&#8221;  Of course not.  A status update is not <em>really </em>a status update, but rather a chance to blast your friends with a small dose of personality to break up the monotony of the day.  It&#8217;s fun, it&#8217;s a challenge to be creative, and it&#8217;s a chance to stay connected with a community.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/07/24/status-anxiety/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is This Effective Communication?</title>
		<link>http://cac.ophony.org/2008/07/14/is-this-effective-communication/</link>
		<comments>http://cac.ophony.org/2008/07/14/is-this-effective-communication/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 16:36:17 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=452</guid>
		<description><![CDATA[ My feeling is that this would make a fine satirical cartoon inside the New Yorker.  But to give it the cover?  Not so sure about that.
Understandably, the Obamas ain&#8217;t pleased, finding it tasteless and degrading.  The fear is that this image, widely distributed, may give credence to the misinformation going around about the couple.  [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright"  src="http://media.washingtonpost.com/wp-dyn/content/photo/2008/07/14/PH2008071400840.jpg" alt="Obama" width="224" height="327" /> My feeling is that this would make a fine satirical cartoon inside the <em>New Yorker</em>.  But to give it the cover?  Not so sure about that.</p>
<p>Understandably, the Obamas ain&#8217;t <a href="http://blog.washingtonpost.com/the-trail/2008/07/14/tasteless_and_offensive_new_yo.html?hpid=topnews" >pleased</a>, finding it tasteless and degrading.  The fear is that this image, widely distributed, may give credence to the misinformation going around about the couple.  As someone put it to me, &#8220;this plays into the suspicions of the morons who &#8216;don&#8217;t do nuance.&#8217;&#8221;  To which I replied: &#8220;Since when has the <em>New Yorker</em> cared about those folks?&#8221;</p>
<p>People will be talking about this cover, and though it may not reach the level attained by <a href="http://en.wikipedia.org/wiki/Saul_Steinberg" >Saul Steinberg&#8217;s</a> &#8220;New Yorker&#8217;s View of the World&#8221; or <a title="Kalman" href="http://en.wikipedia.org/wiki/Maira_Kalman" >Maira Kalman&#8217;s</a> &#8220;New Yorkistan,&#8221; it will be getting the magazine some attention.  So, perhaps as far as the magazine is concerned, it&#8217;s effective communication&#8230; but it&#8217;s also requiring the reader/listener to bring a lot of context to the table.</p>
<p>* Late update: in the interest of &#8220;Equal Time,&#8221; <a href="http://edgeofthewest.wordpress.com/2008/07/14/equal-time/" >Edge of the American West</a> offers this:</p>
<p ><img class="aligncenter" src="http://edgeofthewest.files.wordpress.com/2008/07/auugh3.jpg?w=480" alt="Mccain" width="240" height="351" /></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/07/14/is-this-effective-communication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome, Akenna!</title>
		<link>http://dushtumay.sahawaltzer.org/2008/07/welcome-akenna/</link>
		<comments>http://dushtumay.sahawaltzer.org/2008/07/welcome-akenna/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 16:35:12 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=222</guid>
		<description><![CDATA[We are so happy to welcome Akenna William Nikundiwe to our extended family.Â  We already share our anniversary with one cousin; we&#8217;re glad to share it with another.
Here he is, with the other two Nikundiwe boys:

]]></description>
			<content:encoded><![CDATA[<p>We are so happy to welcome Akenna William Nikundiwe to our extended family.Â  We already share our anniversary with <a  title="Aku" href="http://www.facebook.com/people/Reetu_Saha/8845708">one cousin</a>; we&#8217;re glad to share it with another.</p>
<p>Here he is, with the other two Nikundiwe boys:</p>
<div ><img width="400" alt="Nikundiwes" id="image221" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/07/nikundiwes.jpg" /></div>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2008/07/welcome-akenna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caught in a Lie</title>
		<link>http://dushtumay.sahawaltzer.org/2008/07/caught-in-a-lie/</link>
		<comments>http://dushtumay.sahawaltzer.org/2008/07/caught-in-a-lie/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 14:49:51 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=220</guid>
		<description><![CDATA[I promise, a big photo dump is forthcoming, but I had to get this story out while I remembered it.
Kaya has been venturing into new levels and style of argument recently, testing what she can get past her parents and what she can&#8217;t.Â  But, frankly, she&#8217;s not that good at it yet.Â  I&#8217;m sure by [...]]]></description>
			<content:encoded><![CDATA[<p>I promise, a big photo dump is forthcoming, but I had to get this story out while I remembered it.</p>
<p>Kaya has been venturing into new levels and style of argument recently, testing what she can get past her parents and what she can&#8217;t.Â  But, frankly, she&#8217;s not that good at it yet.Â  I&#8217;m sure by the time she&#8217;s 15, she&#8217;ll be a pro, and we&#8217;ll be defenseless (aside from tracking the GPS chip we&#8217;ll have implanted in her rear end).Â  Now, though, she tries to dupe us with great vigor, and is prone to the crash and burn.</p>
<p>Exhibit A.Â  I&#8217;m shooting baskets in Jiju and Jiji&#8217;s driveway with her, and she decides to go inside, but stops to take the top off of one the four or five lanterns that line the walkway.</p>
<p>&#8220;Kaya,&#8221; I say, &#8220;don&#8217;t play with those lights.&#8221;</p>
<p>She takes another few steps, stoops down, and takes the top off the next lantern.</p>
<p>&#8220;Kaya! What did I just tell you?&#8221;</p>
<p>&#8220;You said not to play with the lights.&#8221;</p>
<p>&#8220;Well, then why did you immediately play with the next one?&#8221;</p>
<p>&#8220;Because I didn&#8217;t hear you.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2008/07/caught-in-a-lie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mommy and Daddy</title>
		<link>http://dushtumay.sahawaltzer.org/2008/06/mommy-and-daddy/</link>
		<comments>http://dushtumay.sahawaltzer.org/2008/06/mommy-and-daddy/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 00:40:58 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=219</guid>
		<description><![CDATA[Inspired by the Kavi-eye view that rules over at her cousin&#8217;s place, we thought we&#8217;d let Kaya fool around with the camera and offer up a blog post of her own.
About these pictures, Kaya said &#8220;I took em at Grandma&#8217;s house, and I like them.  The first one is a kind of medium face, [...]]]></description>
			<content:encoded><![CDATA[<p>Inspired by the Kavi-eye view that rules over at her cousin&#8217;s <a title="Kavi" href="http://kavishah.wordpress.com" >place</a>, we thought we&#8217;d let Kaya fool around with the camera and offer up a blog post of her own.</p>
<p align="left">About these pictures, Kaya said &#8220;I took em at Grandma&#8217;s house, and I like them.  The first one is a kind of medium face, then there&#8217;s two nice faces, and then there&#8217;s a silly face. It looks very pretty and I love the pictures.  And I love mommy and daddy.  That&#8217;s it.&#8221;</p>
<p align="left"><img class="alignleft size-medium wp-image-315" title="p1000557" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/06/p1000557-300x225.jpg" alt="p1000557" width="200" /> <img id="image215" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/06/p1000544_3.jpg" alt="P1" width="200" /></p>
<p align="left"><img id="image217" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/06/p1000552.jpg" alt="P2" width="200" /> <img id="image216" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/06/p1000549_3.jpg" alt="L1" width="200" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2008/06/mommy-and-daddy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Tell A Story</title>
		<link>http://cac.ophony.org/2008/06/27/how-to-tell-a-story/</link>
		<comments>http://cac.ophony.org/2008/06/27/how-to-tell-a-story/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 12:33:57 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=448</guid>
		<description><![CDATA[
Peter O&#8217;Toole, on Fresh Air, telling Terry Gross about shooting the dangerous scene pictured above for  Lawrence of Arabia.

I love how O&#8217;Toole takes her question and turns it into a narrative, reveling in the details, painting a picture, and ending with a bang.  As is often the case, Gross asks a follow-up question [...]]]></description>
			<content:encoded><![CDATA[<p ><a title="Arabia" href="http://images.google.com/imgres?imgurl=http://cache.eb.com/eb/image%3Fid%3D77092%26rendTypeId%3D4&amp;imgrefurl=http://www.britannica.com/eb/art/print%3Fid%3D71457%26articleTypeId%3D0&amp;h=379&amp;w=550&amp;sz=45&amp;hl=en&amp;start=2&amp;um=1&amp;tbnid=Shlz-8lkXTGstM:&amp;tbnh=92&amp;tbnw=133&amp;prev=/images%3Fq%3Dpeter%2Bo%2527toole%2Barabia%26um%3D1%26hl%3Den%26client%3Dfirefox-a%26rls%3Dorg.mozilla:en-US:official%26sa%3DN" ><img class="aligncenter"  src="http://cache.eb.com/eb/image?id=77092&amp;rendTypeId=4" border="1" alt="Arabia" width="412" height="285" /></a></p>
<p><a title="O'Toole" href="http://en.wikipedia.org/wiki/Peter_O'Toole" >Peter O&#8217;Toole</a>, on <a title="Fresh Air" href="http://www.npr.org/templates/rundowns/rundown.php?prgId=13" >Fresh Air</a>, telling Terry Gross about shooting the dangerous scene pictured above for  <a title="Arabia" href="http://en.wikipedia.org/wiki/Lawrence_of_Arabia_(film)" ><em>Lawrence of Arabia</em></a>.</p>
</p>
<p>I love how O&#8217;Toole takes her question and turns it into a narrative, reveling in the details, painting a picture, and ending with a bang.  As is often the case, Gross asks a follow-up question that leads to a coda by O&#8217;Toole that sums up not only the moment and the story, but also his entire approach to life.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/06/27/how-to-tell-a-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cac.ophony.org/wp-content/uploads/2008/06/otoole.mp3" length="2019029" type="audio/mpeg" />
		</item>
		<item>
		<title>Navigating the Messages at the Ballpark</title>
		<link>http://cac.ophony.org/2008/06/19/navigating-a-ballpark/</link>
		<comments>http://cac.ophony.org/2008/06/19/navigating-a-ballpark/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 18:32:32 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/?p=427</guid>
		<description><![CDATA[A while ago, I made my first trip to Comerica Park, the stadium where my beloved Detroit Tigers play their home games.  I say &#8220;play their home games&#8221; because to me, Tiger Stadium will always be their true home, even if in the future it&#8217;s left only partially standing. I grew up about an [...]]]></description>
			<content:encoded><![CDATA[<p >A while ago, I made my first trip to Comerica Park, the stadium where my beloved <a title="Tigers" href="http://en.wikipedia.org/wiki/Detroit_Tigers" >Detroit Tigers</a> play their home games.  I say &#8220;play their home games&#8221; because to me, Tiger Stadium will always be their true home, even if in the future it&#8217;s left only <a title="NYT on Tiger Stadium" href="http://www.nytimes.com/2008/05/11/sports/baseball/11stadium.html?_r=1&amp;scp=1&amp;sq=tiger%20stadium&amp;st=cse&amp;oref=slogin" >partially standing</a>. I grew up about an hour from the corner of Michigan and Trumbull, and my trips to that grimy cathedral were always something special.  The place was beautifully disgusting, crusted with the cheers (and spit) of generations of faithful.     Above all, it had character so palpable that it didn&#8217;t matter if half your view of the field was obstructed.</p>
<p ><img class="aligncenter"  src="http://farm3.static.flickr.com/2361/1693337794_8e18eec5b5.jpg" border="0" alt="Behind Home" /></p>
<p ><strong>Tiger Stadium</strong> <small><a title="Attribution-NonCommercial-ShareAlike License" href="http://creativecommons.org/licenses/by-nc-sa/2.0/" ><img src="http://cac.ophony.org/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" >photo</a> credit: <a title="hassgocubs" href="http://www.flickr.com/photos/60653617@N00/1693337794/" >hassgocubs</a></small></p>
<p >I hadn&#8217;t been to a game in Detroit since I left Michigan after college.  Since then, the Tigers have changed ballparks, lost 119 games in a season (one short of the record), and dramatically turned things around to win a pennant in 2006.  They&#8217;re hovering a few games under .500 right now, but have enough firepower and pitching to make a run in the second half of the season.</p>
<p >So I was excited to go to Comerica, which I&#8217;d heard was a great place to watch a game.  It&#8217;s a beautiful structure, framing the skyline of old Detroit in a way that obscures the deep economic and <a title="Kwame" href="http://news.google.com/news?hl=en&amp;ie=UTF-8&amp;ned=us&amp;q=kwame%20kilpatrick&amp;um=1&amp;sa=N&amp;tab=wn" >political troubles</a> that plague the city.</p>
<p ><a title="Comerica Park / Detroit Skyline HDR" href="http://www.flickr.com/photos/9267838@N06/2513544786/" ><img  src="http://farm3.static.flickr.com/2062/2513544786_f6d08d7d2a.jpg" border="0" alt="Comerica Park / Detroit Skyline HDR" /><br />
</a><strong>Comerica Park </strong><small><a title="Attribution-ShareAlike License" href="http://creativecommons.org/licenses/by-sa/2.0/" ><img src="http://cac.ophony.org/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" >photo</a> credit: <a title="kw111786" href="http://www.flickr.com/photos/9267838@N06/2513544786/" >kw111786</a></small></p>
<p >As we settled into our seats along the first base line, I was as giddy as I had been as an 8 year-old.  I even called the lifelong buddy who I used to go to games with back then, just to let him know where I was.</p>
<p >
<p >Watching the game was a different experience from those trips in the past.  I still had a blast, enjoying the company of my siblings-in-law, and appreciating the talent on the field (even as the Tigers lost to the Angels). I was struck, though, by the intensity of the messages flying around the ballpark.  If I wasn&#8217;t paying attention to the action, an advertisement was unavoidably forced upon my gaze.  I&#8217;m not sure if I felt more like <a href="http://en.wikipedia.org/wiki/Pierre_Bourdieu" >PIerre Bourdieu</a> or <a title="Thompson" href="http://en.wikipedia.org/wiki/Hunter_S._Thompson" >Hunter S. Thompson</a>; either way, I felt like I was captive in Vegas.</p>
<p >Every line of sight offered something different.  A giant fountain, sponsored by General Motors, dangled two shiny sedans beyond the outfield.  Vendors, hawking $7 beers and $5 pretzels, were easy to spot throughout the stadium, marked by fluorescent yellow shirts.  Even bases on balls &#8212; of which the Tigers issued too many &#8212; were sponsored: as the batter trotted down to first base, an ad blared through the speakers and in the slim screens that lined the upper deck inviting ticket holders to &#8220;walk down&#8221; to a local establishment for a haircut.</p>
<p >The most astonishing structure in the stadium, more striking even than the ferris wheel in the concourse and the giant tiger statues out front, is the gargantuan Comerica Park scoreboard.   Roughly ten stories tall, the scoreboard serves over a dozen distinct advertisements, as well as two giant screens that play commercials when not showing player photos and statistics.  In the center of all of this chaos is the  actual score and game information, which take up no more than a quarter of the scoreboard&#8217;s mass.</p>
<p ><a title="17.jpg" href="http://www.flickr.com/photos/39713034@N00/194987993/" ><img  src="http://farm1.static.flickr.com/63/194987993_1674e715d9.jpg" border="0" alt="17.jpg" /><br />
</a><strong>Comerica Park Scoreboard</strong> <small><a title="Attribution-NonCommercial-NoDerivs License" href="http://creativecommons.org/licenses/by-nc-nd/2.0/" ><img src="http://cac.ophony.org/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" >photo</a> credit: <a title="McPhloyd" href="http://www.flickr.com/photos/39713034@N00/194987993/" >McPhloyd</a></small></p>
<p >One of the beautiful things about baseball is the way that one can read the story of a game through a box score.  A young fan develops that particular literacy and carries it forward through life, forever able to regard a score line and imagine the events that led to it.  At a ballpark, the scoreboard tells you in familiar code where you are, what&#8217;s happened to get you there, and how much space is left for your team to rally or survive.  A scoreboard centers the fan within the experience of watching a game.</p>
<p >At Comerica, with competing flashing lights grabbing for my vision, separating out the scores from the messages on the board took dizzying effort.   At Tiger Stadium, there had mostly been the game and the camaraderie in the stands, and it was a purer experience: fan meets game.  Of course there were hawkers and ads and plenty of consumption; but they were nowhere near as loud or as intrusive as they&#8217;ve become.</p>
<p >Yes, there are economics behind all of this, and a straight line from the $7 beer and intense advertising to the giant contract that locked Miguel Cabrera up as a Tiger for the next eight years.  If I&#8217;m bemoaning anything, then, it&#8217;s how the experience of going to a ballgame has changed, and the license that the powers that be feel to barrage the senses of a captive audience with an endless series of pitches.  I felt assaulted, and so cheaply.  I had to seek ways to tune out the barrage and actively create the experience that I wanted when I bought those $40 box seats.</p>
<p >At the <a title="Symposium" href="http://blsciblogs.baruch.cuny.edu/symposium/" >8th Annual Symposium</a>, many of us discussed how we have been forced by new and more intensive modes of communication  to &#8220;filter&#8221; the  information that comes our way.   This style of engagement with information requires a certain media literacy that, I believe, needs to be cultivated by colleges in order to better equip our students to navigate the messages, both literal and figurative, that bombard them in public spaces&#8211; and, increasingly, in private ones too.</p>
<p >The successful development of that literacy impacts matters large, like being an informed citizen, and small(er), like trying to enjoy a ballgame. New technologies, such as digital video recorders and RSS feeds, empower us to shape and filter the information and messages that come at us.   At times, these tools feel like weapons in a battle that&#8217;s intensifying, and which increasingly threatens the purity of certain experiences.  That&#8217;s too bad.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/06/19/navigating-a-ballpark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Edupunk</title>
		<link>http://cac.ophony.org/2008/06/06/on-edupunk/</link>
		<comments>http://cac.ophony.org/2008/06/06/on-edupunk/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 19:57:39 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/2008/06/06/on-edupunk/</guid>
		<description><![CDATA[Cacophony&#8217;s good friend Jim Groom (right) has recently coined a term that has the edublogosphere all atwitter: edupunk.  It probably runs counter to the meaning behind the word to note, impressed, that The Chronicle of Higher Education&#8217;s blog, &#8220;Wired Campus,&#8221; picked up Jim&#8217;s phrase.  Punks probably don&#8217;t care much what the Chronicle&#8217;s got [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Edupunk Flickr" href="http://www.flickr.com/photos/umwdtlt/2531015107/" ><img title="Edupunk" src="http://farm4.static.flickr.com/3087/2531015107_0bee19c099.jpg?v=1211999145" border="1" alt="Edupunk" hspace="5" vspace="5" width="200" height="267" align="right" /></a>Cacophony&#8217;s good friend Jim Groom (right) has recently coined a term that has the edublogosphere all atwitter: <a title="Edupunk" href="http://bavatuesdays.com/the-glass-bees/" >edupunk</a>.  It probably runs counter to the meaning behind the word to note, impressed, that The Chronicle of Higher Education&#8217;s blog, <a title="Chronicle on Edupunk" href="http://chronicle.com/wiredcampus/article/3045/frustrated-with-corporate-course-management-systems-some-professors-go-edupunk" >&#8220;Wired Campus,&#8221;</a> picked up Jim&#8217;s phrase.  Punks probably don&#8217;t care much what the Chronicle&#8217;s got to say.</p>
<p>Edupunk (here are musings and run downs by <a title="Caulfield" href="http://mikecaulfield.com/2008/05/26/edupunk/" >Mike Caulfield</a>, <a title="Downes" href="http://www.downes.ca/cgi-bin/page.cgi?post=44760" >Stephen Downes</a>, and <a title="Norman" href="http://www.darcynorman.net/2008/05/28/on-edupunk/" >D&#8217;Arcy Norman</a>) is a new name for ideas that have been bouncing around the progressive edublogosphere for some time, namely, that <span >higher education</span> humanity needs an alternative to proprietary course management systems and the philosophy of teaching and learning that they implicitly promote.  At the core of edupunk are older pedagogical stances unrelated to technology: an ethic of self-reliance, the valuation of student-centered experiential learning, and the rejection of the <a title="Banking" href="http://www.webster.edu/~corbetre/philosophy/education/freire/freire-2.html" >&#8220;banking concept of education.&#8221;</a> Edupunk seeks to update and adapt these ideas within the rapidly evolving realm of edutech.</p>
<p>I&#8217;m coming a little late to this particular conversation (last week I was DIYing the walls of my house with a wallpaper steamer and buckets of paint&#8211; domesticpunk), and hope I can add something to the celebration/elaboration.   Seems to me that &#8220;edupunk&#8221; is a useful term, though, like all metaphors, it breaks down in the end. It has successfully congealed and branded the thinking that&#8217;s at the core of the unease many of us working in this field have with the way things are done at most schools.   It&#8217;s good that it&#8217;s been picked up by the Chronicle, and it&#8217;s fantastic that more people are finding their way to Jim&#8217;s blog these days.</p>
<p>I fear, however, that the attention to the phrase may distract from the work that produced it.  For instance, I&#8217;ve been been trying to square the circle of my dislike for punk music and culture with my love and appreciation for the work of the cats who&#8217;ve rallied to this term.  I see a rejectionist ethos and cliquish sense of superiority behind much punk music and culture, and I&#8217;m not sure that&#8217;s an accurate description of the edutech movement that I feel a part of.  I&#8217;ve always been more of a funk and soul man myself, and think that the affirmation native to those genres, the love and depth of feeling at their center, are much more pleasant (and just as useful) rhetorical and political stances. A brilliant administrator I once worked with, wise enough to know what she didn&#8217;t know and to defer to folks like Jim and <a title="Zach Davis" href="http://www.castironcoding.com/" >Zach Davis</a> on all things digital,  once said, &#8220;we want to use technology to seduce students to our pedagogical goals.&#8221;  That seems more Barry White than Johnny Rotten.</p>
<p>In that spirit, I present: edufunk.</p>
<p ><a title="edufunk500" href="http://www.flickr.com/photos/51294084@N00/2566451022/" ></a><br />
<small><a title="Attribution-NonCommercial License" href="http://creativecommons.org/licenses/by-nc/2.0/" ><img src="http://cac.ophony.org/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" >photo</a>(shop) credit: <a title="skywaltzer" href="http://www.flickr.com/photos/51294084@N00/2566451022/" >skywaltzer</a></small></p>
<p ><img class="aligncenter"  src="http://farm4.static.flickr.com/3071/2566451022_3eaa992472.jpg" border="0" alt="edufunk500" /></p>
<p>Or, how about yet another metaphor: edujazz.I sense in the discourse around edupunk an appreciation for messiness, even a distaste for form.  I&#8217;m not sure this lends itself to the best teaching.  The pedagogy that I&#8217;ve been exposed to and have practiced as a teacher of history is much more like jazz&#8230; lay down a structure, and leave plenty of space for improvisation.  This allows a variety of types of learning to happen in a classroom, acknowledges that both facts and the skills to interpret them are important areas to work on, and encourages our students to explore from within material that we&#8217;ve  laid out with a set of goals in mind.   I&#8217;m all for the &#8220;guide-by-the-side&#8221; approach to teaching&#8230; but the work that went into the Ph.D. I&#8217;m about to earn does qualify me, I think, to do a bit more than that at times.</p>
<p>This metaphor is translatable to how we, as instructional technologists, nurture critical approaches to online learning, particularly in how we can &#8220;seduce&#8221; talented teachers to experiment with new forms.  Our <a title="BLSCI" href="http://faculty.baruch.cuny.edu/blsci/main/default.asp" >Institute</a> is incredibly lucky to have the autonomy to deploy and develop whatever software we deem pedagogically appropriate, so to a certain extent we are isolated from Blackboard.   Baruch&#8217;s IT shop also recognizes that an institution of higher learning should offer a range of solutions to its community, even if those solutions compete with one another.  BCTC blesses and supports our experimentation.</p>
<p>Yet Blackboard still runs wild at this university, and we are constantly engaging with faculty members and administrators who refuse to see the differences between the solutions we promote and what BB offers.   BB&#8217;s appeal is in its antiseptic pre-fabrication, in the very fact that it doesn&#8217;t force faculty to take the extra steps to really consider how Web 2.0 and distributed learning open up new pedagogical possibilities.   As a result, many faculty graft onto it existing modes of learning, fearful of allowing technology to &#8220;get in the way.&#8221;  They get on Blackboard, get off, and move on.</p>
<p>Some faculty members do use Blackboard quite successfully, particularly for collaborative projects.  Good teaching is good teaching, no matter where it happens or how it happens.  Our job as instructional technologists, I think, is to explore the new possibilities and modes of learning that Blackboard happens to work against.  If that software gives faculty members what they need to accomplish what they want, then so be it.  But if faculty are interested in making full use of distributed learning, in continuing to learn themselves, and especially in truly empowering students, they need other solutions.</p>
<p>Edujazz, emphasizing structure and improvisation, can help reach out to faculty who are reticent to give up their control and jump into the pit with the edupunks.  This argument evolves from my work in an academic service unit, where my job is to help a wide-range of faculty members experiment with this stuff.  Such work requires, and benefits from, sensitive responses to their concerns.  An      anti-authoritarian, anarchic response will ultimately accomplish little.  The DIY approach of edupunk is a great goal, but often times DIT&#8211; Do It Together&#8211;is necessary, and even preferable.  Helping faculty members translate their pedagogical structures to a new environment goes a long way towards mollifying their concerns about the impact of technology on their students&#8217; learning.  The students, if the structure is sound, can handle the improvisation.</p>
<p>Now, behind the scenes, hell yeah, I&#8217;ll cavort with the punks.  Jim&#8217;s named a movement, even if the contours of that movement still haven&#8217;t yet been fully defined.   The politics of this stuff and the consideration of the logic of capital are deeply important, and should constantly be a part of the conversation.  If a university is going to spend millions on a limited and problematic application, it should probably be able to explain why that solution is better than cheaper alternatives.  I haven&#8217;t seen that done yet.</p>
<p>Until it is, there&#8217;s work to be done.  So, edupunks, edufunks, eduheads, or whomever: keep doing your thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/06/06/on-edupunk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memorial Day in Langhorne…</title>
		<link>http://dushtumay.sahawaltzer.org/2008/05/memorial-day-in-langhorne/</link>
		<comments>http://dushtumay.sahawaltzer.org/2008/05/memorial-day-in-langhorne/#comments</comments>
		<pubDate>Thu, 29 May 2008 04:17:58 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=214</guid>
		<description><![CDATA[We spent Memorial Day in Langhorne, PA, grilling and chillin with the cousins and honored guests from Michigan and Brooklyn.Â  Here are some highlights:

Created with Admarket&#8217;s flickrSLiDR.
]]></description>
			<content:encoded><![CDATA[<p>We spent Memorial Day in Langhorne, PA, grilling and chillin with the cousins and honored guests from Michigan and Brooklyn.Â  Here are some highlights:</p>
<p><iframe width="500" scrolling="no" height="500" frameborder="0" src="http://www.flickr.com/slideShow/index.gne?group_id=&#038;user_id=26706998@N03&#038;set_id=72157605315484281&#038;text=" /><br />
<small>Created with <a title="Admarket.se" href="http://www.admarket.se">Admarket&#8217;s</a> <a title="flickrSLiDR" href="http://flickrslidr.com">flickrSLiDR</a>.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2008/05/memorial-day-in-langhorne/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wicked Awesome…</title>
		<link>http://dushtumay.sahawaltzer.org/2008/05/wicked-awesome/</link>
		<comments>http://dushtumay.sahawaltzer.org/2008/05/wicked-awesome/#comments</comments>
		<pubDate>Mon, 19 May 2008 15:17:49 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=212</guid>
		<description><![CDATA[This past weekend, we trudged up 95 for our traditional May birthday celebration with the Nikundiwes.Â  There was much cake, some awkward kayaking, and a lot of talk about the coming addition to the family (the Niks, not us, but, we&#8217;re all family).
Here are some pics:
&#60;br /&#62;&#60;small&#62;Created with &#60;a title=&#8221;Admarket.se&#8221; mce_href=&#8221;http://www.admarket.se&#8221; xhref=&#8221;http://www.admarket.se&#8221;&#62;Admarket&#8217;s&#60;/a&#62; &#60;a title=&#8221;flickrSLiDR&#8221; mce_href=&#8221;http://flickrslidr.com&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>This past weekend, we trudged up 95 for our traditional May birthday celebration with the Nikundiwes.Â  There was much cake, some awkward kayaking, and a lot of talk about the coming addition to the family (the Niks, not us, but, we&#8217;re all family).</p>
<p>Here are some pics:<br />
<iframe width="500" scrolling="no" height="500" frameborder="0" src="http://www.flickr.com/slideShow/index.gne?group_id=&#038;user_id=26706998@N03&#038;set_id=72157605142391685&#038;text=">&lt;br /&gt;&lt;small&gt;Created with &lt;a title=&#8221;Admarket.se&#8221; mce_href=&#8221;http://www.admarket.se&#8221; xhref=&#8221;http://www.admarket.se&#8221;&gt;Admarket&#8217;s&lt;/a&gt; &lt;a title=&#8221;flickrSLiDR&#8221; mce_href=&#8221;http://flickrslidr.com&#8221; xhref=&#8221;http://flickrslidr.com&#8221;&gt;flickrSLiDR&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;</iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2008/05/wicked-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We love to Party at the Y-M-C-A</title>
		<link>http://dushtumay.sahawaltzer.org/2008/05/we-love-to-party-at-the-y-m-c-a/</link>
		<comments>http://dushtumay.sahawaltzer.org/2008/05/we-love-to-party-at-the-y-m-c-a/#comments</comments>
		<pubDate>Mon, 12 May 2008 15:40:44 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=210</guid>
		<description><![CDATA[We had a great time celebrating Kaya&#8217;s birthday at the local Y yesterday.Â  Here are some highlights:
Guess who&#8217;s the line leader?

Meghan and Kaya

Megan, Kaya, and Meghan

Bella: &#8220;Who ARE these kids playing with Kaya?&#8221;

The Bean:


Craft time!

Daddy got three seconds with the Bday girl!

There were fights over this swing, and hurt feelings.

Yaz and Bella

Let them eat cake.

&#8220;Buckets&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>We had a great time celebrating Kaya&#8217;s birthday at the local Y yesterday.Â  Here are some highlights:</p>
<p>Guess who&#8217;s the line leader?<br />
<img alt="Line" id="image200" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000068_2.jpg" /></p>
<p>Meghan and Kaya<br />
<img alt="Kaya Megan" id="image194" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000026_3.jpg" /></p>
<p>Megan, Kaya, and Meghan<br />
<img alt="Megan Kaya Megan" id="image197" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000037_3.jpg" /><br />
Bella: &#8220;Who ARE these kids playing with Kaya?&#8221;<br />
<img alt="Bella" id="image195" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000027_3.jpg" /></p>
<p>The Bean:<br />
<img alt="Bean" id="image196" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000028_3.jpg" /></p>
<p><img alt="Bean 2" id="image199" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000063_3.jpg" /></p>
<p>Craft time!<br />
<img alt="Crafts" id="image198" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000048.jpg" /></p>
<p>Daddy got three seconds with the Bday girl!<br />
<img alt="Kaya Daddy" id="image202" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000073_3.jpg" /></p>
<p>There were fights over this swing, and hurt feelings.<br />
<img alt="Kaya Swing" id="image203" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000075_3.jpg" /></p>
<p>Yaz and Bella<br />
<img alt="Bella Yaz" id="image205" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000094_2.jpg" /></p>
<p>Let them eat cake.<br />
<img alt="Cake" id="image206" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000101.jpg" /></p>
<p>&#8220;Buckets&#8221; Waltzer<br />
<img alt="Hoop" id="image207" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000112.jpg" /></p>
<p>Our youngest (and cutest) guest, with his mommy.<br />
<img alt="KAvi Riya" id="image208" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000128.jpg" /></p>
<p>Our oldest (and proudest) guest, with her girls<br />
<img alt="Gramma" id="image209" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/05/p1000134_2.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2008/05/we-love-to-party-at-the-y-m-c-a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flogos: Logo Clouds</title>
		<link>http://dushtumay.sahawaltzer.org/2008/05/flogos-logo-shaped-clouds/</link>
		<comments>http://dushtumay.sahawaltzer.org/2008/05/flogos-logo-shaped-clouds/#comments</comments>
		<pubDate>Wed, 07 May 2008 16:59:53 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=192</guid>
		<description><![CDATA[Kaya was certain when riding in the car the other day that she saw a cloud shaped like an elephant.Â  Soon, she&#8217;ll see floating logos en-route to Giants Stadium, and come running from the backyard asking for new Nikes or to go to McDonald&#8217;s. But what she sees won&#8217;t be the product of her fertile [...]]]></description>
			<content:encoded><![CDATA[<p>Kaya was certain when riding in the car the other day that she saw a cloud shaped like an elephant.Â  Soon, she&#8217;ll see floating logos en-route to Giants Stadium, and come running from the backyard asking for new Nikes or to go to McDonald&#8217;s. But what she sees won&#8217;t be the product of her fertile yet vulnerable imagination.Â  Must we be sold to <em>everywhere</em>?</p>
<p>From the &#8220;first signs of the apocalpyse&#8221; department here at Dushtumay&#8230; <a  title="Flogos" href="http://www.chicagotribune.com/news/nationworld/chi-050708-cloud-ads-may08,0,2726261.story?track=rss">click me</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/2008/05/flogos-logo-shaped-clouds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Years…</title>
		<link>http://dushtumay.sahawaltzer.org/?p=188</link>
		<comments>http://dushtumay.sahawaltzer.org/?p=188#comments</comments>
		<pubDate>Wed, 23 Apr 2008 13:24:10 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Dushtumay Posts]]></category>

		<guid isPermaLink="false">http://dushtumay.sahawaltzer.org/?p=188</guid>
		<description><![CDATA[Four.

Three.

Two.

One.

Zero.

]]></description>
			<content:encoded><![CDATA[<p>Four.</p>
<p><img id="image183" class="alignleft" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/04/photo-207.jpg" alt="Four" width="384" height="288" /></p>
<p>Three.</p>
<p><img id="image184" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/04/607118969405_0_bg.jpg" alt="Three" /></p>
<p>Two.</p>
<p><img id="image185" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/04/two.jpg" alt="Two" /></p>
<p>One.</p>
<p><img id="image186" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/04/one.jpg" alt="One" /></p>
<p>Zero.</p>
<p><img id="image187" src="http://dushtumay.sahawaltzer.org/wp-content/uploads/2008/04/100_0039.JPG" alt="Zero" width="415" height="311" /></p>
]]></content:encoded>
			<wfw:commentRss>http://dushtumay.sahawaltzer.org/?feed=rss2&amp;p=188</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A New Generation of “Native Tongues”</title>
		<link>http://cac.ophony.org/2008/04/16/a-new-generation-of-native-tongues/</link>
		<comments>http://cac.ophony.org/2008/04/16/a-new-generation-of-native-tongues/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 13:46:31 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/2008/04/16/a-new-generation-of-native-tongues/</guid>
		<description><![CDATA[Parenthood is undeniably a blessing.  Yet, if I were to speak honestly, I&#8217;d note that there are certain drawbacks, not the least of which is ceding control over the soundtrack to your life.  My sweet soon-to-be four year old doesn&#8217;t want to listen to many of my tunes.  I&#8217;m fortunate that her choices are usually [...]]]></description>
			<content:encoded><![CDATA[<p>Parenthood is undeniably a blessing.  Yet, if I were to speak honestly, I&#8217;d note that there are certain drawbacks, not the least of which is ceding control over the soundtrack to your life.  My sweet soon-to-be four year old doesn&#8217;t want to listen to many of my tunes.  I&#8217;m fortunate that her choices are usually pretty tolerable.  While I dig <a href="http://en.wikipedia.org/wiki/Dan_Zanes" title="Dan Zanes" >Dan Zanes</a> or <a href="http://en.wikipedia.org/wiki/Laurie_Berkner" title="Laurie Berkner" >Laurie Berkner</a> in small doses, they get play in our house mostly because the munchkin wants them.</p>
<p>Of course, she&#8217;s allowed her own music.  I know our tastes will likely diverge through her adolescence, and we&#8217;ll have less of a chance during those years to connect over common sounds.  That&#8217;s part of why I&#8217;m so glad that she&#8217;s worked the <a href="http://dino5.com/" title="Dino 5" >Dino-5</a> into her rotation recently.  This collection of hip-hop heads is organized by <a href="http://en.wikipedia.org/wiki/Prince_Paul" title="Prince Paul" >Prince Paul</a>, who produced the landmark <a href="http://en.wikipedia.org/wiki/De_La_Soul" title="De La" >De La Soul</a> albums <em>3 Feet High and Rising</em>, <em>De La Soul is Dead</em>, and <em>Buhloone Mind State</em>, and features Ladybug Mecca (formerly of the <a href="http://en.wikipedia.org/wiki/Digable_Planets" title="DPs" >Digable Planets</a>), <a href="http://en.wikipedia.org/wiki/Chali_2na" title="Chali" >Chali 2na</a> (<a href="http://en.wikipedia.org/wiki/Jurassic_Five" title="J5" >Jurassic Five</a>), <a href="http://en.wikipedia.org/wiki/Wordsworth_(rapper)" title="Words" >Wordsworth</a> (an underground Brooklyn MC who appeared on records by <a href="http://en.wikipedia.org/wiki/A_Tribe_Called_Quest" title="Tribe" >A Tribe Called Quest</a> and <a href="http://en.wikipedia.org/wiki/Black_Star_(hip_hop_group)" title="Blackstar" >Blackstar</a>), and <a href="http://en.wikipedia.org/wiki/Scratch_(musician)" title="Scratch" >Scratch</a> (the vocal turntable, formerly of the <a href="http://en.wikipedia.org/wiki/The_roots" title="Roots" >Roots</a>).  Their debut album is a storybook, narrated by the poet <a href="http://en.wikipedia.org/wiki/Ursula_Rucker" title="Rucker">Ursula Rucke</a><a href="http://en.wikipedia.org/wiki/Ursula_Rucker" title="Rucker">r</a>, about 5 dino friends at their dino school.  My kid is now walking around, rapping in the deep voice of 2na&#8217;s character, T-Rex, &#8220;I may be big and scary, but I&#8217;m really pretty nice.&#8221;</p>
<p ><img src="http://ecx.images-amazon.com/images/I/51OUXPzHfSL._SS500_.jpg" title="Dine 5" alt="Dine 5" height="400" width="400" /></p>
<p>What&#8217;s so striking about the Dino 5 for me is the way they capture the essence of hip-hop as it was during its golden era in the late 1980s-mid 1990s, before capital swooped in and co-opted what was once predominantly an alternative and oppositional art form.  Popping off about your fly Adidas or your adversary&#8217;s nappy head and rotund relatives, rapping about dancing, music, girls, boys, friends, enemies, and the neighborhood.  Most of that gave way to Big Pimpin&#8217;, bling bling, and baseless braggadacio.</p>
<p>Hip-hop is still a vibrant art form, always will be, but there&#8217;s a reason that the areas of the music that challenge listeners aurally, poetically, and politically moved &#8220;underground,&#8221; out of site from the casual observer who doesn&#8217;t have the time or the passion to dig for those sounds.  Hip-hop ain&#8217;t dead, y&#8217;all, far from it; it&#8217;s been integrated in interesting ways into other forms, it&#8217;s been globalized, and there&#8217;s still plenty of innovation happening.  Yet hip-hop&#8217;s foundational meaning has been clouded over the past generation by its loudest voices.</p>
<p>So I&#8217;m happy to share with my daughter a feeling similar to what I got during my adolescence, listening to De La transmit live from Mars.  The Dino 5 represent the best of hip-hop: role playing, storytelling, deep danceable beats, learned references and musical quotations, wicked flow, and lyrical playfulness.  Their music is both nice enough for a four year-old and &#8220;nice&#8221; enough for her purist dad.  Kid tested, pops approved.</p>
<p>As my daughter takes her first tentative steps towards reading, it heartens me to be able to introduce her to the poetry and artistry of hip-hop with something that&#8217;s her speed.  Soon enough, she&#8217;ll be barraged with beats and words and sounds.  The Dino 5&#8217;s album gives her hip-hop that&#8217;s more sophisticated than the corny rapping on <a href="http://youtube.com/watch?v=99WQeH36OZo" title="Elmo Raps" >Sesame Street</a>.  Hopefully, it will help her sort through the cacophony that she&#8217;ll meet as she grows, and find something that&#8217;s as meaningful to her as the music of my youth is to me.</p>
<p>Here&#8217;s a couple of brief clips to tack sound onto my words.</p>
<p>T-Rex struggles with how other kids see him, and hopes that they can think twice about how nice he may be:</p>
</p>
<p>Tracy Triceratops has a tough time keeping her voice down:</p>
</p>
<p><a href="http://en.wikipedia.org/wiki/Kelvin_Mercer" title="Pos">Posdnous</a> introduces the &#8220;D.A.I.S.Y. Age&#8221; on De La Soul&#8217;s <a href="http://en.wikipedia.org/wiki/3_Feet_High_and_Rising" title="3 Feet high"><em>3 Feet High and Rising</em></a> (1989):</p></p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/04/16/a-new-generation-of-native-tongues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Your Discipline</title>
		<link>http://cac.ophony.org/2008/04/03/blog-your-discipline/</link>
		<comments>http://cac.ophony.org/2008/04/03/blog-your-discipline/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 13:21:12 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Cacophony Posts]]></category>

		<guid isPermaLink="false">http://cac.ophony.org/2008/04/03/blog-your-discipline/</guid>
		<description><![CDATA[How do academic blogs reflect the disciplines of their authors?
I&#8217;ve become interested in this question while following our Anthropology/Sociology working group, and also through my own surfing.  A relatively new blog&#8211;The Edge of the American West&#8211;run by historians Eric Rauchway and Ari Kelman from U.C. Davis, has quickly become one of the better U.S. history [...]]]></description>
			<content:encoded><![CDATA[<p>How do academic blogs reflect the disciplines of their authors?</p>
<p>I&#8217;ve become interested in this question while following our <a href="http://anthrosoc.blsci.org" title="AnthroSoc" >Anthropology/Sociology</a> working group, and also through my own surfing.  A relatively new blog&#8211;<a href="http://edgeofthewest.wordpress.com/" title="Edge of the West" >The Edge of the American West</a>&#8211;run by historians Eric Rauchway and Ari Kelman from U.C. Davis, has quickly become one of the better U.S. history blogs.  What makes it good is a steady flow of mixed content: scholarship and book reviews, &#8220;This Day in History&#8221; posts, pick-ups on contemporary political issues and reporting, and some discussion of teaching.  Mix in the authors&#8217; fine senses of humor and an occasional reference to sports and, voila, you get pretty good insight into just what it is historians do.</p>
<p>Early in The Edge&#8217;s life, Rauchway answered the question,<a href="http://edgeofthewest.wordpress.com/2007/10/28/heres-why/" title="Why?" > &#8220;Why Blog?&#8221;</a>  I was particularly struck by his fourth reason:</p>
<blockquote><p>To change the profession: be the academic discourse you want to see in the world. You want historiography to move quickly, have relevance, be sharper? You can’t make it that way book review by book review: but you can if you blog.</p>
</blockquote>
<p>This argument supports the notion of a blog as a personal publishing platform, as an opportunity to get your name and voice out there, and to contribute to the shaping of the discourse in your field.</p>
<p>So, how about it, BLSCI fellows?  Your very own blog, and all the opportunity that comes with it, is now just a <a href="http://blsciblogs.baruch.cuny.edu/wp-signup.php" title="BLSCI Sign Up" >click</a> away.</p>
]]></content:encoded>
			<wfw:commentRss>http://cac.ophony.org/2008/04/03/blog-your-discipline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
