<?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>Sun, 19 May 2013 16:11:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Posts and Comments Together, Oh My!</title>
		<link>http://lukewaltzer.com/posts-and-comments-together-oh-my/</link>
		<comments>http://lukewaltzer.com/posts-and-comments-together-oh-my/#comments</comments>
		<pubDate>Tue, 16 Oct 2012 19:26:05 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1925</guid>
		<description><![CDATA[A few days ago, Captain Primate asked: anyone know of a WP plugin that will display a user&#8217;s posts and comment in one place? &#8212; Ethan Watrall (@captain_primate) October 14, 2012 WordPress doesn&#8217;t have something like this built-in I guess &#8230; <a href="http://lukewaltzer.com/posts-and-comments-together-oh-my/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>A few days ago, <a href="http://twitter.com/captain_primate">Captain Primate</a> asked:</p>
<blockquote class="twitter-tweet" width="550"><p>anyone know of a WP plugin that will display a user&#8217;s posts and comment in one place?</p>
<p>&mdash; Ethan Watrall (@captain_primate) <a href="https://twitter.com/captain_primate/status/257598460054888448" data-datetime="2012-10-14T21:47:13+00:00">October 14, 2012</a></p></blockquote>
<p><script src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p><a href="http://wordpress.org">WordPress</a> doesn&#8217;t have something like this built-in I guess because of the different ways that posts and comments are managed and have metadata attached to them. But, if users are logged in when they comment (which you can require in the Settings -&gt; Discussion page) then comments are affiliated with the accounts of anyone who is logged into your site when they comment. The trick is then to display that information.</p>
<p>I did something like this for a jumbo psychology course where the faculty member wanted to get quick summary information of the work students had contributed to the site. I had originally tied the process to the plugin <a href="http://wordpress.org/extend/plugins/wp-stats/">WP-Stats</a> because we were looking at lots of other data (WP-Stats allows you to generate all sorts of stuff&#8230; I think <a href="http://darcynorman.net/">D&#8217;Arcy Norman</a> originally turned me onto it). But when looking at it today I realized those are separable processes, and it&#8217;s really pretty straightforward. I&#8217;ve thrown together a <a href="http://lukewaltzer.com/wp-content/uploads/2012/10/postsandcomments.zip">child theme</a> of <a href="http://wordpress.org/extend/themes/twentyeleven">Twenty Eleven</a> that includes the following additions to the author.php file (wrap them in php open and close tags):</p>
<p>At line 29 I added this code which generates a numerical summary of posts and comments by the user whose author archive you&#8217;re visiting:</p>
<pre class="brush: php; title: ; notranslate">
							global $wpdb;
							$user_id = $post-&gt;post_author;  //change this if not in a std post loop
							$where = 'WHERE comment_approved = 1 AND user_id = ' . $user_id ;
							$comment_count = $wpdb-&gt;get_var(
    						&quot;SELECT COUNT( * ) AS total
							FROM {$wpdb-&gt;comments}
							{$where}
							&quot;);
							$user = get_userdata($user_id);
							$post_count = get_usernumposts($user-&gt;ID);
							echo '&lt;p&gt;&lt;h1 class=&quot;entry-title&quot;&gt;Summary of Activity on this Site&lt;/h1&gt;&lt;/strong&gt;&lt;br /&gt;Number of Posts: ' . $post_count .' &lt;br/&gt; Number of Comments: ' . $comment_count . '&lt;/p&gt;';
</pre>
<p>At line 71 I added an echo to mark off the POSTS section. </p>
<p>And at line 84 I added this code which pulls and displays a list of comments by that author with a link to the post they commented upon:</p>
<pre class="brush: php; title: ; notranslate">
				echo '&lt;h1 class=&quot;entry-title&quot;&gt;&lt;em&gt;Comments:&lt;/em&gt;&lt;/h1&gt;';
				$comment_author = get_the_author_id();
				$comments = get_comments(array(user_id=&gt;$comment_author));
				foreach($comments as $comment) :
				$url = '&lt;a href=&quot;' . get_permalink($comment-&gt;comment_post_ID) . '&quot;&gt;' . get_the_title($comment-&gt;comment_post_ID) .'&lt;/a&gt;';
				echo ('&quot;' . $comment-&gt;comment_content . '&quot; &lt;br&gt;&lt;em&gt; posted on ' . get_comment_date('M j, Y') . ', on the post ' . $url .  '&lt;/em&gt;&lt;br /&gt;&lt;br&gt;');
				endforeach;
</pre>
<p>It is helpful also to be able to generate a list of authors so you can navigate easily to their author archives&#8230; the plugin we were using to enable this widget for the past few years &#8212; Authors Widget (no longer in the repository) &#8212; was ferkakte, so for that function I started using a <a href="http://wordpress.org/extend/plugins/samsarin-php-widget/">Samsarin PHP Widget</a> with the following code in it:</p>
<pre class="brush: php; title: ; notranslate">
function ListTheAuthors() 
{
wp_list_authors('optioncount=1&amp;orderby=name&amp;show_fullname=true');
}
 
function widget_ListAuthors($args) {
  extract($args);
  echo $before_widget;
  echo $before_title;?&gt;Site Authors&lt;?php echo $after_title;
  ListTheAuthors();
  echo $after_widget;
}
</pre>
<p>A couple months ago <a href="https://twitter.com/JasonParkhill">Jason Parkhill</a> threw that code into a little plugin to make a very basic List Authors widget (thanks Jason!). You can play with the line &#8216;optioncount=1&#038;orderby=name&#038;show_fullname=true&#8217; to get the configuration you want for your site. <a href="http://codex.wordpress.org/Function_Reference/wp_list_authors">Use this as a guide</a> to making modifications.  </p>
<p>Here&#8217;s Jason&#8217;s <a href='http://lukewaltzer.com/wp-content/uploads/2012/10/List-Authors.zip'>List-Authors</a> plugin. </p>
<p>And here&#8217;s the <a href='http://lukewaltzer.com/wp-content/uploads/2012/10/postsandcomments.zip'>TwentyEleven child theme I threw together that displays posts and comments together</a> on an author&#8217;s archive page (remember&#8230; authors must be logged in when they comment or their comments will not appear on their archive pages; and, of course, you must have Twenty Eleven in your wp-content/themes folder). It&#8217;s not elegant (if there are no comments, you just get a blank space below &#8220;Comments&#8221;), but, it gets the job done. Please hack it and share it to your heart&#8217;s content!</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/posts-and-comments-together-oh-my/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Collaboratin&#8217;</title>
		<link>http://lukewaltzer.com/collaboratin/</link>
		<comments>http://lukewaltzer.com/collaboratin/#comments</comments>
		<pubDate>Fri, 21 Sep 2012 20:33:03 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1900</guid>
		<description><![CDATA[By far the best component of my current career path is that I get to spend a significant amount of time collaborating with really cool and smart people. These collaborations have been particularly fruitful over the past year, and it &#8230; <a href="http://lukewaltzer.com/collaboratin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>By far the best component of my current career path is that I get to spend a significant amount of time collaborating with really cool and smart people. These collaborations have been particularly fruitful over the past year, and it all starts with <a href="http://www.twitter.com/tomharbo">Tom Harbison</a> and <a href="http://thisevilempire.com">Mikhail Gershovich</a>. When Mikhail hired me full-time at the Schwartz Institute and stuffed me into a windowless back corner office with Tom I warned him that if you put two historians together in a room for long enough, no matter how many bits you ask them to push, eventually they&#8217;re going to end up doing some history.</p>
<p>We&#8217;ve finally gotten around to it. We&#8217;re now on our second collaborative history project in the past year. The first was an <a href="http://writinghistory.trincoll.edu/teach/harbison-waltzer-2012-spring/">essay</a> we co-wrote for <a href="http://internet2.trincoll.edu/facProfiles/Default.aspx?fid=1004266">Jack Dougherty</a> and <a href="http://ph-heidelberg.academia.edu/KristenNawrotzki">Kristen Nawrotzk</a><a href="http://ph-heidelberg.academia.edu/KristenNawrotzki">i&#8217;s</a> <a href="http://writinghistory.trincoll.edu">Writing History in the Digital Age</a> about lessons we learned while Tom was teaching a series of introductory history courses on <a href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a>. The vast majority of the work we were examining was Tom&#8217;s and Tom&#8217;s alone, and I&#8217;m grateful that he let me glom on and add my two cents in assessing the fruits of his significant labor. Ultimately, we argued that taking advantage of the variety of modes of writing allowed by a flexible publishing platform like B@B encourages an approach to the introductory history survey that focuses more on methods than coverage. Tom&#8217;s notion of a &#8220;micro-monograph&#8221; introduces students to the work that a professional historian does in a way that allows him or her to see the transferable value of those skills. Being a detective who can nimbly sift through a variety of information sources, learning how to construct meaning in the form of a narrative, and figuring out how to assess and measure the quality of argumentation: these are the <a href="http://www.gardnercampbell.net/blog1/?m=201008">generalizable</a> skills that introductory history should foster. Of course knowing about the Pentagon Papers is important. But knowing why you should know about the Pentagon Papers is even more so.</p>
<p>Watching Tom teach those classes and then crafting this essay with him taught me tons about teaching history and writing. The collaboration was unquestionably positive. Writing a dissertation, or a journal article, or book chapter&#8230; these are lonely, isolating pursuits. I&#8217;ll confess that the isolation got to me pretty hard as I was writing my dissertation, and made me far less enthusiastic about pursuing a career that was dependent upon my producing books. I simply didn&#8217;t want my head to be in that space for large chunks of my life.</p>
<p>Co-authoring eases that feeling significantly. Those moments where you&#8217;re stuck on an idea or a phrase or an organizational conundrum cease to be internal recursive loops and instead become opportunities for dialogue and collective knowledge making. Sometimes the mere act of verbalizing the problem to a sensitive and familiar ear helped solve it. Other times we more explicitly addressed each others&#8217; lack of clarity or precision. We ultimately had no choice but to push each other. We began writing different sections, then would trade until, over time, our voice organically emerged. We now can&#8217;t look at the essay and tell which one of us wrote what.</p>
<p>We&#8217;re currently testing that dynamic in the classroom, and I&#8217;m finding it just as rewarding. We&#8217;re team teaching a <a href="http://blsciblogs.baruch.cuny.edu/digitalhistory">Digital History</a> class, and collaborated in its design in much the same way as we did on the essay. We steal moments out of busy workdays to trade class prep ideas, articulate problems with our course structure, and plan time to plan. Most ultimately happens on email during our commutes, and in the 45 minutes before our class meets. During that time we co-author <a href="http://blsciblogs.baruch.cuny.edu/digitalhistory/category/class-notes/">notes to guide us through our class meetings</a>, and also an &#8220;<a href="http://blsciblogs.baruch.cuny.edu/digitalhistory/category/assignments-only-for-the-professors/">assignments</a>&#8221; post that lays out the work we expect of students before the next session. We then head to class, and one of us gets things sets up while the other answers questions or kibitzes (we take turns doing both), and then we proceed without really knowing which one of us will cover which bits of the class. Wednesday, for instance, Tom slipped into a really nice contextualization of how <a href="http://ed.stanford.edu/faculty/wineburg">Sam Wineburg</a> (who we&#8217;ve learned a lot from about pedagogy and &#8220;thinking historically&#8221;) does his work, and I discovered that the students weren&#8217;t familiar with the notion of historical &#8220;agency,&#8221; so did a five-minute lecture on the idea. It seems like our students appreciate having multiple voices &#8212; one noted that having two historians guiding them lent instruction in the class more authority because we check and verify each others ideas.</p>
<p>The alignment of personality, skills, and intellectual goals obviously play a significant role in the success or failure of a collaboration. Tom&#8217;s awesome, so it&#8217;s easy. In the spring I collaborated with <a href="http://www.twitter.com/csmithmo">Cheryl Smith</a> and Mikhail (both awesome too) in helping Cheryl&#8217;s Advanced Essay Writing course craft <a href="http://blsciblogs.baruch.cuny.edu/eng3680/category/assignments/sa2-audio-clips/">audio stories</a> along the lines of what you might hear on <em>This American Life</em>. Mikhail and I pushed into Cheryl&#8217;s class several times over three or four weeks to help students work through, shape, and ultimately put to audio their story ideas. Cheryl spoke to them about voice, narrative, and about how to draw lessons about writing from the act of composing for radio. Mikhail lent considerable expertise about producing audio and imagining an audience. And I was able to speak with students about scaffolding their projects, planning for technological contingency, and seeing parallels between each segment of the process &#8212; from planning through production to post-production to performance &#8212; and the acts of writing and editing. Ultimately, the projects would not have been as rich as they turned out without our unique combination of voices guiding students through. We all shared the goal of experimenting with this type of project, helping students find and capture their voices, and learning from one another.</p>
<p>Working on these projects (and watching others emerge over the years in the same spirit) has gotten me very interested in the curricular possibilities of collaborations that push back against the confines of the single class with a single instructor taught within a single semester. That structure is implicitly hostile to the collaboration our students will need to be able to do in the workplace. Frankly, there&#8217;s no reason we have to accept it.</p>
<p>The fact that collaborating with another scholar might keep one from going insane is just an added bonus.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/collaboratin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FRO12: Now Much Artier</title>
		<link>http://lukewaltzer.com/fro12-now-much-artier/</link>
		<comments>http://lukewaltzer.com/fro12-now-much-artier/#comments</comments>
		<pubDate>Fri, 14 Sep 2012 19:24:39 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Blogs@Baruch Posts]]></category>
		<category><![CDATA[EdTech]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1873</guid>
		<description><![CDATA[This summer Mikhail Gershovich and I re-wrote the three blog prompts required of all Baruch College students taking Freshman Seminar. The previous prompts, which we wrote a few years ago, were way too formulaic. When crafting assignments, you get what you ask for. &#8230; <a href="http://lukewaltzer.com/fro12-now-much-artier/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://blsciblogs.baruch.cuny.edu/fro12"><img class=" wp-image-1880 alignnone" style="border: 3px solid black;" title="Screen shot 2012-09-14 at 3.23.28 PM" src="http://lukewaltzer.com/wp-content/uploads/2012/09/Screen-shot-2012-09-14-at-3.23.28-PM-1024x445.png" alt="" width="1024" height="445" /></a></p>
<p>This summer <a href="http://thisevilempire.com">Mikhail Gershovich</a> and I re-wrote the three blog prompts required of all Baruch College students taking <a href="http://www.baruch.cuny.edu/studentaffairs/StudentLife/fro/freshmanseminar.htm">Freshman Seminar</a>. The previous prompts, which we wrote a few years ago, were way too formulaic. When crafting assignments, you get what you ask for. We had asked students to tell us &#8220;this,&#8221; and they responded by writing &#8220;this.&#8221;</p>
<p>One of the goals of the freshman blogging initiative was to get a sense of who our students are. Instead, we were getting a sense of who our students felt we wanted them to tell us they were. Very few posts integrated media, and students responded to them as though they were a burden rather than an opportunity.</p>
<p>We feel these new prompts are much improved:</p>
<p style="padding-left: 30px;"><strong>Post One, due by mid-September </strong>Create a two minute video, an eight image slideshow, or a ten song musical playlist that represents who you think you are to your classmates. Embed your creation in a blog post and then write no more than 500 words that explains how what you’ve created speaks to who you are.</p>
<p style="padding-left: 30px;"><strong>Post Two, due by mid-October </strong>For this assignment, you must 1) post the self-reflective monologue you’ve developed in your seminar workshop AND 2) embed a self-portrait, which can be a photograph, an image, a cartoon, a drawing, or some other depiction of how you see yourself.</p>
<p style="padding-left: 30px;"><strong>Post Three, due by early December </strong>Create or find a photograph or some other image (a meme, an animated GIF, etc.) that represents in some way your experience at Baruch thus far. Embed your image in a blog post in which you reflect, in no more than 500 words, on your impressions of your first three months at Baruch. Your response should be personal and creative. If you use an image that you did not create yourself, be sure to credit the source with a name, if possible, and a URL!</p>
<p>We trained the Peer Mentors who run Freshman Seminar in how to guide students through producing these posts, and gave them a range of tools that students can use. We also talked to them about the &#8220;why&#8221; behind these assignments. Each creates an opportunity to talk with students about intellectual property issues, about citation, about public and private publishing (students can password-protect their posts if they want), and about the network of publishers that&#8217;s emerging on our campus. In their coursework, we ultimately want students to break down artificial boundaries between the tools and ideas they use and engage outside of their schoolwork and what happens in school. We want to give them permission to apply the skills that power their hobbies to their academic pursuits. <a href="http://ds106.us">We want them to make some art, dammit.</a> And we want them to learn how to do all this in a way that generates both specific expertise and <a href="http://www.gardnercampbell.net/blog1/?p=1394">&#8220;generalizable knowledge.&#8221;</a> Doing so in a low-pressure setting like Freshman Seminar is a crucial first step.</p>
<p>We&#8217;re already seeing the fruits of this change in the first six hundred + posts that have come in. Want to see what college freshmen at public, urban university are listening to these days, and how they write about those tastes? Want to see New York City through the eyes of 18 year-olds? Want to see our students&#8217; facility with the moving image (only a few have used video so far, but, <a href="http://blsciblogs.baruch.cuny.edu/fro12brd/2012/09/12/greetingsi-am-tiffany-huang/">this is great</a>)? Then check out the <a href="http://blsciblogs.baruch.cuny.edu/fro12">2012 Baruch Freshman Seminar Motherblog</a>. This space aggregates feeds from around fifty individual sections of the course powered by the work of over a thousand students. That space will be filling up with work over the next few months, and we&#8217;re excited to keep looking at, listening to, and watching what our first year students come up with.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/fro12-now-much-artier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating with Active Directory; or, Why it Ain&#8217;t All Bad Being Official</title>
		<link>http://lukewaltzer.com/integrating-with-active-directory-or-why-it-aint-all-bad-being-official/</link>
		<comments>http://lukewaltzer.com/integrating-with-active-directory-or-why-it-aint-all-bad-being-official/#comments</comments>
		<pubDate>Thu, 02 Aug 2012 15:38:55 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Blogs@Baruch Posts]]></category>
		<category><![CDATA[DH]]></category>
		<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1793</guid>
		<description><![CDATA[I just completed a major overhaul of the authentication process by which users log in to Blogs@Baruch. Previously, users were able to create accounts on the system as long as they had a Baruch email address. Just over a year &#8230; <a href="http://lukewaltzer.com/integrating-with-active-directory-or-why-it-aint-all-bad-being-official/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 586px"><a href="http://www.flickr.com/photos/dkscully/"><img class="  " src="http://farm5.staticflickr.com/4127/5038201085_0ed300ab4f_b.jpg" alt="" width="576" height="576" /></a><p class="wp-caption-text">This guy&#8217;s official. <br />cc licensed <a href="http://www.flickr.com/photos/dkscully/5038201085/">http://www.flickr.com/photos/dkscully/5038201085/</a></p></div>
<p>I just completed a major overhaul of the authentication process by which users log in to <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a>. Previously, users were able to create accounts on the system as long as they had a Baruch email address. Just over a year ago, however, our CIO requested that we implement Active Directory authentication, and we&#8217;ve been working towards this for some time. Now, any user in the college&#8217;s Active Directory can simply log into the system, and doing so creates their account.</p>
<p>Several technical issues needed to resolved before we could make the switch. The two biggest were the inadequacy for our purposes of existing ad integration plugins and the process by which existing local WordPress users would be migrated to AD accounts. I worked with my friend <a title="Boone" href="http://boone.gorg.es/">Boone Gorges</a> to address these issues, using <a title="Glatze" href="http://www.steindorff.de/en">Glatze&#8217;s</a> <a href="http://wordpress.org/extend/plugins/active-directory-integration/">Active Directory Integration</a> plugin as the base. We had considered using <a title="Curtis" href="http://ten-321.com/about/about-curtiss-grymala">Curtis Grymala&#8217;s</a> <a href="http://wordpress.org/extend/plugins/active-directory-authentication-integration/">fork of Glatze&#8217;s plugin</a>, and Curtis was very generous in taking the time to explain his modifications to us, but ultimately we concluded Glatze&#8217;s plugin seemed to get us closer to where we needed to get.</p>
<p>Boone ultimately wrote a plugin called <a title="BLSCI-AD" href="https://github.com/boonebgorges/BLSCI-AD">BLSCI-AD (get it on git)</a> which combines all of the specific functions that we needed for this project. It fixed some problems Glatze&#8217;s plugin had working with WordPress multisite, addresses some fallback account assurances we needed (users who were not successfully migrated to AD &#8212; about 8% of our 10k+ users &#8212; are still able to log into the system using their old credentials), and, most importantly, runs a check of all existing users against the email addresses present in AD. When it finds a match, if the WordPress username and AD username aren&#8217;t the same, it changes the user&#8217;s WordPress username to the one in AD. While the migration is being performed a record is generated, sortable by successes, failures, and with additional data like user creation date, migration attempted date, and last activity date. The usernames of those whose migrations fail are manually editable through the report page, and every user&#8217;s previous ID remains recoverable.</p>
<p style="text-align: center;"><a href="http://lukewaltzer.com/wp-content/uploads/2012/08/migrate1.jpg"><img class="aligncenter  wp-image-1795" title="migrationimage" src="http://lukewaltzer.com/wp-content/uploads/2012/08/migrate1.jpg" alt="" width="1024" height="282" /></a></p>
<p>This is really a remarkable bit of code, not least because of the hilarious and helpful PHP comments Boone strews throughout. There&#8217;s a lot of justifiable love for Boone on the web, but personally I enjoy working with him because he appreciates the complicated contexts in which we work, gets and supports the mission of our project, and approaches each contract as a collaborative puzzle–solving experience. Thanks, Boone!</p>
<p>I did have some mixed feelings about this transition, and I&#8217;ve been struggling to put them into some sort of order over the past few days. Blogs@Baruch began as an independent experiment, resistant to centralization and institutional oversight, and hostile to any outside efforts to control. But as we&#8217;ve grown and responded to community need certain pressures have been put upon us: all incoming freshmen <a href="http://blsciblogs.baruch.cuny.edu/fro11/">do work on our system</a>, and several <a href="http://blsciblogs.baruch.cuny.edu/honors">programs</a>, <a href="http://blsciblogs.baruch.cuny.edu/fieldcenter">centers</a>, and <a href="http://http://blsciblogs.baruch.cuny.edu/bcam">projects</a> use us for their web presence. The college sees this as a space worth supporting and building along the trajectory we&#8217;ve already established. One goal they&#8217;ve had which over time came to implicate us was to simplify access to and unify logins for the various services the college offers. We had some concerns about this as an effort to establish control over Blogs@Baruch, but were satisfied through conversations with BCTC that this wasn&#8217;t the case. <a href="https://twitter.com/tomharbo">Tom Harbison</a> (who along with <a href="https://twitter.com/craiglstone">Craig Stone</a> helped us through the migration tremendously) and I have been granted the administrative rights to create Active Directory users. We&#8217;ve also been assured that all users who have had access to Blogs@Baruch in the past will continue to have access into the future regardless of their current relationship with the school. These are meaningful choices, especially in a place like CUNY.</p>
<p>So, while I&#8217;m a bit skittish about the implications of centralization (and a touch nervous about the performance implications of SSL admin rule now in place), I&#8217;m tremendously pleased about this technical accomplishment, and also about its impact on user management. Any user who is currently active in Baruch&#8217;s Active Directory can now simply log in to Blogs@Baruch with the same account they use to log into the wifi and into the school&#8217;s computers. If they had an account, all their stuff is there; if they didn&#8217;t, a user is silently created for them against their AD profile (it feels as though the user already existed).</p>
<p>I know that there&#8217;s some resistance to the fetishization of single sign-on out there in the hipster web, and I certainly am sympathetic to those arguments. If the experience is meaningful enough, folks will log in however they can to get it. We have a lot of that on Blogs@Baruch. But we also have users who are completely new to such experiences, who might be resistant for reasons cultural or philosophical, or who have been compelled to use the system by a faculty member. Those users now have zero technical barriers to entering the system, and I&#8217;m curious about what kind of serendipity that just might lead to.</p>
<p>A couple other technical notes. We use Boone&#8217;s <a href="http://wordpress.org/extend/plugins/simple-import-users/">Simple Import Users</a> plugin to allow faculty members to easily bulk add users to individual sites. As part of this project, he <a href="https://github.com/boonebgorges/simple-import-users/blob/master/ad-integration.php">wrote an AD check into that plugin</a> so that if users haven&#8217;t been created in WordPress yet when their email addresses are entered into the import users field, an account is created for them. I hacked that plugin a bit to change the defaults and simplify the email generation options.</p>
<p>I also wrote a function into our BuddyPress theme to pull in the user&#8217;s Active Directory Description:</p>
<pre class="brush: php; title: ; notranslate">
function DisplayedUserDescription() {
$user_meta = get_userdata(bp_displayed_user_id());
echo '
&lt;div class=&quot;bp-widget&quot;&gt;' . '
' . '' . 'Active Directory Description: ' . '' . '' . $user_meta-&gt;description. '' . '
' . '&lt;/div&gt;
';
}

add_action( 'bp_after_profile_field_content', 'DisplayedUserDescription' );
</pre>
<p>And, finally, I hacked together a file (placed in mu-plugins) that changed the login page across the installation:</p>
<pre class="brush: php; title: ; notranslate">
/*
Plugin Name: Login Hacks
Plugin URI:
Description:
Author: Luke Waltzer
Version: 1.0.0
Author URI:
*/

//Change Wrong Password Error Text

add_filter('login_errors',
            create_function('$no_login_error',
                            &quot;return '

You now must log in to Blogs@Baruch with your Baruch user name.

If you do not remember your password, please follow the reset link below.

';&quot;));

//Change Login Field Names Text

function wp_field_names_change($translated_text, $text, $domain){

	switch ($text) {
		case 'Username':
			return 'Baruch Username';
		break;
	}

	switch ($text) {
		case 'Password':
			return 'Baruch Password';
		break;
	}

	return $translated_text;
}
add_filter('gettext', 'wp_field_names_change', 1, 3 );

//Remove Register link

function remove_register_text ( $text ) {
         if ($text == 'Register'){$text = '' ;}
                return $text;
         }
add_filter( 'gettext', 'remove_register_text' );

//Change Reset Password Link Below Login Form

function remove_lostpassword_text ( $text ) {
         if ($text == 'Lost your password?'){$text = '
&lt;h3 style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://mypassword.baruch.cuny.edu/&quot; target=&quot;_blank&quot;&gt;Reset Your Baruch College Password&lt;/a&gt;

You now must log into Blogs@Baruch with your Baruch username.

All previous users of Blogs@Baruch will still be able to access their accounts after they are no longer affiliated with the school. We may however need to assist you in creating a new account and affiliating all content you previously produced with that new account.

If you are unable to log in, please email us at &lt;a href=&quot;mailto:blsciblogs@baruch.cuny.edu&quot;&gt;blsciblogs@baruch.cuny.edu&lt;/a&gt; for assistance.&lt;/h3&gt;
' ;}
                return $text;
         }
add_filter( 'gettext', 'remove_lostpassword_text' );

}

</pre>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/integrating-with-active-directory-or-why-it-aint-all-bad-being-official/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Zombies Rebels &amp; Federals: #UMWFA12</title>
		<link>http://lukewaltzer.com/zombies-rebels-federals-umwfa12/</link>
		<comments>http://lukewaltzer.com/zombies-rebels-federals-umwfa12/#comments</comments>
		<pubDate>Mon, 28 May 2012 03:53:44 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[umwfa12]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1649</guid>
		<description><![CDATA[I spent the better part of the week before last in Fredericksburg, Virginia at the University of Mary Washington&#8217;s &#8220;Faculty Academy.&#8221; This is a small event, spread over two days, and oriented primarily towards sharing among UMW faculty, staff, students, &#8230; <a href="http://lukewaltzer.com/zombies-rebels-federals-umwfa12/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I spent the better part of the week before last in Fredericksburg, Virginia at the University of Mary Washington&#8217;s &#8220;<a href="http://blog12.facultyacademy.org/">Faculty Academy</a>.&#8221; This is a small event, spread over two days, and oriented primarily towards sharing among UMW faculty, staff, students, and guests. <a href="http://www.michaelbransonsmith.net/">Michael Branson Smith</a>, <a href="http://thisevilempire.com">Mikhail Gershovich</a> and I were happy to schlep down from New York, share some stuff happening at CUNY, and absorb some of the inspired commitment to innovative teaching and learning that so obviously infuses UMW.</p>
<p>There were several highlights of the trip for me. I studied much about the Civil War while in graduate school except, but not really the military history, and I&#8217;ve been listening recently to David Blight&#8217;s fantastic <a href="http://oyc.yale.edu/history/hist-119">lectures about the war</a>. It was a trip to learn that the notorious modern-day carpetbagger <a href="http://www.flickr.com/photos/51294084@N00/7224536610/">Jim Groom and his family</a> live on the hill that the Union Army of the Potomac <a href="http://en.wikipedia.org/wiki/Battle_of_Fredericksburg">failed miserably to mount in an assault on Lee&#8217;s Army of Northern Virginia in December, 1862</a>. The Union eventually took Marye&#8217;s Heights and the town in May 1863, and a year later Brompton House &#8212; which is now the residence of UMW&#8217;s president &#8212; served as the Federal Hospital for soldiers wounded in fighting to the south.</p>
<div class="wp-caption aligncenter" style="width: 650px"><a title="Brompton House by skywaltzer, on Flickr" href="http://www.flickr.com/photos/51294084@N00/7224551378/"><img src="http://farm8.staticflickr.com/7078/7224551378_265f4d549a_z.jpg" alt="Brompton House" width="640" height="427" /></a><p class="wp-caption-text">Brompton House, Federal Hospital 1863-1865, currently home of UMW President Richard Hurley</p></div>
<p>The town <a href="http://www.flickr.com/photos/51294084@N00/7224549898/">hums</a> with the <a href="http://www.flickr.com/photos/51294084@N00/7224548998/">memory</a> of <a href="http://www.flickr.com/photos/51294084@N00/7224546168/" target="_blank">the</a> <a href="http://www.flickr.com/photos/51294084@N00/7224548454/">war</a> to an extent that&#8217;s really difficult for those of us from the North to grasp without actually visiting. It seems every street is named for a general, historic markers dot several corners, and two separate, beautifully-maintained cemeteries house the remains of the war dead. If I had had more time I would have explored the battlefield more thoroughly and taken a tour or two; on next visit, I&#8217;ll be sure to carve some out.</p>
<p>I was however shocked to encounter three funkily undead Federals dancing to Fela Kuti&#8217;s &#8220;Zombie&#8221; at the base of Marye&#8217;s Heights.</p>
<p><iframe width="584" height="329" src="http://www.youtube.com/embed/FmuqPS3lIWs?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Despite such spookiness, I&#8217;m pretty sure there will be a next visit because Faculty Academy itself was such a great event. It was actually lower energy than I expected it to be, which created a <a href="http://cogdogblog.com/2012/05/25/faculty-academy-2012-the-canadian-invasion/">sharing</a>, conversational vibe throughout Monroe Hall. Folks wandered in and out of sessions, and every presenter I saw was quite relaxed. I toured the &#8220;Media Carnival&#8221; that opened the event: Tim Owens showed off <a href="http://www.flickr.com/photos/51294084@N00/7224538568/">DTLT&#8217;s makerbots</a>, <a href="http://gforsythe.ca">Giulia Forsythe</a> got folks doodling on the walls as part of a workshop on visual note taking, and Jim and <a href="http://networkeffects.ca/">Grant Potter</a> described the DS106 radio ecosystem and brainstormed with faculty about teaching and learning opportunities. I then checked out a presentation by <a href="http://mcclurken.org/" target="_blank">Jeff McClurken</a> and his students Amy Benjamin, Shannon Hauser, Megan Whiteaker, Caitlin Murphy, and Micelle Martz about <a href="http://blog12.facultyacademy.org/proposal/digital-history/">&#8220;Four Years of Digital History&#8221;</a> at UWM. This session gave me some great ideas for the digital history class I&#8217;ll be teaching with <a href="http://twitter.com/tomharbo" target="_blank">Tom Harbison</a> at my college this fall, particularly around balancing the allocation of class time between discussion and working on projects and also purposefully constraining the project options that students have to minimize the chance of students being stuck in neutral when there&#8217;s so little time in a semester to make something new. Jeff is awesome, of course, and the students spoke quite excitedly about how formative the experience of taking digital history was in their time at UMW.</p>
<p>Grant Potter gave the keynote on the first day, and even if he hadn&#8217;t just hanging out with him for a few days would have been inspiring enough. Grant&#8217;s a motherfucker, in the best and only the best sense of the word. He plays the hell out of a guitar, left handed and upside down; ran afoul of various Chinese authorities during a six year stay there by violating local expectations around broadcasting, web access, and, believe it or not, ice hockey; negotiated a full time work-from-home appointment with his current employer that allows him to reside 3000 miles away; and is just a really, really nice dude. His keynote was entitled <a href="http://www.flickr.com/photos/gforsythe/7211075526/in/faves-51294084@N00/">&#8220;Tinkering, Learning, and the Adjacent Possible,&#8221;</a> and as much as anything during the week it captured the essence of the experimentation that so many of us are doing with technology in education… keep moving, keep trying out new things, iterate the good, always embrace the unexpected, and never, ever let risk get in the way of a good idea. Add in that he shot out Ornette Colemen, Miles Davis, and Charles Mingus during the week&#8230; well, let&#8217;s just say <a href="http://www.flickr.com/photos/51294084@N00/7224543964/" target="_blank">I&#8217;m a big fan</a>.</p>
<p>That afternoon I saw a great presentation by <a href="http://www.zachwhalen.net/" target="_blank">Zach Whalen</a> about electronic literature, and then saw how Andrea Smith goes paperless in the classroom (she&#8217;s a master of the keyboard shortcut). Then, Michael, Mikhail and I did a presentation on our dream of federating publishing platforms across 24 campuses. Michael talked about the <a href="http://commons.gc.cuny.edu">CUNY Commons</a> and <a href="http://news.commons.gc.cuny.edu/2011/11/22/the-cuny-academic-commons-announces-the-commons-in-a-box-project/">Commons in a Box</a> project as potentially providing the piping, Mikhail talked about the administrative hurdles to adoption, and I explored how federation might impact curricula at different stages of a student&#8217;s career. Thanks to all the UMW folks who came out to see us, and especially to Giulia Forsythe for producing these amazing visual notes of our presentation:</p>
<p style="text-align: center;"><a title="100 Bazillion Posts A Year. CUNY Federation, Curriculum &amp; Management #Umwfa12 @mgershovich @lwaltzer @mbransons" href="http://flickr.com/photos/gforsythe/7211801238/"><img class="aligncenter" src="http://farm8.staticflickr.com/7239/7211801238_405f941ffa.jpg" alt="" width="500" height="375" /></a><small><a title="100 Bazillion Posts A Year. CUNY Federation, Curriculum &amp; Management #Umwfa12 @mgershovich @lwaltzer @mbransons" href="http://flickr.com/photos/gforsythe/7211801238/">cc licensed ( BY NC SA ) flickr photo</a> shared by <a href="http://flickr.com/people/gforsythe/">giulia.forsythe</a></small></p>
<p>Hearing more about Giulia&#8217;s art was one of the highlights of the second day of the conference. Us CUNYs were frankly honored to be on the receiving end of one of her treatments. She puts so much concentration and creativity into each of her pieces, and it&#8217;s rewarding for a speaker to have their arguments digested and then presented back to them in such an appealing way. I felt our presentation went well, but after seeing Giulia&#8217;s drawing of it I felt even better about the breadth and flow of what we had shared.</p>
<p>Giulia offered one of the two keynotes on the second day of Faculty Academy, and talked about how the ds106 community that originated at UMW has given her the <a href="http://gforsythe.ca/umw-faculty-academy/">&#8220;tools and inspiration to unleash her creativity&#8221;</a> upon her professional work. It was amazing to hear that though she&#8217;s been a lifelong artist, she only recently began to express this talent in her work on faculty development at <a href="http://www.brocku.ca/pedagogical-innovation">Brock University</a>. Both Grant and Giulia show what can be accomplished when creative people insist on bringing their unique perspectives and skill-sets to bear on their work inside of the academy in an integrated way. They each embody a profound rejoinder to the narrow specialization that the academy overwhelmingly prioritizes, and higher education would be better off with more folks like them.</p>
<p>We could also use more people like <a href="http://daviddarts.com/">David Darts</a>. David followed Giulia&#8217;s keynote with one of his own, and there was much to dig about his talk. I loved the way that he engaged with his slides, letting some speak for themselves and using others as prompts to a story or a statement or an observation. I felt that I wasn&#8217;t seeing a presentation as much as I was just hearing him relaxedly share his thoughts with us. Even more, I dug the extent to which David&#8217;s art is animated by an ethical engagement with processes of information flow. David invented the <a href="http://wiki.daviddarts.com/PirateBox">&#8220;Pirate Box&#8221;</a> as a way of enabling students in his classes to easily share large media files that they were studying and playing with without risking exposure via the web. He shared the code, the project quickly spread internationally, he then watched something he had created take on a life of its own, beyond his control. The story of the Pirate Box is in many ways a manifestation of the process that so many of us thinking about teaching and learning in the digital age aspire to. We ultimately want the experiences and curricula we shape for our students through to guide them to a point where they think boldy, ethically, and generatively about both how to use technology and how to engage with information.</p>
<p>All three of the keynotes reiterated to me that the ultimate goal of the work much of us are engaged in is to empower ourselves and our students to digitally make our own social structures instead of merely adapting to the ones that are handed to us. It was great to be in a place where such a committed range of educators are seeing how many directions the pursuit of that goal can take us. So, big ups to Jim, <a href="http://wrapping.marthaburtis.net/" target="_blank">Martha</a>, <a href="http://andheblogs.andyrush.net/" target="_blank">Andy</a>, <a href="http://jerryslezak.net/scissors/" target="_blank">Jerry</a>, <a href="http://www.timmmmyboy.com/" target="_blank">Tim</a>, <a href="http://cogdogblog.com/2012/05/25/faculty-academy-2012-the-canadian-invasion/" target="_blank">Alan</a>, and the rest of the UMW crew. Thanks for having us!</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/zombies-rebels-federals-umwfa12/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>CUNYd Pie</title>
		<link>http://cunypie.commons.gc.cuny.edu/2012/05/11/cunyd-pie/</link>
		<comments>http://cunypie.commons.gc.cuny.edu/2012/05/11/cunyd-pie/#comments</comments>
		<pubDate>Sat, 12 May 2012 01:46:09 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://cunypie.commons.gc.cuny.edu/?p=283</guid>
		<description><![CDATA[<p></p> <p>CUNYPie returned today after a too-long hiatus with its first trip to Staten Island, where we visited Denino&#8217;s. This was a two campus affair, as me and my homeboys from Baruch joined our sisters from City Tech for pies and pitchers, which I&#8217;ll get to in a moment. The occasion of our trip [...]</p> <a href="http://cunypie.commons.gc.cuny.edu/2012/05/11/cunyd-pie/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://cunypie.commons.gc.cuny.edu/files/2012/05/photo-2.jpg"><img class="size-large wp-image-291 aligncenter" src="http://cunypie.commons.gc.cuny.edu/files/2012/05/photo-2-e1336786552544-1024x768.jpg" alt="" width="640" height="480" /></a></p>
<p>CUNYPie returned today after a too-long hiatus with its first trip to Staten Island, where we visited <a href="http://www.deninos.com/">Denino&#8217;s</a>. This was a two campus affair, as me and <a href="http://twitter.com/tomharbo">my</a> <a href="http://twitter.com/mgershovich">homeboys</a> from Baruch joined <a href="http://openlab.citytech.cuny.edu/">our sisters from City Tech</a> for pies and pitchers, which I&#8217;ll get to in a moment. The occasion of our trip to Shaolin was the <a href="http://www.csi.cuny.edu/CUE/">8th Annual CUNY Coordinated Undergraduate Education Conference</a>, at which we all presented. There&#8217;s lots going on with undergraduate education at CUNY these days, only some of which made it onto the docket at the conference. The controversy around <a href="http://www.psc-cuny.org/our-campaigns/faculty-staff-and-students-mobilize-pathways-town-hall">Pathways</a> was a subtext in each of the panels I attended, but was curiously absent in the day&#8217;s <a href="http://twitter.com/#!/ProfFerguson/statuses/200984773466927105">opening remarks</a>. The general feeling I got from folks was one of resignation that Pathways was probably going to happen, we&#8217;ll just wait and see, and then we&#8217;ll make the most of it.</p>
<p>The keynote was delivered by <a href="http://www.taylorprograms.com/">Mark Taylor</a>, who presents himself as an expert on &#8220;Generation NeXt,&#8221; and visits schools and other organizations to help them think about improving student engagement. The pedagogy he espouses consists of <a href="http://www.taylorprograms.com/images/Teaching_Gen_NeXt.pdf">familiar stuff</a>: flipped classrooms, active/engaged learning, future orientation, embracing technology (though as an information more than a connective tool), etc. The rationale he offers for this pedagogy is grounded in an analysis of generational difference, supported, as far as I can tell, by his synthesis of a range of secondary sources. Not sure if he does original research, as the papers presented on his site refer entirely to the research of others. We heard a good 30-40 minutes of talk about differences between the Baby Boomers and the generation just behind me, drawn significantly from Jean Twenge, whose work I&#8217;m <a href="http://cac.ophony.org/2007/03/01/adolescents-canaries-in-the-social-goldmine/">not a fan of</a>. Taylor doesn&#8217;t come down as hard as Twenge or <a href="http://www.amazon.com/The-Dumbest-Generation-Stupefies-Jeopardizes/dp/1585426393">Mark Bauerlein</a> on &#8220;kids these days,&#8221; but rather sees in the generation&#8217;s broad characteristics learning styles that need to be adjusted to.</p>
<p>Taylor&#8217;s rationale was pretty Domino&#8217;s, which is to say, weak sauce. There was a lot of charm and playfulness and &#8220;I&#8217;m a southern yokel and you&#8217;re all New Yorkers&#8221; before he got to what he was trying to say. But you don&#8217;t have to be a professional historian to know that identifying the broad differences between generations is only the very beginning step towards understanding how higher education needs to evolve in the coming years. And you don&#8217;t have to be a CUNY lifer to know that our university serves a particular set of populations, only small segments of which look like the learners Taylor theorizes about. At one point Taylor argued that colleges and universities better adapt or they&#8217;ll face disruption from some unidentified, external force. I don&#8217;t necessarily disagree with this notion or find it problematic (except for when he <a href="http://twitter.com/#!/mgershovich/statuses/201003692068057088">likened students to customers</a>). But many of us know this already, and are determined to be that disruption ourselves rather than simply to head it off. In that spirit, Mikhail and Tom and I left Taylor&#8217;s talk fifteen minutes early to go get set for our panel. In short, the keynote was a significant step down from <a href="http://www.youtube.com/watch?v=h_PzzCiZAIo">Pedro Noguera&#8217;s rousing talk</a> at this same event last year. Noguera knew well who we were and who we serve, and used that knowledge to speak directly to our challenges.</p>
<p>But all of this was prelude, prelude to pizza. Denino&#8217;s makes a damn good pie, thin but not saggy, with a cornicione that was a bit blistered, chewy, and crispy. We had four pies: a sausage (my fave), a margherita (good, not great), a half olive/half mushrooms (heavy on the olives, and quite strong), and an anchovy (to which I can only <a href="http://www.youtube.com/watch?v=tbqSoRaNicw&amp;feature=youtu.be&amp;t=3m13s" >say this</a>). The restaurant is a sizable, friendly family joint, and we were very lucky to get a table for ten just before the Friday dinner rush. If I lived on Staten Island, I would definitely be a regular. And it only cost us $13 each!</p>
<p>Big ups to <a href="http://commons.gc.cuny.edu/members/jrrosen/">Jody Rosen</a>, who grew up on Staten Island, for picking the spot and then bullying me into writing this post. Only you, Jody. Thanks for organizing the outing and giving me that specific kind of CUNY Pie full and happy feeling again.</p>
<p><a href='http://cunypie.commons.gc.cuny.edu/2012/05/11/cunyd-pie/photo-5/' title='Denino&#039;s margherita and olive/mushroom pies'><img width="150" height="150" src="http://cunypie.commons.gc.cuny.edu/files/2012/05/photo-5-e1336786109510-150x150.jpg" class="attachment-thumbnail" alt="Denino&#039;s margherita and olive/mushroom pies" /></a><br />
<a href='http://cunypie.commons.gc.cuny.edu/2012/05/11/cunyd-pie/photo-4/' title='Denino&#039;s upskirt'><img width="150" height="150" src="http://cunypie.commons.gc.cuny.edu/files/2012/05/photo-4-e1336786132811-150x150.jpg" class="attachment-thumbnail" alt="Denino&#039;s upskirt" /></a><br />
<a href='http://cunypie.commons.gc.cuny.edu/2012/05/11/cunyd-pie/photo-3/' title='Denino&#039;s sausage and anchovy pies'><img width="150" height="150" src="http://cunypie.commons.gc.cuny.edu/files/2012/05/photo-3-e1336786154584-150x150.jpg" class="attachment-thumbnail" alt="Denino&#039;s sausage and anchovy pies" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://cunypie.commons.gc.cuny.edu/2012/05/11/cunyd-pie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>Migrating</title>
		<link>http://lukewaltzer.com/migrating/</link>
		<comments>http://lukewaltzer.com/migrating/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 01:26:16 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[DH]]></category>
		<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[dayofdh]]></category>
		<category><![CDATA[edtech]]></category>
		<category><![CDATA[higher-ed]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1627</guid>
		<description><![CDATA[photo: DSCF-Photographer Today I migrated Blogs@Baruch, the 10k user WordPress installation I manage, to a new server. Our previous server was unable to handle the system&#8217;s activity. We had been in a Jumpbox environment, which our colleagues at the Baruch &#8230; <a href="http://lukewaltzer.com/migrating/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><div id="attachment_1633" class="wp-caption aligncenter" style="width: 1034px"><a href="http://lukewaltzer.com/wp-content/uploads/2012/03/migrating.jpg"><img class="aligncenter  wp-image-1633" title="Migrating" src="http://lukewaltzer.com/wp-content/uploads/2012/03/migrating.jpg" alt="" width="1024" height="685" /></a><p class="wp-caption-text"> 
							<span class='pdrp_captionAttribution pdrp_emptyCaption'>
								photo:
								<a href='http://flickr.com/8782364@N02/2903461942' target='_blank' class='pdrp_link pdrp_attributionLink'>
									DSCF-Photographer</a>
							</span>
						</p></div></p>
<p>Today I migrated <a href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a>, the 10k user WordPress installation I manage, to a new server. Our previous server was unable to handle the system&#8217;s activity. We had been in a Jumpbox environment, which our colleagues at the <a href="http://baruch.cuny.edu/bctc">Baruch Computing and Technology Center</a> had directed us towards a few years back out of concerns about the resources available to manage a LAMP stack alongside the dozens of other virtual environments the school manages. Problem was, Jumpbox only supports 32-bit lamp environments, which max out at 4 gb of ram… simply not enough for the amount of traffic and usage that we get, especially given the propensity of certain processes in WordPress to eat up a ton of ram. We were getting to the point where the server needed to be rebooted almost daily over the past month in order to clear out processes that were locking things up. My comrade-in-arms <a href="http://twitter.com/tomharbo">Tom Harbison</a> and I were on constant alert, interrupting family dinners, story time with our children, and, most horrifyingly, college basketball games to get the site back online and verify that no damage had been done. As a colleague told me, &#8220;that&#8217;s just no way to live.&#8221;</p>
<p>Moving to a more robust server became necessary if our system was going to continue to grow and evolve in response to <a href="http://wpebooks.com/support/general/forum/topic/bp-multi-network-networks-and-facebook-connect/">community need</a>, which is becoming ever more intense. We began discussions in mid-winter about where we&#8217;d move Blogs@Baruch. Our choices were to host externally, perhaps with <a href="http://castironcoding.com">Cast Iron Coding</a> (where our cousin <a href="http://umwblogs.org">UMW Blogs</a> is hosted) or with a host like <a href="http://www.softlayer.com">Softlayer</a> (where another CUNY WordPress install is hosted); or to ask BCTC to build and deploy a new server for us. Both decisions were feasible, yet both had costs and benefits. Hosting outside would give us total control over the environment, though at a monetary cost that might be difficult to maintain down the road. It would also require making outside systems interact with CUNY systems… let&#8217;s just say that has been a problem in the past. Hosting at the College would get us in-house support, but also make us dependent upon an IT department which has a specific set of pressures upon it to keep the systems of the college running, to be responsive to the needs of users here and also the demands of CUNY central administration.</p>
<p>In the end, we decided to continue to host Blogs@Baruch at the College, for a few reasons. The most important is that <a href="http://twitter.com/mgershovich">Mikhail Gershovich</a>, Tom and I very much see this project and the others at CUNY like it as efforts not only to foster certain pedagogical and communicative opportunities for members of our community, but also as tools in a larger battle to push our university and others in a particular direction in their approaches to supporting educational and information technology. It may very well have been easier to go to outside hosting: we could have moved more swiftly, wouldn&#8217;t have had to address the same security concerns, and could have bypassed bureaucracy altogether. But if one of our goals is to encourage the broader adoption of free and open source software within higher education, then taking the easy way through risks limiting the potential impact of our experiment. I&#8217;m proud that our College values this project and has given it support in tough economic times. That support isn&#8217;t only monetary, but also the valuable and highly in-demand time of our CIO <a href="https://twitter.com/#!/ciobaruch">Arthur Downing</a> and his staff at BCTC. This project is as much theirs as ours, a point they&#8217;ve articulated through their support for this migration. We think the extent to which the system is homegrown adds to its vitality, and makes it a strong model for what open university publishing platforms can be with just a few of the right people saying &#8220;yes.&#8221;</p>
<p>It&#8217;s fitting that this migration happened on the <a href="http://dayofdh2012.artsrn.ualberta.ca/">Day of the Digital Humanities</a>, when many of my colleagues at the intersection of humanities and technology across the world are sharing details and reflections about their workdays. In the course of my week &#8212; often in the course of a day &#8212; I visit classes and <a href="blsciblogs.baruch.cuny.edu/eng3680/">help students with projects</a>, consult with faculty about assignment and course design, oversee the work and <a href="http://cac.ophony.org">writing of graduate student fellows</a>, build <a href="http://blsciblogs.baruch.cuny.edu/bcam">WordPress </a><a href="http://jitp.commons.gc.cuny.edu">themes</a>, research plugins, help develop <a href="http://blsciblogs.baruch.cuny.edu/schwartzseminar">programs</a> and workshops, speak with staff members about their use of social media, advise <a href="http://commons.gc.cuny.edu">projects </a><a href="http://openlab.citytech.cuny.edu/">elsewhere</a> at CUNY, and occasionally <a href="http://writinghistory.trincoll.edu/teach/harbison-waltzer-2012-spring/">write</a>, present, or teach a class. Through this all, I must make sure the platform that propels much of my work remains viable and growing. This last bit is the least familiar to me of my tasks: though I administer a system I&#8217;m no system administrator, and I often need help. It&#8217;s ultimately much easier for me to call Phil or John or Patrick in the building next door than to dig through forums or to push my friends and connections for free advice (or to get on their calendars for the paid version).</p>
<p>Managing a platform like this has complicated my understandings of both university information technology and open source software deployment. Yes, much of the fetishization of security in IT comes from a <strong>f</strong>ear of litigation, from <strong>u</strong>ncertainty and <strong>d</strong>oubt about the motives of users, and from a proprietary mindset that weighs the cost and risk of every moving bit. We should push back against that culture. But security isn&#8217;t always only about these things; it&#8217;s also about ensuring the stability, functionality, and sustainability of a system so that its users can reap the most benefits. That sometimes may mean denying users the ability to do certain things on the system, or <a href="http://wordpress.org/extend/plugins/unfiltered-mu/">at least channeling them into a process </a>that helps them do those things in a way that doesn&#8217;t risk compromising stability (especially if they&#8217;re expecting and relying upon stability). Conversely, it also means going to bat for users with the powers that be and expanding a system&#8217;s capabilities so that we can all ultimately do more.</p>
<p>So, that&#8217;s where we are with Blogs@Baruch: we&#8217;ve just expanded the system&#8217;s capability so that it can do what it already does better and faster, and so that we can see if it can also do some new things. It&#8217;s also where I am in my work as an educational technologist: mediating between the growing needs of an exploding community of users and the capabilities and demands of an institutional structure that sometimes gets us and sometimes doesn&#8217;t. And it&#8217;s where I am in my thinking as a digital humanist: wondering every day how emerging technologies are helping and forcing us to rethink the work &#8212; <em>all</em> of the work&#8211; that we do in the university.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/migrating/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Grandfather Sold a Fake Book to President Truman</title>
		<link>http://lukewaltzer.com/my-grandfather-sold-a-fake-book-to-president-truman/</link>
		<comments>http://lukewaltzer.com/my-grandfather-sold-a-fake-book-to-president-truman/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 16:28:51 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Parenting and Family]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1620</guid>
		<description><![CDATA[My grandfather, who passed well before I was born, owned a music store on 48th Street called Banner Music. One day, two well dressed men walked into the store. I&#8217;ll let Murray Sunshine tell the rest of the story. Murray, &#8230; <a href="http://lukewaltzer.com/my-grandfather-sold-a-fake-book-to-president-truman/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>My grandfather, who passed well before I was born, owned a music store on 48th Street called Banner Music. One day, two well dressed men walked into the store. I&#8217;ll let Murray Sunshine tell the rest of the story. Murray, who sat in on drums at my bar mitzvah party (swinging) and once ragged on my wife for ordering pierogi at the Second Avenue Deli, worked with and loved Grandpa Fintz. As much as any one else, knowing him has connected me to the lovely but lost world they once inhabited. Not least of all, because he can tell a story like this. </p>
<p><iframe width="584" height="329" src="http://www.youtube.com/embed/xivQAQVm-dw?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>This was recorded at my grandmother&#8217;s 90th birthday party on January 1, 2012. If you don&#8217;t know what a fake book is, <a href="http://en.wikipedia.org/wiki/Fake_book">read this</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/my-grandfather-sold-a-fake-book-to-president-truman/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Finding #ds106radio</title>
		<link>http://lukewaltzer.com/finding-ds106radio/</link>
		<comments>http://lukewaltzer.com/finding-ds106radio/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 18:25:30 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[cac]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1580</guid>
		<description><![CDATA[I really dug the DIY Radio for Teaching and Learning session that Mikhail Gershovich organized last night at Baruch College. I&#8217;ve been following the evolution of the community that&#8217;s emerged around the digital storytelling courses (named ds106) begun at University &#8230; <a href="http://lukewaltzer.com/finding-ds106radio/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I really dug the <a href="http://blsciblogs.baruch.cuny.edu/schwartzseminar/ ">DIY Radio for Teaching and Learning</a> session that Mikhail Gershovich organized last night at Baruch College. I&#8217;ve been following the evolution of the community that&#8217;s emerged around the <a title="DS106" href="http://ds106.us">digital storytelling courses (named ds106)</a> begun at University of Mary Washington and joined by folks all over the world, and have watched with interest as that community has explored the integration of web radio over the past year. <a href="http://ds106.us/ds106-radio/"><img class="alignleft" title="DS106" src="http://bavatuesdays.com/files/2011/01/ds106_radio.gif" alt="" width="178" height="157" /></a> But I&#8217;ve refrained from jumping in for a number of reasons. First, I&#8217;m not much of a joiner. Second, I saw that ds106 radio seemed to have taken over the lives of many of the folks involved, and I simply don&#8217;t have time. Third, as a self-diagnosed enthusiasthmatic, I didn&#8217;t feel I have the stamina to participate in a movement whose mood generally puts the good vibes in the digital humanities community to shame. Fourth, when confronted with evangelism, which I often find boring, my instinct is to turn the other way. And fifth and by far the most important, I don&#8217;t particularly like punk, and ds106radio plays a lot of punk.</p>
<p>These reservations aside, I did know from the get that ds106 was on to something interesting and that radio is just a part of that, and last night&#8217;s presentation gave me a firmer sense of just what that is. <a href="http://foundmagazine.com"><img class="alignright" style="margin: 10px;" title="Found Magazine" src="http://foundmagazine.com/images/store/found_seventh_heaven.png" alt="" width="320" height="240" /></a>I was reminded last night of the emergence of <em><a href="http://foundmagazine.com/">Found Magazine</a></em>, which was created by <a href="http://en.wikipedia.org/wiki/Davy_Rothbart">Davy Rothbart</a>, who I attended college (and played a lot of hoop) with. <em>Found</em> collects &#8220;found stuff: love letters, birthday cards, kids&#8217; homework, to-do lists, ticket stubs, poetry on napkins, doodles&#8211; anything that gives a glimpse into someone else&#8217;s life. Anything goes.&#8221; <em>Found&#8217;s</em> finds reveal the poetry and humanity in the quotidian detritus of every day life. When my wife and I got our first issue of Found, it immediately changed the way we related to our lived environment. Random pieces of paper blowing across the sidewalk had real stories and real life behind them. Binding them into a collection made a space for readers to creatively explore and imagine the voids left by the individual artifact&#8217;s isolation and abandonment.</p>
<p>I was similarly struck by the way ds106radio has altered the way that <a href="http://networkeffects.ca/">Grant Potter</a>, <a href="http://gnagarcia.wordpress.com/">GNA Garcia</a>, <a href="http://bavatuesdays.com">Jim Groom</a>, <a href="http://michaelbransonsmith.net/">Michael Branson Smith</a> and <a href="http://thisevilempire.com">Mikhail</a> <a href="http://www.timmmmyboy.com/">&#8211;</a> <a href="http://gforsythe.ca/">as</a> <a href="http://www.timmmmyboy.com/">well</a> as <a href="http://cogdogblog.com/">several</a> <a href="http://wrapping.marthaburtis.net/">others</a> <a href="http://www.timmmmyboy.com/">&#8211;</a> have integrated the possibilities of web radio into their interactions with the spaces around them. They seem absorbed by the experience of ds106radio, <em>always</em> imagining how to make use of it, <em>constantly</em> thinking of ways to bring what&#8217;s around them to the network, and doing so in deeply personalized ways. Grant is focused on creating, expanding, and simplifying the technical capabilities of the experience, drawing upon his ability as a technologist interested in telephony. GNA is an educational psychologist, and her interest in the space seems to revolve around mindfulness and nurturing a sense of community. Mikhail has embraced the role of deejay for its own sake, but has also shown the promise of the <a href="http://thisevilempire.com/blog/?p=586">medium for capturing oral history</a> and begun to imagine curricular integration around a set of tools like these. Michael has taken the first difficult stab at bringing the ds106 world into the curriculum of a CUNY college over at York, and while he&#8217;s made amazing artistic contributions (and to the ds106 ecosystem, he&#8217;s also made use of his connections to <a href="http://www.michaelbransonsmith.net/blog/2011/10/19/week-5-%e2%80%93-ds106-whats-that-i-hear-%e2%80%93-can-you-dig-it/">expand the set of tools ds106ers can draw upon in their audio production</a> and brought <a href="http://www.michaelbransonsmith.net/blog/2011/10/11/fat-chance-ds106-will-ever-stop/">#ows on air</a>. And Jim, whose work with ds106 inspired this whole thing, has started to imagine the range of ways that a web radio station might be integrated across the curriculum at UMW.</p>
<p>As much as Jim might recoil in horror at the term, he&#8217;s an &#8220;academic&#8221; through and through, and in and only in the best sense of the word. After his presentation with <a href="http://blsciblogs.baruch.cuny.edu/schwartzseminar/home/">Mike Neary and Joss Winn last week</a>, I felt that the MOOCification of ds106 and the attention to the community beyond UWM embedded an implicit critique of the institutional limitations of the university. While I think these awesome projects suggest a dynamic about the nature of change and innovation within higher ed that we would benefit from teasing out a better understanding about, Jim&#8217;s presentations these past two weeks have reiterated to me yet again that more than anything he&#8217;s deeply committed to the idea of curricular innovation and evolution using free, open, powerful tools in a way that specifically and systematically fosters digital and networked literacies. Jim wants you to think he&#8217;s crazy and unpredictable and unbound, so he references heroin and porn in his presentations. But his work can&#8217;t help but reveal that he is in fact something much more radical and profound: an intensely committed educator. (Not that I ever doubted that. But I don&#8217;t think I&#8217;ve ever written it, and it&#8217;s only fair given the millions of keys he&#8217;s struck professing his <a href="http://bavatuesdays.com/summer-of-love-luke-waltzer/">love</a> for me).</p>
<p>Rock on #ds106radio. I&#8217;ll likely call mic check at some point. And much more importantly, I&#8217;ll be rolling the possibilites of web radio into my thinking about ways educators can stretch, invigorate, and revolutionize the classroom.</p>
<p>If you missed it, here&#8217;s the presentation, which lays out with much more passion and clarity than I can what ds106 and ds106radio are:</p>
<p style="text-align: center;"><iframe src="http://player.vimeo.com/video/30854260?title=0&#038;byline=0&#038;portrait=0" frameborder="0" width="600" height="450"></iframe></p>
<p style="text-align: center;"><a href="http://vimeo.com/30854260">DIY Web Radio, Part 1 of 2</a></p>
<p style="text-align: center;"><iframe src="http://player.vimeo.com/video/30853472?title=0&#038;byline=0&#038;portrait=0" frameborder="0" width="600" height="450"></iframe></p>
<p style="text-align: center;"><a href="http://vimeo.com/30853472">DIY Web Radio, Part 2 of 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/finding-ds106radio/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Twenty Years of The Low End Theory</title>
		<link>http://lukewaltzer.com/twenty-years-of-the-low-end-theory/</link>
		<comments>http://lukewaltzer.com/twenty-years-of-the-low-end-theory/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 17:42:33 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[atcq]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1544</guid>
		<description><![CDATA[Twenty years ago today A Tribe Called Quest&#8217;s The Low End Theory came out, and it&#8217;s been my favorite hip-hop album since. I remember when I bought the tape. I was on my way to watch a high-school basketball game &#8230; <a href="http://lukewaltzer.com/twenty-years-of-the-low-end-theory/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://lukewaltzer.com/wp-content/uploads/2011/09/low-end-theory2.jpg"><img class="alignright size-medium wp-image-1574" title="low-end-theory" src="http://lukewaltzer.com/wp-content/uploads/2011/09/low-end-theory2-300x298.jpg" alt="" width="300" height="298" /></a>Twenty years ago today A Tribe Called Quest&#8217;s <a href="http://en.wikipedia.org/wiki/The_Low_End_Theory">The Low End Theory</a> came out, and it&#8217;s been my favorite hip-hop album since. I remember when I bought the tape. I was on my way to watch a high-school basketball game (against Lansing Waverly) with Colin Moriarty and we stopped by Warehouse Records on West Saginaw then bumped it in his Monte Carlo. The record immediately spoke to me, and that it has continued to do so in different ways at different points in the past twenty years is testimony to its greatness.</p>
<p>Initially it grabbed me because of the jazz. I come from a family of jazz musicians, and this album drew upon that genre in a way that no other rap record had done before. Half of the record is extremely bluesy, with &#8220;Excursions&#8221; built around a sample from Art Blakey and the Jazz Messengers&#8217; &#8220;<a href="http://www.youtube.com/watch?v=V7jghWaAgLM">A Chant for Bu</a>.&#8221; About hip-hop Q-Tip raps &#8220;my pops used to say it reminded him of be-bop, I said that daddy don&#8217;t you know that things go in cycles?&#8221; &#8220;Bugging Out&#8221; laces a beat from Lonnie Liston Smith&#8217;s version of &#8220;<a href="http://www.youtube.com/watch?v=S6Sihz2TRyY">Spinning Wheel</a>&#8221; around a bass line from Jack DeJohnette&#8217;s &#8220;<a href="http://youtu.be/-MjKOs3OkQI">Minya&#8217;s a Mooch</a>&#8221; and features entirely seamless interplay between Q-Tip and Phife Dawg. Tribe rolls out <a href="http://en.wikipedia.org/wiki/Ron_Carter">Ron Carter</a> on bass on &#8220;Verses from the Abstract&#8221; (along with a hook sung by <a href="http://en.wikipedia.org/wiki/Vinia_Mojica">Ms. Vinia Mojica</a>), solidifying the link between generations and genres. The sound immediately connected the world I knew at home with the world I was engaging when I left home, either on Yo! MTV Raps or in the halls of my high school or in my homeboy&#8217;s hooptie on the way to a Friday night game.</p>
<p>The first single from the record was &#8220;Check the Rhime-&#8221; a song that embodied all that was great about hip-hop at that moment.</p>
<p><object width="250" height="40" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" 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;songIDs=31677820&#038;style=metal&#038;p=0" /><param name="src" value="http://grooveshark.com/songWidget.swf" /><param name="allowscriptaccess" value="always" /><embed width="250" height="40" type="application/x-shockwave-flash" src="http://grooveshark.com/songWidget.swf" wmode="window" allowScriptAccess="always" flashvars="hostname=cowbell.grooveshark.com&#038;songIDs=31677820&#038;style=metal&#038;p=0" allowscriptaccess="always" /></object></p>
<p>The playful, practiced call and response beginning: &#8220;You on point Phife? All the time Tip.&#8221; The nostalgic celebration of home, 21 year-olds rapping about &#8220;back in the days on the Boulevard of Linden.&#8221; The self-awareness and confidence of a group who hit it big with their <a href="http://en.wikipedia.org/wiki/People%27s_Instinctive_Travels_and_the_Paths_of_Rhythm">first record</a> &#8212; &#8220;you&#8217;d be a fool to reply that Phife is not the man, cuz you know, and I know, that you know who I am&#8221; &#8212; and then made the impact of success a subject of their second (see &#8220;Rap Promoter&#8221; and &#8220;Show Business&#8221; from the first half of the record). Q-Tip&#8217;s verse on this track is perhaps one of the greatest ever, sixteen perfect bars woven through the snap of the snare that reference Lou Brock and pride, coins &#8220;industry rule number four thousand and eighty,&#8221; and makes a metaphor of hoop &#8212; &#8220;pass me the rock and score &#8216;em with decorum&#8221; &#8212; before ending with a pointed shot at MC Hammer&#8217;s efforts to make hip-hop pop.</p>
<p>But there&#8217;s much more on this record. By the mid-nineties, the bling movement signified a genre aspiring to be larger than life. But On <em>The Low End Theory Tribe</em> explored how large real life already was. &#8220;Vibes and Stuff&#8221; is dedicated to <a href="http://en.wikipedia.org/wiki/MC_Trouble">M.C. Trouble</a>, <a href="http://en.wikipedia.org/wiki/Scott_La_Rock">Scott La Rock</a>, <a href="http://en.wikipedia.org/wiki/Trouble_T_Roy">Trouble T-Roy</a> (who was also the inspiration for this <a href="http://www.youtube.com/watch?v=BONgL61snlM">classic Pete Rock and C.L. Smooth track</a>), influential hip-hop artists who had tragically passed away in the few previous years. Phife Dawg and Q-Tip explored the sexual opportunities (and risks) created by their fame and visibility. Guest spots by Brand Nubian and Leaders of the New School and sprinkled references to De La Soul centered Tribe&#8217;s experience within that of the <a href="http://en.wikipedia.org/wiki/Native_Tongues">Native Tongues</a> and <a href="http://en.wikipedia.org/wiki/Universal_Zulu_Nation">Zulu Nation</a> collectives, thus making an argument that hip-hop should be about identity and humanity.</p>
<p>If one half of the record connected hip-hop to jazz, the other connected it to funk. The second half simply rocked, picking up steam behind the drum groove of &#8220;The Infamous Date Rape&#8221; (sampled from Jackie Jackson&#8217;s &#8220;Is it Him or Me,&#8221;) blazing through &#8220;Check the Rhime&#8221; (with Minnie Ripperton and Grover Washington samples), drawing on Funkadelic for &#8220;Everything is Fair&#8221; (&#8220;you young boy, my love toy? I doubt that very highly. Just because you rhyme don&#8217;t mean I&#8217;ll let you try me&#8221;). And then sampling Sly and the Family Stone, Lucky Thompson, and Freddie Hubbard in the mellow-but-grooving &#8220;Jazz (We Got).&#8221; These four tracks run together as a ten minute inner suite, sharing a beats per minute, and adding up to more than the sum of their parts. Another <a href="http://www.youtube.com/watch?v=km04Bb5N-2c">Sly</a> sample forms the basis of the palette-cleanser &#8220;Skypager.&#8221; And then the penultimate track, &#8220;What?,&#8221; highlights Q-Tip&#8217;s verbal dexterity, worldliness, and exceptional rhyme play, over a rump-rattling beat.</p>
<p><object width="250" height="40" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" 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;songIDs=31678020&#038;style=metal&#038;p=0" /><param name="src" value="http://grooveshark.com/songWidget.swf" /><param name="allowscriptaccess" value="always" /><embed width="250" height="40" type="application/x-shockwave-flash" src="http://grooveshark.com/songWidget.swf" wmode="window" allowScriptAccess="always" flashvars="hostname=cowbell.grooveshark.com&#038;songIDs=31678020&#038;style=metal&#038;p=0" allowscriptaccess="always" /></object></p>
<p>The album ends with one of the biggest, baddest posse tracks of all time, &#8220;Scenario.&#8221; Producer Ali Shaheed Muhammad mixed the blues that characterized the first half of the record with the funk that dominated the second (sampling Miles Davis, Jack McDuff, The Ohio Players, Kool and the Gang, and Hendrix). This was the third single, and it was released along with a pathbreaking video in January of 1992.</p>
<p><iframe width="584" height="438" src="http://www.youtube.com/embed/JFZLq6R-ZtM?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>The highlight of the track might be the star-making cameo by <a href="http://en.wikipedia.org/wiki/Busta_Rhymes">Busta Rhymes</a>, whose reference to Peter Tosh, Maceo, and Dungeons and Dragons hit the sweet spot with my group of extremely particular friends. But every rapper on &#8220;Scenario&#8221; brought his A game.</p>
<p>I&#8217;ve returned to this album probably more than any other in the past twenty years, and it&#8217;s never failed to connect. Sometimes it transports me back to those early days when the rhymes were fresh and caused me to do double takes to catch the metaphors. Other times it connects anew, like hearing the bass line on &#8220;Show Business&#8221; in a way I hadn&#8217;t before, or honing in on a sample. That&#8217;s what makes great art durable, that it can be at once timeless but of a particular moment.</p>
<p>I have no doubt that I&#8217;ll still be bumping this in another twenty. Thanks, Tribe!</p>
<p>Here&#8217;s the whole album for your listening pleasure:</p>
<p><object width="550" height="450" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" 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;playlistID=60595810&#038;bbg=000000&#038;bth=000000&#038;pfg=000000&#038;lfg=000000&#038;bt=FFFFFF&#038;pbg=FFFFFF&#038;pfgh=FFFFFF&#038;si=FFFFFF&#038;lbg=FFFFFF&#038;lfgh=FFFFFF&#038;sb=FFFFFF&#038;bfg=666666&#038;pbgh=666666&#038;lbgh=666666&#038;sbh=666666&#038;p=0" /><param name="src" value="http://grooveshark.com/widget.swf" /><param name="allowscriptaccess" value="always" /><embed width="550" height="450" type="application/x-shockwave-flash" src="http://grooveshark.com/widget.swf" wmode="window" allowScriptAccess="always" flashvars="hostname=cowbell.grooveshark.com&#038;playlistID=60595810&#038;bbg=000000&#038;bth=000000&#038;pfg=000000&#038;lfg=000000&#038;bt=FFFFFF&#038;pbg=FFFFFF&#038;pfgh=FFFFFF&#038;si=FFFFFF&#038;lbg=FFFFFF&#038;lfgh=FFFFFF&#038;sb=FFFFFF&#038;bfg=666666&#038;pbgh=666666&#038;lbgh=666666&#038;sbh=666666&#038;p=0" allowscriptaccess="always" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/twenty-years-of-the-low-end-theory/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Where are the students?</title>
		<link>http://lukewaltzer.com/where-are-the-students/</link>
		<comments>http://lukewaltzer.com/where-are-the-students/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 18:23:15 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[cac]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1524</guid>
		<description><![CDATA[photo credit: ShuttrKing&#124;KT Boone&#8217;s post about Blackboard as an impetus behind his turn to open source software development got a lot of attention on Monday, and for good reason. He struck a fine balance between deep knowledge, a moral center, &#8230; <a href="http://lukewaltzer.com/where-are-the-students/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href='http://lukewaltzer.com/where-are-the-students/dimension/' title='Dimension'><img width="300" height="199" src="http://lukewaltzer.com/wp-content/uploads/2012/05/Dimension-300x199.jpg" class="attachment-medium alignleft wp-image-1730" alt="Dimension" title="Dimension" /></a></p>
<p><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" alt="Creative Commons License" width="16" height="16" align="absmiddle" border="0" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="ShuttrKing|KT" href="http://www.flickr.com/photos/46705519@N07/4853491803/" target="_blank">ShuttrKing|KT</a></small></p>
<p>Boone&#8217;s<a title="BOONE" href="http://teleogistic.net/2011/09/i-develop-free-software-because-of-cuny-and-blackboard/"> post about Blackboard</a> as an impetus behind his turn to open source software development got a lot of attention on Monday, and for good reason. He struck a fine balance between deep knowledge, a moral center, and a progressive stridency that many of us who are doing work at the intersection of technology and higher ed aspire to but rarely achieve. It&#8217;s ideological, for sure, but its ideology is a simple one: Blackboard is ripping off students by locking the institutions responsible for nurturing their development as thinkers and makers into an expensive relationship with a software <a href="http://mkgold.net/blog/2009/03/30/against-learning-management-systems/">whose design is hostile to thinking and making</a>. That&#8217;s troubling enough. But, as Boone notes, it&#8217;s doubly troubling at a place like CUNY, where the vast majority of students have few choices when it comes to higher education.</p>
<p>Boone&#8217;s piece resonated with educators and developers who like to think deeply about this stuff, and kicked off a series of exchanges on Twitter about how we might translate broad anger against Blackboard into some kind of transformative action. And yet, a significant piece is absent from the puzzle: <strong>there seems to be little student outrage over the fact that Blackboard is the default option for teaching and learning with technology at CUNY and so many other places.</strong></p>
<p>Is it important that undergraduates know the details on this stuff? Or is this situation more akin to a faculty member choosing texts for a class, an act of tuition and fees paid along with faith that the &#8220;experts&#8221; will act in the best interests of the students?</p>
<p>Honestly, I&#8217;m not sure. I find it more concerning that I&#8217;m not sure students <em>care</em> to know. CUNY undergraduates <a href="http://www.nytimes.com/2010/12/20/nyregion/20cuny.html">have barely made a whimper</a> since their tuition was raised 15% in 2009, and 7% this academic year, with promises of additional hikes each of the next four years. There were some scattered student protests: an internationalist group and marxist social workers at Hunter organized a rally.<del> I heard a rumor, unconfirmed, that</del> A group of anarchists at <a href="http://www.youtube.com/watch?v=T6Qg3K_XvMA">Queens College stopped traffic on the L.I.E. to protest the hikes</a>. But there&#8217;s been nothing across campuses, nothing sustained, and the loudest protestors, as always, are CUNY Grad Center students, who are often steeped in the history of protest (especially at CUNY) but who only make up a sliver of the student population. Compared with <a href="http://www.youtube.com/watch?v=j-Z4DB4XIs0">students</a> <a href="http://youtu.be/bnO0pye54xA">in</a> <a href="http://www.youtube.com/watch?v=4cqR-kihqb0">Europe</a>, American students show few signs of organizing and making demands.</p>
<p>If CUNY&#8217;s undergrads aren&#8217;t motivated to oppose such steep tuition hikes, it&#8217;s hard to imagine that they&#8217;d deeply engage with the types of ed tech decisions made by the University. Would CUNY actually jettison a relationship with a corporation to which it has outsourced so much of its thinking about teaching and learning with technology without students demanding it? CUNY is a huge bureaucracy, and getting it to change direction is a monumental task.</p>
<p>I&#8217;m fortunate enough to have carved out a niche with other like-minded educational technologists and digital humanists at the University where we can think deeply about and create alternative structures for the exploration of the way that technology is changing teaching, learning, and scholarship. My project is funded directly by the student technology fee, a fact that I&#8217;m proud of. Our campus puts <a href="http://www.baruch.cuny.edu/bctc/policy/index.html">its plan for the tech fee online</a> for all to review, and it&#8217;s a symbol of enlightened leadership that we&#8217;ve been given the space to experiment. Still, there&#8217;s little evidence to assume that most CUNY students know or care about the substantial fees paid by CUNY to Blackboard, or the much more exorbitant costs of the CUNY First ERP transition, or (despite our recognition) how much bang for the buck projects like <a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a>, <a title="The COmmons" href="http://commons.gc.cuny.edu">The CUNY Academic Commons</a>, and <a href="http://macaulay.cuny.edu/eportfolios/">ePortfolios@Macaulay</a> deliver.</p>
<p>Our innovations remain on the edges of the University. In some ways, to be honest, that&#8217;s preferable &#8212; we don&#8217;t have as much pressure to scale and as a result we have both less scrutiny and greater ability to respond nimbly to changes on the ground. If we had more resources and a bigger mandate, our work would change significantly. But at the end of the day, CUNY students are still sending a significant chunk of money to Blackboard without any say, and the overwhelming majority of faculty members aren&#8217;t thinking through the pedagogical implications of a continued client-service model of educational technology.</p>
<p>So we can be proud of the critique we&#8217;ve waged and the alternatives we&#8217;ve constructed. But Boone&#8217;s post reminds us in the starkest terms that we&#8217;ve not accomplished nearly enough. We have more to do. But so do our students. They can start by asking some questions, and hopefully, down the road, making some demands.</p>
<p><em><strong>Update, November 30, 2011:</strong></em><br />
I originally published this post just after Occupy Wall Street began&#8230;. since then, CUNY students have made pretty clear their feelings about the tuition hike in a series of protests (with more to come)&#8230; I don&#8217;t think I missed the anger when I wrote this post, because it simply wasn&#8217;t visible.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/where-are-the-students/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Uncomfortable Truths</title>
		<link>http://lukewaltzer.com/uncomfortable-truths/</link>
		<comments>http://lukewaltzer.com/uncomfortable-truths/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 18:58:48 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Musings]]></category>
		<category><![CDATA[Parenting and Family]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1458</guid>
		<description><![CDATA[The best, most vibrant comedy mines the depth of uncomfortable truths. I first discovered Louis CK&#8217;s standup a few years ago, and the bit that got me was about what an asshole his four year-old daughter was. CK taught me &#8230; <a href="http://lukewaltzer.com/uncomfortable-truths/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: left;">The best, most vibrant comedy mines the depth of uncomfortable truths. I first discovered <a href="http://www.louisck.net/">Louis CK&#8217;s</a> standup a few years ago, and the bit that got me was about what an asshole his four year-old daughter was.</p>
<p><iframe width="584" height="329" src="http://www.youtube.com/embed/7vRhr502wIc?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p style="text-align: left;">CK taught me not only that my frustrations with parenting were common, but also that because of the fact that they could be tapped for great art, they were that ambiguous stuff that makes life, you know, life. Any respectable parent feels terrible when negative thoughts cross their mind about their children. But any honest parent will admit having them. That&#8217;s why I both cringe and kind of get it when Louis CK <a href="http://www.newyorker.com/arts/critics/television/2011/06/13/110613crte_television_franklin">quips</a> &#8220;I love that kid to pieces. But I wish she was never born.&#8221; Of <em>course </em>he doesn&#8217;t think that all of the time&#8230; but there are moments when thoughts of which we&#8217;re not proud creep uncomfortably into our minds. It&#8217;s part of the human condition; why not talk about it? Better yet, why not joke about it?</p>
<p><img class="alignright" style="margin: 10px;" title="Go the Fuck to Sleep" src="http://www.boingboing.net/2011/04/26/go-the-fuck-to-sleep.jpg" alt="" width="300" height="223" /></p>
<p>Adam Mansbach&#8217;s book <a title="Go the F-ck to Sleep" href="http://www.amazon.com/Go-F-Sleep-Adam-Mansbach/dp/1617750255">&#8220;Go the F-ck to Sleep&#8221;</a> taps into that same feeling by playfully articulating the redundant, exhausting, and endlessly unproductive processes that parenting requires. Deploying verboten language when discussing something so truly precious as our kids provides necessary release from the quotidian torture all parents endure. Bill Cosby&#8217;s <a title="Cosby" href="http://www.youtube.com/watch?v=eaUx80JGI0U">bits about parenting</a>, which led to his sitcom in the 1980s, were funny in an observational and performative way. But Cosby&#8217;s routines are ultimately less satisfying because they construct family life as chaotic yet still under control, parents as harried but ultimately capable and on top of things even though kids say the darndest things. Now that I&#8217;m a seasoned parent, Cosby&#8217;s stuff feels less true. Balancing parenting, work, bills, marriage, life, and still maintaining some inner-direction requires persisting and progressing despite constantly not being on top of things. Most of this is because parenting is so demanding. Being able to hold in my head both unconditional love for my children and the honest acceptance that they make my life worse even as they make it better required a maturation process I didn&#8217;t realize I&#8217;d have to go through when I first held my daughter.</p>
<p>Watching the evolution of CK&#8217;s career over the past few years suggests the moment where it&#8217;s therapeutic to vulgarly talk about your children is but a stage. As he <a href="http://nymag.com/arts/tv/upfronts/2011/louis-ck-2011-5/">told Emily Nussbaum of <em>New York Magazine</em></a>:</p>
<blockquote><p>The mistake so many parents make, he tells me, is to go into mourning for the life they’ve lost. “All those early bits I did calling my kid an asshole came out of not knowing how to handle it. You distill those feelings in stand-up.” But as his children get older, he says, he’s become more confident about his role—something he wants to incorporate into the show. “They’re amazing now. It’s nice to be with them. It’s delightful. And you know, it also doesn’t last very long.”</p></blockquote>
<p style="text-align: left;">I&#8217;ve started to see that kind of light in my future with my kids, even though the 2 year-old is a fledgling maniac and the 7 year-old is simply learning to be difficult in new ways. One particularly long trip home from an exhausting birthday party in Brooklyn a couple months ago sticks out. They were both worn down, over-sugared and tired, and either could have lapsed into assholicity quite easily. Our small car could have been turned for 90 minutes into a hurtling torture chamber. But instead the kids were quite pleasant, singing to each other and entertaining us, dozing off sweetly before we got home. The moment was a window into a future where we will be able to spend more time just being people together. We&#8217;ll often enjoy each others&#8217; company, and have the ability to occupy ourselves when we don&#8217;t.</p>
<p>Of course, when we got home, both kids woke up, and took another hour to get the fuck back to sleep.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/uncomfortable-truths/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Challenges of Turning Inwards</title>
		<link>http://lukewaltzer.com/the-challenge-of-turning-inwards/</link>
		<comments>http://lukewaltzer.com/the-challenge-of-turning-inwards/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 17:53:50 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[DH]]></category>
		<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[digital-humanities]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1430</guid>
		<description><![CDATA[photo credit: Sarah G&#8230; Over the past few years I’ve approached the digital humanities with a touch of skepticism. Much of this has had to do with my own career path and anxieties: I did digital history from the mid-1990s &#8230; <a href="http://lukewaltzer.com/the-challenge-of-turning-inwards/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href='http://lukewaltzer.com/the-challenge-of-turning-inwards/95365-eh/' title='(95/365) Eh?!'><img width="290" height="300" src="http://lukewaltzer.com/wp-content/uploads/2012/05/95-365-Eh--290x300.jpg" class="attachment-medium aligncenter wp-image-1727" alt="(95/365) Eh?!" title="(95/365) Eh?!" /></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="Sarah G..." href="http://www.flickr.com/photos/96526303@N00/3428616087/" target="_blank">Sarah G&#8230;</a></small></p>
<p style="text-align: left;"><span style="font-weight: normal;">Over the past few years I’ve approached the digital humanities with a touch of skepticism. Much of this has had to do with my own career path and anxieties: I did digital history from the mid-1990s through 2003 or so, and since then &#8212; even while writing a traditional history dissertation &#8212; have worked primarily as an educational technologist focused on pedagogy, curriculum development, and open learning initiatives. These two fields overlap in many important ways, and have much to learn from one another (a dynamic that </span><span style="font-weight: normal;"><a href="http://lukewaltzer.com/on-edtech-and-the-digital-humanities/">I</a></span><span style="font-weight: normal;"> and others have attempted to tease out). Yet I regarded the rise of the digital humanities with a certain amount of bemusement since much of what was regularly being heralded as new felt to be the logical next stage of something already familiar to me. I finished my Ph.D. in 2009 and found that there were better opportunities in educational technology awaiting me than on the history job market. As I was making this move, the excitement and celebration and “woo-hoo!” that surrounded the digital humanities put me off a bit. It seemed discordant with the state of the field that I had come to know watching very few of my colleagues and friends land desirable jobs.</span></p>
<div>
<p>Over the past six months I’ve pushed myself to examine these feelings more closely, an effort that began when my pal <a href="http://mkgold.net/">Matt Gold</a> asked me to contribute to a volume he’s editing on debates in the digital humanities and culminated in my attendance at my first <a href="http://chnm2011.thatcamp.org/">THATCamp</a> this past weekend at George Mason’s <a title="CHNM" href="http://chnm.gmu.edu/">Roy Rosenzweig Center for History and New Media</a>. I’ve emerged with a fuller and more complex take on the digital humanities, one that’s softer if still a bit critical (then again, <a href="http://twitter.com/#!/jimgroom/statuses/77510513323556864">I’m critical of everything</a>). I was struck by a few things about THATCamp in relationship to other academic conferences: the earnestness of the curiosity that infused the enterprise, the genuine commitment to openness and sharing that so many attendees possessed, and the democratic willingness so many folks had to engage with whomever approached them. I was pleased to leave with a handful of ideas for projects to pursue. I needed a shot of adrenaline at the end of a relatively demanding year where I regularly felt that my professional autonomy was being made tenuous by circumstance. THATCamp delivered some inspiration, and for that I’m thankful.</p>
<p>Still though, after submitting an essay to Matt and my trip this past weekend, I feel as though some of the assumptions I had about the digital humanities have been reaffirmed even as I have come to understand them more deeply. One common theme threaded through several of the sessions and conversations that I had and observed at THATCamp: <strong>many attendees are working through some sort of frustration with their home institution.</strong></p>
<p>The first session I attended, on whether or not “<a href="https://docs.google.com/document/d/1h9O3BAexQdb2Z8b3r44_oX3gmL4CfR7vf6YQhwRpBnc/edit?hl=en_US">digital literacy is a done deal</a>,” emerged out of attempts at the University of Mary Washington to launch a “Digital Knowledge Initiative.” <a title="Jeff McClurken" href="http://mcclurken.org/">Jeff McClurken</a>, who proposed the session, argued that the DKI grew out of a sense that much of the experimentation that has been happening on UMWBlogs wasn’t filtering throughout the entire school and hadn’t been institutionalized in a way that was sustainable, scalable, and truly transformational. <a title="Martha Burtis" href="http://wrapping.marthaburtis.net/">Martha Burtis</a>, who also contributed to the proposal, noted her discomfort with an initiative that might disembed the building towards digital fluency from other curricula. Separating out those pedagogical processes ultimately might weaken them. Both positions reflect the desire to compel others at the institution to embrace lessons that can be drawn from the digital humanities about the role of technology in nurturing humanistic inquiry which revolve around openness, sharing, experimentation, visualization, embracing discomfort, and tapping into imagination. Much of the rest of the discussion focused on the challenges of compelling reticent colleagues to integrate such values into their own work, particularly the self- de-centering required of so many who’re steeped in research and teaching from very narrow niches.</p>
<p>A subsequent discussion that I attended extended a morning conversation about “<a href="https://docs.google.com/document/d/1vJIf3bs2FZtiMYTfe5arQ_12Lh25XhhnUCVRDJ9dOVA/edit?hl=en_US">inclusion</a>” in the digital humanities while absorbing a session that had been proposed by <a title="Sheila Brennan" href="http://www.lotfortynine.org/">Sheila Brennan </a>on “documentation.” I have to say that while this investigation emerged out of earnest self-reflection and a genuine desire to make the digital humanities into a more fully representative field, parts of the conversation unsettled me. Though it wasn’t directly articulated, it was pretty clear from the conversation in the afternoon that most of the concern was about bringing scholars of color into the DH fold. While I agree that ensuring that tools and projects emerging out of the digital humanities are accessible is extremely important, the notion that those committed to the field need to put forth significant effort to make events like THATCamp more ethnically diverse is problematic. The THATCamp “movement” prides itself on openness and welcoming, and those feelings were certainly in full effect in Fairfax last weekend. A working group that focuses on targeting populations of humanities scholars who aren’t present in force at THATCamps risks reifying the insider/outsider us/them constructs that spurred the organization of this session in the first place.</p>
<p>There’s no easy answer to the conundrum of diversity in DH, but I do think that those trying to address this question would be as well or better served by looking inwards at the field than by organizing outreach. For instance, I’m curious how many disagreements there are at THATCamps, and to what extent real diversity might challenge notions of the “niceness” of the field? There’s also the question of politicization. Black and ethnic studies departments emerged in the wake of the civil rights movement, as part of broader efforts to explore untold histories in an effort to empower. I’ve not done research to verify this, and I feel a bit uncomfortable making the observation, but after a lifetime around higher education it certainly seems that scholars of color are still more likely to do their inquiry within this mission than outside of it. Research in these fields rarely pursues knowledge simply for its own sake, but rather does so regularly out of the sense that the process of making knowledge is political. That vibrancy and purpose has drawn me intellectually to the history of race and ethnicity. Does the fact that the digital humanities “movement” hasn’t articulated an explicitly radical agenda contribute to the lack of diversity at events like THATCamp? I really don’t know, but it seems a question worth asking. This is not a call for a more self-consciously radical digital humanities, but rather a call for more reflection about the nature and implications of true diversity within higher education.</p>
<p>Talk in that session turned to how digital humanists might reach out to such scholars on their campuses and draw them into projects or at least the conversation, and it was here where integration of documentation made the most sense. Good documentation is the best tool to make accessible what humanists are doing with technology, and ultimately to draw additional scholars in. <a href="https://docs.google.com/document/d/1jjJL75EboctzXbH0wd5sD899xRdT5TDGhx_E9U2wyj4/edit?hl=en_US">A second conversation on documentation</a> on Sunday morning extended this discussion, and it was particularly useful in suggesting tools for creating documentation and methods for integrating the creation of supporting materials into the production process. This discussion also focused on the frustrating art of imagining and addressing audiences not necessarily familiar with the language, methods, or processes of the digital humanities.</p>
<p>A final session asked “what can we learn from journalism?” Part of this conversation again constructed digital humanists as conduits for innovation to filter into their home institutions. A significant chunk of the work I do with <a href="http://blsciblogs.baruch.cuny.edu/">Blogs@Baruch</a> involves finding and sharing new models for teaching with technology across the curriculum and helping faculty members adapt those models to their pedagogical purposes. It’s here where I think the work of educational technologists and digital humanists most overlaps: for our work to be effective, we must have the ability to compel people into it, and that requires quite a different skillset than those that go into producing a new tool, visualization, or archive.</p>
<p>One of the most useful things that I got from conversations at THATCamp was some necessary perspective on how positively folks on the outside view the initiatives that I’m involved in at CUNY. Admittedly, most of this was likely out of broad familiarity with the <a href="http://commons.gc.cuny.edu/">CUNY Academic Commons</a>, to which I’m a Community Advisor, but Blogs@Baruch is the Commons’ sister project, sharing an ethos, a politics, and circumstance that go far beyond software. I’m not shy about muscling Blogs@Baruch in on some of the Commons’ shine. What I think each of these projects shows &#8212; along with our <a href="http://umwblogs.org/">other</a> <a href="http://macaulay.cuny.edu/eportfolios/">sisters</a> &#8212; is that as frustrating as this process often is, a digital project becomes stronger as it grows organically within and in response to the concerns and uses of a distinct community, whether that be a college or an imagined user base. So much is to be gained from the networked conversations and experiences that happen within the digital humanities and at THATCamps. But the difficult work of turning that knowledge inwards &#8212; which often entails productively engaging resistance that can originate from both inside and outside our own selves &#8212; is at least as important.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/the-challenge-of-turning-inwards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Table marked as crashed&#8221;</title>
		<link>http://lukewaltzer.com/table-marked-as-crashed/</link>
		<comments>http://lukewaltzer.com/table-marked-as-crashed/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 19:14:04 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wpmued]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1413</guid>
		<description><![CDATA[I encountered a pretty scary error on the WordPress Multisite network I manage yesterday, which turned out to be something relatively minor. I thought I&#8217;d blog it in case someone else found themselves in a similar situation and began frantically &#8230; <a href="http://lukewaltzer.com/table-marked-as-crashed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I encountered a pretty scary error on the WordPress Multisite network I manage yesterday, which turned out to be something relatively minor. I thought I&#8217;d blog it in case someone else found themselves in a similar situation and began frantically Googling&#8230; which is what I was doing last night as my wife (thankfully) handled getting the kids to bed.</p>
<p>We think we&#8217;ve been having some brute force attacks on our server over the past few months, and while our server mostly weathers them, we had one yesterday morning that required a manual restart of the virtual machine where our system is housed. We were back online in no time and all looked good. I then had a pretty busy day, and wasn&#8217;t spending much time on the system, but got no notices that there were problems (usually I&#8217;ll hear from users if something&#8217;s amiss).</p>
<p>Towards the end of the day, on either side of my commute, I saw the following symptoms emerge:</p>
<ul>
<li>I noticed that it was taking a long time to access my dashboard even though the site load was normal. I was though still able to eventually get in.</li>
<li>On my way out of the office, I noticed that the BuddyPress admin bar was visible even though I had set it to be hidden for logged out users. I noted to take a look at this when I got home. When I did, I found that I couldn&#8217;t change that or any other BP setting&#8230; when I clicked &#8220;save,&#8221; the setting reverted to &#8220;not hidden.&#8221;</li>
<li>While going back and forth between the front and back ends, I suddenly lost the super admin capability on my personal account, though I was still able to access the super admin menu with the &#8220;admin&#8221; user.</li>
<li>I then noticed several plugins &#8212; including BuddyPress, WP-Super Cache &#8212; had been suddenly deactivated, and I couldn&#8217;t reactivate them.</li>
<li>Then, I noticed that no network themes were available in the Appearance&gt;Themes menu, and that the &#8220;enabled&#8221; setting on all themes on the wp-admin/ms-themes.php page had been toggled to &#8220;no&#8221;</li>
<li>The home site went white, probably because BuddyPress was no longer enabled and that site runs a BP theme</li>
<li>All subdirectory sites seemed fine and were accepting posts.</li>
</ul>
<p>I&#8217;ve never seen this collection of problems before, and began to worry that perhaps the system got hacked&#8230;although the pattern of symptoms suggested something was interfering with the database. I first deleted all plugins (except the shar-db plugin), but doing so changed nothing.</p>
<p>Then, I thought, if this is really bad, I need to make sure I have a current MYSQL dump. When running the dump, I got this error:</p>
<blockquote><p>mysqldump: Got error: 145: Table &#8216;./wpmu_global/wp_sitemeta&#8217; is marked as crashed and should be repaired when using LOCK TABLES</p></blockquote>
<p>Ah&#8230; crashed database table! I repaired that table via PhpMyAdmin, and, voila, problem resolved.</p>
<p>It seems as though the hard reset that the system required in the morning corrupted the database, and led to the gradual emergence of these symptoms.</p>
<p>Live, learn, and make sure you check your database.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/table-marked-as-crashed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pressible</title>
		<link>http://lukewaltzer.com/pressible/</link>
		<comments>http://lukewaltzer.com/pressible/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 15:39:09 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[pressible]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1395</guid>
		<description><![CDATA[WordCamp gatherings consistently deliver the latest, mindblowing innovations happening with WordPress, and I&#8217;m still processing much of what I learned when we hosted WordCampNYC this past weekend. One project I wanted to highlight from the Academic Track is Pressible, a &#8230; <a href="http://lukewaltzer.com/pressible/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://wordcamp.org">WordCamp</a> gatherings consistently deliver the latest, mindblowing innovations happening with WordPress, and I&#8217;m still processing much of what I learned when we hosted <a title="WordCamp NYC" href="http://2010.nyc.wordcamp.org/">WordCampNYC</a> this past weekend. One project I wanted to highlight from the Academic Track is <a title="Pressible" href="http://pressible.org/">Pressible</a>, a custom theme and set of plugins developed by <a title="Patrick Carey" href="http://edlab.tc.columbia.edu/index.php?q=user/639">Patrick Carey</a> and <a title="Eric Buth" href="http://edlab.tc.columbia.edu/index.php?q=user/899">Eric Buth</a> and other members of the <a title="Ed Lab" href="http://edlab.tc.columbia.edu/">EdLab</a> at Columbia&#8217;s <a title="Teachers College" href="http://www.tc.columbia.edu/">Teachers College</a>.</p>
<p><a href="http://pressible.org/"><img class="size-large wp-image-1396 alignnone" style="margin: 10px;" title="Screen shot 2010-10-22 at 11.27.34 AM" src="http://lukewaltzer.com/wp-content/uploads/2010/10/Screen-shot-2010-10-22-at-11.27.34-AM-1024x765.png" alt="" width="553" height="413" /></a></p>
<p>The project is currently in beta, and the code isn&#8217;t ready for release, but Patrick and Eric gave us a sneak peak of how this setup can transform a WordPress network into a publishing platform tailored to the specific needs and interests of a community.</p>
<blockquote><p>Pressible is designed to organize and feature your content in an  intuitive, browsable way. That means all users have to do is post! No  static pages to update, no hierarchies to create. The structure of your  site emerges from the content you add–the more you post, the more  sophisticated and interconnected your site becomes.</p></blockquote>
<p>They&#8217;ve changed the name of &#8220;Categories&#8221; on their install to &#8220;Topics,&#8221; and really pushed their community members to use WordPress&#8217;s native functionality to build out a folksonomy of the content produced on the system. I can&#8217;t quite tell what kind of sitewide processes there are on the system from the outside looking in. It seems most of those paths in are located on the individual user pages, where affiliations across site are listed, but they could have something like <a title="Sitewide tags" href="http://dev.commons.gc.cuny.edu/2009/07/20/making-sitewide-tags-work/">sitewide tags</a> running and enabling connections across content (and I just can&#8217;t see it).</p>
<p>A few things come to mind after looking at Pressible for a bit. Eric and Patrick have taken a different approach to using a publishing platform to build community within their institution than we have on <a title="B@B" href="http://blsciblogs.baruch.cuny.edu/members/">Blogs@Baruch</a>. We launched a really broad platform, got as many people onto it as possible from around the campus, sought to make connections via word of mouth and through building a community of practice, and then ultimately integrated BuddyPress in an effort to tie it all together. Now we&#8217;re pushing tagging to gradually build a folksonomy. But Pressible seems to structure the platform to allow folks easily to publish and ultimately to funnel what they&#8217;ve done towards community conversations.  All sites use the same theme&#8211; which is beautiful, by the way, and seems to have some built-in customizability &#8212; and it&#8217;s easy for <a title="Front end on Pressible" href="http://pressible.org/juliawm/post-from-the-front-pressible-update">users to publish through the front end</a>.  Chronology is practically non-existent, and tags and topics are foregrounded in the user experience. WordPress is the base, but the branding reflects the fact that getting content up, out and connected is the main priority.</p>
<p>I can see how it&#8217;s fitting to a community like Teachers College to have a more focused platform like this; at Baruch, we&#8217;re trying to make connections across seemingly unrelated conversations, but at TC the goal is to amplify discussion among specialists within a single field (albeit one that engages a wide range of ideas).  One of the key terms that any CUNY who&#8217;s gone through the Writing Fellows Program has learned is &#8220;enabling constraints,&#8221; the notion that by limiting the options available to a student on a writing assignment you can help them focus more deeply and thus open up more possibilities for exploration. Pressible seems to me to embody that approach in the design of an open source publishing platform, and it&#8217;s an exciting experiment that I&#8217;m happy to follow.</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/pressible/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>On EdTech and the Digital Humanities</title>
		<link>http://lukewaltzer.com/on-edtech-and-the-digital-humanities/</link>
		<comments>http://lukewaltzer.com/on-edtech-and-the-digital-humanities/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 21:30:39 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[EdTech]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[cac]]></category>

		<guid isPermaLink="false">http://lukewaltzer.com/?p=1376</guid>
		<description><![CDATA[photo credit: myoldpostcards Last Wednesday Matt Gold and Charlie Edwards invited me and a few of my favorite CUNYs to come speak to the CUNY Digital Humanities Initiative, a new group at the University &#8220;aimed at building connections and community &#8230; <a href="http://lukewaltzer.com/on-edtech-and-the-digital-humanities/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href='http://lukewaltzer.com/on-edtech-and-the-digital-humanities/girard-il-btw-has-anyone-seen-the-computer/' title='Girard IL - BTW, has anyone seen the computer?'><img width="300" height="229" src="http://lukewaltzer.com/wp-content/uploads/2012/05/Girard-IL-BTW-has-anyone-seen-the-computer--300x229.jpg" class="attachment-medium alignleft wp-image-1724" alt="Girard IL - BTW, has anyone seen the computer?" title="Girard IL - BTW, has anyone seen the computer?" /></a></p>
<p><small><a title="Attribution-NonCommercial-NoDerivs 2.0 Generic" href="http://creativecommons.org/licenses/by-sa/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="myoldpostcards" href="http://www.flickr.com/photos/myoldpostcards/" target="_blank">myoldpostcards</a></small></p>
<p>Last Wednesday <a title="Gold" href="http://commons.gc.cuny.edu/members/admin/">Matt Gold</a> and <a title="Charlie" href="http://commons.gc.cuny.edu/members/cedwards/">Charlie Edwards</a> invited me and a few of <a title="Prestidigitation" href="http://prestidigitation.commons.gc.cuny.edu/">my</a> <a title="Boone" href="http://teleogistic.net">favorite</a> <a title="Mikhail" href="http://commons.gc.cuny.edu/members/mgershovich/">CUNYs</a> to come speak to the <a title="CUNY DHI" href="http://cunydhi.commons.gc.cuny.edu/">CUNY Digital Humanities Initiative</a>, a new group at the University &#8220;aimed at building connections and community among those at CUNY who are applying digital technologies to scholarship and pedagogy in the humanities.&#8221; Matt and Charlie were especially interested in bringing CUNY educational technologists to this meeting because the relationship between edtech and the digital humanities is something that&#8217;s been assumed more than theorized: we all focus on the intersection of technology and academic work in the humanities, ergo we must be doing similar and somewhat simpatico things.</p>
<p>With a field that&#8217;s been as nebulous in its boundaries and definitions as the digital humanities, this stance hasn&#8217;t been particularly problematic. There has, however, been significant energy within the digital humanities over the past year devoted to self-definition. At the same time, the loose, distributed community of educational technologists working with open source publishing platforms of which I consider myself a part has congealed around a certain set of ideas. I intended my contributions to the CUNY DHI to draw some points of difference between these twined trajectories, to look upon the digital humanities through the lens of my recent experience becoming an educational technologist after completing a graduate degree in history, and ultimately to raise some questions about the tensions I see between the two realms of academic life.</p>
<p>In advance of the visit, we were asked to circulate some readings, and I chose <a title="Neary" href="http://www.lincoln.ac.uk/cerd/Staff/staff_M_neary.htm">Mike Neary</a> and <a title="Joss Winn" href="http://josswinn.org/">Joss Winn&#8217;s</a> <a title="Neary and Winn" href="http://eprints.lincoln.ac.uk/1675/">&#8220;The Student as Producer.&#8221;</a> This piece contextualizes the work that I and several of my colleagues have been engaged in over these past few years. Our work as educational technologists has emerged to meet a particular nefarious challenge that Neary and Winn powerfully delineate: over the past two generations, the function of the university has been increasingly shaped in response to the forces of capital. &#8220;Since the 1980s, universities, in response to government pressure, have become more business-like and enterprising to take advantage of the &#8216;opportunities&#8217; presented by the so-called global &#8216;knowledge economy&#8217; and &#8216;information society.&#8217;&#8221;  At the risk of overdrawing the picture somewhat, we see the impact of such pressures in pretty much every nook and cranny of the university: in how resources are sought and allocated, in the corporatization and professionalization of athletics, in the anxiety over assessment and accreditation, in the structure and vicissitudes of the academic labor market, in the predatory student loan and credit card industry and, not least of all, in the classroom, where structures of instruction commonly lead to students being treated as vessels into which information should be dumped en route to the job market.</p>
<p><a title="Blogs@Baruch" href="http://blsciblogs.baruch.cuny.edu">Blogs@Baruch</a> and its sister projects emerged in direct response to these conditions. Our original focus was on nurturing student-centered learning by merging WAC and WID principles with the possibilities opened up by online publishing, in making more visible the pedagogy (both successful and not) at work in our classrooms, and at supporting an alternative to the proprietary course management system that still predominates across CUNY. Blackboard is itself an embodiment of the university culture that Neary and Winn rightly find so troubling: students cycle through a system that structurally, aesthetically and rhetorically reinforces the notions that education is consumption, the faculty member is a content provider, the classroom is hierarchical, and learning is closed. Less and less though do we have to convince listeners that open source publishing platforms and the many flowers they&#8217;ve allowed to bloom can create exciting possibilities in and beyond the classroom; we can show them link after model after link after model after link.</p>
<p>And yet our argument has quickly expanded beyond the classroom to engage broader questions about curricula, the social life of the University, the very way that our community members think about their experiences. Our engagement is a humanistic one in that it insistently constructs the university first and foremost as a site of inquiry and exploration, resists and complicates the concepts of deliverables and education as consumption, challenges staid structures of power, and seeks to constructively question motives and goals at every opportunity. Technology and the open web have empowered us in this endeavor, leveling the playing field in ways that give those who might imagine other trajectories within the university the means to counteract power.</p>
<p>I could say much more about the work we&#8217;ve been doing, where it&#8217;s succeeded, where it&#8217;s failed, and how it&#8217;s been a struggle. But the point here has been to situate our work, to historicize it in a way that brings to the fore its politics. This is something that I think the progressive edtech movement has done quite clearly, but that the digital humanities have not.</p>
<p>In many ways, the digital humanities is not really new. Or, that is to say, the methods and questions and processes that constitute its core are not new. Just drawing upon my own disciplinary (and professional) past, the folks at the <a title="ASHP" href="http://ashp.cuny.edu/">American Social History Project</a> have been exploring the implications of new technologies on scholarship and pedagogy for nearly thirty years, challenging orthodoxies and valorizing collaboration and innovative approaches to engaging with the past since the <a title="Kaypro" href="http://en.wikipedia.org/wiki/Kaypro">Kaypro II</a>. <a title="CHNM" href="http://chnm.gmu.edu">The Center for History and New Media</a> was founded in 1994 and together these two organizations built the first large scale efforts to digitally reimagine the past in the classroom and beyond. <a title="Randy Bass" href="http://explore.georgetown.edu/people/bassr/?PageTemplateID=138">Randy Bass&#8217;s</a> work out of Georgetown &#8212; which I first encountered as an undergraduate participant in the &#8220;Crossroads Project&#8221; at the University of Michigan in the mid-90s &#8212; has done much to promote the use of digital tools to remake the classroom and curricula. Additional examples in &#8220;humanities computing&#8221; are many.</p>
<p>What is new about the digital humanities, though, is the legitimacy, funding, and visibility that it&#8217;s found over the past few years, and those are the components that have sparked recent efforts to set some boundaries and define the field. Frankly, this process has sometimes bordered on the absurd. The recurrent presence of phrases like &#8220;big tent,&#8221; &#8220;expansive,&#8221; and &#8220;broadly conceived&#8221; give speakers a rhetorical tool set for drawing just about any academic work done with technology into the field. It gives graduate students who use technology in their research a language for demarcating their work from those who do not. This slipperiness makes formulating a critique a significant challenge, since the digital humanities resists being reduced to a single or <a title="DH Defined" href="http://tapor.ualberta.ca/taporwiki/index.php/How_do_you_define_Humanities_Computing_/_Digital_Humanities%3F">even a handful of things</a>.  In trying to write this I&#8217;ve had a difficult time boiling my critique down to an unhedged essence. But, here goes.</p>
<p>The (un)structure of the digital humanities has led to a careerism and opportunism that, to the outsider, often obfuscates the genuinely pathbreaking work that&#8217;s happening around the field. It&#8217;s here where I see the biggest point of difference between educational technology and the digital humanities. Edtech is necessarily implicated in constructing the university of the future, and one of the many reasons that battle is so important is that its outcome will in fact go a long way towards determining the future of the humanities. While there is <a title="DH Manifesto" href="http://manifesto.humanities.ucla.edu/2008/12/15/digital-humanities-manifesto/">significant political content</a> within the digital humanities &#8212; the valuing of openness, the emphasis on sharing, the location within technology of particular tools and methods for empowerment &#8212; one gets the sense that ideology is not the main thing. In other disciplines (history and educational technology being the two I&#8217;m most familiar with) political debates abound, often times propelling ideas forward. In the digital humanities you tend to see much more agreement than disagreement. While it&#8217;s well and good to be agreeable, and I far prefer people who are, we are in high-stakes times. The humanities have been and continue to be in crisis. Budgets are burning, departments are being axed, and in many places the very value of a humanistic education is not only being questioned, but boldly denied.</p>
<p>And yet, a tone predominates in the discourse around the digital humanities that often seems to sidestep this crisis, or miss it altogether. Part of this is no doubt attributable to the fact that the digital humanities has become so dependent upon Twitter and is thus subject to the distorting echo of the hive mind. Part of it is also attributable to the new sense of community and connectedness within the field, which has also spurred a significant amount of navel-gazing and those efforts to self-define. I admittedly suffer from enthusiasthma, but the &#8220;I&#8217;m okay, you&#8217;re okay&#8221; &#8220;RT congrats!&#8221; cliquishness that flows across my screen and predominates at DH gatherings seem to me to be a bit misaligned with the current trajectory of the humanities in higher education. DH jobs, funding, and departments are becoming more widely available while the broader humanistic project &#8212; to which universities are <em>central</em> &#8212; crumbles around us.  Are new tenure track positions, attempts at <a title="DH Now" href="http://digitalhumanitiesnow.org/">building a canon</a> and <a href="http://chronicle.com/blogs/profhacker/">establishing authority</a>, and a dozen new conferences representative of progress, or are they reentrenching and reinscribing power along traditional paths?  (Yes, I realize the answer can be &#8220;both.&#8221;) And why do digital humanists seem to celebrate scholarship much more deeply and publicly than teaching and learning? These questions are at the core of my discomfort with aligning my work with the digital humanities, as much as I&#8217;ve learned and benefited  from scholars at its center.</p>
<p>Some might ask, &#8220;well, what about <a href="http://nowviskie.org/2010/alt-ac/">#alt-ac?</a>&#8221; I appreciate the extent to which that phrase articulates, illuminates and validates the variety of labor paths and modes that make the university function and evolve (including what I do).  Yet I can&#8217;t help but feel that something might be lost by, as <a title="GROOM" href="http://bavatuesdays.com/">Jim Groom </a>has said, &#8220;naming and reifying my alterity.&#8221;  Adapting for myself the pressure to publish, travel to conferences, keep up with the canon, to constantly produce and present new research &#8212; all of the things that seem necessary to establish one&#8217;s self within the digital humanities, even as an &#8220;alt-ac&#8221; person &#8212; doesn&#8217;t really seem &#8220;alt&#8221; at all. It&#8217;s seems about exactly what I expected from a career in academia.</p>
<p>I realize this argument is deeply personal, perspectival and located mostly within my own struggles to navigate professional terrain. I&#8217;m not trying to shit on anyone&#8217;s work. Some of my best friends are digital humanists, I swear. But I know that I&#8217;m not the only person to feel some of the things I&#8217;ve written above. At the end of my brief, wholly unpolished presentation to the CUNY DHI last week, @mkgold <a href="http://twitter.com/mkgold/status/27291431945">tweeted</a> &#8220;@lwaltzer argues for a more muscular, progressive version of the Digital Humanities that questions/critiques power.&#8221; I initially wasn&#8217;t comfortable with that conclusion being drawn from what I had said because I don&#8217;t feel myself enough of a DH insider to make any arguments for what its future should hold. And yet upon more reflection I do feel nurturing that ethos is and must be central to the humanities. It&#8217;s simply too important to be absent from or even unclear in any future vision of the university.</p>
<p>I guess that, thanks to Matt and Charlie&#8217;s invite and the struggle to write this post that ensued I&#8217;ve learned that I&#8217;m interested in the digital humanities only to the extent to which it helps me use technology to do the work as a humanist I&#8217;d try to do even if we had no computers. So does that mean I&#8217;m in, or out?</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/on-edtech-and-the-digital-humanities/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<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 &#8230; <a href="http://lukewaltzer.com/blogs-at-baruch-now-with-buddypress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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; title: ; notranslate">

&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; title: ; notranslate">

function change_profile_tab_order() {
	global $bp;

	$bp-&gt;bp_nav['profile']['position'] = 10;
	$bp-&gt;bp_nav['activity']['position'] = 20;
	$bp-&gt;bp_nav['blogs']['position'] = 30;
	$bp-&gt;bp_nav['friends']['position'] = 40;
	$bp-&gt;bp_nav['messages']['position'] = 50;
	$bp-&gt;bp_nav['groups']['position'] = 60;
	$bp-&gt;bp_nav['settings']['position'] = 70;
}

add_action( 'bp_setup_nav', 'change_profile_tab_order', 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; title: ; notranslate">

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( 'bp_adminbar_menus', 'my_help_link', 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; title: ; notranslate">

 /** Sets BP Nav to load Profile first */
define( 'BP_DEFAULT_COMPONENT', 'profile' );

</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>
<p><a id="theme"></a></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; title: ; notranslate">

define( 'HEADER_IMAGE', get_bloginfo('stylesheet_directory') .'/images/headers/baruchcollege.jpg' );

add_action( 'after_setup_theme', 'blogsatbaruch_setup' );
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('stylesheet_directory');
	register_default_headers( array (
		'Baruch' =&gt; array (
			'url' =&gt; &quot;$blogsatbaruch_dir/images/headers/baruchcollege.jpg&quot;,
			'thumbnail_url' =&gt; &quot;$blogsatbaruch_dir/images/headers/baruchcollege-thumbnail.jpg&quot;,
			'description' =&gt; __( 'Baruch College', 'blogsatbaruch' )
		),
		'Elevators' =&gt; array (
			'url' =&gt; &quot;$blogsatbaruch_dir/images/headers/elevators.jpg&quot;,
			'thumbnail_url' =&gt; &quot;$blogsatbaruch_dir/images/headers/elevators-thumbnail.jpg&quot;,
			'description' =&gt; __( 'Elevators', 'blogsatbaruch' )
		),
		'Reading' =&gt; array (
			'url' =&gt; &quot;$blogsatbaruch_dir/images/headers/reading.jpg&quot;,
			'thumbnail_url' =&gt; &quot;$blogsatbaruch_dir/images/headers/reading-thumbnail.jpg&quot;,
			'description' =&gt; __( 'Reading', 'blogsatbaruch' )
		),
		'Streetsign' =&gt; array (
			'url' =&gt; &quot;$blogsatbaruch_dir/images/headers/streetsign.jpg&quot;,
			'thumbnail_url' =&gt; &quot;$blogsatbaruch_dir/images/headers/streetsign-thumbnail.jpg&quot;,
			'description' =&gt; __( 'Street Sign', 'blogsatbaruch' )
		),
		'Turnstiles' =&gt; array (
			'url' =&gt; &quot;$blogsatbaruch_dir/images/headers/turnstiles.jpg&quot;,
			'thumbnail_url' =&gt; &quot;$blogsatbaruch_dir/images/headers/turnstiles-thumbnail.jpg&quot;,
			'description' =&gt; __( 'Turnstiles', 'blogsatbaruch' )
		),
		'VC View' =&gt; array (
			'url' =&gt; &quot;$blogsatbaruch_dir/images/headers/vcview.jpg&quot;,
			'thumbnail_url' =&gt; &quot;$blogsatbaruch_dir/images/headers/vcview-thumbnail.jpg&quot;,
			'description' =&gt; __( 'View from VC', 'blogsatbaruch' )
		),
		'Windows' =&gt; array (
			'url' =&gt; &quot;$blogsatbaruch_dir/images/headers/windows.jpg&quot;,
			'thumbnail_url' =&gt; &quot;$blogsatbaruch_dir/images/headers/windows-thumbnail.jpg&quot;,
			'description' =&gt; __( 'Windows', 'blogsatbaruch' )
		),

	));
}

function remove_twenty_ten_headers(){
	unregister_default_headers( array(
		'berries',
		'cherryblossom',
		'concave',
		'fern',
		'forestfloor',
		'inkwell',
		'path' ,
		'sunset')
	);
}

add_action( 'after_setup_theme', 'remove_twenty_ten_headers', 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>6</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 &#8230; <a href="http://lukewaltzer.com/the-path-to-blogsbaruch/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href='http://lukewaltzer.com/the-path-to-blogsbaruch/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/' 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.'><img width="300" height="200" src="http://lukewaltzer.com/wp-content/uploads/2012/05/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--300x200.jpg" class="attachment-medium alignleft wp-image-1721" 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." 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." /></a></p>
<p><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 &#8230; <a href="http://lukewaltzer.com/slouching-towards-buddypress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href='http://lukewaltzer.com/slouching-towards-buddypress/planet-of-the-apes/' title='planet of the apes'><img width="300" height="263" src="http://lukewaltzer.com/wp-content/uploads/2012/05/planet-of-the-apes-300x263.jpg" class="attachment-medium alignleft wp-image-1718" alt="planet of the apes" title="planet of the apes" /></a></p>
<p><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 and Family]]></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 &#8230; <a href="http://lukewaltzer.com/what-a-difference/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 &#8230; <a href="http://lukewaltzer.com/i-love-david-simon-but/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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><iframe width="584" height="438" src="http://www.youtube.com/embed/D3Yh2NJWQ1s?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></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>6</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 &#8230; <a href="http://lukewaltzer.com/where-the-control-at/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href='http://lukewaltzer.com/where-the-control-at/jabulani-ball/' title='Jabulani Ball'><img width="300" height="194" src="http://lukewaltzer.com/wp-content/uploads/2012/05/Jabulani-Ball-300x194.jpg" class="attachment-medium alignleft wp-image-1715" alt="Jabulani Ball" title="Jabulani Ball" /></a></p>
<p><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 &#8230; <a href="http://lukewaltzer.com/viva-los-vuvuzelas/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 href='http://lukewaltzer.com/viva-los-vuvuzelas/vuvuzela/' title='Vuvuzela'><img width="300" height="225" src="http://lukewaltzer.com/wp-content/uploads/2012/05/Vuvuzela-300x225.jpg" class="attachment-medium alignleft wp-image-1712" alt="Vuvuzela" title="Vuvuzela" /></a></p>
<p><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 &#8230; <a href="http://lukewaltzer.com/1-day-to-the-cup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>http://www.youtube.com/watch?v=ymQ-fIwVnV8</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><iframe width="584" height="438" src="http://www.youtube.com/embed/MHtbb3yd9wM?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></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><iframe width="584" height="438" src="http://www.youtube.com/embed/MUW8wFOytiY?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></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>http://www.youtube.com/watch?v=63XeH5q8aKM</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><iframe width="584" height="438" src="http://www.youtube.com/embed/30rSHY9aFBI?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></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>http://www.youtube.com/watch?v=CzfC8FkuZcc</p>
<p>After tying Korea (on this Clint Mathis goal):</p>
<p><iframe width="584" height="438" src="http://www.youtube.com/embed/UfaAlXRl_So?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></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>http://www.youtube.com/watch?v=TQqSdn_9FEc</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><iframe width="584" height="438" src="http://www.youtube.com/embed/fLtT0imwdCQ?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></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>http://www.youtube.com/watch?v=AOCLXoSyqPU</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>5</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 &#8230; <a href="http://lukewaltzer.com/2-days-to-the-cup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 href='http://lukewaltzer.com/2-days-to-the-cup/2006-july-world-cup-soccer-final-with-steel-and-michelle/' title='2006 July - World cup Soccer final with Steel and Michelle'><img width="300" height="200" src="http://lukewaltzer.com/wp-content/uploads/2012/05/2006-July-World-cup-Soccer-final-with-Steel-and-Michelle-300x200.jpg" class="attachment-medium aligncenter wp-image-1709" alt="2006 July - World cup Soccer final with Steel and Michelle" title="2006 July - World cup Soccer final with Steel and Michelle" /></a></p>
<p><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: http://www.youtube.com/watch?v=b90gpqFp5Bw Holmes needs to bounce The Robot up &#8230; <a href="http://lukewaltzer.com/4-days-to-the-cup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>http://www.youtube.com/watch?v=b90gpqFp5Bw</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>http://www.youtube.com/watch?v=38T0BF2WAHk</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 &#8230; <a href="http://lukewaltzer.com/7-days-to-the-cup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>http://www.youtube.com/watch?v=z3WtXtNd1aU#t=1m12s</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/7-days-to-the-cup/feed/</wfw:commentRss>
		<slash:comments>2</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 &#8230; <a href="http://lukewaltzer.com/8-days-to-the-cup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>http://www.youtube.com/watch?v=ZTs2iwMqVMg</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>http://www.youtube.com/watch?v=scIRLyBgqMA</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 &#8230; <a href="http://lukewaltzer.com/perfection-and-history/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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.  &#8230; <a href="http://lukewaltzer.com/9-days-to-the-cup-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>http://www.youtube.com/watch?v=DbbsytHDp2o</p>
<p>These were amazing:</p>
<p>http://www.youtube.com/watch?v=-rW-lK9F6TU</p>
<p><iframe width="584" height="438" src="http://www.youtube.com/embed/hlYYP-QbiGU?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></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>http://www.youtube.com/watch?v=6R_iYLca2gc</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>http://www.youtube.com/watch?v=WtuC_nhTezA</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 &#8230; <a href="http://lukewaltzer.com/9-days-to-the-cup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>http://www.youtube.com/watch?v=Bq06QssMHk8</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 &#8230; <a href="http://lukewaltzer.com/lakers-vs-yawn-celtics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>4</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 &#8230; <a href="http://lukewaltzer.com/guerrillas-in-the-midst/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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://lukewaltzer.com/guerrillas-in-the-midst/peasant-guerrilla-warfare/' title='Peasant Guerrilla Warfare'><img width="300" height="225" src="http://lukewaltzer.com/wp-content/uploads/2012/05/Peasant-Guerrilla-Warfare-300x225.jpg" class="attachment-medium alignnone wp-image-1705" alt="Peasant Guerrilla Warfare" title="Peasant Guerrilla Warfare" /></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://lukewaltzer.com/guerrillas-in-the-midst/che-groom-edtech-revolutionary/' title='Che Groom - EdTech Revolutionary'><img width="300" height="300" src="http://lukewaltzer.com/wp-content/uploads/2012/05/Che-Groom-EdTech-Revolutionary-300x300.jpg" class="attachment-medium aligncenter wp-image-1706" alt="Che Groom - EdTech Revolutionary" title="Che Groom - EdTech Revolutionary" /></a><br />
<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>19</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 &#8230; <a href="http://lukewaltzer.com/the-luck-of-essien/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>http://www.youtube.com/watch?v=ZUWDJTHJkq8</p>
]]></content:encoded>
			<wfw:commentRss>http://lukewaltzer.com/the-luck-of-essien/feed/</wfw:commentRss>
		<slash:comments>3</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 and Family]]></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 &#8230; <a href="http://lukewaltzer.com/the-scariest-story-ever-or-the-tyranny-of-taxomony/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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://lukewaltzer.com/the-scariest-story-ever-or-the-tyranny-of-taxomony/where-the-wild-things-arecarols-face/' title='WHERE THE WILD THINGS ARE:Carol&#039;s face'><img width="300" height="223" src="http://lukewaltzer.com/wp-content/uploads/2012/05/WHERE-THE-WILD-THINGS-ARE-Carol-s-face-300x223.jpg" class="attachment-medium aligncenter wp-image-1699" alt="WHERE THE WILD THINGS ARE:Carol&#039;s face" title="WHERE THE WILD THINGS ARE:Carol&#039;s face" /></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, &#8230; <a href="http://lukewaltzer.com/write-the-future/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>http://www.youtube.com/watch?v=idLG6jh23yE</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>3</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 &#8230; <a href="http://lukewaltzer.com/profpacker/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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://lukewaltzer.com/profpacker/jim-groom-and-stephen-downes-getting-ready-for-the-edupunk-panel/' title='Jim Groom and Stephen Downes getting ready for the edupunk panel'><img width="243" height="300" src="http://lukewaltzer.com/wp-content/uploads/2012/05/Jim-Groom-and-Stephen-Downes-getting-ready-for-the-edupunk-panel-243x300.jpg" class="attachment-medium alignright wp-image-1696" alt="Jim Groom and Stephen Downes getting ready for the edupunk panel" title="Jim Groom and Stephen Downes getting ready for the edupunk panel" /></a><br />
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 &#8230; <a href="http://lukewaltzer.com/the_archandroid/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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><iframe width="584" height="329" src="http://www.youtube.com/embed/pwnefUaKCbc?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></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 &#8230; <a href="http://lukewaltzer.com/step-into-the-sensory-box/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2010/05/18/once-again-back-its-the-incredible/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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/"><a href='http://cac.ophony.org/2010/05/18/once-again-back-its-the-incredible/lumaxart-golden-guy-trophy-winner/' title='LuMaxArt Golden Guy Trophy Winner'><img width="300" height="300" src="http://lukewaltzer.com/wp-content/uploads/2012/05/LuMaxArt-Golden-Guy-Trophy-Winner-300x300.jpg" class="attachment-medium alignright wp-image-1702" alt="LuMaxArt Golden Guy Trophy Winner" title="LuMaxArt Golden Guy Trophy Winner" /></a><br />
</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 &#8230; <a href="http://lukewaltzer.com/youve-got-to-be-a-real-fat-man/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 href='http://lukewaltzer.com/youve-got-to-be-a-real-fat-man/00046-f/' title='00046 F'><img width="195" height="300" src="http://lukewaltzer.com/wp-content/uploads/2012/05/00046-F-195x300.jpg" class="attachment-medium alignright wp-image-1693" alt="00046 F" title="00046 F" /></a><br />
</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 &#8230; <a href="http://lukewaltzer.com/phil-jackson-is-a-fraud/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 <a href="http://sports.espn.go.com/espn/page2/story?page=jackson/051101">got away with this racist remark</a> 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>6</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 &#8230; <a href="http://lukewaltzer.com/city-of-refuge-and-treme/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 and Family]]></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 &#8230; <a href="http://lukewaltzer.com/830-pm/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 &#8230; <a href="http://lukewaltzer.com/the-name/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href='http://lukewaltzer.com/the-name/olly-olly-oxen-free-day-318-of-365/' title='Olly Olly Oxen Free, Day 318 of 365'><img width="300" height="224" src="http://lukewaltzer.com/wp-content/uploads/2012/05/Olly-Olly-Oxen-Free-Day-318-of-365-300x224.jpg" class="attachment-medium alignleft wp-image-1690" alt="Olly Olly Oxen Free, Day 318 of 365" title="Olly Olly Oxen Free, Day 318 of 365" /></a></p>
<p><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>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, &#8230; <a href="http://lukewaltzer.com/i-cant-quit-you-facebook/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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://lukewaltzer.com/i-cant-quit-you-facebook/brokeback-mountain-72/' title='brokeback mountain (72)'><img width="184" height="300" src="http://lukewaltzer.com/wp-content/uploads/2012/05/brokeback-mountain-72--184x300.jpg" class="attachment-medium alignright wp-image-1684" alt="brokeback mountain (72)" title="brokeback mountain (72)" /></a><br />
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:

 <a href="http://cac.ophony.org/2010/05/07/clay-shirky-at-the-2010-symposium/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2010/04/09/performing-diasporas-identities-in-motion/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2010/03/12/our-course-blog-will-eat-your-brains/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/12/17/blogsbaruch-semester-in-review-part-four-extra-curricular-blogging/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/12/16/blogsbaruch-semester-in-review-part-three-course-blogging/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/12/15/blogsbaruch-semester-in-review-part-two-fro-blogging/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/12/14/blogsbaruch-semester-in-review-part-one-triumph-and-tribulation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/11/30/just-launched-lexington-universal-circuit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/11/11/lessig-at-educause/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/10/08/studio-h/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/09/24/freshbloggers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>Two Larges at Lombardi’s</title>
		<link>http://cunypie.commons.gc.cuny.edu/2009/09/18/two-larges-at-lombardis/</link>
		<comments>http://cunypie.commons.gc.cuny.edu/2009/09/18/two-larges-at-lombardis/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 14:07:56 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
		
		<guid isPermaLink="false">http://cunypie.commons.gc.cuny.edu/?p=57</guid>
		<description><![CDATA[<p>Imagine a tall man, a shock of the blondest hair possible swept across his head, marching a large pie from one of the best joints in the Bronx across 20 or so rough blocks, destined for a park bench where he can munch while listening to opera.  Or, a young Latvian immigrant, recently arrived [...] <a href="http://cunypie.commons.gc.cuny.edu/2009/09/18/two-larges-at-lombardis/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Imagine a tall man, a shock of the blondest hair possible swept across his head, marching a large pie from one of the best joints in the Bronx across 20 or so rough blocks, destined for a park bench where he can munch while listening to opera.  Or, a young Latvian immigrant, recently arrived in Southern California, listening excitedly as a friend talks about this amazing pie, &#8220;with MEAT on top.&#8221; Or a kid growing up in Mid-Michigan, amidst a pizza culture dominated by the local chains Domino&#8217;s and Little Caesars, finding that there&#8217;s something unique and special in the thick dough and delectable sausage of the pies made at <a title="DeLucas" href="http://www.delucaspizza.com/" >DeLuca&#8217;s</a>, the local family Italian restaurant.  Or a transplant to Manhattan who is happy that he lives within delivery distance of the restaurant in which we sit, but who will not have a pie delivered because of what it loses in transit.</p>
<div id="attachment_58" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-58 " style="margin: 10px" src="http://cunypie.commons.gc.cuny.edu/files/2009/09/plainpie-300x225.jpg" alt="Plain pie at Lombardi's. Photh by Matt Gold" width="300" height="225" />
<p class="wp-caption-text">Our plain pie at Lombardi&#39;s. Photo by Matt Gold.</p>
</div>
<p>Last night at <a title="Lombardi's" href="http://www.firstpizza.com/" >Lombardi</a>&#8216;s, while the <a title="San Gennara" href="http://www.sangennaro.org/" >San Gennaro Festival</a> raged outside, I shared stories and two larges with the other charter members of CUNY Pie&#8211; Boone Gorges, Matt Gold, and Mikhail Gershovich.  The pies&#8211;one plain, one sausage and spinach&#8211;were very good, though not great. I got the sense that there wasn&#8217;t much craft in them, that they were a product of practiced motion more than passion.  That&#8217;s a totally understandable result from a place that&#8217;s been operating for more than 100 years, that serves locals, but also serves a lot of tourists.  I was most impressed with the sauce, in both its sweetness and the nature of its spread.  There was just the right quantity for it to gather when I folded my slice, which nicely concentrated its flavor.  The crust&#8211; though Boone argued that it could use &#8220;another 30 seconds&#8221;&#8211; brought the right amount of crunch. The sausage was forgettable.  Perhaps the plain could have used a touch more fresh basil.  I won&#8217;t complain, it was satisfying.</p>
<p>So was the conversation.  Beyond sharing our individual histories with pizza, we talked about parenthood, family, and future locations for our meetups.  Tontonno&#8217;s in Coney Island? Yes.  A spot to be named in Jersey? Perhaps.  Neopolitan in New Haven?  Not me.  (Let the Yalies eat it, I say).  Mostly, though, we talked about CUNY, the edtech universe, and our various projects.  We criticized, confessed, and we praised.  We stayed long after I finished that last slice (which happened to be the smallest of the plain pie&#8230; thanks, guys!), and the thought of ordering another pie to scarf down before departing probably crossed each of our minds.  Perhaps we should have.</p>
<p>Next time.  And, hopefully, you&#8217;ll join us.</p>
]]></content:encoded>
			<wfw:commentRss>http://cunypie.commons.gc.cuny.edu/2009/09/18/two-larges-at-lombardis/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.  

 <a href="http://dushtumay.sahawaltzer.org/2009/08/empathy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>
<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 [...] <a href="http://dushtumay.sahawaltzer.org/2009/08/update-from-dushtuville/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>
<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>
		</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 [...] <a href="http://dushtumay.sahawaltzer.org/2009/07/towards-a-dak-nam/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[</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. 
 <a href="http://dushtumay.sahawaltzer.org/2009/07/robys-big-screen-debut/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://dushtumay.sahawaltzer.org/2009/07/beautifuly-tired/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://dushtumay.sahawaltzer.org/2009/07/robys-born-day/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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, [...] <a href="http://cac.ophony.org/2009/06/19/posterous-online-publishing-made-easiery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://dushtumay.sahawaltzer.org/2009/06/oy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://dushtumay.sahawaltzer.org/2009/06/go-bulldogs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/06/09/the-2009-cuny-it-conference-managing-complexity/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href='http://cac.ophony.org/2009/06/09/the-2009-cuny-it-conference-managing-complexity/img-1894/' title='IMG 1894'><img width="300" height="225" src="http://lukewaltzer.com/wp-content/uploads/2012/05/IMG-1894-300x225.jpg" class="attachment-medium alignleft wp-image-1665" alt="IMG 1894" title="IMG 1894" /></a><br />
<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;

 <a href="http://dushtumay.sahawaltzer.org/2009/06/the-world-through-the-eyes-of-a-four-year-old/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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[
 <a href="http://dushtumay.sahawaltzer.org/2009/06/because-this-deserves-its-own-post/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<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.

 <a href="http://dushtumay.sahawaltzer.org/2009/06/kaya-kavi-philly-laurie-big-fun/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/05/29/towards-the-next-stage-of-edtech-at-cuny/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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><a href='http://cac.ophony.org/2009/05/29/towards-the-next-stage-of-edtech-at-cuny/an-adventure-in-technology/' title='An Adventure in Technology'><img width="300" height="225" src="http://lukewaltzer.com/wp-content/uploads/2012/05/An-Adventure-in-Technology-300x225.jpg" class="attachment-medium alignleft wp-image-1668" alt="An Adventure in Technology" title="An Adventure in Technology" /></a><br />
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"><br />
</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"><a href='http://cac.ophony.org/2009/05/29/towards-the-next-stage-of-edtech-at-cuny/spring-grass/' title='Spring Grass'><img width="300" height="209" src="http://lukewaltzer.com/wp-content/uploads/2012/05/Spring-Grass-300x209.jpg" class="attachment-medium alignleft wp-image-1669" alt="Spring Grass" title="Spring Grass" /></a><br />
</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"><a href='http://cac.ophony.org/2009/05/29/towards-the-next-stage-of-edtech-at-cuny/city-light-public-ownership-circa-1945/' title='City Light public ownership, circa 1945'><img width="198" height="300" src="http://lukewaltzer.com/wp-content/uploads/2012/05/City-Light-public-ownership-circa-1945-198x300.jpg" class="attachment-medium alignright wp-image-1670" alt="City Light public ownership, circa 1945" title="City Light public ownership, circa 1945" /></a><br />
</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


 <a href="http://cac.ophony.org/2009/05/26/jeff-jarviss-keynote-from-the-9th-annual-symposium/">Continue reading <span class="meta-nav">&#8594;</span></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;
 <a href="http://cac.ophony.org/2009/05/18/david-birdsells-symposium-closing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/05/09/gardner-teaches-part-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/05/08/gardner-teaches-part-3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/05/07/gardner-teaches-part-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/05/06/gardner-teaches-part-i/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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. [...] <a href="http://cac.ophony.org/2009/04/20/how-i-use-twitter-but-this-is-just-me/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/04/06/think-before-you-snark/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 href='http://cac.ophony.org/2009/04/06/think-before-you-snark/snark/' title='Snark'><img width="300" height="204" src="http://lukewaltzer.com/wp-content/uploads/2012/05/Snark-300x204.jpg" class="attachment-medium alignleft wp-image-1662" alt="Snark" title="Snark" /></a><br />
<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; [...] <a href="http://cac.ophony.org/2009/03/26/wet-spaghetti/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>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 [...] <a href="http://cac.ophony.org/2009/03/02/1000-1001-1002/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/02/17/facebook-owns-your-original-content-produced-on-or-shared-through-their-tubes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/02/02/guest-post-support-for-oral-communication-within-the-esl-curriculum-at-baruch-college/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/01/30/what-to-watch-for-super-bowl-edition/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2009/01/22/on-the-horizon/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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.
 <a href="http://cac.ophony.org/2009/01/08/students-today-are/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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.
 <a href="http://cac.ophony.org/2008/12/23/holiday-habenara-with-the-muppets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/12/08/in-which-we-provide-the-butt-for-your-jokes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/12/02/an-experiment-in-digital-storytelling/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/12/01/now-you-too-can-be-an-instructional-technologist/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/11/13/thinking-behind-a-redesign/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/11/05/post-election-thoughts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/10/22/recaptcha-the-essence-of-a-distributed-knowledge-network/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/10/06/communication-and-the-campaign/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/09/24/but-professssssor/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/09/22/baruch-college-teaching-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/09/12/presidential-tweets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 [...] <a href="http://cac.ophony.org/2008/09/10/triumphing-over-your-little-hater/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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)
 <a href="http://cac.ophony.org/2008/08/29/tsk-tsk/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>
	</channel>
</rss>
