<?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>Jefferson&#039;s Newspaper</title>
	<atom:link href="http://jeffersonsnewspaper.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeffersonsnewspaper.org</link>
	<description>A blog about information, education, and the (digital) humanities...</description>
	<lastBuildDate>Thu, 02 Feb 2012 16:01:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Tips for Using the WordPress Admin Bar with BuddyPress</title>
		<link>http://jeffersonsnewspaper.org/2012/tips-for-using-the-wordpress-admin-bar-with-buddypress/</link>
		<comments>http://jeffersonsnewspaper.org/2012/tips-for-using-the-wordpress-admin-bar-with-buddypress/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 15:47:18 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress network]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=1227</guid>
		<description><![CDATA[If you run a WordPress Network that uses BuddyPress, you are probably aware of the distinctions between the WordPress and BuddyPress admin bars (or in the latter case, the &#8220;buddy bar&#8221;), so we can jump right to the point: You are no longer using the buddy bar, and are now using the core admin bar; there is something you don&#8217;t like about this arrangement and you need to change it. Well, here are a few...]]></description>
			<content:encoded><![CDATA[<p><img src="http://jeffersonsnewspaper.org/wp-content/uploads/2012/01/helmets.png" alt="" title="Admin Bar vs. Admin Bar"  class="aligncenter size-full wp-image-1245" /><br />
If you run a WordPress Network that uses BuddyPress, you are probably aware of the distinctions between the WordPress and BuddyPress admin bars (or in the latter case, the &#8220;buddy bar&#8221;), so we can jump right to the point: You are no longer using the buddy bar, and are now using the core admin bar; there is something you don&#8217;t like about this arrangement and you need to change it. Well, here are a few quick tricks.</p>
<p><span id="more-1227"></span></p>
<p>Each of these snippets (with one noted exception) can be added to functions.php of your main blog theme or you can create a simple <a href="http://codex.wordpress.org/Writing_a_Plugin" title="Writing a plugin @ WP Codex">plugin</a>. </p>
<h4>Swap the BuddyBar for the Admin Bar</h4>
<p>If you somehow are still using the buddy bar, try one of the following methods. (You may also need to adjust your CSS slightly to accommodate the differences between the two admin bars.)</p>
<p>Here is the preferred BuddyPress method, which is simply added to wp-config.php:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/*
** Add the following to wp-config.php
** Removes BP admin bar and replaces it with the WP admin bar
*/</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span> ‘BP_USE_WP_ADMIN_BAR’<span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>If for some reason you find that the above method does not work, you may try adding the following to functions.php</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
** The following removes BP admin bar and replaces it with the WP admin bar
*/</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> remove_bp_adminbar<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
     remove_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wp_footer'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'bp_core_admin_bar'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">8</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     remove_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'admin_footer'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'bp_core_admin_bar'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     show_admin_bar<span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'after_setup_theme'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'remove_bp_adminbar'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h4>Remove something from the Admin Bar</h4>
<p>To remove a menu item, you just need to know its HTML div id. This example removes the WordPress logo and menu.  See <a href="http://codex.wordpress.org/Function_Reference/remove_node" title="remove_node @ WP Codex">remove_node()</a>.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
** The following removes the WordPress menu and logo
** wp-admin-bar-wp-logo is the div id in the menu HTML but we just use wp-logo 
** see http://codex.wordpress.org/Function_Reference/remove_node
*/</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> admin_bar_remove_this<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
     <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">;</span>
     <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">remove_node</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp-logo'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #009900;">&#125;</span>
     add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_before_admin_bar_render'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'admin_bar_remove_this'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h4>Adding something to the Admin Bar</h4>
<p>Similarly, you can add a new menu item to an existing HTML div id. Here we are adding a link to create a new category within the +New menu.  See <a href="http://codex.wordpress.org/Function_Reference/add_node" title="add_node @ WP Codex">add_node()</a>.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
** The following adds a link item to create a new &quot;Category&quot; within the &quot;+New&quot; menu
** wp-admin-bar-new-content is the div id in the menu HTML but we just use new-content 
** see http://codex.wordpress.org/Function_Reference/add_node
*/</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> admin_bar_add_this<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
     <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">;</span>
     <span style="color: #000088;">$newcat</span><span style="color: #339933;">=</span>get_site_url<span style="color: #009900;">&#40;</span> BP_ROOT_BLOG <span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/wp-admin/edit-tags.php?taxonomy=category'</span><span style="color: #339933;">;</span>
     <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">add_node</span><span style="color: #009900;">&#40;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
          <span style="color: #0000ff;">'parent'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'new-content'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Category'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'href'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$newcat</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #009900;">&#125;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_before_admin_bar_render'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'admin_bar_add_this'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h4>Make it Easier for Network Users to Create New Blogs</h4>
<p>The BuddyPress dev team has added Notifications and some other BP-specific features to the admin bar, but the link to &#8220;Create a new site&#8221; is still missing as of v. 1.5.3 (UPDATE: actually, this would be a WP issue, not BP; <a href="http://core.trac.wordpress.org/ticket/19862" title="Ticket 19862 @ WP Trac">track this issue here</a>). If you have a very active community, especially one that routinely creates new sites (e.g. a university course blog network), they will notice this absence. To add another complication, BuddyPress redirects wp-signup.php to the network homepage, meaning the default WordPress Network mode method for creating a new site is broken (UPDATE: <a href="http://buddypress.trac.wordpress.org/ticket/3941" title="Ticket 3941 @ BP Trac">track this issue here</a>). Luckily both of these are easy to fix.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*
** The following adds a link to &quot;Create a new site&quot; under &quot;My Sites&quot; menu
*/</span>
<span style="color: #000000; font-weight: bold;">function</span> admin_bar_create_blog_link<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
     <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">;</span>
     <span style="color: #000088;">$create</span><span style="color: #339933;">=</span>get_site_url<span style="color: #009900;">&#40;</span> BP_ROOT_BLOG <span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/blogs/create/'</span><span style="color: #339933;">;</span>
     <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">add_node</span><span style="color: #009900;">&#40;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
          <span style="color: #0000ff;">'parent'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'my-sites'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Create a new site'</span><span style="color: #339933;">,</span>
          <span style="color: #0000ff;">'href'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$create</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_before_admin_bar_render'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'admin_bar_create_blog_link'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">/*
** The following fixes the dashboard link for &quot;Create a new site&quot;
** By default, WordPress sends the user to wp-signup.php to create a site
** But wp-signup.php is redirected to the network homepage by BuddyPress as of 3.1+ and 1.5.3+ respectively
** This just filters that core behavior to use the BuddyPress link instead
*/</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_signup_location'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'bp_blog_creation_link'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> bp_blog_creation_link<span style="color: #009900;">&#40;</span><span style="color: #000088;">$old</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'bp_include'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
     <span style="color: #b1b100;">return</span> get_site_url<span style="color: #009900;">&#40;</span> BP_ROOT_BLOG <span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'/blogs/create/'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Feel free to make additional suggestions in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2012/tips-for-using-the-wordpress-admin-bar-with-buddypress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Why I Feel (Mostly) Hopeful About Open Internet Activism</title>
		<link>http://jeffersonsnewspaper.org/2012/why-i-feel-hopeful-about-free-internet-activism/</link>
		<comments>http://jeffersonsnewspaper.org/2012/why-i-feel-hopeful-about-free-internet-activism/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 21:06:21 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[In the News]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[internet history]]></category>
		<category><![CDATA[legislation]]></category>
		<category><![CDATA[mpaa]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[open web]]></category>
		<category><![CDATA[pipa]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[sopa]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=1152</guid>
		<description><![CDATA[I spend a lot of time reading and posting (on Twitter and elsewhere) about the politics of the Internet, particularly issues regarding online speech and the open architecture of the web. I am vocal about my positions on many &#8220;offline&#8221; political matters as well, and try to back them up with action, but there&#8217;s something about advocating for the web that feels more communal, more urgent, and maybe ultimately, more effective. I don&#8217;t mean this...]]></description>
			<content:encoded><![CDATA[<p><img src="http://jeffersonsnewspaper.org/wp-content/uploads/2012/01/MPAA-DoddOnSOPA.jpg" alt="MPAA Chairman Christopher Dodd on SOPA-PIPA" title="MPAA Chairman Christopher Dodd on SOPA-PIPA" /></p>
<p>I spend a lot of time reading and posting (on <a title="@ebellempire on Twitter" href="http://twitter.com/ebellempire">Twitter</a> and elsewhere) about the politics of the Internet, particularly issues regarding online speech and the open architecture of the web. I am vocal about my positions on many &#8220;offline&#8221; political matters as well, and try to back them up with action, but there&#8217;s something about advocating for the web that feels more communal, more urgent, and maybe ultimately, more effective. I don&#8217;t mean this in the illusory quasi-utopian sense put forward by techno-activists in the early days of the web (not that the days aren&#8217;t <em>still</em> early), but rather in the very concrete sense that the web&#8217;s history, technology and body of stakeholders are unusually harmonious.</p>
<p><span id="more-1152"></span></p>
<h4>Everyone has something at stake</h4>
<p>One important (and practically cliche) characteristic of the Internet, as it has evolved in recent years, is that <em>regular </em>users have increasingly become content producers. They have a real ownership stake in the way the web works and the rules that govern it. Linking, sharing, quoting and remixing are fundamental to the web, but also fraught with legalities (legitimate and otherwise), which is why things like <a title="Creative Commons" href="http://creativecommons.org/">CreativeCommons</a> and <a title="Electronic Frontier Foundation" href="https://www.eff.org/">EFF</a> have sprung up from within the industry to bring some order and balance to online copyright, while preserving and promoting the existing culture of openness. While citizens in &#8220;real life&#8221; (or whatever), through years of being beaten down, ignored, and propagandized, may be prone to letting harmful and irrational legislation pass unchallenged, those of us who create content on the web frequently respond to power-grabs, injustices and legislative threats with an immediacy that is uncommon offline. This perhaps reflects the &#8220;right now&#8221; nature of the network. But I think this immediacy is also related to the fact that many of us understand just how fragile the web actually is (technically, legally and culturally), and how easily it could be fundamentally changed or even destroyed by the rash actions of the ill-informed and/or ill-intentioned.</p>
<h4>Internet Enforcers</h4>
<p>While there is ample room for debate and disagreement over tactics and ethics, I find in web protests like those of <a title="Anonymous (group) @ Wikipedia" href="http://en.wikipedia.org/wiki/Anonymous_%28group%29">Anonymous</a> or the <a title="Cook's Source infringement controversy @ Wikipedia" href="http://en.wikipedia.org/wiki/Cooks_Source_infringement_controversy">Reddit-led mobbing of Cook&#8217;s Source</a> an undeniably populist and democratic spirit. Many -  notably the music and film industries &#8211; have complained that the Internet generation has an outgrown sense of entitlement. There may be some truth to that, especially when it comes to pirated content, but all in all, the web&#8217;s &#8220;power users&#8221; have also displayed a very sharp sense of justice, an affinity for the theater of public relations, and a knack for rapid coordination. Imagine the world we might live in were offline political organizing so fast and effective. (There is, of course, the obvious dynamic of anonymity at play here, which is not to be discounted. But one could argue that is equally the case for any sufficiently large protest, on the web or on the street. Anonymity is what makes the mob a mob, and mobs can be blamed for acts of brutality as readily as they can be credited for acts of liberation.)</p>
<h4>&#8220;Go web young man!&#8221; (groan)</h4>
<p>While it&#8217;s beyond ridiculous to call the web &#8220;the wild west&#8221; or the &#8220;cyber-frontier&#8221; or whatever the hell people say or used to say with that newscaster-y blend of vague understanding and condescending doom, it&#8217;s still an apt metaphor (or at least one that&#8217;s good enough to indulge for the next few sentences).  The web really has always been about opportunity, possibility,  growth, and a great push into the unknown. As with the westward expansion of 19th century America, the web has seen it&#8217;s share of gold rushes (real and hysterical), fortunes made and lost, an array of ever-shifting economies, and an embrace of the classically-liberal capitalist ideal that markets (in the modern case: investors, developers, and users) will decide the natural order of things, distant legislators be damned. (Of course, laissez-faire societies are rife with all forms of collateral damage. Perhaps we should begin to regard the 20th century version of the music industry as the wild buffalo of the digital age.) As the colossus crawls west, possibilities emerge for the young and recede for the old. In this dead horse of a metaphor, the web is both the prairie and the railroad, the developers are the prospectors, and users the settlers (California is basically still California). The danger and the promise are one: only the <em>real frontiersmen</em></a> know how to get things done out in this wilderness of ones and zeros, and yet our so-called statesmen have failed to even commission themselves a Lewis and Clark (to clarify, I&#8217;m talking about <a href="http://www.miller-mccune.com/politics/sopa-debate-highlights-congresss-ignorance-38666/" title="SOPA Debate Highlights Congress’s Ignorance">this horse shit</a>).</p>
<h4>Industry is on our side for once</h4>
<p>The web/tech industry is historically rooted in openness and decentralization. Reading up on the history of the Internet and the web (see for example Johnny Ryan&#8217;s <a title="A History of the Internet and the Digital Future @ Amazon" href="http://www.amazon.com/History-Internet-Digital-Future/dp/1861897774"><em>History of the Internet and the Digital Future</em></a> or James Gleick&#8217;s <a title="The Information: A History, a Theory, a Flood @ Amazon" href="http://www.amazon.com/Information-History-Theory-Flood/dp/0375423729/"><em>The Information: A History, a Theory, a Flood</em></a>), you will see a recurrence of geeks (boy, am I tiring of that word lately) pushing back against authority, circumventing military protocol, skirting institutional bureaucracies, and escaping co-optation. The web and its core of makers have always pushed toward the fluid and open, and against the staid and stable. In many tech companies, one can almost detect a sort of <em>institutional</em> <em>joie de vivre</em>. Not to overstate or even fully accept such an assertion (corporations being profit-oriented legal constructs and not actual moral/emotional beings), but it makes sense in light of the fact that these companies are made up overwhelmingly of people who do what they do for a living because they would otherwise be doing it for free. The industry and it&#8217;s constituent parts have a shared interest in keeping the web as open as it was when they walked in the front door, and as fluid as it was when they were first seduced by its possibility.</p>
<p>Old media operates on a culture that could not be more opposed to that of the web, which is why they and their frighteningly-effective lobbyists have been cast (rightly) as enemies of the open web. Where the web fosters openness and decentralization, old media culture is one of centralization, hegemonic control, and hair-trigger litigation. For the most part, this is the culture of corporate America as a whole, but even the <em>giants</em> of the tech industry have a stake in maintaining an open, fair and free Internet. On the most obvious level, <a title="SOPA and PIPA @ EFF.org" href="https://www.eff.org/issues/coica-internet-censorship-and-copyright-bill">legislation like SOPA and PIPA</a> present a very real threat to the existing legal and technical foundations of the web, which is why web and tech companies, joining open web activists, have been waging a very public fight against them, even as politicians and old media outlets struggle (or perhaps refuse) to understand what&#8217;s actually being proposed. But perhaps less obvious to some is the longer term threat posed by such heavy-handed intervention. It&#8217;s not just that SOPA, PIPA, and the like threaten the web of today (curbing speech while propping up the decrepit media titans of yesteryear), it&#8217;s that it threatens the web of tomorrow, and a whole range of innovation and opportunities yet unknown. As such, open web activism has yielded an unlikely common interest that includes citizens of every type, free speech activists, software engineers, entrepreneurs, venture capitalists, lobbyists, universities and massive multinational corporations.</p>
<p>That&#8217;s quite an unusual alliance and frankly if we can&#8217;t make progress to protect the web with that constituency, then one has to wonder about the entire premise of representative democracy. But I&#8217;m hopeful that progress will be made in the coming years, and while attacks may continue, I don&#8217;t think the dynamic described above will change any time soon. As we look down the barrel of yet another absurd and borderline retarded election year, it just feels good to be hopeful about something.</p>
<p><em>These bills are scheduled to come to a final vote on January 24th, 2012. If you haven&#8217;t already (and maybe even if you have), visit <a href="http://americancensorship.org/">americancensorship.org</a>, <a href="http://fightforthefuture.org/">fightforthefuture.org</a> or <a href="https://www.eff.org/">EFF.org</a> to learn more about SOPA/PIPA and how you can help stop their passage. I know it&#8217;s a drag but you should really consider calling your representatives in Congress. Using a telephone. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2012/why-i-feel-hopeful-about-free-internet-activism/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrating from ContentDM to Omeka</title>
		<link>http://jeffersonsnewspaper.org/2011/migrating-from-contentdm-to-omeka/</link>
		<comments>http://jeffersonsnewspaper.org/2011/migrating-from-contentdm-to-omeka/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 13:47:46 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[contentDM]]></category>
		<category><![CDATA[csv import]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[library stuff]]></category>
		<category><![CDATA[omeka]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[tab delimited export]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=423</guid>
		<description><![CDATA[Seems like the Omeka forums get a lot of traffic from people looking to migrate from ContentDM to Omeka. I, personally, get inquiries about this all the time (for some unknown reason). So I figured I may as well share what I know about the process here so I can just send a link or you can find it on Google or whatever. It&#8217;s worth noting at the outset that I don&#8217;t know anything about...]]></description>
			<content:encoded><![CDATA[<p><img src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/08/box.png" alt="" title="box" width="630" height="auto" class="aligncenter size-full wp-image-1128" /><br />
Seems like the Omeka forums get a lot of traffic from people looking to migrate from ContentDM to Omeka. I, personally, get inquiries about this all the time (for some unknown reason). So I figured I may as well share what I know about the process here so I can just send a link or you can find it on Google or whatever. </p>
<p><span id="more-423"></span></p>
<p>It&#8217;s worth noting at the outset that I don&#8217;t know anything about generating ContentDM export files <del datetime="2011-09-23T13:48:55+00:00">(partially because even the ContentDM <em><a href="http://www.oclc.org/us/en/contentdm/support/default.htm" title="Good luck with this...">documentation</a></em> is proprietary, or at least hidden behind a login)</del>. But I do know that every time someone has sent me a cDM export file, it is in tab-delimited format (<strong>UPDATE:</strong> here is the <a href="http://www.contentdm.org/help6/collection-admin/exporting2.asp" title="Exporting to Tab-delimited Text Files @ ContentDM">Tab-delimited export documentation</a>), which is basically a plain text spreadsheet. I gather these spreadsheets can be produced pretty easily so I think we can start by assuming you already have the spreadsheet and need to prep it for import into Omeka, which will be done in this tutorial using the CSV Import plugin. If you are not already familiar with how that plugin works, check out the <a href="http://omeka.org/codex/Plugins/CsvImport" title="CSV Import plugin @ Omeka.org">documentation page at Omeka.org</a> before continuing.</p>
<h4>You probably need to use Excel</h4>
<p>First, open the tab-delimited spreadsheet in Microsoft Excel. You will later save this file in CSV format. If you prefer using non-MS spreadsheet software, you are probably out of luck. As far as I know, neither OpenOffice/LibreOffice nor Apple&#8217;s Numbers have an equivalent &#8216;Text-to-Columns&#8230;&#8217; functionality, which will be used in this process. </p>
<h4>Remove unwanted and problematic rows/columns, Rename column headers</h4>
<p>Once you have your spreadsheet open in Excel, go ahead and remove any ContentDM-specific administrative metadata, or anything else you don&#8217;t wish to carry over to Omeka during the migration. At this point, you should probably rename the column headings to something meaningful. This will help with the crosswalk step later.</p>
<h4>Breaking out semicolon-delimited values</h4>
<p>Next, you will want to check for columns having multiple entries within a single cell. At the very least, this will probably include the Subjects column (because archivists/librarians are <em>never</em> satisfied with assigning just one subject term&#8230; subject classification being the <a href="http://youtu.be/QRzcjw9l6xo" title="Lay's 'Betcha Can't Eat Just One' commercial, circa 1980s">Lay&#8217;s potato chip</a> of librarianship). By default, these multiple subjects will be separated by a semicolon (e.g. &#8220;Librarianship &#8212; Potato Chip Analogies; Librarianship &#8212; Puns; Librarianship &#8212; Personality Disorders;&#8221; ). Instead of copying each one of these entries into a new Subjects column, you can just use the &#8220;Data > Text to Columns&#8230;&#8221; feature in Excel. I recommend using a separate worksheet for this step as the new columns will overwrite your existing ones if you are not careful.</p>
<h4>Getting the File Path URLs</h4>
<p>So you&#8217;ve shaped up all the metadata on the spreadsheet. Now you need to define the path to the item file in ContentDM. This is probably the trickiest part to come up with on your own, especially if you are not so familiar with ContentDM. Basically, our starting point will be the cDM &#8220;Reference URL.&#8221; Those look something like this: <a href="http://images.ulib.csuohio.edu/u?/press,59" title="example of a ContentDM reference URL from the Cleveland Memory Project">http://images.ulib.csuohio.edu/u?/press,59</a>. Assuming you have a whole column of Reference URLs, you need to run a Find and Replace to create your file path (again, I recommend doing this in a separate worksheet so you don&#8217;t accidentally overwrite important data). Let&#8217;s begin.</p>
<p><strong>UPDATE:</strong> in ContentDM version 6+, <a href="http://www.contentdm.org/help6/custom/customize2ai.asp" title="GetFile @ ContentDM">ShowFile is replaced by GetFile</a>. Adjust the following instructions as needed (i.e. in the first Find and Replace, swap out showfile.exe with getfile.exe).</p>
<p>Start with something like:<br />
<code>http://images.ulib.csuohio.edu/u?/press,59</code></p>
<p>FIND this:<br />
<code>u?/</code><br />
&#8230; and REPLACE with this:<br />
<code>cgi-bin/showfile.exe?CISOROOT=/</code></p>
<p>Next, FIND this:<br />
<code>,</code><br />
&#8230;and REPLACE with:<br />
<code>&#038;CISOPTR=</code></p>
<p>So now we have something that looks like:<br />
<code>http://images.ulib.csuohio.edu/cgi-bin/showfile.exe?CISOROOT=/press&#038;CISOPTR=59</code></p>
<p>This is a working file path that can be used by the CSV Import plugin to ingest the item file along with the metadata record. </p>
<p>In some instances, you might need to tweak this process. For example, if your ContentDM installation includes JP2 or TIF files (or some other unfriendly image format) but you don&#8217;t want the hassle of building a custom display wrapper into your Omeka theme, you can append some additional query string parameters to your file URL. </p>
<p>So if you want ContentDM to serve up a JPG instead of a JP2 (or other&#8230;) file, add this to your file column<br />
<code>&#038;DMSCALE=100.00000&#038;DMWIDTH=1600&#038;DMHEIGHT=1600&#038;DMX=0&#038;DMY=0&#038;DMTEXT=&#038;REC=1&#038;DMTHUMB=0&#038;DMROTATE=0</code><br />
&#8230;using this Excel function (where A2 is the first column/cell in need of appending):<br />
<code>=CONCATENATE(A2,"&#038;DMSCALE=100.00000&#038;DMWIDTH=1600&#038;DMHEIGHT=1600&#038;DMX=0&#038;DMY=0&#038;DMTEXT=&#038;REC=1&#038;DMTHUMB=0&#038;DMROTATE=0")</code></p>
<p>Finally, you need to swap <em>showfile</em> with <em>getimage</em> in the file URL above by running one more find and replace in Excel.</p>
<p>So now, your file path looks like:<br />
<code>http://images.ulib.csuohio.edu/cgi-bin/getimage.exe?CISOROOT=/press&#038;CISOPTR=59&#038;DMSCALE=100.00000&#038;DMWIDTH=1600&#038;DMHEIGHT=1600&#038;DMX=0&#038;DMY=0&#038;DMTEXT=&#038;REC=1&#038;DMTHUMB=0&#038;DMROTATE=0</code></p>
<p>This will return a JPG file, which is pretty handy. <del datetime="2011-09-23T13:48:55+00:00">These additional parameters will vary by installation and file type. I don&#8217;t know what all of the parameters are or even what each one does; only that this usually works. Again, this is a case where actual ContentDM documentation would be really handy.</del> <strong>UPDATE: </strong>Keep in mind that this only works with image file types. For more details, check out the <a href="http://www.contentdm.org/help6/custom/customize2aj.asp" title="GetImage @ ContentDM">GetImage documentation</a>.</p>
<h4>Metadata Crosswalk</h4>
<p>It&#8217;s usually a good idea to plan out your <a href="http://en.wikipedia.org/wiki/Schema_crosswalk" title="Schema Crosswalk @ Wikipedia">metadata crosswalk</a> in advance, especially if you have multiple export files (and you should if your collection is bigger than a few hundred items; more on that later).  Remember that Omeka – out of the box – only uses the <a href="http://omeka.org/codex/Working_with_Dublin_Core" title="Working with Dublin Core @ Omeka Codex">first 15 Dublin Core elements</a>.  You may need to <a href="http://omeka.org/codex/Managing_Item_Types" title="Managing Item Types @ Omeka Codex">add a new Item Type</a> or install <a href="http://omeka.org/codex/Plugins/DublinCoreExtended" title="DublinCoreExtended @ Omeka Codex ">Dublin Core Extended</a> in order to find/create an appropriate home for your legacy/custom metadata in Omeka. </p>
<h4>Batching</h4>
<p>To avoid server timeouts, you should consider breaking your spreadsheets into manageable batches. I try not to import more than a few hundred items at a time, and even then one of the two servers involved is likely to timeout or throw an error or something. Keeping the batches small makes it easier to isolate problems, avoid import errors, and undo problematic imports.</p>
<h4>Using the CSV Import Plugin</h4>
<p>From here, just follow the standard instructions for using the <a href="http://omeka.org/codex/Plugins/CsvImport" title="CSV Import plugin @ Omeka.org">CSV Import plugin</a>.</p>
<h4>Bugs, Known Issues, and Limitations</h4>
<p>As of version 1.3, there are still some quirks. For example, your file path – that hideous long URL you worked so hard to create – will become the actual name of your imported/migrated file. In some instances, your files may be ingested sans file extension (e.g. .pdf, .jpg, .mp3), which can cause various headaches (though it&#8217;s worth noting that these files will generally display inline on your site, due to the way most Omeka themes handle media files, and will only break down when someone tries to download the file, in which case they would need to manually add the file extension). From time to time, you could have an import that hangs indefinitely, never finishing and never failing &#8212; and thus not easily &#8220;undo-able&#8221; (at least, the &#8220;Undo Import&#8221; button will not be visible). In such a case, you can manually create that button by entering the following URL pattern into your address bar: </p>
<p><code>http://[PATH TO YOUR OMEKA INSTALLATION]/admin/csv-import/index/undo-import/id/[IMPORT ID]</code> </p>
<p>&#8211; this is on the plugin documentation page by the way, as are several other points in this tutorial. </p>
<p>One of the biggest limitations of the CSV import strategy is that you will probably have issues migrating compound objects and other multi-file items, primarily because of the way ContentDM formats the export file and serves compound objects online and partially due to limitations in the way the plugin works with Omeka. Basically, you need all the files for an item to be in the same row as all of the other item-level metadata (e.g. in columns like &#8220;File 1,&#8221; &#8220;File 2,&#8221; &#8220;File 3,&#8221; etc). And there is currently no way to use the CSV Import plugin to assign file-level metadata. For example, if you had a postcard in your ContentDM collection and it had distinct metadata for each side (say, for front.jpg and verso.jpg), along with general metadata for the object as whole, something is going to be lost in the migration without some serious elbow grease.</p>
<p>The <a href="https://groups.google.com/forum/#!searchin/omeka-dev/csv" title="CSV search results @ Omeka Dev">Omeka Dev forums</a> are the best place to report bugs, inquire about error messages, discuss workarounds, and submit patches. The general <a href="http://omeka.org/forums/" title="Omeka Forums">Omeka Forums</a> are also great for more basic questions; happily, most questions get answered in fairly short order. <em>Please do not post support questions here.</em> Please <em>do</em>, however, feel free to leave general comments, suggestions for improvement, requests for clarification, etc.</p>
<p>IMAGE NOTE: poorly Photoshopped post image contains assets by multiple artists and designers, including the amazing &#8220;Bob&#8221; sketch from <a href="http://twinpeaksarchive.blogspot.com/2007/07/exclusive-matt-haley-interview.html" title="Matt Haley interview @ Twin Peaks Archive">Matt Haley&#8217;s unreleased but totally awesome sounding <em>Twin Peaks: Season 3</em> graphic novel</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2011/migrating-from-contentdm-to-omeka/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Albert Porter&#8217;s Revenge: a videogame concept</title>
		<link>http://jeffersonsnewspaper.org/2011/albert-porters-revenge-a-videogame-concept/</link>
		<comments>http://jeffersonsnewspaper.org/2011/albert-porters-revenge-a-videogame-concept/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 00:36:12 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Albert Porter]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[Cleveland]]></category>
		<category><![CDATA[Cuyahoga County]]></category>
		<category><![CDATA[highways]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[urban design]]></category>
		<category><![CDATA[videogames]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=1084</guid>
		<description><![CDATA[The following is from &#8220;Cleveland Stories: True Until Proven Otherwise,&#8221; a project of the Kent State University Cleveland Urban Design Collaborative. The concept is by me and the illustrations by Gauri Torgalkar (CUDC).  The complete illustrated videogame concept for Albert Porter&#8217;s Revenge is currently on display at Cleveland Institute of Art Reinberger Galleries now available in print, along with other great Cleveland stories. Check it out! Albert Porter is one of Cleveland&#8217;s great folk villains....]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1085" title="Porter-cement" src="http://jeffersonsnewspaper.org/wp-content/uploads/2011/04/Porter-cement-e1303688158754.jpg" alt="" width="624" height="457" /></p>
<p><em>The following is from &#8220;<a title="Cleveland Stories @ CUDC Blog" href="http://www.cudc.kent.edu/blog/?p=1658">Cleveland Stories: True  Until Proven Otherwise</a>,&#8221; a project of the Kent State University  <a title="CUDC" href="http://www.cudc.kent.edu/index.html">Cleveland Urban Design Collaborative</a>. The concept is by me and the  illustrations by Gauri Torgalkar (CUDC).  The complete illustrated videogame concept for Albert Porter&#8217;s Revenge is <del datetime="2011-11-01T20:20:11+00:00">currently on display at Cleveland Institute of Art Reinberger  Galleries</del> now available in print, along with other great Cleveland stories. <a href="http://clevelandstorybook.wordpress.com/book/" title="Cleveland Stories: True Until Proven Otherwise @ CUDC">Check it out!</a></em></p>
<p><span id="more-1084"></span>Albert Porter is one of Cleveland&#8217;s great folk villains. His legend is writ large, but fuzzy, in the city&#8217;s history, cultural consciousness, and built landscape. I&#8217;ve met few Clevelanders who recognize the name of Albert Porter; those who do invariably hold him in fuming contempt. For many others, those who&#8217;ve never heard his name but know his work, he&#8217;s &#8220;that guy!&#8221; &#8212; the long-serving Cuyahoga County Engineer (1943-1976) responsible for carving highway overpasses through working class and ethnic neighborhoods; the one who, though it was approved and paid for by citizens, killed the downtown subway; the one who wanted to tear down the Guardians of Transportation &#8212; &#8220;monstrosities&#8221; in Porter&#8217;s view; the one who tried to build a highway through the Shaker Lakes, only to be turned back by a klatch of &#8220;little old ladies in white shoes&#8221; (at least according to the legend, though the truth is more complicated).</p>
<p>Albert Porter is Cleveland&#8217;s Mayor Daley (albeit less effective and far less frequently admired): a Democratic party boss, a presidential candidate, a political force seemingly unstoppable, though not immune to his own hubris. His career spanned the post-war decades so formative in the development of US car culture, the proliferation of regional highways, the rise of suburbs, white flight, the stagnation and decline of once-great industrial cities.  Albert Porter is Paul Bunyan, looming over the cityscape. His axe, a bag of cement; his blue ox, a Democratic ass; his unconquered forest, a loosely connected expanse of (sub)urban and industrial nodes.</p>
<p>Albert Porter&#8217;s Revenge is a video game concept designed to explore not just the legend of Porter, but also the concepts and the consequences of political power, civil engineering and urban design.</p>
<p>The game&#8217;s title, intentionally provocative and playful, is meant to convey Porter&#8217;s often-threatening demeanor. It is interpretively fluid and morally ambivalent. &#8220;Revenge&#8221; for Porter comes in many flavors and depends on each player&#8217;s perspective and in-game decisions.  For some players, revenge may come as historical redemption for a man who, with few precedents to consult, was tasked with basically inventing an automobile-centric transit system for northeast Ohio. For others, Porter’s revenge may come as vicarious retribution against political opponents and environmental obstructionists, seeing, if they wish, algorithmic proof of “liberal” naiveté.  Those who participate in the oral tradition that keeps Porter’s infamy alive will simply enjoy lampooning an opponent who was at once untouchable and famously insecure.</p>
<p>The player takes on the role of Albert Porter and has two primary goals: building and improving the Northeast Ohio highway infrastructure, while staying in power for as long as possible. Underlying each of these goals is a complex system of rules, competing interests, environmental, cultural, and economic variables, and metrics of success and failure. Importantly, the rules of the game, as well as key historical conflicts, emerge organically as the game progresses; in an experience mirroring Porter&#8217;s own, there is no tutorial, just a vaguely-defined mission based on economic analyses of a given district or region.</p>
<p>For example, one &#8220;level&#8221; in the game may be to construct an efficient network of roads connecting the east side Heights to the city core, inner belt and outlying highways. The player is free to do so however they choose, but each action incurs measurable consequences. Should the player build through the parklands of Shaker Heights, city leaders and residents in that historic and politically-connected suburb will revolt, threatening legal action, and carrying out high-profile political protest. Pushing on despite resistance involves varying levels of risk. Each district, suburb, or neighborhood has it&#8217;s own profile, including descriptive and demographic information and characteristic metrics based in classic role playing games (e.g. Wealth +5, Stability +6, Historical Significance +8, Political Savvy +10, Biodiversity +3, etc.) which the player must analyze to calculate the odds of his or her own success.  While building through the Heights is a political challenge, constructing a turnpike through rural areas, for example, may be a political and economic boon.</p>
<p>Like the various municipal and demographic units throughout the region, Albert Porter himself has a profile consisting of similar status metrics, each of which respond dynamically to player actions.  For example, successful completion of a large-scale construction project may result in increases in Labor Support, Campaign Contributions, and Political Clout.  Conversely, that same project could bring with it decreases in Legacy and Popular Support, as well as other areas of region-wide concern, such as Environmental Health, Economic Health, Cultural Harmony, and Population Stability.</p>
<p>The consequences of key actions will vary to the degree that they have a known precedent in local history, civil engineering, and demographic studies. These consequences will not only impact the player’s profile, but will also be acted out visually in a number of ways.  If a highway overpass is constructed through the center of the Tremont neighborhood, for example, players will see the houses and businesses being seized and demolished via eminent domain, and watch as the population moves centrifugally away from the new structure, while the once-singular place will split into two or more new districts, with adjusted physical, cultural, and economic characteristics.</p>
<p>In instances where the player “stumbles across” specific historical events, they will be treated to interactive infographics and situation profiles, “cut scenes” and “boss battles.”  Cut scenes will include cinematic presentation of evocative primary source materials (e.g. local newspaper headlines, archival photographs, TV news footage, etc.) that reinforce the historicity of the event. Likewise, players will be able to interact with various other sources of information, including raw news coverage, highway impact studies, oral history interviews, and brief historic essays. In some cases, players will see computer-generated imagery that combines existing or historical landscapes with their own proposed construction plan (e.g. a freeway running though the Shaker Lakes), addressing “what if?” scenarios.</p>
<p>Boss battles may play out according to the historically-informed script or, if the player has built a strong enough profile for him or herself, they may be able to “defeat history” to carry out plans that the real Albert Porter failed to implement.  Such battles might include the Shaker Lakes Freeway Fight (wherein Porter takes on the little old ladies and their high-powered lawyers, racking up “kills” of rare birds and other wildlife along the way), the Guardians of Transportation fight (Porter must smash the art deco sculptures on the Hope Memorial Bridge while fending off bespectacled preservationists led by Bob Hope himself, whose father was one of the stone masons on the initial construction and for whom the bridge was rechristened in the 1980s), and the Downtown Subway fight (Porter must balance, perhaps in a motion-sensing minigame, the competing interests of the public with those of Higbee’s and Halle’s department stores; the stores fought tooth and nail to prevent one another from having a stop on the proposed route, ultimately helping to kill the project altogether).</p>
<p>Depending on how the game is played, each player’s in-game choices will reveal important lessons about history (not just facts but it’s value, meaning, and construction both locally and nationally), displaying the trial and error nature of public policy-making, and engaging complex systems of political power, economics, and urban planning. In the end, players will be left with as many questions as answers, addressing not just the above concerns but also revealing their own values.</p>
<p>What are the connections between urban, suburban, and rural areas and how does that impact our infrastructure priorities and outcomes?  Is there an environmentally sound way to build highways and other transit infrastructure? Is it somehow better to build a highway through an impoverished and minority-populated urban district than to build the same through a wealthy suburb? (The game, like history, tells us that it is certainly easier, but the reasons why leave much room for discussion). Was Porter, and by extension the player, the victim of an economic and political ecosystem in which there really were few “right” choices to be made. Or was he (both Porter and the player him or herself) just an asshole? This is not a flippant question. If a skillful and conscientious player can navigate this complex of competing interests and interwoven systems, dutifully constructing highways while minimizing harm, then perhaps we may continue to regard Porter as a great villain of Cleveland lore; if not, perhaps we reevaluate his legacy as one of disastrous but forgivable experimentation.</p>
<p><em>This essay appears in Cleveland Stories: True Until Proven Otherwise (Urban Infill, Volume 4), Kent State University Press, 2011.</em> &#8212; <a href="http://www.amazon.com/Cleveland-Stories-proven-otherwise-Infill/dp/1607433729/ref=sr_1_1?ie=UTF8&#038;qid=1319547610&#038;sr=8-1" title="Cleveland Stories: True Until Proven Otherwise @ Amazon.com">available at Amazon.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2011/albert-porters-revenge-a-videogame-concept/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On SxSW Interactive</title>
		<link>http://jeffersonsnewspaper.org/2011/on-sxsw-interactive/</link>
		<comments>http://jeffersonsnewspaper.org/2011/on-sxsw-interactive/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 02:08:31 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[sxsw]]></category>
		<category><![CDATA[sxswi]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=1055</guid>
		<description><![CDATA[I recently had the surprising privilege of attending South by Southwest Interactive (SxSWi) in Austin, Texas. For those of you in the know, SxSW needs no introduction.  In its 25 years, it has grown from a small local festival to a global industry conference covering music, film, and technology (the latter being the &#8220;Interactive&#8221; part, which starts a few days prior to the big music and film fest). I&#8217;m not going to write much in...]]></description>
			<content:encoded><![CDATA[<p>I recently had the surprising privilege of attending South by Southwest Interactive (SxSWi) in Austin, Texas. For those of you in the know, SxSW needs no introduction.  In its 25 years, it has grown from a small local festival to a global industry conference covering music, film, and technology (the latter being the &#8220;Interactive&#8221; part, which starts a few days prior to the big music and film fest). I&#8217;m not going to write much in terms of &#8220;reviewing&#8221; the conference, as this is my first year in attendance and because there are literally thousands of such posts around the web from real journalists and &#8220;insiders.&#8221;  Instead, I just want to share a few tips and experiences, and perhaps a few things I learned while I was there.</p>
<h4><span id="more-1055"></span>Travel and Registration</h4>
<p>First of all, I cannot say how important it is to plan your travel in advance. Not only will you save (your organization) a couple hundred bucks with &#8220;early bird&#8221; registration, you will also have a decent shot at booking an affordable downtown hotel (or other spot, see below). Airfare is also obviously cheaper &#8211; by a truly huge amount, like up to 50% &#8211; when booked even a month or two in advance. You can save some more money by arriving in Austin a day or so before the conference begins (The conference began on Friday and I got in at 11:45pm on Wednesday night, saving myself a few bucks on travel that more than zeroed out the extra night&#8217;s accommodations; this also gave me a full bonus day to pick up my badge, get to know the city and check in with some local friends). I would advise against renting a car for reasons I will get to later.</p>
<h4>Accommodations</h4>
<p>As I implied above, downtown hotels get to be scarce and expensive during SxSW (aka &#8220;south by&#8221; to Austinites). Luckily, my savvy travel companion managed to find alternative accommodations via <a title="AirBnB" href="http://www.airbnb.com/">Air B n&#8217; B</a>, a service that facilitates vacation rentals, usually in the form of apartments, condos, and studio spaces. Guests and hosts each have public profiles and ratings, which helps in making a your choice. We managed to house 4 people comfortably for less than $100 per night <em>total</em> (yep, around $25 per person per night).  The location, about 4 miles from the conference center was pretty good; I imagine rates go up the closer you are to downtown, but from what I can tell, they are still really really affordable (at least in comparison to downtown hotels).</p>
<h4>Getting around Austin</h4>
<p>As I mentioned, our place was a few miles from downtown, but that never became a problem, even without cars.  <a title="Capital Metro Transit" href="http://www.capmetro.org/">Bus service in Austin</a> is excellent from what I saw. Plenty of coverage, regular service throughout the day and late into the night, and an all-day pass only costs $2 (perspective for the bus-averse: an all-day pass in my neighborhood is $4.50). The buses go everywhere you want to be and almost as quickly as driving; there&#8217;s even a $1 shuttle to and from the airport.  Cab service is also abundant downtown and by call-ins, though it can be pretty hard to flag down a cab later in the evening, when the streets are flooded with drunk people in need of a ride (I&#8217;m told getting a cab to the airport from downtown is also sketchy during SxSW, as some drivers prefer the bulk take of quick and dirty fares, and will turn you down or overcharge; in other words, plan to use the airport shuttle provided by CapMetro if you are leaving before the end of the conference).</p>
<p>I did most of my traveling around Austin via a rented bike (most(?) of the indie bike shops, instead of officially renting, will sell you a bike with a &#8220;guaranteed buyback&#8221; minus a few bucks a day; I got mine from the nice people at <a title="Peddler's Bike Shop, Austin TX" href="http://www.peddlerbike.com/">Peddler&#8217;s</a>).  The city is pretty bike-friendly, though bike lanes do come and go frequently and inexplicably. In some areas (on my route at least), it was preferable to jump onto the sidewalk, but watch out for the telephone poles, street signs, and fire hydrants, all of which tend to be placed dead center in the middle of the sidewalk. It makes riding a bike on the sidewalk sometimes feel like a cross between downhill slalom and taking a motorcycle license exam. The road is usually fine, but I would recommend against trying to &#8220;claim your rights&#8221; in the higher traffic areas outside downtown.  In any case, riding a bike is certainly a feasible option if you are up to it and the city seems to be invested in making Austin one of the more bike-friendly cities in the nation.</p>
<p>Even being in less than ideal &#8220;winter shape,&#8221; riding 8-10 miles per day was not only fairly easy, it was one of the highlights of my trip. The average temperature in Austin in March is somewhere in the high-60s/mid-70s. Coming from colder climes, it was nice to spend some time outdoors, not only for the weather and the exercise, but because it really let me get to know the city intimately and quickly, and prevented me from falling into the state of fuzziness that sometimes comes with extended conference travel.</p>
<h4>Food, Entertainment, and Parties</h4>
<p>There&#8217;s plenty to do in Austin, even without a badge. <a title="6th Street, Austin, TX" href="http://www.6street.com/6s_pg_about.htm">W. Sixth Street</a>, aka &#8220;the Drag,&#8221; is really the center of the city&#8217;s entertainment district, and is really a big part of SxSW activity.  There are tons of bars, restaurants and clubs on the strip, catering to an array of tastes.  In my view, while it was definitely a fun place to hang out during the conference, I would probably find it a bit too fratty and clubby if I lived in Austin.  Try to explore other areas as much as you can.  There is live music happening all over the city and plenty of off-the-grid weirdness to take in (The Capital building is also kind of cool, but, whatever&#8230;).  I spent an afternoon on the other side of the tracks (actually the other side of the freeway overpass), hanging around East 6th, which was a little seedier, a little artier, and a little more punk rock, which suits me fine.  I especially liked the coffee shop that served &#8220;moonshine&#8221; and the caravan of circled up buses-turned-semi-legal-food-trucks (<a title="Cock Sparrer @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Cock_Sparrer">Cock Sparrer</a> was playing on the lot PA, so you know it&#8217;s legit).</p>
<p>So far, I haven&#8217;t really mentioned anything specific to SxSW; you could do all of this stuff in Austin any time.  But during the conference, there is definitely more going on, and some of it requires a SxSW badge.  I went to two parties (that I know of) that were sponsored by large tech/media companies.  A badge will not only get you in the door, but might also get you some free drinks and swag.  Without planning on it, I managed to see some pretty good bands for free just by happening upon sponsored parties (Ted Leo/No Age/Thee Oh Sees/Mister Heavenly being my favorite <a title="T.O.S. Violation at the Mohawk" href="http://www.mohawkaustin.com/events/26461">lineup</a>). Sadly, I missed the <a title="Comedy Death Ray Radio" href="http://www.earwolf.com/show/comedy-death-ray-radio-scott-aukerman">Comedy Death Ray Radio</a> party, one of many awesome looking comedy events I failed to attend for some reason.</p>
<p>My travel companion was (and is) the founder of a tech startup, so he used the parties for more directed networking, while I just kind of chatted up whoever would talk to me, which turned out to be a lot of people actually.  Locals and conference-goers alike were very friendly and quick with the business cards, which still seems a bit foreign to me, but when in Rome and all that. I handed out more business cards in 6 days than I normally would in 6 months (and, by the way, got some nice comments on the style of my cards, which I designed myself for the first time, hooray for me; one guy even said, &#8220;this is the best university business card ever&#8221; to which I happily explained how I&#8217;d gone rogue on the cards, but I digress into shameless bragging). Although I&#8217;m not a particularly outgoing person, there was definitely an air of camaraderie that seemed to make walking up to total strangers seem okay.  It might have been all the free booze.</p>
<h4>At the Conference</h4>
<p>I&#8217;ve heard a lot of people rumbling about how SxSW Interactive has become too big, too commercial, how it has lost some of the intimacy and communal feeling that made it so beloved. I can&#8217;t really speak to that since it was my first year, but it seemed fine to me &#8211; great in fact. I mean, it was a huge conference with something like 30K attendees (not counting the film and music badge-holders, a demographic orders of magnitude larger). So it probably has lost something in the process of growing so large, but whatever; I&#8217;ll leave that conversation to SxSWi veterans. My biggest complaint was that, while most sessions were clustered in or around the Austin Convention Center, a few were held so far out of the way on the other side of town that attending them was not an option.</p>
<p>So what did I learn? It&#8217;s really hard to say with any degree of detail. I had some great conversations with some really interesting people. I feel like I got in touch with a community and culture that previously seemed almost hypothetical to me. There were lots of panel discussions and speakers, some of whom I had heard of (like <a title="Matt Mullenweg Interview: The Future of WordPress" href="http://schedule.sxsw.com/events/event_IAP000438">Matt Mullenweg</a>, <a title="Keynote: Christopher Poole" href="http://schedule.sxsw.com/events/event_IAP000001">Christopher Poole (m00t)</a>, <a title="Reality is Broken: Why Games Make Us Better" href="http://schedule.sxsw.com/events/event_IAP000248">Jane McGonigal</a>, <a title="Keynote: Seth Priebatsch" href="http://schedule.sxsw.com/events/event_IAP000325">that SCVNGR guy</a>, <a title="Jeffrey Zeldman's Awesome Internet Design Panel" href="http://schedule.sxsw.com/events/event_IAP6243">Jeffrey Zeldman</a>) and others I had not (like people from W3C, and <a title="Drawing Back the Curtains on CSS Implementation" href="http://schedule.sxsw.com/events/event_IAP6628">CSS3</a> and <a title="The Politics Behind HTML5" href="http://schedule.sxsw.com/events/event_IAP7300">HTML5</a> working groups).  The sessions were all pretty interesting and impressive in their own rite. I especially enjoyed the <a title="SXSW Librarians Meetup @ Flickr" href="http://www.flickr.com/photos/shieldss44/5524685393/">librarian meetup</a>, the sessions on educational gaming, and the various panels about the politics and processes behind HTML/CSS standards-making.</p>
<p>I&#8217;m not sure about the exact numbers but there seemed to be between 20-40 sessions per slot, meaning there were always hard choices to be made when working out my schedule. Sometimes I picked right; sometimes I didn&#8217;t.</p>
<h4>Audio from SxSWi</h4>
<p>Lucky for me (and you), anyone can listen to pretty much any of the more prominent panels, sessions, and keynotes by scouring through the massive schedule and clicking through to the detailed view. This is great because now I feel no pressure to actually describe any of the sessions. Just check it out yourself. I&#8217;ll be digging though this stuff for months.  I just listened to the excellent (and important) Al Franken talk, which I missed the first time around. I&#8217;m not so sure how well some of these will hold up without visuals.  Either way, it&#8217;s great to have them available.  Here are a few you might want to check out first.</p>
<p>Al Franken: <a title="An Open Internet: The Last, Best Hope for Independent Producers" href="http://schedule.sxsw.com/events/event_IAP000380">An Open Internet: The Last, Best Hope for Independent Producers</a></p>
<p>Jane McGonigal: <a title="Reality is Broken: Why Games Make Us Better" href="http://schedule.sxsw.com/events/event_IAP000248">Reality is Broken: Why Games Make Us Better</a></p>
<p>*Panel: <a title="The Politics behind HTML5" href="http://schedule.sxsw.com/events/event_IAP7300">The Politics behind HTML5</a></p>
<p>*Panel: <a title="Drawing Back the Curtains on CSS Implementation" href="http://schedule.sxsw.com/events/event_IAP6628">Drawing Back the Curtains on CSS Implementation</a></p>
<p>More audio at: <a title="SxSW Schedule" href="http://schedule.sxsw.com/">http://schedule.sxsw.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2011/on-sxsw-interactive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Acronyms and Initialisms My Library Degree Failed to Teach</title>
		<link>http://jeffersonsnewspaper.org/2011/acronyms-and-initialisms-my-library-degree-failed-to-teach/</link>
		<comments>http://jeffersonsnewspaper.org/2011/acronyms-and-initialisms-my-library-degree-failed-to-teach/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 08:38:21 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[curriculum]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[graduate school]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[MLIS]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=886</guid>
		<description><![CDATA[I&#8217;ve been told many times since completing my M.L.I.S. that most skills related to library and archival work are developed on the job.  In fact, I realized about halfway through my degree program that my professional training would continue well after grad school. Not unlike other professional-academic hybrid programs, library school provided a sufficient foundation, but the bigger challenges and learning experiences came during my practicum and in my daily work, as well as in...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been told many times since completing my M.L.I.S. that most skills related to library and archival work are developed <em>on the job</em>.  In fact, I realized about halfway through my degree program that my professional training would continue well after grad school. Not unlike other professional-academic hybrid programs, library school provided a sufficient foundation, but the bigger challenges and learning experiences came during my practicum and in my daily work, as well as in the various (un)conferences and workshops I&#8217;ve attended and professional development courses I&#8217;ve elected to take since graduation.  In many ways, this suits the overall learning style and personality of the &#8220;typical&#8221; librarian or archivist (without getting onto a tangent, I think it&#8217;s safe to assume that most librarians would <em>consider themselves </em>to be relatively eclectic and prolific learners).  Generally, this approach to learning is indeed a very comfortable one for me.  While I enjoyed the rich academic world of the humanities as an undergrad &#8211; exploring ideas through research, reading and writing &#8211; library and information science requires a higher degree of  hands-on experience and purposeful technical training.  Sure, LIS programs include conventional graduate reading seminars, research papers, etc. But unlike, say, history, where a historian-in-training may expect to use and hone these skills over the course of a long career in scholarly research and writing, the average librarian or archivist will not be publishing books, writing for academic journals, or conducting original research.  Information professionals certainly need an academic, scholarly background, but I&#8217;m not sure I consider them (us) to be academics or scholars in the usual sense.  We have too many responsibilities, too many constituencies, too many rules and protocols, and too many acronyms and abbreviations.</p>
<p><span id="more-886"></span>Though we know information work is highly technical, it seems most library and information science programs are not &#8212; even when the faculty are involved in cutting edge technical research.  The programs are relatively short, culminating after just 1-2 years &#8212; not much time, especially considering that, unlike most other graduate programs, LIS students are generally starting from scratch with degrees in unrelated fields.  As such, the curriculum is broad but mostly shallow, save for some specialized tracks and doctoral programs. The following is my shortlist of abbreviations and acronyms that I&#8217;ve come to view as important to my work in public/digital history, digital humanities, and educational technology.  I don&#8217;t work in a library exactly, but I know firsthand that many of these are also important in that setting as well.</p>
<p>&nbsp;</p>
<p><strong>API</strong><br />
<em> Application Programming Interface</em><br />
APIs connect different platforms and programs, most often via established functions and methods.  Twitter, Facebook, Flickr, Google and many other web services provide open APIs that allow you to embed, feed, and connect with their services on your own site or application.  Operating systems, content management systems (WordPress, Drupal, dSpace, etc.), game engines, and programming languages (Ruby on Rails, jQuery, etc.) all have APIs that allow programmers to tap into, customize and extend functionality.</p>
<ul>
<li><a title="API @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Application_programming_interface">API @ Wikipedia</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>XML </strong><br />
<em> eXtensible Markup Language</em><br />
XML is the core of several languages, tool, and protocols used in digital archives, digital humanities, and general web development.  In my experience, it is kind of a bear to work with, but is nonetheless worth investigating as it is the basis of RSS, EAD, and TEI, among others familiar to M.L.I.S.s.</p>
<ul>
<li><a title="XML @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Xml">XML @ Wikipedia</a></li>
<li><a title="XSLT @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/XSLT">XSLT @ Wikipedia</a></li>
<li><a title="TEI @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Text_Encoding_Initiative">TEI @ Wikipedia</a></li>
<li><a title="EAD @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Encoded_Archival_Description">EAD @ Wikipedia</a></li>
<li><a title="RSS @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/RSS">RSS @ Wikipedia </a></li>
</ul>
<p>&nbsp;</p>
<p><strong>JSON</strong><br />
<em> JavaScript Object Notation</em><br />
JSON is a lightweight, <em>language-independent</em> data interchange format, billed as &#8220;<a title="JSON: The Fat Free Alternative to XML @ json.org" href="http://json.org/xml.html">The Fat Free Alternative to XML</a>.&#8221; I&#8217;ve never worked with it, but probably will at some point.</p>
<ul>
<li><a title="JSON @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/JSON">JSON @ Wikipedia</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>OOP</strong><br />
<em> Object Oriented Programming</em><br />
Okay, well, I&#8217;m listing OOP here as a placeholder for various programming languages, some of which are not, strictly speaking, object-oriented by definition. The point is that, while I was introduced to HTML and CSS for the first time in an elective grad school workshop, there&#8217;s really not that much you can do with those tools alone. Static webpages have limited use these days. Most libraries, archives, and digital humanities projects need someone who understands &#8211; or better, can do &#8211; programming/scripting on some level. The languages listed below are probably the most commonly used in the field, though as more projects start to involve mobile app development, <a title="Objective-C @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Objective-C">Objective-C</a> (iPhone) and <a title="JAVA @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Java_%28programming_language%29">Java</a> (Android) will also be in demand.</p>
<ul>
<li><a title="OOP @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Object-oriented_programming">OOP @ Wikipedia</a></li>
<li><a title="PHP @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/PHP">PHP @ Wikipedia</a></li>
<li><a title="Javascript @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/JavaScript">Javascript @ Wikipedia</a></li>
<li><a title="Ruby on Rails @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Ruby_on_Rails">Ruby on Rails @ Wikipedia</a></li>
<li><a title="Python @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Python_%28programming_language%29">Python @ Wikipedia</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>LAMP</strong><br />
<em>Linux Apache MySQL Perl/PHP/Python</em><br />
Basically, a LAMP server is composed of several open source components, including MySQL for database service, Apache as the HTTP server, and pre-installed &#8220;P&#8221; programming languages (Perl/PHP/Python) running on some variety of Linux operating system. This LAMP &#8220;stack&#8221; is the basis of most sites on the web today.</p>
<ul>
<li><a title="LAMP @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/LAMP_%28software_bundle%29">LAMP @ Wikipedia</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>SQL</strong><br />
<em> Structured Query Language</em><br />
SQL, and particularly MySQL, is one of the most common relational database platforms in use on the web today. As part of the open source LAMP stack, it is available on nearly all web servers by default and forms the underlying data structure for most open source content management systems.  In recent years, a variety of alternative platforms have emerged under the banner of NoSQL, sparking some <a title="MySQL Diehard vs. NoSQL Fanboi: The Animated Movie @ RWW" href="http://www.readwriteweb.com/cloud/2010/09/an-amusing-take-mysql-diehard.php">amusing yet mostly incomprehensible (to me) debate</a>.</p>
<ul>
<li><a title="SQL @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Sql">SQL @ Wikipedia</a></li>
<li><a title="MySQL @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/MySQL">MySQL @ Wikipedia</a></li>
<li><a title="PostgreSQL @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/PostgreSQL">PostgreSQL @ Wikipedia</a></li>
<li><a title="NoSQL @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/NoSQL">NoSQL @ Wikipedia</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>DCMI</strong><br />
<em> Dublin Core Metadata Initiative</em><br />
A metadata schema for describing &#8220;physical resources such as books, digital materials such as video, sound, image, or text files, and composite media like web pages.&#8221; It is often said that Dublin Core is &#8220;capable of describing anything, though not particularly well.&#8221; Still, a good place to start.  Like the two metadata standards that follow, it is often used in conjunction with some type of XML. I&#8217;m listing just a few here but there are many others one might add to this list.</p>
<ul>
<li><a title="DCMI @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/DCMI">DCMI @ Wikipedia</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>METS</strong><br />
<em> Metadata Encoding and Transmission Standard</em><br />
Another metadata standard &#8220;for encoding descriptive, administrative, and structural metadata regarding objects within a digital library&#8221; using XML.</p>
<ul>
<li><a title="METS @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/METS">METS @ Wikipedia</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>DACS</strong><br />
<em>Describing Archives: A Content Standards </em><br />
And another metadata standard &#8220;for describing archives, personal papers, and manuscript collections.&#8221;</p>
<ul>
<li><a title="DACS @ Wikipedia" href="http://en.wikipedia.org/wiki/Describing_Archives:_A_Content_Standard">DACS @ Wikipedia</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>DMCA</strong><br />
<em>Digital Millennium Copyright Act</em><br />
Understanding copyright legislation is essential for many projects in libraries, archives, education and digital publishing.  I name DMCA here mainly because it&#8217;s an abbreviation and thus fits into the scope of this post. It is difficult to imagine a web consisting only of the publisher&#8217;s own original content. Today we share, link, quote, and remix content created by others as part of our daily routines. Scholars post research material for students; archivists post manuscripts for researchers; librarians share book reviews; students and other user communities contribute to projects by uploading content. While most institutions have a copyright policy, it&#8217;s important that it be kept up to date, both for the organization&#8217;s protection, but also for the protection of our collective legal rights. If we take a casual view of copyright, we risk legal action on one end and the forfeiture of our power on the other. A large part of DMCA applies specifically to Digital Rights Management software (DRM) and the legality of circumventing it. Archivists of film, videogames, music and other commonly DRM&#8217;ed material obviously have something at stake here.</p>
<ul>
<li><a title="DMCA @ Wikipedia" href="https://secure.wikimedia.org/wikipedia/en/wiki/Digital_Millennium_Copyright_Act">DMCA @ Wikipedia</a></li>
<li><a title="Copyright @ ALA" href="http://www.ala.org/ala/issuesadvocacy/copyright/index.cfm">Copyright @ ALA</a></li>
<li><a title="DMCA @ EFF" href="https://www.eff.org/issues/dmca">DMCA @ EFF</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>General Resources</strong><br />
<em> </em></p>
<ul>
<li><a title="W3 Schools" href="http://www.w3schools.com/">W3 Schools</a></li>
<li><a title="Mozilla School of WebCraft @ P2PU" href="http://p2pu.org/webcraft">Mozilla School of Web Craft @ P2PU</a></li>
</ul>
<p>&nbsp;</p>
<p>This list may seem overwhelming.  I wrote it and it overwhelms me, even two years out of grad school. And it&#8217;s not even comprehensive. But you have to start somewhere.</p>
<p>My progression from HTML newb only a couple years ago to, well, a newb of several additional, more difficult  things, came by way of hacking WordPress.  I&#8217;m sure this is quite  common. There are plenty of other ways to learn a programming  language, but from what I can tell the key factors are always going to be <em>necessity</em> and <em>specificity</em>. If your motivation is to complete a <em>specific</em> project (regardless of languages involved), you will be far more  likely to succeed and learn something than if you are simply trying to grasp the language  itself in an abstract, academic way. I have a book on Objective C sitting on my shelf, but until I  need to complete a real life project with Objective C, I probably won&#8217;t get much further than &#8220;Hello World!.&#8221; Find an actual need to develop these skills and you will probably make some progress. If nothing else, you will discover along the way all the things you don&#8217;t know, which is also helpful.</p>
<p>Another important thing to remember is that you will almost never be working from scratch. When you plan out a project, find something to serve as a solid foundation.  It may be a document to use as an example, a description of an existing project, an open source code base, or  some other fundamental element that <em>almost</em> fits your needs perfectly, and then figure out what needs to change to make it your own. As you go deeper and begin to produce your own content, this will seem less like copying and more like learning from and contributing to a community of practice.</p>
<p>Just to be clear, I want to close in defense of my education and alma mater (to which I will always be true or whatever). I was taught <em>of</em> these things (well, some of them), but not in any great detail; something that would be near  impossible in the context of a broad-based 1-2 year LIS program.  It&#8217;s worth noting that I was in a generic public library track and may have learned more about these issues in a more specialized setting.  I also  should clarify that I&#8217;m hardly an expert in most if any of these topics  and languages; there may be some better resources and explanations out there so please  share in the comments and/or via <a title="Twitter @ebellempire" href="http://twitter.com/ebellempire">twitter</a>.</p>
<p>What was/has been your experience with your MLIS program?  Did/do you feel prepared for a professional position coming out of grad school?  What would you add to this list?</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2011/acronyms-and-initialisms-my-library-degree-failed-to-teach/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Deco, an Omeka Theme</title>
		<link>http://jeffersonsnewspaper.org/2010/deco-an-omeka-theme/</link>
		<comments>http://jeffersonsnewspaper.org/2010/deco-an-omeka-theme/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 04:38:59 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[deco]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[edtech]]></category>
		<category><![CDATA[omeka]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=813</guid>
		<description><![CDATA[Deco is a free theme for Omeka. Though I started working on an Omeka theme for use by a more general audience and without any particular motivation beyond having a lame sense of fun, as I got going, I realized it might be really useful for the group of social studies teachers with whom I&#8217;ve been working this past week. As part of a grant-funded workshop, the teachers needed to start their own WordPress- and...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-large wp-image-974" title="Deco screen: smoothbrown.css" src="http://jeffersonsnewspaper.org/wp-content/uploads/2010/07/Screen-shot-2010-12-06-at-3.31.13-AM-1024x541.png" alt="" width="620" height="327" /></p>
<p>Deco is a free theme for <a title="Omeka.org" href="http://omeka.org/">Omeka</a>.  Though I started working on an Omeka theme for use by a more general audience and without any particular motivation beyond having a lame sense of fun, as I got going, I realized it might be really useful for the group of social studies teachers with whom I&#8217;ve been working this past week.  As part of a grant-funded workshop, the teachers needed to start their own WordPress- and Omeka-based websites (for use in their classrooms).  As you might expect, none of the teachers had experience with such things.  After an arduous 4 hour workshop in which the group got all of their hosting plans purchased and sites installed and configured, we kind of slowly came to a realization that there was still foundational work to be done.  Though Omeka is quite user friendly, it&#8217;s still best managed (in a self-hosted environment that is), by users having at least some experience with and understanding of web publishing.  (<a href="http://omeka.net/">omeka.net</a> is a great hosted alternative by the way, and works much like <a title="wordpress.com" href="http://wordpress.com/">wordpress.com</a>, but for various reasons was not right for our project).  And so the scope of this little side project grew as I tried to anticipate some of the problems novice users might encounter.</p>
<p><span id="more-813"></span></p>
<p>For one, <a title="Omeka themes directory" href="http://omeka.org/add-ons/themes/">Omeka&#8217;s publicly available themes</a> sometimes seem lacking when combined with certain plugins.  Each of the available themes is quite nice on its own terms and perfect for building out by experienced users (in fact, this theme is built on the very excellent Berlin theme by Jeremy Boggs and Ken Albers), but even for those with a moderate amount of design and coding knowledge, changing things up can be daunting, requiring a lot of time querying the forums, and browsing the documentation.  I knew that most of the teachers would be using a set of plugins that require additional styling and code insertion and so I tried to prepare the theme with as much plugin-specific styling and conditional templating I could so that they would not have to fool around too much.  The most common needs should hopefully be addressed by the core templates and through the many configurable theme options</p>
<p>This is my first public theme and it&#8217;s been quite an experience thinking   through all the possible use cases.  I think I have accounted for the most   common possibilities, but it&#8217;s possible something could still come up and   present a problem: there could be errors to debug, display problems in older browsers, poorly formed functions, etc..  Thus, I&#8217;m calling this version 0.9, just to be safe, but I think it is certainly usable at this point.  Nevertheless, the usual &#8220;no warranty&#8221; caveat applies.</p>
<h3>Deco theme for Omeka</h3>
<p><strong>Designed for: </strong>Omeka Version: 1.3</p>
<p><strong>Browser tested in: </strong>Internet Explorer 8+, and current versions of Firefox, Chrome, Safari, and Opera</p>
<p><strong>License: </strong>GPL</p>
<p><strong>Changelog</strong>:</p>
<ul>
<li>Dec 06 2010 &#8212; v. 0.9: initial release</li>
<li>Jan 15 2011 &#8212; v. 0.9.5: updated for compatibility with Omeka 1.3 and new plugin releases, various bug fixes</li>
<li>March 06 2011 &#8212; v. 0.9.6: added html5/flash video support, improved image gallery on homepage (now uses any featured item that has an image attached, randomized display), started cleaning up ugly code, various bug fixes and layout tweaks</li>
<li>April 27 2011 &#8212; v. 0.9.6.1: added deco_display_rss() function to custom.php, fixed bug in Featured Exhibit function on homepage to detect if Exhibit Builder plugin was installed/activated, minor layout tweaks</li>
<li>June 26 2011 &#8212; v. 0.9.6.2: removed show_untitled_items() function due to incompatibility with Omeka 1.4</li>
<li>August 30, 2011 &#8212; v. 0.9.6.3: fixed minor bug in config.ini that was affecting some users</li>
</ul>
<p><strong>Unique Features:</strong></p>
<ul>
<li>Featured Item slideshow on homepage (jQuery, <a title="Awkward Showcase" href="http://www.awkward.se/sandbox/awkward-showcase-a-jquery-plugin/">Awkward Showcase</a>)</li>
<li>Lightbox effect for images on items/show (jQuery, <a title="FancyBox" href="http://fancybox.net/">FancyBox</a>)</li>
<li>Built in support for HTML 5 Video with Flash fallback (<a title="VideoJS" href="http://videojs.com/">VideoJS</a>, <a title="FlowPlayer" href="http://flowplayer.org/">Flowplayer</a>)</li>
<li>&#8220;Edit this Item&#8221; button on items/show</li>
<li>Add an RSS feed anywhere on your site using the deco_display_rss($feedUrl,$num) function (uses <a title="Zend RSS" href="http://framework.zend.com/manual/en/zend.feed.consuming-rss.html">Zend RSS</a>, note that using this function may lead to slower load times)</li>
<li>Configurable theme options
<ul>
<li>stylesheet-switching with 4 designs in the initial version (plus a custom.css option for advanced users)</li>
<li>user-defined tagline</li>
<li>user-defined &#8220;About&#8221; text on the homepage</li>
<li>user-defined number of recent items to display on the homepage</li>
<li>toggle lightbox on items/show</li>
<li>toggle slideshow on homepage</li>
<li>toggle &#8220;Random Featured Collection&#8221; on homepage</li>
<li>toggle images with &#8220;Random Featured Collection&#8221; on homepage</li>
<li>toggle &#8220;Related Exhibits&#8221; on items/show</li>
<li>toggle theme credits in footer</li>
</ul>
</li>
<li>Built in support for common plugins
<ul>
<li>MyOmeka (user status in footer, CSS styles)</li>
<li>Exhibit Builder (CSS styles)</li>
<li>DocsViewer (ideal placement in items/show if user does not choose the default embed on items/show option)</li>
</ul>
</li>
</ul>
<p><strong>Known Issues and Planned Improvements</strong></p>
<ul>
<li>ISSUE: Conflict with Image Annotation plugin breaks the gallery and fancybox scripts.</li>
<li>PLANNED IMPROVEMENT: Additional stylesheet choices (better, more varied)</li>
<li>PLANNED IMPROVEMENT: L<span style="color: #000000;"><del></del>et users configure or at least turn off HTML5 video options in theme settings.</span></li>
</ul>
<h3 style="text-align: center;"><a title="Deco (beta), version 0.9.6.4" href="http://github.com/ebellempire/Deco">Download Deco, version 0.9.6.4 [GitHub]</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2010/deco-an-omeka-theme/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Why is this Blog Called Jefferson&#8217;s Newspaper? [Plus, Bonus Ranting!]</title>
		<link>http://jeffersonsnewspaper.org/2010/why-is-this-blog-called-jeffersons-newspaper-plus-bonus-ranting/</link>
		<comments>http://jeffersonsnewspaper.org/2010/why-is-this-blog-called-jeffersons-newspaper-plus-bonus-ranting/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 03:25:39 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[teabagged]]></category>
		<category><![CDATA[Thomas Jefferson]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=936</guid>
		<description><![CDATA[Judging by my Google Analytics, I get a lot of hits on this site from people looking to learn about Thomas Jefferson and his views on the free press and newspapers.  My bounce rate, perhaps combined with an active imagination, suggests that such visitors are just downright pissed that this site is even returned as a search result and maybe even that I would have the temerity to claim a domain name that could be...]]></description>
			<content:encoded><![CDATA[<p>Judging by my Google Analytics, I get a lot of hits on this site from people looking to learn about Thomas Jefferson and his views on the free press and newspapers.  My <a title="Bounce Rate @ Wikipedia" href="http://en.wikipedia.org/wiki/Bounce_rate">bounce rate</a>, perhaps combined with an active imagination, suggests that such visitors are just downright pissed that this site is even returned as a search result and maybe even that I would have the temerity to claim a domain name that could be put to more &#8220;appropriate&#8221; use.  I like to imagine that some out-of-work journalist, raged-out Tea Partier, or scholar of Revolutionary America is waiting in the wings for this domain name to be freed from my interloping clutches.  To them, I suggest trying a moderately-sized bribe.  To the rest of you, I offer a brief yet wildly meandering answer.</p>
<p><span id="more-936"></span></p>
<p>On the <a href="/about/">About</a> page for this site, I kind of hint at why I chose <em>Jefferson&#8217;s Newspaper</em> as the title for this blog, but it&#8217;s not a complete answer (and in any  case, the About page has been long since moved out of view; it&#8217;s really only kept  around for the sake of provenance at this point).  The gist of that founding document is this: as I was putting together some ideas for a blog, I happened across an interesting quote by T.J. that stoked my imagination; I decided to buy a corresponding domain name.</p>
<p>Here&#8217;s the quote:</p>
<blockquote><p>“The basis of our governments being the opinion of the  people, the very first object should be to keep that right; and were it  left to me to decide whether we should have a government without  newspapers or newspapers without a government, I should not hesitate a  moment to prefer the latter. But I should mean that every man should  receive those papers and be capable of reading them.”</p>
<p>–<a title="FULL TEXT: The tumults in America I expected would have produced in Europe an unfavorable opinion of our political state. But it has not. On the contrary, the small effect of those tumults seems to have given more confidence in the firmness of our governments. The interposition of the people themselves on the side of government has had a great effect on the opinion here. I am persuaded myself that the good sense of the people will always be found to be the best army. They may be led astray for a moment, but will soon correct themselves. The people are the only censors of their governors: and even their errors will tend to keep these to the true principles of their institution. To punish these errors too severely would be to suppress the only safeguard of the public liberty. The way to prevent these irregular interpositions of the people is to give them full information of their affairs thro' the channel of the public papers, and to contrive that those papers should penetrate the whole mass of the people. The basis of our governments being the opinion of the people, the very first object should be to keep that right; and were it left to me to decide whether we should have a government without newspapers, or newspapers without a government, I should not hesitate a moment to prefer the latter. But I should mean that every man should receive those papers and be capable of reading them. I am convinced that those societies (as the Indians) which live without government enjoy in their general mass an infinitely greater degree of happiness than those who live under European governments. Among the former, public opinion is in the place of law, and restrains morals as powerfully as laws ever did any where. Among the latter, under pretence of governing they have divided their nations into two classes, wolves and sheep. I do not exaggerate. This is a true picture of Europe. Cherish therefore the spirit of our people, and keep alive their attention. Do not be too severe upon their errors, but reclaim them by enlightening them. If once they become inattentive to the public affairs, you and I, and Congress, and Assemblies, judges and governors shall all become wolves. It seems to be the law of our general nature, in spite of individual exceptions; and experience declares that man is the only animal which devours his own kind, for I can apply no milder term to the governments of Europe, and to the general prey of the rich on the poor." href="http://press-pubs.uchicago.edu/founders/documents/amendI_speechs8.html">Thomas Jefferson to Edward Carrington, 1787</a>.</p></blockquote>
<p>As we all know, Thomas Jefferson quotes, like the man himself, are open to interpretation &#8211; not only because his true intentions cannot always be easily deciphered but because he is often understood and exploited, not as a flawed human being but as an abstracted symbol, a common hero of opposing teams in an endless game of cultural capture the flag.  Putting aside, though, the question of <a title="Jefferson, Then and Now @ BackStoryRadio" href="http://backstoryradio.org/2010/08/jefferson-then-and-now/">who owns Thomas Jefferson</a> and that the above quote is part of Jefferson&#8217;s larger body of evolving and sometimes-conflicting thought on newspapers and the press, we can easily understand his meaning in this instance.</p>
<p>Our man T.J. was saying in essence,</p>
<blockquote><p>&#8220;Look, we have established this kickin&#8217; new form of government based on the notion that citizens know best what is best for them.  Duh.  The government, being composed of citizens, is arranged to be responsive to citizens and their will &#8212; even when their will is patently retarded.  Thus, we need to make sure it&#8217;s not or we&#8217;ll be in for some shit; one way to accomplish this is to make sure citizens are well-informed through an independent press.  Of course, they will also need to be able to read that stuff, so let&#8217;s make sure they get some schooling.  Europe was full of illiterate slobs, but we will have to do better to maintain a democracy.&#8221;</p></blockquote>
<p>Of course, Jefferson wasn&#8217;t talking about enlightening or educating <em>everyone</em>.  Not slaves or Native Americans, for sure, but also not most white people (women, the landless, etc).  Nevertheless, it&#8217;s a pretty obvious quote, by now a cliche: a strong and well-managed democracy depends upon a well-informed electorate.  Currently, our democracy is neither strong nor well-managed.  And our electorate? Well, let&#8217;s just say things have been better.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="629" height="379" 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://www.youtube.com/v/GNQUA0bI5b0?fs=1&amp;hl=en_US&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="629" height="379" src="http://www.youtube.com/v/GNQUA0bI5b0?fs=1&amp;hl=en_US&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Newspapers appear to have outlasted their influence over the mob in this country (and by mob, I mean <em>morons</em>, though only in this specific case&#8230; I actually like mobs of smart people, so don&#8217;t go thinking I&#8217;m against mobbing it up from time to time) and are barely holding onto any semblance of their former relevance.  The &#8220;real&#8221; news media, now basically consisting (in the mainstream) of TV pundits and demagogues, has, with the help of their parent corporations, slowly eroded any democratic tendencies that remained in mainstream journalism at the beginning of this century (which were arguably few to begin with).  While I suspect that Jefferson and the founders had something else in mind for the press &#8212; something more like <a href="http://www.democracynow.org/">Amy Goodman</a> (civil, erudite) and much much less like Glenn Beck (clownish, fear-mongering), we can see which actually sells.</p>
<p>So looking at Jefferson&#8217;s qualifier in that quote &#8212; &#8220;But I should mean that every man should  receive those papers and be capable of reading them&#8221; &#8212; it seems Fox News and the rest actually did take it to heart.  But instead of <em>enlightening up</em> in the Jeffersonian spirit (however limited), they have <em>dumbed down</em> to the point of total illiteracy.  Television is a powerful tool of coercion: not only do you not need to be able to read to consume it&#8217;s ideas, you don&#8217;t even need to be able <em>to think</em>.</p>
<p>And so we find ourselves amid Jefferson&#8217;s unwitting &#8220;would you rather&#8221; game, actually faced with making a decision of sorts.  The Tea Party (and the media conglomerates that drive the their  ill-informed agenda) seems intent on gimping the government in favor of unbridled corporate power.  On the other side, we find a government that is &#8212; in too many ways to list &#8212; truly broken, and increasingly so due in part to the toxic storm that is our present media landscape.  When faced with the choice between newspapers and democratic government, we know &#8212; and Jefferson knew &#8212; that there is indeed no choice to be made.  Each depends on the other.  While I am no big fan of either our government or our news media, I believe that both can be reformed and indeed must be.  They are our only hope to push back against undemocratic global capital.  But achieving that means educated people across the spectrum of American society and economy standing up and demanding redress.  Not by marching around shouting slogans (though that has its place) or by claiming sole interpretative authority over 200+ year old writings by brilliant but long dead &#8220;founding fathers&#8221; (though, again, that can be fun if not frutiful).  Our times are novel and I&#8217;m not so sure the specifics of the past fit the present, even when the general ideas do.</p>
<p>So the Tea Party can have Jefferson if they want him that bad.  It makes no difference to me.  Jefferson is not the point, and in fact, despite my affinity for many of his ideas about democracy, I don&#8217;t even really like the guy.  Nor do I have much respect for the founding fathers as human beings.  As Ice-T said in some interview that I cannot find right now, &#8220;[paraphrase:] Fuck the Constitution. It was written by a bunch of slave owners, so obviously they were all psychopaths.&#8221;  But I&#8217;m way off topic at this point.</p>
<p>In the interest of providing some perspective and wrapping this up, however inelegantly, I offer a fuller quote from Jefferson&#8217;s correspondence with Carrington:</p>
<blockquote><p>&#8220;I am persuaded myself that the good sense of the people will always be found to be the best army. They may be led astray for a moment, but will soon correct themselves. The people are the only censors of their governors: and even their errors will tend to keep these to the true principles of their institution. To punish these errors too severely would be to suppress the only safeguard of the public liberty. The way to prevent these irregular interpositions of the people is to give them full information of their affairs thro&#8217; the channel of the public papers, and to contrive that those papers should penetrate the whole mass of the people. The basis of our governments being the opinion of the people, the very first object should be to keep that right; and were it left to me to decide whether we should have a government without newspapers, or newspapers without a government, I should not hesitate a moment to prefer the latter. But I should mean that every man should receive those papers and be capable of reading them. I am convinced that those societies (as the Indians) which live without government enjoy in their general mass an infinitely greater degree of happiness than those who live under European governments. Among the former, public opinion is in the place of law, and restrains morals as powerfully as laws ever did any where. Among the latter, under pretence of governing they have divided their nations into two classes, wolves and sheep. I do not exaggerate. This is a true picture of Europe. Cherish therefore the spirit of our people, and keep alive their attention. Do not be too severe upon their errors, but reclaim them by enlightening them. If once they become inattentive to the public affairs, you and I, and Congress, and Assemblies, judges and governors shall all become wolves.&#8221;</p></blockquote>
<p>Jefferson wasn&#8217;t just talking about newspapers or government.  He was talking about education, citizenship and democracy.  About the abuse of power.  About the curiosity of human culture.  About the power of information.  These are not things I talk about explicitly (for the most part) on this blog, but these are the ideas that inform my outlook and motivations.  So if this blog derives from or coincides with Jefferson and/or newspapers, that&#8217;s cool, but I think really it could just as easily be called Chomsky&#8217;s iPhone or Bakunin&#8217;s Kindle or Debord&#8217;s Google Reader Account or or or&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2010/why-is-this-blog-called-jeffersons-newspaper-plus-bonus-ranting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Complete Metropolis: Thinking About a More Sensible Copyright</title>
		<link>http://jeffersonsnewspaper.org/2010/the-complete-metropolis-thinking-about-a-more-sensible-copyright/</link>
		<comments>http://jeffersonsnewspaper.org/2010/the-complete-metropolis-thinking-about-a-more-sensible-copyright/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 21:39:32 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[film]]></category>
		<category><![CDATA[Fritz Lang]]></category>
		<category><![CDATA[Metropolis]]></category>
		<category><![CDATA[public domain]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=888</guid>
		<description><![CDATA[Let&#8217;s get one thing out of the way now: I believe that copyright serves a legitimate purpose in our society. If an artist or creator puts their labor into a work, they deserve some degree of control over that product, including over distribution, sales, and so on. This article (and all original works on this site) use a Creative Commons license that reserves certain rights of copy, while forfeiting others in manner that seems sane...]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-889" title="copyright" src="http://jeffersonsnewspaper.org/wp-content/uploads/2010/09/copyright.png" alt="" width="630" height="367" />Let&#8217;s get one thing out of the way now: I believe that copyright serves a legitimate purpose in our society.  If an artist or creator puts their labor into a work, they deserve some degree of control over that product, including over distribution, sales, and so on.  This article (and all original works on this site) use a Creative Commons license that reserves certain rights of copy, while forfeiting others in manner that seems sane to me.  But I truly do understand why a musician, filmmaker, or other professional content creator/owner might impose stronger restrictions.  They make a living on their content and it seems unfair to say the least that someone else would take away their income by reselling that content without permission or reimbursement.  While in my view, the <em>legitimate</em> justification for copyright falls short of applying to personal copies, remixes, mashups, collage, parody/satire/détournement, and other (re-)interpretation (e.g. the above image is not theft, though it might be a crime in the artistic sense); that&#8217;s not the focus of this post.  Nor is imagining an alternative culture or economy in which copyright doesn&#8217;t exist.  Instead I want to focus in on how overly strict copyright enforcement can actually hinder economic activity, and reduce the long-term impact of artistic creations, leading culturally significant works to die in obscurity.  I think Fritz Lang&#8217;s classic 1927 silent film, <em>Metropolis</em>, serves as a nice example for a number of reasons.</p>
<p><span id="more-888"></span></p>
<h3>Some Background</h3>
<p>When Sonny Bono and company enacted the <a href="http://en.wikipedia.org/wiki/Copyright_Term_Extension_Act">Copyright Term Extension Act of 1998</a>, the entry of new works into the public domain basically froze.  Bono and his powerful backers (Disney, Jack Velenti, and other assorted industry shills) pushed this freeze mainly to protect their own interests (but also to come into line with the EU&#8217;s even worse copyright adjustments).  Representative Bono, formerly half of the craptastic pop duo, Sonny &amp; Cher, would be able to license his <a href="http://www.youtube.com/watch?v=xzW_7ANnHZI">one hit song</a> for the term of his own life (which actually ended shortly before the bill passed) plus 70 years instead of the previous 50, ensuring that his descendants will receive unearned income from Viagra (and perhaps flying car) commercials until at least 2068.  That&#8217;s a 100 year copyright protection; for a younger (and even crappier) artist like Justin Bieber, think more like 150 years and you hopefully realize how absurd this is.  And yet Bono, Disney and Valenti felt even this was not enough, and would have lobbied for infinite copyright protection if they thought they could pass it.  Valenti, a real turd if you&#8217;ve ever looked at his life&#8217;s work of <a href="http://www.imdb.com/video/screenplay/vi3958767897/">killing artistic freedom</a>, famously proposed a copyright term of &#8220;forever less one day.&#8221;  Imagine a world in which <em>nothing</em> is in the public domain.  That&#8217;s what they wanted.  The perpetual monetization of what is essentially <em>public culture</em>.  A disaster for humanities scholarship and production, but also for preserving and forwarding our shared culture in the US and around the world.  For most, this doesn&#8217;t require much more explanation, but <a href="http://www.ted.com/talks/lessig_nyed.html">Lawrence Lessig&#8217;s recent TEDTalk</a> on &#8220;remix culture&#8221; is a nice place to continue thinking about it.</p>
<h3>So What Does This Have to do with Metropolis?</h3>
<p>So, <em>Metropolis</em>.  I&#8217;ve seen <em>Metropolis</em> (usually in bits and pieces) several times.  It&#8217;s available on VHS and DVD, streams on YouTube and elsewhere on the web, is screened in galleries and museums; I even saw it used as the visual backdrop to a hip hop show (DJ Spooky circa 2000, who played his set in front of both <em>Metropolis</em> and <em>Society of the Spectacle</em>, among others, as I recall).  While I&#8217;m not by any means an expert on the film&#8217;s history or impact, I can say with some certainty that it is among the most important films ever made, possibly the best loved silent film and one of the first sci-fi stories ever put to celluloid; a simply stunning piece of visual art.  Unsurprisingly, it has been referenced, re-mixed and re-interpreted widely over the past 83 years.</p>
<p><em>Metropolis</em>, while flourishing mainly in marginal &#8220;film geek&#8221; and &#8220;art school&#8221; segments of society, is about as ubiquitous as a silent film can be.  This ubiquity owes not only to the films quality and lasting appeal, but also to its unbelievable availability.  In addition to relatively frequent free and public use, I&#8217;ve seen it for sale for about the cost of a postage stamp in at least a dozen different versions (different music, mainly, including one version featuring a <a href="http://www.youtube.com/watch?v=fRgvxXFwzfY">terrible Freddie Mercury song</a>) and stores.  Like other public domain titles (<em>Metropolis</em> entered the public domain in 1953), it is manufactured and distributed around the world by small companies that put little effort into quality control or maintaining the original artistic vision.  With the 2010 release of <em>The Complete Metropolis</em>, which is digitally remastered and includes some lost footage, as well as an updated performance of the original musical score, the film is now getting a definitive treatment by film preservationists.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="629" height="497" 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://www.youtube.com/v/ZSExdX0tds4?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="629" height="497" src="http://www.youtube.com/v/ZSExdX0tds4?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>If we consider Fritz Lang as the author, under the current copyright regime, this film would not have entered the public domain until 2046; if we consider it a corporate authorship (and I&#8217;m not sure whether an individual or a studio actually owns a film&#8217;s rights, especially one from 1927), that date could be as late as 2071.  Luckily, the copyright expired in &#8217;53 under an older but equally confusing regime and was not renewed (a subsequent court challenge to reclaim the film&#8217;s copyright failed, despite the fact that the 1998 Copyright Term Extension Act restored copyright to many works that might have entered the public domain).  So the question is this, in which scenario would this silent film be poised to flourish in a widely anticipated re-release 83 years later: the one in which the film built up a huge following through ubiquitous and varied availability and remix, which also allowed the film to be pieced back together from archival quality prints held around the world? Or the one in which the receivers of a defunct German film company tightly controlled the film, restricting use and distribution, and most likely burying it altogether?  My assumption (in my view, quite uncontroversial) is that whomever would have controlled the copyright of the film would not have kept it in print at all, let alone promoted it widely (though admittedly, perhaps the film would have lived on in Germany either way).</p>
<p>What do we have if nobody can get their hands on <em>Metropolis</em> until 2071?  Basically, we have an historical artifact.  That&#8217;s all well and good.  I happen to like things called &#8220;artifacts,&#8221; but I also happen to think of those things as distant and dead (at least when I&#8217;m not wearing my history hat).  As it turned out, in <em>Metropolis</em> we can see a living culture, a film carrying its influence across the first century of international cinema, a film whose importance and adoration is not so much being asserted with the re-release, but being reinforced and celebrated.  There is a continuity that benefits our understanding of film history, of popular culture; it enriches our appreciation of the film and ensures its continued existence far more fairly and organically than any legal right.  Paradoxically, if <em>Metropolis</em> were not in the public domain, <em>The Complete Metropolis</em> would not stand a chance of existing, let alone generating a profit.  The widespread and generation-spanning love and appreciation of the film came largely out of it&#8217;s free-ness, which is why we&#8217;re willing to pay for it.</p>
<h3>Post Script</h3>
<p>I&#8217;ve recently entered the tangled web of copyright hell by way of a local history-based documentary film project, in which students and others use archival and oral history assets to construct short films for the web.  I&#8217;m not talking about serious filmmaking here, but largely amateur/educational creation.  We don&#8217;t need Donald Duck in our documentaries but we do need access to more footage and images than you can imagine to construct reasonably interesting short films, and most of that material, it turns out, is copyrighted.  Sometimes it is held by large corporations (which equals two possible outcomes: &#8220;No&#8221; or &#8220;Pay us your whole budget for this thing we forgot we owned&#8221;); other times, it is under the control of the original creator (some who feel their work is too important to ever allow anyone to see or use it); most frustrating, some of it is held in archival collections where conservatively-interpreted pre-digital accession contracts basically ensure that the footage will never again see the light of day (&#8220;in-house screening only&#8221; both ignores the way research is conducted in the digital age, and also the way content is consumed by the public; neither group is likely to dig through a low-profile archival collection in order to wait hours while library staff finds the film projector that will inevitably be crammed into a 1 person &#8220;private viewing station.&#8221;  And of course, when they leave they will only have some notes and their memories to show for it).  These approaches might work to the benefit of the copyright holders and maybe even creators if they were MGM and I were Errol Morris, but they are not and I am not.  For most works, particularly those archival items held at small institutions, copyright essentially becomes moot because no one gives a damn, no one knows it exists.  But still, we hide it away, we consult our lawyers and our contracts, all parties turn out their empty pockets and walk away, less than satisfied that &#8220;at least it&#8217;s being preserved.&#8221;  The question remains, &#8220;For who? For what?&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2010/the-complete-metropolis-thinking-about-a-more-sensible-copyright/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should Your Syllabus Include a Note on Web Browsers?</title>
		<link>http://jeffersonsnewspaper.org/2010/should-your-syllabus-include-a-note-on-web-browsers/</link>
		<comments>http://jeffersonsnewspaper.org/2010/should-your-syllabus-include-a-note-on-web-browsers/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 01:53:51 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[edtech]]></category>
		<category><![CDATA[higher ed]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[syllabi]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=860</guid>
		<description><![CDATA[Given that one of my primary occupational roles is providing tech support, I offer the following question in part as preemption in my own self-interest but also in the interest of exploring the scope of instruction in the digital humanities (or the &#8220;digital&#8221; anything for that matter): Should Your Syllabus Include a Note on Web Browsers? If you teach an online class or a class with a significant online component, the answer might be yes....]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-871" title="BROWSERS - Harmonia Pastelis Icon Pack by Teekatas" src="http://jeffersonsnewspaper.org/wp-content/uploads/2010/08/BROWSERS-Harmonia_Pastelis_Icon_Pack_by_Teekatas.jpg" alt="" width="630" height="130" /></p>
<p>Given that one of my primary occupational roles is providing tech support, I offer the following question in part as preemption in my own self-interest but also in the interest of exploring the scope of instruction in the digital humanities (or the &#8220;digital&#8221; anything for that matter): Should Your Syllabus Include a Note on Web Browsers?  If you teach an online class or a class with a significant online component, the answer might be yes. </p>
<p><span id="more-860"></span></p>
<p>Whether you are using BlackBoard, a blog platform, or a &#8220;proper&#8221; CMS, if your course site is doing anything remotely interesting, one of your students is probably using a browser that is not up to the task.</p>
<p>I get questions all the time about browser-related issues and even when I do instructional sessions and warn against using certain old browsers, the questions still roll in. My first troubleshooting question is invariably &#8220;what browser are you using?&#8221; If the answer is Internet Explorer, that&#8217;s usually the last question, followed by many &#8220;informative&#8221; statements of (arguably) questionable relevance and utility. If nothing else, my mini-rants leave a student with &#8212; if not a full understanding of the problem &#8212; at least a sense that the &#8220;blue e&#8221; on their desktop is called a browser, that it&#8217;s used to &#8220;open the Internet,&#8221; and that there apparently are multiple options from which to choose.  For many this is a revelation of no small impact.</p>
<p>While not the higher order stuff we (<em>think</em> we) should need to teach at a college level, understanding browsers can still be an opening to understanding lots of &#8220;entry level&#8221; issues in new media and web publishing.  HTML, CSS, JavaScript, and more all rely on the surprisingly fragile ecosystem created by both the browser and the coder (even when the coder is a giant billion dollar company like Google, who themselves <a href="http://www.readwriteweb.com/archives/cartoon_weve_sent_ie6_to_live_on_a_nice_farm.php"> have given up on supporting old browser tech</a>).  If you plan to even broach the topic of web development and design, the browser is the natural place to start.  Even if you just want your students to be able to use and evaluate web sources and digital projects, using an old browser is going to work against your sanity and their success.</p>
<p>Browsers are also an obvious choice for opening up discussions about open source technologies. Firefox, Chrome/Webkit, and Opera are great examples of a movement by which users have become creators/participants, and technology can &#8212; through small but scaled contributions &#8212; be bent to our will, rather than the other way around. If you are using Drupal, WordPress, Omeka or some other open source web publishing platform in your class, or if your students use open source desktop software like Audacity or GIMP, this is a natural connection.  Open source is the key to so much recent innovation in education, academe and on the web more broadly, that if you don&#8217;t think being an open source advocate is part of your job, perhaps you should ask yourself why not.</p>
<p>Savvy students and instructors may intuitively understand that they can improve their online experiences by seeking out new approaches and alternatives when problems and questions arise, and that recency and novelty are actually important in technology, but this is by no means a norm in any non-tech sector of our culture. If you don&#8217;t know what you don&#8217;t know, you pretty much stick with what you do know &#8212; even if it sucks.  I recently questioned a colleague for requiring that assignments be &#8220;prepared in MS Word&#8221;; if the end product is in the right format (.doc in their case), why require a specific software that comes with specific costs and benefits.  Let students choose what software to use and note that there actually is a choice to be made (yes, OpenOffice, iWork, GoogleDocs, and more all export into Microsoft formats if desired), instead of hiding a broader question (what software to use) inside of an unnecessarily absolute decree (buy and use Word) that addresses a specific problem (students turning in papers in unreadable formats) but ignores the bigger context.  This is not Microsoft hate (I like Office and, surprisingly, even Windows7), but a serious question about how we prepare students for careers that will invariably involve software and hardware choices (if not <em>by</em> them, than <em>for</em> them).  So maybe your students won&#8217;t be designers, programmers, IT specialists, or whatever, but they will be consumers of technology and perhaps digital creators of another kind.  Scholars and writers (not to mention managers, etc) still need to be versed in the basics of technology so they can understand the options at their disposal, the forces that shape their world, and the language with which to convey their needs and ideas (try asking an 80 year old to describe the usability and effectiveness of a piece of software or a website; these are learned skills).  Connoisseurship has its utility.</p>
<p>Security is another issue that needs little description here.  Basically, keeping your browser, your OS, and all of your other software updated will go a long way in preventing spyware, viruses and generally poor performance.</p>
<p>A &#8220;note on browsers&#8221; doesn&#8217;t directly address all of the issues above, but it&#8217;s potentially a start and it probably can&#8217;t hurt.</p>
<p>Even if you are not interested in any larger questions about digital literacy or open source advocacy, or it simply does not fall into the purview of your course, you still might want to include some kind of note on browsers, if only to reduce time spent troubleshooting and haggling with tech-averse students.   So with that in mind, I offer the following:</p>
<h3>Prefab &#8220;Note on Browsers&#8221;</h3>
<p>This course requires extensive use of the Internet, including websites and other online resources that may require the use of a up-to-date, standards-compliant web browser.  Web browsers are free to download and may be installed on any computer in a matter of minutes.  Acceptable browsers include the <em>most recent</em> versions of Firefox, Opera, Chrome, Safari, and Internet Explorer.  To ensure that your browser is updated to the most recent version, open your browser and go to Tools >> Options (PC) or Help >> Check for Updates (Mac), or download the latest version of your browser choice at http://www.browserchoice.eu</p>
<h3>A randomized list of browser choices:</h3>
<p><a href="http://www.browserchoice.eu/BrowserChoice/browserchoice_en.htm" target="_blank">www.browserchoice.eu</a><br />
This is actually the same interface that is shown to new computer buyers in the EU, where it was decided that Microsoft&#8217;s bundling of Internet Explorer with Windows was anti-competitive and potentially harmful to innovation.</p>
<h3>IE6 No More</h3>
<p><a href="http://www.ie6nomore.com/" target="_blank">www.ie6nomore.com</a><br />
A nice little script you can drop into the header of your site so that users of IE6 and IE7 will get a warning reading &#8220;For a better experience using this site, please upgrade to a modern web browser&#8221; with links to upgrade to the latest version of IE or download an alternative.  Don&#8217;t forget to update the code when IE9 comes out in late 2010/early 2011 to be sure your students/users are taking advantage of Microsoft&#8217;s promise of greater support for existing and emerging HTML/CSS standards.</p>
<h3>Browser-Update.org</h3>
<p><a href="http://www.browser-update.org/" target="_blank">www.browser-update.org</a><br />
I haven&#8217;t used this script yet; it looks similar to IE6 No More but apparently checks for outdated versions of Opera, Safari, Chrome, and Firefox as well as Internet Explorer.  Billed as an &#8220;an initiative by web designers, webmasters and bloggers who want to bring the web further and help their visitors.&#8221;</p>
<p>NOTE: The images above are from the very awesome looking <a href="http://findicons.com/pack/72/harmonia_pastelis" target="_blank">Harmonia Pastelis Icon Pack by Teekatas</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2010/should-your-syllabus-include-a-note-on-web-browsers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding a Featured Image Gallery to Omeka Using GalleryView</title>
		<link>http://jeffersonsnewspaper.org/2010/adding-a-featured-image-gallery-to-omeka-using-galleryview/</link>
		<comments>http://jeffersonsnewspaper.org/2010/adding-a-featured-image-gallery-to-omeka-using-galleryview/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 03:39:39 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[galleryview]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[image galleries]]></category>
		<category><![CDATA[omeka]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=814</guid>
		<description><![CDATA[Following on my previous entry on adding an image Lightbox to Omeka, today I&#8217;ll run through the steps it takes to get a featured image gallery running on your Omeka homepage. I searched for awhile to find a gallery plugin that a.) looks good, b.) works well and c.) is not too complicated for me to figure out. Fitting the bill nicely, I found GalleryView, a fairly lightweight jQuery plugin with lots of options for...]]></description>
			<content:encoded><![CDATA[<p><img src="http://jeffersonsnewspaper.org/wp-content/uploads/2010/07/screen-capture-1.png" alt="" title="GalleryView Demo Image (via SpaceForAName)" width="817" height="430" class="aligncenter size-full wp-image-849" /></p>
<p>Following on my previous entry on <a title="Adding an Image Lightbox to Omeka" href="http://jeffersonsnewspaper.org/2009/adding-an-image-lightbox-in-omeka/">adding an image Lightbox to Omeka</a>, today I&#8217;ll run through the steps it takes to get a featured image gallery running on your Omeka homepage. I searched for awhile to find a gallery plugin that a.) looks good, b.) works well and c.) is not too complicated for me to figure out.  Fitting the bill nicely, I found <a title="GalleryView @ SpaceForAName" href="http://spaceforaname.com/galleryview">GalleryView</a>, a fairly lightweight jQuery plugin with lots of options for your tweaking enjoyment.  It&#8217;s a bit more challenging to implement than Lightbox and requires a fair amount of CSS knowledge to prettify, but this should help you get started.</p>
<p><span id="more-814"></span></p>
<p><strong>Step One: Download and Install GalleryView (and edit the GalleryView CSS)</strong></p>
<p><a title="GalleryView @ SpaceForAName" href="http://spaceforaname.com/galleryview">Download the GalleryView package</a> and place it in your theme&#8217;s /common/ directory.  Be sure that you have placed the whole shebang directly inside the /common/ directory and renamed the outer folder galleryview (if you use the default galleryview-2.1.1 name, you&#8217;ll need to adjust the scripts below to match).  Go into your theme to common/galleryview/galleryview.css and edit the first id, changing it from #photos to #featured-gallery (or something else if you prefer, see below for details).</p>
<p><strong>Step Two: Edit your Header (Scripts and Configurations)</strong></p>
<p>The code below will work as is if you are using the popular Berlin theme, but if not simply replace the word berlin below with the name of your Omeka theme.  Be sure the paths below match with where you actually placed your files in the previous step. </p>
<p><em>*** To save hours of confusion, watch out for typos and try using your browser&#8217;s &#8220;view source&#8221; feature to ensure that your links are reaching their destination.</em></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> WEB_ROOT<span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>/themes/berlin/common/galleryview/galleryview.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://code.jquery.com/jquery-1.4.2.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> WEB_ROOT<span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>/themes/berlin/common/galleryview/jquery.galleryview-2.1.1-pack.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> WEB_ROOT<span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>/themes/berlin/common/galleryview/jquery.timers-1.2.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> WEB_ROOT<span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>/themes/berlin/common/galleryview/jquery.easing.1.3.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
		jQuery.noConflict();  
		jQuery(document).ready(function(){
		jQuery('#featured-gallery').galleryView({
			panel_width: 425,
			panel_height:430,
			filmstrip_position:'bottom',
			show_captions: true,
			pause_on_hover:true,
			transition_interval:5000,
			nav_theme:'light'
		});
	});
&lt;/script&gt;</pre></div></div>

<p>That final, multi-line script above initializes GalleryView and contains your configurations.  You can change them however you like according to the <a href="http://spaceforaname.com/galleryview">GalleryView documentation</a>, but here I&#8217;m setting the dimensions, timing, theme, etc.  There are a couple other things worth highlighting here if you are not familiar with JavaScript.  First of all, the string containing #featured-gallery is setting up the gallery to run automatically on images displayed in the html div with the id of &#8220;featured-gallery&#8221; &#8211; you can change this to whatever you like, but remember that it needs to match the outer div on your index page in the next step. Also worth noting, the script generally runs on a generic placeholder function called $, but in order to get around the conflict with the Prototype library (which also uses $ as a generic placeholder), I&#8217;ve included the jQuery.noConflict() line and replaced $ with jQuery.</p>
<p><strong>Step Three: Edit your Index Page (Looping Items and Calling GalleryView)</strong></p>
<p>The code below uses a custom loop to retrieve the images.  As noted, the outer div uses the id &#8220;featured-gallery&#8221;, as well as a required class, &#8220;galleryview&#8221; &#8212; #featured-gallery <em>is the only</em> id or class that you can change below!</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">	<span style="color: #339933;">&lt;</span>h2<span style="color: #339933;">&gt;</span>Featured Items<span style="color: #339933;">&lt;/</span>h2<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;featured-gallery&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;galleryview&quot;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>ul id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;gallery&quot;</span><span style="color: #339933;">&gt;</span>
		<span style="color: #339933;">&lt;</span> ?php 
		<span style="color: #666666; font-style: italic;">//this loops the 5 most recent featured items</span>
		<span style="color: #000088;">$items</span> <span style="color: #339933;">=</span> get_items<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'featured'</span><span style="color: #339933;">=&gt;</span>true<span style="color: #339933;">,</span> <span style="color: #0000ff;">'recent'</span><span style="color: #339933;">=&gt;</span>true<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		set_items_for_loop<span style="color: #009900;">&#40;</span><span style="color: #000088;">$items</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span>loop_items<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span>
		<span style="color: #000000; font-weight: bold;">?&gt;</span>
			<span style="color: #339933;">&lt;</span> ?php <span style="color: #000088;">$index</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
			<span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span> <span style="color: #339933;">=</span> loop_files_for_item<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
			    <span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$file</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">hasThumbnail</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
			    <span style="color: #339933;">&lt;!--</span> this makes sure the loop grabs only the first image <span style="color: #b1b100;">for</span> the item <span style="color: #339933;">--&gt;</span>
			        <span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$index</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
		    	       <span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">echo</span> <span style="color: #666666; font-style: italic;">/*Image URL*/</span><span style="color: #0000ff;">'&lt;li&gt;&lt;img src=&quot;'</span><span style="color: #339933;">.</span>item_file<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'square thumbnail uri'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;/&gt;'</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
		    	    <span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
			    <span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
			<span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
			<span style="color: #339933;">&lt;</span> ?php
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;div class=&quot;panel-overlay&quot;&gt;'</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #666666; font-style: italic;">/*Item Title*/</span><span style="color: #0000ff;">'&lt;h3&gt;'</span><span style="color: #339933;">.</span>item<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Dublin Core'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Title'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/h3&gt;'</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #666666; font-style: italic;">/*Item Description Excerpt*/</span><span style="color: #0000ff;">'&lt;p&gt;'</span><span style="color: #339933;">.</span>item<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Dublin Core'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Description'</span><span style="color: #339933;">,</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'snippet'</span><span style="color: #339933;">=&gt;</span><span style="color: #cc66cc;">175</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #666666; font-style: italic;">/*Link to Item*/</span> link_to_item<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">' ...more '</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/p&gt;&lt;/ul&gt;&lt;/div&gt;'</span><span style="color: #339933;">;</span>
			<span style="color: #000000; font-weight: bold;">?&gt;</span>
			<span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>I&#8217;ve added some comments inline with the code above to describe what it&#8217;s doing, so if they make sense to you, you can probably figure out any changes you might need (for example, looping more or fewer images meeting whatever Omeka-friendly criteria you like).  </p>
<p><em>*** I&#8217;m using square thumbnails in my loop because they&#8217;re easy, but you may need to adjust the max thumbnail size in your Omeka settings to avoid blurry images.</em></p>
<p><strong>Step Four: Season to Taste</strong></p>
<p>Though the example above works pretty nicely &#8220;out of the box&#8221; in a two column homepage theme, the <a href="http://spaceforaname.com/galleryview">GalleryView documentation</a> contains a list of configuration options, so you will probably want to fool around with those, as well as your CSS, to integrate GalleryView properly into your theme&#8217;s overall aesthetic.  You might also want to <a href="http://omeka.org/codex/Create_a_Custom_Loop_of_Items">customize the loop in Omeka</a> (personally, I&#8217;m not a huge fan of the one used above, but haven&#8217;t figured out a better one just yet).</p>
<p>Hope this has helped a few folks out there who, like me, are working near the edges of their skill set.  As always, feel free to share your comments, questions, suggestions, critiques, etc.  I&#8217;ll try to keep this updated as needed.</p>
<p>By the way, I&#8217;m planning to release a new Omeka theme that incorporates both Lightbox and GalleryView, as well as some other fun stuff, so stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2010/adding-a-featured-image-gallery-to-omeka-using-galleryview/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Some Problems with School IT</title>
		<link>http://jeffersonsnewspaper.org/2010/some-problems-with-school-it/</link>
		<comments>http://jeffersonsnewspaper.org/2010/some-problems-with-school-it/#comments</comments>
		<pubDate>Wed, 19 May 2010 03:09:42 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[access to information]]></category>
		<category><![CDATA[CIPA]]></category>
		<category><![CDATA[edtech]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[internet filters]]></category>
		<category><![CDATA[public school]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=764</guid>
		<description><![CDATA[Today I think I&#8217;ll share a few email excerpts to illustrate some of the more annoying aspects of my job, each of which involves public school district IT Departments acting in ways that are (in my very partial and partially-informed estimation) either a) lazy, b) incompetent, c) draconian or d) all of the above. If I come across as a curmudgeon in the process, it&#8217;s because I am. Still, it&#8217;s important to note at the...]]></description>
			<content:encoded><![CDATA[<p><img src="http://jeffersonsnewspaper.org/wp-content/uploads/2010/05/problems1.png" alt="" title="Problems!" width="620" height="398" class="aligncenter size-full wp-image-767" /></p>
<p>Today I think I&#8217;ll share a few email excerpts to illustrate some of the more annoying aspects of my job, each of which involves public school district IT Departments acting in ways that are (in my very partial and partially-informed estimation) either a) lazy, b) incompetent, c) draconian or d) all of the above.  If I come across as a curmudgeon in the process, it&#8217;s because I am.  Still, it&#8217;s important to note at the outset that I understand the challenges faced by the well-meaning folks charged with managing school (and perhaps also business/enterprise) IT.  They do so with many skills I do not come close to possessing and under tremendous pressure to meet legislative and policy directives, but are often lacking in the money, staff, and training required to keep up to date with the demands of acting as <em>local gatekeeper and eternal overlord of the internets</em>.  Nevertheless, in my brief experience thus far as a member of the ed. tech community, I have yet to meet a school IT coordinator (in public primary and secondary schools, that is, and not in higher ed where the environment is a bit more competitive) who was what I would call &#8220;in touch&#8221; with the latest goings-on in education/technology/educational technology.  In any case, I hope this comes across as constructive.  That is my sole intention, to save the fucking children.</p>
<p><span id="more-764"></span></p>
<p>Issue number one: <strong>filtering</strong>.  <a href="http://en.wikipedia.org/wiki/Children%27s_Internet_Protection_Act">CIPA</a> basically requires that school districts filter their internet access as a means of protecting children from pornography and other sundry objectionables across this big bad internet.  I actually do not generally disagree with this, though I do make some obvious qualifications.  For one, filtering should not be any broader than what is actually needed.  Unfortunately, this is a tall order.  Google Safe Search might provide some indication of how this works and doesn&#8217;t.  Safe Search is essentially the same kind of filtering algorithm that a school might employ through purchasing a third party application.  Try googling &#8220;firefighter&#8221; with safe search turned off and see what kind of image results you get.  Firefighter is a pretty innocuous term and one that a kid is pretty likely to be interested in at some point.  But without some kind of filter, even Google cannot avoid returning some questionable material on the first page.  But turn safe search turned back on (set to moderate or even strict) and the results are generally more wholesome, right?  Actually, no, they&#8217;re pretty much the same.  <a href="http://www.google.com/images?hl=en&#038;safe=off&#038;tbs=isch%3A1&#038;sa=1&#038;q=firefighter&#038;aq=f&#038;aqi=g10&#038;aql=&#038;oq=&#038;gs_rfai=">Take a look yourself</a>.  This is not a jab at Google, just a quick way to point out that algorithms &#8211; even the best of them &#8211; are not infallible.  They make mistakes.  So instead of endlessly refining their algorithms, third party filtering apps take a hammer to the web, locking down students&#8217; web experience and blocking content on the broadest of terms in an effort to overcome their own inherent limitations.  </p>
<p>Which brings me to my second qualification, that filters should be locally configurable.  If a teacher or student needs access to a site that is blocked, there needs to be a mechanism for whitelisting it and/or adjusting the parameters of the filter.  This seems not to be the case for many districts.  For example, as discussed in the email below, on several occasions lately, I&#8217;ve been told by teachers and other education professionals that some of the educational and professional development sites I&#8217;ve created and/or maintain for work are actually not accessible by educators in their classrooms or in the school building.  One teacher was told by their IT department that it&#8217;s because &#8220;the site is a blog and blogs are blocked.&#8221;  Sometimes that is true (the site is a blog), and sometimes not.  I&#8217;ve never looked into the blackbox that is an internet filter but my assumption is that to determine if a site is a blog (whatever that actually means these days), this school&#8217;s filter detected that the site in question used WordPress (we use it a lot as a CMS and for course blogs) and thus came to the conclusion that it =blog and is therefore somehow unsafe or inappropriate for minors.  Don&#8221;t believe it?  Check out <a href="http://www.softforyou.com/articles_tutorials/blog_sites_and_your_children.html">this &#8220;tutorial&#8221; about protecting children from blogs</a> from a filtering software company.</p>
<p>So, anyway, on with the email excerpts.</p>
<blockquote><p>&#8230;By the way, it&#8217;s pretty unsatisfactory that a district would block any of our sites.  Presumably they do this automatically (i.e. they use 3rd party &#8220;child protection&#8221; software without retaining any control of their own) by deciphering which platform is being used (WordPress, Omeka, etc.).  We&#8217;ve had similar issues with the [OMITTED] site.  Frankly, I think it&#8217;s time that teachers forced their districts to adapt to current web publishing models rather than letting some outdated software make decisions for them.  Considering that we use the same kinds of software that the NYTimes and other major sites use, this is clearly an injustice for students and teachers alike (if not for small &#8220;publishers&#8221; like ourselves) and also gives school IT admins an unearned sense that they&#8217;ve done their job.  But I digress&#8230;</p></blockquote>
<p>And another (regarding the blocking of a Google Docs data collection tool)&#8230;</p>
<blockquote><p>[OMITTED] may have some responses recorded on paper that she will send me if/when she gets them (one of the teachers had Google blocked  in their district for some inexplicable reason so they did them on paper).</p></blockquote>
<p>That&#8217;s right.  <em>Google is blocked</em>.  The problems with this are so glaringly obvious that I will move on.</p>
<p>On to the next problem, not one that is unique to school IT, but nevertheless a problem at schools and far beyond.  Yes, I&#8217;m going to do it.  I&#8217;m going to write (part of) a blog post about how I hate Internet Explorer.  And yes, particularly the 6th version of it, which I&#8217;m required by Internet Law to mention was released about a decade ago. And so on.  So&#8230; Issue number two: <strong>IE6</strong>.</p>
<p>The following was to be a public response to a very polite and well-meaning message from a user who, judging by his email address, works in government and academia, informing me that a particular site is broken in IE6.  I&#8217;ve gotten similar messages for sites we manage that are created both in house and by well-regarded professional designers (i.e. it&#8217;s not just my sloppy design).  In the end, my response was not posted, owing to the better judgment of a colleague to whom I sent the message first.  They decided it was not necessary and, I think, maybe it sounds a little defensive.  Nevertheless, I think it&#8217;s an important issue and one that should not be taken lightly.  </p>
<blockquote><p>
Thanks for the feedback.  We get such messages from time to time, so please allow me to explain what we are thinking about this issue, which is somewhat more complicated than it may seem to some folks. </p>
<p>I cannot speak for [OMITTED], but our view [...] is that we can realistically only expect to support modern browsers in our smaller projects.  Internet Explorer is not a modern browser, though the latest version (8) has made significant strides and is fully capable of rendering the new site visually and functionally.  We serve a message to users of older browsers that they need to upgrade.  If they choose not to, they will at least be aware of the source of their frustration.  It is ours as well. </p>
<p>We make this compromise for a couple of reasons that I think are well-considered.  For one, it is extremely time-consuming to debug for old versions of Internet Explorer and we value lower-cost projects.  Second, if we &#8220;dumb down&#8221; our work to be 100% backwards compatible, we are cheating those visitors who use modern software and want a more modern experience.  We cannot provide that service at our usual (very low) cost of publishing.  Third, we believe that the time has come to give up on outdated browsers.  Google and other major publishers and service providers have already made the decision to drop support for IE6.  Microsoft does not even stand behind it&#8217;s older software in this regard and has expressed regret that it is still in use.</p>
<p>Finally, we trust that users are fully capable of taking responsibility for their web experience.  Browsers are free.  They are easy to install.  New ones work better, look better, do more and provide greater protection against malware.  The best browsers include auto-update features so you never have to worry about getting left behind.  We understand that many work environments lock their employees into using the outdated software required to access their older enterprise systems.  This is an unfortunate reality but one that we cannot control, trusting that market and research needs, as well as increasingly vocal employee dissatisfaction will take care of this over time.  In the meantime, we always design for the latest version of IE, as well as Firefox, Safari, Chrome, and Opera.  This covers the great majority of users, including those that we track on our own analytics.</p>
<p>This is not to say that we do not continually look at this policy.  We always appreciate feedback of any kind and if we are shown over time that we have erred in this approach, we will certainly do our best to adapt.</p></blockquote>
<p>The question to my mind is, do we need to support every piece of hardware and software ever released (a decade is a long time for a piece of software, especially one that is freely replaceable), or should we focus our energies more wisely on following web standards and providing a better experience for users who employ appropriate software.  You can&#8217;t open an iWork .pages file with <a href="http://en.wikipedia.org/wiki/Electric_Pencil">Electric Pencil</a> (or so I assume).  You can&#8217;t play Modern Warfare 2 on an Atari 6400.  If a site requires Flash, you either install Flash or you don&#8217;t use the site (<em>or wait until you get home and use a laptop instead of your iPhone</em>).  I am okay with these limitations.  How did Adobe and it&#8217;s publisher-users get consumers to agree to the Flash arrangement at a 90+ percent rate of adoption.  I don&#8217;t know but it wasn&#8217;t by creating alternate, crippled, backward compatible versions of every Flash site (though as an iPhone user, sometimes I wish that were the case).  </p>
<p>But these are essentially questions for designers and content creators, not for IT professionals.  The questions for IT are different.  The goal of IT, at schools or elsewhere, is to serve their communities&#8217; needs while maintaining the security of both the users and the broader infrastructure.  So why in the hell do many schools insist on continuing to run outdated browsers like IE6?  If the answer is that they keep running IE6 because they need it to access other outdated enterprise systems, then they have doubly failed in their mission.  </p>
<p>If the transition away from outmoded tech has been neglected due to financial constraints, then I don&#8217;t want to see that school running MS Office or BlackBoard or maybe even Windows.  If money is that tight, I want to see OpenOffice.org. I want to see Linux Ubuntu.  I want to see Moodle (or something better, but equally free).  But I have not seen that happening.  At a recent ed. tech conference I attended, the same teachers who were locked into shitty IT environments were all atwitter about tablets and clickers and robots and so on.  The tech coordinators and district admins I met were most interested in gimmicky proprietary gadgets and LMSs that provide no justifiable value proposition.  And meanwhile, the students can&#8217;t even access Google?  The modern, connected, social web is off limits.  The sites that get through are broken and dysfunctional due to outdated hardware and software.  Where is the creativity?</p>
<p>I&#8217;m not trying to trash anyone, really (especially not an entire profession), but there is a cultural problem that is so readily apparent in how our schools deal with technology that I find it hard to be polite.  Ditching IE6 is not going to change that culture, nor is better monitoring of filtering systems, nor new iMacs or clickers, nor anything else you can buy.  And this doesn&#8217;t even begin to address the question of how/when/if we actually give students real tech instruction and who is qualified to do so.  It&#8217;s not me. For the most part, at this moment, I&#8217;m just an onlooker to this mess.  I don&#8217;t work in a public school district and I&#8217;m not a teacher and I&#8217;m not really in IT.   I work in a university and deal in the (digital) humanities.  I have autonomy (sometimes) and access to money (sometimes) and people that can help me (sometimes).  But mostly, I try to be creative, I try to keep up to date, and I try to always be learning something new and useful so I can always be doing something new and useful.  Take that for what it&#8217;s worth.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2010/some-problems-with-school-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I&#8217;m (Probably) Deleting My FaceBook Acount</title>
		<link>http://jeffersonsnewspaper.org/2010/why-im-probably-deleting-my-facebook-acount/</link>
		<comments>http://jeffersonsnewspaper.org/2010/why-im-probably-deleting-my-facebook-acount/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 20:39:25 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[In the News]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=748</guid>
		<description><![CDATA[Mecha-Zuck ruthlessly semantifies your profile By now, everyone has heard about the latest round of FaceBook updates. Without a doubt, some of the changes are really cool and lots of folks will love the way that certain websites will seamlessly adapt their content to suit their tastes and preferences (based on FaceBook profile information). After all, who doesn&#8217;t want more relevance on the web? We can also expect just about every major content provider to...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-747" title="MechaZuck" src="http://jeffersonsnewspaper.org/wp-content/uploads/2010/04/MechaZuck.jpg" alt="" width="640" height="480" /><em>Mecha-Zuck ruthlessly semantifies your profile<br />
</em></p>
<p style="text-align: left;">By now, everyone has heard about the latest round of FaceBook updates.  Without a doubt, some of the changes are really cool and lots of folks will love the way that certain websites will seamlessly adapt their content to suit their tastes and preferences (based on FaceBook profile information).  After all, who doesn&#8217;t want more <em>relevance</em> on the web?  We can also expect just about every major content provider to be adding a &#8220;Like&#8221; button to their sites within a matter of weeks.  I just tested it out on TechCrunch and it is in fact <em>the</em> best social sharing widget I have ever used.  On the other hand, as with most FaceBook updates, those concerned with openness and privacy have some legitimate concerns. Rather than paraphrasing what others have already summed up very well, I instead offer a short reading list for those who are interested.  Make an informed decision.</p>
<p style="text-align: left;">
<span id="more-748"></span>
</p>
<ul>
<li><a href="http://www.facebook.com/f8"><em>Facebook f8</em></a></li>
<li><a href="http://www.wired.com/epicenter/2010/04/facebook-becomes-web/"><em>Today Facebook, Tomorrow the World (Wired)</em></a></li>
<li><em><a href="http://techcrunch.com/2010/04/23/like-buttons-evil-facebook-not-open/">Are Like Buttons Evil? The Open Web Reacts To Facebook’s Not-So-Open Graph (TechCrunch)</a></em></li>
<li><a href="http://techcrunch.com/2009/10/29/with-open-graph-facebook-sets-out-to-make-the-entire-web-its-tributary-system/"><em>With Open Graph, Facebook Sets Out To Make The Entire Web Its Tributary System (TechCrunch)</em></a></li>
<li><a href="http://mashable.com/2010/04/21/open-graph-privacy/"><em>Facebook Open Graph: What it Means for Privacy (Mashable)</em></a></li>
<li><em><a href="http://arnab.org/blog/deceiving-users-facebook-button">Deceiving Users with the Facebook Like Button (arnab.org)</a></em></li>
<li><a href="http://w2.eff.org/deeplinks/2010/04/how-opt-out-facebook-s-instant-personalization/"><em>How to Opt Out of Facebook&#8217;s Instant Personalization (EFF)</em></a></li>
</ul>
<p style="text-align: left;">
<p style="text-align: left;">As we have seen before, there is always an off chance that FaceBook will  adjust their policies in response to outcry from their user base.   However, given the current size of their user base and the amount of  money FaceBook stands to make from this (in the high krajillions,  according to analysts), I really doubt they are losing sleep about a  micro-exodus of  privacy activists and open web nerds.   However  unlikely, things can change.  So I leave the &#8220;Probably&#8221; as a qualifier  just in case.  Also, I have to admit that I am accustomed to the convenience and utility of FaceBook as a way of casually keeping in touch with people you might never hear from or see otherwise.  So it&#8217;s possible I might just sanitize my profile and stop using FaceBook altogether but keep the account active so I can receive the occasional message from or hunt down (stalk) a casual acquaintance or old friend.  Generally speaking though, I think FaceBook as I knew it is over.  Knowing what I know, and <em>knowing what they know</em>, I no longer feel comfortable signing into or socializing on the site, and that is not likely to change.</p>
<p style="text-align: left;">
<strong>UPDATE:</strong><br />
I took the plunge and deleted my profile for good after letting it sit unused for a couple weeks.  Below are a few more of the articles that contributed to that decision, which was made easier still by the fact that I was late to join FaceBook to begin with and always found it kind of annoying and ripe for drama in the same way as MySpace (in fact, after leaving MySpace ahead of the exodus, I tried to get everyone to follow me to Twitter, skipping Facebook altogether, but to no avail).  Nevertheless, Facebook did/does have its uses and was occasionally really fun and entertaining.  I must admit that leaving it behind leaves me feeling a bit disconnected from some casual friends and acquaintances.  The good news is that it looks like a real open alternative may be emerging in a new project called <a href="http://www.joindiaspora.com/">Diaspora*</a>.</p>
<ul>
<li><a href="http://www.wired.com/epicenter/2010/05/facebook-rogue/"><em>Facebook&#8217;s Gone Rogue: It&#8217;s Time for an Open Alternative (Epicenter Blog | Wired)</em></a></li>
<li><a href="http://www.zephoria.org/thoughts/archives/2010/05/14/facebook-and-radical-transparency-a-rant.html"><em>Facebook and Radical Transparency: a rant (apophenia)</em></a></li>
<li><a href="http://www.nytimes.com/2010/05/12/nyregion/12about.html"><em>Four Nerds and a Cry to Arms Against Facebook (NYTimes)</em></a></li>
</ul>
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2010/why-im-probably-deleting-my-facebook-acount/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Unpacking My Record Collection</title>
		<link>http://jeffersonsnewspaper.org/2010/unpacking-my-record-collection/</link>
		<comments>http://jeffersonsnewspaper.org/2010/unpacking-my-record-collection/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 02:30:52 +0000</pubDate>
		<dc:creator>James Calder</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[digital humanities]]></category>
		<category><![CDATA[Digital Media]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[Walter Benjamin]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=715</guid>
		<description><![CDATA[Collecting Records and Walter Benjamin I recently picked up a copy of Walter Benjamin&#8217;s Illuminations. I was completely struck by the first essay, “Unpacking My Library”, where Benjamin discusses book collecting. And while I myself take pride in my ever growing personal library, I almost immediately began to translate all his references to books as pertaining to record collecting. Not only this, but Benjamin&#8217;s words somehow summed up, far more eloquently than my own I...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-716 aligncenter" title="highfidelity" src="http://jeffersonsnewspaper.org/wp-content/uploads/2010/04/highfidelity.jpg" alt="" width="630" height="417" /><em>Collecting Records and Walter Benjamin</em></p>
<p>I recently picked up a copy of Walter Benjamin&#8217;s <em>Illuminations</em>. I was  completely struck by the first essay, “Unpacking My Library”, where Benjamin discusses book collecting.  And while I myself take pride in my ever growing personal library, I almost immediately began to translate all his references to books as pertaining to record collecting.  Not only this, but Benjamin&#8217;s words somehow summed up, far more eloquently than my own I might add, why, despite my professional stance that everything should be digitized and widely disseminated, I don&#8217;t and never will own an ipod.  It made me rethink a few ideas I&#8217;ve become accustomed to, things like ownership and physicality, that have become essential to my work as a Digital Humanist.  So, I thought I&#8217;d share&#8230;</p>
<p><span id="more-715"></span></p>
<p>Let me start by quoting part of Benjamin&#8217;s conclusion,</p>
<blockquote>
<p style="text-align: center;">“&#8230;ownership is the most intimate relationship that one can have to objects”.</p>
</blockquote>
<p>While this statement would possibly seem insignificant enough to your average person, “ownership” is an extremely weighted word for the Digital Humanist.  Putting it simply, Digital Humanists hate ownership.  Often, this disdain is directed towards corporations and their claims to proprietary software. This is easy enough, especially with the aggressive (unethical?) business practices of companies like Blackboard.  The music industry, with its severely outdated business model, is another common target.  Many Digital Humanists go further though.  They challenge their colleagues and institutions, especially universities and museums, to give up traditional rights to scholarship, educational content and primary sources.</p>
<p>However, we can think of ownership from another side.  What about an individual&#8217;s ownership of something?  Now, as I&#8217;m pretty sure not all Digital Humanists are total Communists (just kind of), I think most are comfortable with the idea of an individual owning possessions like a house, car, whatever.  Its more intellectual property rights, especially of digitized intellectual property, that irk us.  Because Digital Humanists have created this distinction, most of us can live in relative peace with the belief that its okay for us to own all sorts of things, but Microsoft needs to stop charging people for software.  It works for me at least.</p>
<p>There are some cases, however, where this distinction begins to blur, and I think music is an excellent example.  I&#8217;m not necessarily talking about the consumption of music here, but the collecting of music.      Lets return to Benjamin&#8217;s idea of ownership.  I&#8217;ll throw another quote at you because I genuinely like how he writes:</p>
<blockquote>
<p style="text-align: center;">“Even though public collections may be less objectionable socially and more useful academically than private collections [as the Digital Humanist knows very well] … the phenomenon of collecting loses its meaning as it looses is personal owner”</p>
</blockquote>
<p>Think about that for a second and let me pose a question: do you own the songs on your ipod?  I mean, not legally, that all depends on how you acquired them.  But, do you feel ownership of them?  Is that Vampire Weekend (or whatever the kids are into these days) mp3 yours?  Speaking strictly for myself, I don&#8217;t really feel like a song on a copied CD is mine, let alone an mp3 file.  Even if some feel that they do in fact own their mp3 files, looking deeper into Benjamin&#8217;s essay, I think I can demonstrate why this definition of ownership is inadequate or at least very distinct from the ownership I am trying to describe.  Let me explain.</p>
<p><em>The Thrill of the Hunt</em></p>
<p>I really miss hunting for records.  Don&#8217;t get me wrong, I still go to the record store to look for things, but its just not the same when what I&#8217;m looking for could just as easily be bought online while I&#8217;m watching TV.  Especially for the collector of underground music, the joy of finding something you&#8217;ve sought for literally years is pretty hard to describe.  However, guess who describes it perfectly?</p>
<blockquote>
<p style="text-align: center;">“I am not exaggerating when I say that to a true collector the acquisition of an old birth is its rebirth”</p>
</blockquote>
<p>In explanation of this rather odd statement, Benjamin explains how, for the collector, the acquisition of an item quite literally fulfills that item&#8217;s destiny, which is of course, to become part of your collection.  All of that item&#8217;s history, from its production, to its past owners, real or imagined, becomes an additional property of the item (think of it like invisible metadata that exists in the collector&#8217;s head). Honestly, it sounds dumb, but I have to admit that I&#8217;ve shared this extraordinary feeling.  Putting all real probabilities aside, it truly seems like destiny when you uncover that record that you&#8217;ve been searching for, perhaps for years, in the used bin at some crappy record store you dragged your girlfriend to on vacation.  Every crease on the album sleeve, every marking, all the writing, it all stays with you, forever becoming part of a collection that includes but is not limited to the music itself.  Basically, it all adds up to much more than the music itself.</p>
<p><em>Physicality, Ownership and the Digital World</em></p>
<p>The point of all this nonsense, besides that record collecting is cool, is that while the digital world has not necessarily changed music itself, it has certainly qualitatively changed the collecting of music.  Physicality is one aspect of this, as the physical marks on something like a used record can perhaps be used to conjure up a richer history of that item, which, as Benjamin suggests, adds to the many joyful histories contained within in a collection, inseparable but distinct from the music itself.  However, I would argue that physicality, while perhaps the most obvious, is not the most important factor.  For instance, back in the days of peer to peer file sharing, I certainly felt Benjamin&#8217;s “thrill of acquisition” when finding an album after countless unsuccessful searches.  I believe the more essential element is that “ownership”, in the Benjamin sense, is directly dependent on a meaningful acquisition.  One that produces “profound enchantment” and a literal sense of destiny.</p>
<p>Its interesting for myself, as a Digital Humanist, to consider that part of Benjamin&#8217;s “ownership” as defined in his quotation, cites public ownership in direct opposition to this personal ownership that makes collecting so desirable in the first place.  Its easy to see why this is so, if only because widespread availability would necessarily lesson the difficulties and joys of acquisition.  Thus, some of my most cherished goals of dissemination and the eradication of the ownership of digital “property” also contribute to the deterioration of a different kind of “ownership”, that of an individual to that personal, intangible, yet very real aspect of his or her collection.  In this case, its music.  But perhaps the example can be applied elsewhere.  When I reflect on all of this, I realize that receiving information of any kind, academic for instance, is not necessarily so different from listening to a record.  Its certainly more than just memorization, critical thinking, or other mental processes normally associated with learning.  In fact, my “collection” of academic knowledge has been dramatically enriched by everything else that took place while in school, at conferences, or in the archive.  From the thrill of putting on those white gloves the first time I handled historic photographs to the memories of my music professor&#8217;s leather pants and rants about punk music (“Roots of Rock and Soul”, a legendary class).   Of course, I&#8217;m not saying Digital Humanists should abandon our, in my view, very essential goals.  Its just that, thinking of Walter Benjamin&#8217;s library and my record collection, I think its also important to remember the central importance of the process of acquisition, not simply the content acquired.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2010/unpacking-my-record-collection/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why We Blog? Time. Community. Hubris.</title>
		<link>http://jeffersonsnewspaper.org/2010/why-we-blog-time-community-hubris/</link>
		<comments>http://jeffersonsnewspaper.org/2010/why-we-blog-time-community-hubris/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 03:48:08 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[motivators]]></category>
		<category><![CDATA[myers-briggs type indicators]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=655</guid>
		<description><![CDATA[Recently, I had a conversation about blogging with my partner, who is a Montessori teacher.  Often times as we share a ride home from work, she will discuss some aspect of her work day that leaves me impressed with her knowledge and insight about teaching and child development.  More than once, I have suggested to her that she start a blog to share that knowledge and more than once she has shot down the idea,...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-679" title="Hubris: the reason you are the best blogger in the known world" src="http://jeffersonsnewspaper.org/wp-content/uploads/2010/02/motivatorfeb4d4e7ffbdfbcd0e05c93512914e1698c786c4-1.jpg" alt="Hubris: the reason you are the best blogger in the known world" width="750" height="600" /></p>
<p>Recently, I had a conversation about blogging with my partner, who is a Montessori teacher.  Often times as we share a ride home from work, she will discuss some aspect of her work day that leaves me impressed with her knowledge and insight about teaching and child development.  More than once, I have suggested to her that she start a blog to share that knowledge and more than once she has shot down the idea, citing a number of reasons, my favorite of which goes something like &#8220;the thought of writing about work when I&#8217;m not at work literally makes me sick to my stomach!  Really sick!&#8221;  This got me to thinking about why I blog, often about things related to my work, and led me to come up with a typically offhanded formulation about why others do the same.</p>
<p><span id="more-655"></span></p>
<p>So what it is that distinguishes myself and others from the non-blogging majority?  I propose three basic prerequisites to blogging: time, community, and hubris.</p>
<h3>Time</h3>
<p>The first is pretty obvious so I will assume that time does not need much explanation.  Unless you are a professional blogger, you do it in your free time, and most of us don&#8217;t have enough of it to spend addressing a largely imaginary audience.</p>
<h3>Community</h3>
<p>Assuming one has time, I think you still need to feel like you are addressing or contributing to a community, broadly defined.  When I blog, I usually imagine it will be of some use or interest to someone.  Sometimes I know exactly who I am speaking to.  If I write a tutorial about WordPress or Omeka hacks, for example, I know I am speaking to others who, like me, are hacking their way through a particular project, often piecing together information from forums, Google searches, colleagues and friends.  I feel like that is a community (intermediate-level web developers?) of which I am part and whose needs I understand.  I cannot emphasize how important that community has been to my ability to work, and in writing a tutorial I am attempting to carry my weight and give something back.  In some ways, this is a reflection of my own belief in DIY and the punk rock spirit, two other topics (or is that just one topic?) that I&#8217;m likely to write about based largely on the idea that they are communities I value and to which I try to contribute.</p>
<h3>Hubris</h3>
<p>Okay, I know hubris is maybe a strange choice of words, but it got you reading this, right?  And I think it suggests a broad set of characteristics or personality traits that contribute to the &#8220;blogging state of mind.&#8221;  Twitter and other micro-blogging services typify this impetus in the extreme.  Look at any group of seasoned twitter users and you will see links, links, links, along with a smattering of reviews, smarmy comments, mini-editorials, and self-promotional status updates.  That&#8217;s what makes the form annoying/overwhelming for some people, but it&#8217;s also the essence of its greatness.  Blogs leave a bit more wiggle room for complexity and nuance, but suggest the same motivation.</p>
<p>Further, it may be no coincidence that librarians and developers love (micro-) blogging.  The fact that I am nominally both, I think, has much to do with why I blog (here, on Twitter, and elsewhere).  As a librarian, I value information and seek to share it with others.  It&#8217;s a big part of who I am and if I&#8217;m honest with myself I have to admit it&#8217;s because I&#8217;m kind of a know-it-all.  Most librarians are to varying degrees, though it doesn&#8217;t always show because we tend to be a mild bunch.  I like knowing I can find the answers to a wide array of questions and can synthesize them into something vaguely coherent.  It&#8217;s very much a desire to be helpful, but it also takes some hubris to assume the position of oracle.</p>
<p>There&#8217;s an interesting post over at <a title="The Withering Away of Flash" href="http://www.fullstopinteractive.com/blog/2010/02/the-withering-away-of-flash/">Full Stop Interactive</a> that describes the Myers-Briggs personality type of hackers and developers in <a title="Librarians and Myers Briggs Personality Type Indicators" href="http://lonewolflibrarian.wordpress.com/2008/12/02/librarians-and-myers-briggs-personality-type-indicators120208/">much the same way many have described librarians</a>: an apparently paradoxical mix of utopian ideology and sensible shoes practicality that brings forth the opinionated, the didactic, and the resourceful.  Despite what you think of Jungian psychology, it seems safe to assume that, while MBTI cannot fully classify the wholeness of personality, it seems to be onto something when you look at aggregate career-specific data.  Again, these two groups that often overlap and interact share personality type indicators and common interests that might contribute to their general blogginess.  I would never suggest these are the only two groups that blog, nor the only groupings of personality to succumb to the siren call of the know-it-all culture.  What my blog post presupposes is that those of us who blog share something in common with one another and maybe with one of these groups. With my partner, the non-blogging Montessori teacher, I share many things in common but apparently not the traits that lead to blogging, whatever they may be.</p>
<p>There you have it.  My cockamamy theory about blogging, complete with bloggerific abruptly non-conclusive ending.  What do you think?  Am I onto something?  Have you read or heard anything similar elsewhere?  Or is it total baloney?</p>
<p><em>Image Credit: made using <a title="Motivator @ Big Huge Labs" href="http://bighugelabs.com/motivator.php">Big Huge Labs&#8217; Motivator</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2010/why-we-blog-time-community-hubris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Sililoquy on the Cassette Tape and other Analog Wonders</title>
		<link>http://jeffersonsnewspaper.org/2010/a-sililoquy-on-the-cassette-tape-and-other-analog-wonders/</link>
		<comments>http://jeffersonsnewspaper.org/2010/a-sililoquy-on-the-cassette-tape-and-other-analog-wonders/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 04:16:24 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[analog]]></category>
		<category><![CDATA[capitalism]]></category>
		<category><![CDATA[cassettes]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[friendship]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[punk rock]]></category>
		<category><![CDATA[relationships]]></category>
		<category><![CDATA[Steve Albini]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=617</guid>
		<description><![CDATA[Yes, I know it&#8217;s 2010 (pronounced &#8220;twenty-ten&#8221;), and I know that nostalgia for the analog age is a 30-something cliche, and I know the cassette has become a sickening node of ironic culture.  But for just a few minutes, I ask you to set aside your pernicious Family Guy-inspired liking for hackneyed 80s references to consider the cassette as it should be understood: as a lost assertion of our basic rights, a technological and social...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-618" title="cassette" src="http://jeffersonsnewspaper.org/wp-content/uploads/2010/01/cassette02.jpg" alt="" width="690" height="489" /></p>
<p>Yes, I know it&#8217;s 2010 (<a title="TwentyNot2000.com" href="http://www.twentynot2000.com/">pronounced &#8220;twenty-ten&#8221;</a>), and I know that nostalgia for the analog age is a 30-something cliche, and I know the cassette has become a sickening node of ironic culture.  But for just a few minutes, I ask you to set aside your pernicious Family Guy-inspired liking for hackneyed 80s references to consider the cassette as it should be understood: as a lost assertion of our basic rights, a technological and social artifact,  and a symbol of friendship, grassroots culture and low-fi audiophilia.<br />
<span id="more-617"></span>I&#8217;m not really going to get deep into the history of the cassette but I think it&#8217;s worth noting that tapes &#8220;changed everything&#8221; as they say.  Music became smaller, more portable, cheaper (actually, freer), more contentious, more ubiquitous, and both <em>more and less</em> intimate.</p>
<p>When considering cassette media, we need to ponder the hardware that was used to play it.  The cassette gave us The Walkman and the &#8220;boombox&#8221; &#8211; two devices that couldn&#8217;t be more different.  One, the Walkman, was meant to shut out the world, to bring the music closer, to retire into the imagination and the inner world of musical sensation.  The other, the boombox, or &#8220;ghetto blaster&#8221;, was meant to bring imagination and musical sensation into the outer world.  The Walkman is an extension of the teenage bedroom, domain of the vinyl LP.  The boombox is an extension of the club, the car, the party, and perhaps the penis &#8211; a manifestation of action, performance, and bravado.  Think <a title="20 D Batteries (Do the Right Thing) @ YouTube" href="http://www.youtube.com/watch?v=YsFjlLXP9GU">Radio Raheem</a> when you think boombox.  Whatever you do, do <em>NOT</em> think <a title="Say Anything (trailer) @ YouTube" href="http://www.youtube.com/watch?v=mFV7FnbhBRY">Lloyd Dobbler</a>, that sappy new romantic who reappropriated his boombox as a two-way Walkman. The boombox was urban, evolving into the &#8220;system&#8221; &#8211; the <a title="Window Rattling @ YouTube" href="http://www.youtube.com/watch?v=cedfX-gzHuM">window-rattling audio menaces</a> one might encounter when stopping your car next to a &#8217;91 Civic with gold spinner rims.  The Walkman was suburban, evolving into the iPod &#8211; a tiny, consumer-fetishized <a title="Sony Super Walkman @ YouTube" href="http://www.youtube.com/watch?v=C84eoM7n7Ws">personal technological wonder</a>.  Culturally, I think these two very conflicting devices actually worked in tandem to create an atmosphere in which divisions of youth (and sub/counter) culture  became more distinct, more visible, more confrontational and also more accessible &#8211; a commodity-identity that could be easily recognized and digested and therefore easily bought and sold.</p>
<p>Still, the cassette was a <em>continuation</em>, as were its followers.  Like a vinyl album, it retained the &#8220;flipside.&#8221;  This was an essential component of musical media that was not removed until the birth of the CD,  a small (i.e. cassette-like?) disc (i.e. album-like?) media which was capable of high fidelity sound (i.e. album-like?).  The displacement of the CD by the mp3 removed the physicality of all prior formats but combined the reproducibility, portability, and low-fi impermanence of the cassette with the single serving goodness of the 7&#8243; vinyl single/EP.  It was not until fairly recently that mp3 recordings began to match the high fidelity of CDs and vinyl LPs, and even still the mp3 is most often consumed one song at a time (rather than by the album).  The introduction of both the cassette and the mp3 format launched the recording industry into a hissyfit panic that some people might copy content instead of buying it, and both technologies came along right at a time when mainstream record labels were putting out the kind of banal garbage that helped make that true.</p>
<p>But even though the early mp3 resembled earlier formats in some senses, in others it was music/youth culture&#8217;s waterloo &#8211; the end of an era in which music was an all-powerful, awe-inspiring, cultural force; a refuge that was both in plain sight and deeply underground; equally technical and nebulous.  It signaled the beginning of a new era where music became a capitalist accessory, a component of yet more shallow spectacle, an economic asset used primarily to sell physical and sensory widgets.  Sure, we can look back to the late 1960s and see similarities in the commodification of hippy/beat culture, but nobody was using <a title="VU and Dunlop Tires @ YouTube" href="http://www.youtube.com/watch?v=PUYqNOFffMs">The Velvet Underground to sell car tires</a>, mainly because ad execs (not to mention the general public) didn&#8217;t know who the VU were. (Yes, that linked ad is from 1993 &#8211; roughly &#8220;the year punk broke&#8221; to name another watershed moment &#8211; yet it still illustrates the <em>music as advertising appliance</em> approach that has become even more common since the late nineties/early aughts.)  Now, anyone with an internet connection can find, read about, and download that Moss Icon EP I searched for across several months within a matter of seconds.  When a thing becomes too easily accessible, it loses its value.  If diamonds grew on trees, nobody would be interested, except for their industrial value.</p>
<p>Which brings me back to the point of this little rant.  I am deeply sad, forlorn even, that music is meaning less to me these days.  Perhaps it is age, but I think it has even more to do with the ritual, culture, and physicality of the cassette, as contrasted with modern equivalents, which are far more casual, and it is on that theme that I shall continue to opine without further asides.</p>
<p>The mixtape, an icon of 80s and 90s culture, was (and is for some purists still) a deep symbol of friendship and even love, representing a ridiculously large commitment of time and energy.  I have given and received mixtapes that went through so may edits and overdubs that in the quiet between songs you could hear layer upon layer of other songs, some that didn&#8217;t fit the mix, some that made the cut but were moved elsewhere in the order, and others that were simply taped over for lack of a new and truly blank cassette.  Labels and covers were almost always handmade, with evidence of their own revision and improvisation.  I once received a mixtape recorded over a factory-issue <em>Best of Chicago</em> album that belonged to my friend&#8217;s father.  She just popped the overwrite-protection tab and taped right over &#8220;Saturday in the Park&#8221;, confirming that all was well in the world.  Unlike the burned CD, a sterile object of disinvestment only Stanley Kubrick could love, a great mixtape was a palimpsest of aural, cultural and emotional information.</p>
<p>Although the dubbed cassette was not as personalized as the mixtape, it could still be deeply personal.  The dubbed cassette was the lo-fi copy you got from your friend who had an album you didn&#8217;t own yet, or maybe had never even heard of before. My first dub was <em>Appetite for Destruction</em> (side A) and <em>Eazy Duz It</em> (side B).  The height of my dubbing excess came about a decade later, when I spent roughly a week digging through a new friend&#8217;s collection of obscure oi!, streetpunk, and <a title="Viking Rock @ Wikipedia" href="http://en.wikipedia.org/wiki/Viking_rock">viking rock</a>, dubbing each album and transcribing the songs onto little pieces of notebook paper that I folded into the tape cases to serve as makeshift liner notes.  I honestly cannot imagine listening to any of that music on any other physical format and even though I would have loved to find my own original copies of some of that stuff (for bragging rights), part of me was always okay with just having the scammed copy.  A few years ago, my tape deck (a wood paneled top loader with 4 level sliders on the top) broke for the last time.  I put those tapes, and dozens more, out on the street in my densely populated urban neighborhood, hoping someone would find and cherish them.  Without my noticing, it rained heavily that day, soaking the box, the labels, and the covers.  Nobody, save for the garbage man, ever came for them.  A shameful moment indeed, but instructive.  The dubbed cassette was both a second class citizen and an object of desire and affection, the Sally Hemmings of your record collection.  It represented the inferior but also the exotic.  It was special and prized but also kept to the side,  segregated from your more conventionally desirable items, except for those moments when you were alone, when you traveled, or when you wanted to impress your savvier friends with your more obscure tastes.  In the end, unceremoniously abandoned.</p>
<p>I could go on some more about the importance of the cassette to DIY and punk culture, but I&#8217;ll leave that alone.  I could also talk about taping crappy pop songs off the radio so I could lip sync to them in my childhood living room, or how I once faced two single-deck boomboxes at each other in order to make a copy of <em>Licensed to Ill</em>, but I don&#8217;t want to spread the schlock too thick here.  Instead of grasping at the sky in agony over my lost passion for music, I&#8217;ve decided to reinvest myself in vinyl and try to set aside times to just listen to music &#8211; not on my phone, not while I&#8217;m walking down the street or in the elevator, but listening to music while I&#8217;m&#8230; listening to music (okay, I might read a magazine, but an analog one for sure).</p>
<p>As Steve Albini put it back in the day, &#8220;The future belongs to the analog loyalists. Fuck digital.&#8221;</p>
<p><strong>Note</strong>: I &#8220;dubbed&#8221; the above image from the Internet and photoshopped in what may well be the real title of a real tape I may or may not have made for or received from a friend circa 1989.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2010/a-sililoquy-on-the-cassette-tape-and-other-analog-wonders/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding an Image Lightbox in Omeka</title>
		<link>http://jeffersonsnewspaper.org/2009/adding-an-image-lightbox-in-omeka/</link>
		<comments>http://jeffersonsnewspaper.org/2009/adding-an-image-lightbox-in-omeka/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 15:03:21 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[LightBox]]></category>
		<category><![CDATA[omeka]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=591</guid>
		<description><![CDATA[Maybe it&#8217;s just me, but I had a heckuva time trying to figure out how to implement Lightbox 2 in Omeka. After piecing together info and code from here and there, then adding my own little improvements, I&#8217;ve constructed a simple little 4-step guide to document the process and, hopefully, help make this process a little less vexing for others out there who aren&#8217;t PHP and Java Script pros. Step One: Get the Lightbox Package...]]></description>
			<content:encoded><![CDATA[<p><img src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/11/Untitled-11.jpg" alt="LightBox-example_OCW150" title="LightBox-example_OCW150" width="630" height="auto" class="aligncenter size-full wp-image-609" />Maybe it&#8217;s just me, but I had a heckuva time trying to figure out how to implement <a title="LightBox2 by Lokesh Dhakar" href="http://www.huddletogether.com/projects/lightbox2/">Lightbox 2</a> in <a title="Omeka" href="http://omeka.org/">Omeka</a>.  After piecing together info and code from here and there, then adding my own little improvements, I&#8217;ve constructed a simple little 4-step guide to document the process and, hopefully, help make this process a little less vexing for others out there who aren&#8217;t PHP and Java Script pros.</p>
<p><span id="more-591"></span></p>
<p><strong>Step One: Get the Lightbox Package</strong></p>
<p>The first step is to get the latest LightBox 2 package <a title="LightBox2 by Lokesh Dhakar" href="http://www.huddletogether.com/projects/lightbox2/">here</a>, where you will find a quick explanation of how it works and how to get started.</p>
<p><strong>Step Two: Modify and Upload the LightBox Package</strong></p>
<p>Once you have the package, make sure it&#8217;s in a folder called &#8220;lightbox&#8221; and upload it to your Omeka theme directory inside the &#8220;common&#8221; directory where your header and footer files are located.  Take the image files and copy them to your theme&#8217;s &#8220;images&#8221; directory.</p>
<p>Inside common/lightbox/js directory, find the file called &#8220;lightbox.js&#8221; and set your configurations.  This is where you set your lightbox behaviors (overlayOpacity, animate, resizeSpeed, borderSize, etc.) and also where you tell LightBox how to find the images and labels to display Close and Loading.  When setting the former, you can fiddle with the defaults to get the style you need, it&#8217;s pretty easy to understand.  For the latter (image locations), you can use either a relative or a direct URL.  If a relative location (e.g. &#8216;../images/loading.gif&#8217;) does not work for you, try using the direct URL (e.g. &#8216;http://www.yoursite.com/omeka/themes/themename/images/loading.gif&#8217;).  My impression is that Omeka requires the direct URL for some reason.  You could probably leave the images in the &#8220;lightbox&#8221; directory and point to them there as well.</p>
<p><strong>Step Three: Modify your Omeka Theme Header</strong></p>
<p>Add the script to your theme header (be sure to modify with your actual theme name):</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;!-- Start Lightbox includes --&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> WEB_ROOT<span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>/themes/themename/common/lightbox/js/prototype.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> WEB_ROOT<span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>/themes/themename/common/lightbox/js/scriptaculous.js?load=effects,builder&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> WEB_ROOT<span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>/themes/themename/common/lightbox/js/lightbox.js&quot;&gt;&lt;/script&gt;
&lt;!-- End Lightbox includes --&gt;</pre></div></div>

<p>Pretty basic.</p>
<p>Also, you&#8217;ll want to either copy the LightBox CSS styles into your theme&#8217;s stylesheet or move it to the theme styles directory and link to it in your header.  Either way, be sure to double check that your images are properly linked.  I find that having the LightBox styles included in a single stylesheet is preferable, but if you want, you can use something like this after moving lightbox.css to your theme directory:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;css/lightbox.css&quot;</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/css&quot;</span> media<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;screen&quot;</span> <span style="color: #339933;">/&gt;</span></pre></div></div>

<p><strong>Step Four: Modify Your Omeka Items-Show Page</strong></p>
<p>This is where I got hung up.  The site I was working on has multiple file types &#8212; not just images, but also audio and video.  I was lucky enough to find a starting point on the <a title="Lightbox | Omeka Dev Google Group" href="http://groups.google.com/group/omeka-dev/browse_thread/thread/db7e65096a08b26f">Omeka Dev Google Group</a> as well as on the <a title="Lightbox | Omeka Forums" href="http://omeka.org/forums/topic/what-handle-to-access-mediaphp-for-a-new-plugin">Omeka Forums</a>, but the code was written for item pages with a single image file.  Since I&#8217;m not great with arrays, it took me a while to come up with the imperfect code below.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">	<span style="color: #339933;">&lt;!--</span> The following returns all of the files associated with an item<span style="color: #339933;">.</span> <span style="color: #339933;">--&gt;</span>
	<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;itemfiles&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;element&quot;</span><span style="color: #339933;">&gt;</span>
	    <span style="color: #339933;">&lt;</span>h3<span style="color: #339933;">&gt;</span>Files<span style="color: #339933;">&lt;/</span>h3<span style="color: #339933;">&gt;</span>
		<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;element-text&quot;</span><span style="color: #339933;">&gt;</span>
		    <span style="color: #339933;">&lt;</span> ?php 
		    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>item_has_thumbnail<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> 
					<span style="color: #009900;">&#123;</span>
					<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;p&gt;&lt;em&gt;Click the Image for Full Size&lt;/em&gt;'</span><span style="color: #339933;">;</span>
					<span style="color: #b1b100;">echo</span> display_files_for_item<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'linkAttributes'</span><span style="color: #339933;">=&gt;</span>array<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'rel'</span><span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'lightbox[group]'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
										<span style="color: #009900;">&#125;</span>
			<span style="color: #b1b100;">else</span>
				<span style="color: #009900;">&#123;</span>
				<span style="color: #b1b100;">echo</span> display_files_for_item<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #009900;">&#125;</span>
			<span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
	<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<p>This script will test if the item has a thumbnail (i.e. &#8220;is it an image?&#8221;).  If it does, it will display the files as square thumbnails and give them &#8216;rel=&#8221;lightbox[group]&#8220;&#8216; &#8211; clicking on images with the &#8220;lightbox&#8221; relation in the URL will prompt the light box; if there are two or more images associated with the file, the &#8216;[group]&#8216; part will kick in to add the Next and Previous buttons.  If the item file is not an image, the script calls the generic Omeka function display_files_for_item(), which will automatically call the media player (for audio and video) if needed.</p>
<p>A pretty easy process when you have it all right in front of you.  Hope this will be helpful to someone out there.</p>
<p>NOTE: I&#8217;ll continue to update this post with any improvements.  If <em>you</em> have a problem, fix, or improvement to share, please add it in the comments or catch me on Twitter (<a href="http://twitter.com/ebellempire">@ebellempire</a>).  I&#8217;ve also cross-posted this tutorial in the documentation wiki at <a href="http://omeka.org/codex/Adding_LightBox_to_Omeka">Omeka.org</a>, so feel free to contribute there as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2009/adding-an-image-lightbox-in-omeka/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating a Blog Topics Directory in WPMU 2.8 + BuddyPress 1.1</title>
		<link>http://jeffersonsnewspaper.org/2009/creating-a-blog-topics-directory-in-wpmu-2-8-buddypress-1-1/</link>
		<comments>http://jeffersonsnewspaper.org/2009/creating-a-blog-topics-directory-in-wpmu-2-8-buddypress-1-1/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 03:28:12 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[information architecture]]></category>
		<category><![CDATA[plug-ins]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wpmu]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=557</guid>
		<description><![CDATA[I recently set up an installation of WordPress MultiUser (WPmu) + BuddyPress for the History Department where I work. We have a number of different user groups on the site, including Courses, Workshops, and Projects. Eventually we will also have Personal sites (for students, staff, and faculty in the dept.) and perhaps some small organizations and campus groups. Right now the site is small, so it would be reasonable to manually create and maintain a...]]></description>
			<content:encoded><![CDATA[<p><img src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/10/buddyPress-alt.jpg" alt="buddyPress-alt" title="buddyPress" width="630" height="auto" class="aligncenter size-full wp-image-572" /></p>
<p>I recently set up an installation of <a href="http://mu.wordpress.org/">WordPress MultiUser</a> (WPmu) + <a href="http://buddypress.org/">BuddyPress</a> for the History Department where I work.  We have a number of different user groups on the site, including Courses, Workshops, and Projects.  Eventually we will also have Personal sites (for students, staff, and faculty in the dept.) and perhaps some small organizations and campus groups.  Right now the site is small, so it would be reasonable to manually create and maintain a topical directory.  As the site grows, however, this could become a burden to say the least.  Nobody likes to do that kind of crap &#8211; not even graduate assistants.  So with the help of an outdated plug-in and a couple of tiny hacks, I easily created a directory of Blogs by Topic so I never need to hand code the directory.  Read on to find out how.</p>
<p><span id="more-557"></span></p>
<p>To begin with, I&#8217;m using Deanna Schneider&#8217;s very handy <a title="BlogTopicsForWPMU @ WordPress.org" href="http://wordpress.org/extend/plugins/blog-topics/">Blog Topics For WPMU</a>. Basically, Blog Topics creates a field in the relevant Settings, Registration and BuddyPress areas in which your users choose from a drop-down of admin-defined topics.  They cannot create new topics, they must use the ones you set, so keep that in mind.  The Site Admin can manually set the Topic for any blog at any time; this might be necessary if you already have a handful of blogs on your site (or you could demand that your users do it themselves because this is all about being lazy).  Some users might misfile their site in the wrong category, but you can always go in and edit any blog&#8217;s Topic; they probably won&#8217;t even notice.</p>
<p>You might be wondering why I would write a tutorial for installing a plug-in.  Well, I&#8217;m not sure if the plug-in code has some deprecated elements or if it just doesn&#8217;t play nice with the new BuddyPress theme structure, but it&#8217;s actually a bit more complicated than just installing the plug-in. For whatever reason, the documentation for this plug-in is pretty weak and some of it just doesn&#8217;t seem to work without some tweaks.  That&#8217;s where I come in to sum up my hours of frustration with what now seems like an obvious process.</p>
<p>Here&#8217;s the drill&#8230;</p>
<ol>
<li>Install the plug-in in your wp-content/plugins folder and activate it on your parent site.  The plug-in comes with a nice little widget for your MU child sites, but it won&#8217;t help you here so consider it optional.</li>
<li>Inside the wp-content/plugins/blog-topics directory, you will find the file cets_blog_topics_page.php (a WordPress page template).  Copy this file to the root of your site&#8217;s parent theme file. If you are using BuddyPress 1.1, that means themes/bp-sn-parent.</li>
<li>Now, take that file and mess it all up according to the instructions below.  Unfortunately, in the plug-in&#8217;s current state (v. 0.3.2), the default file just doesn&#8217;t work, but after digging around in the code, I found some functions that work quite nicely and can be easily integrated into your BuddyPress directories.  Again, you will need to save this to the root of your theme.</li>
<li>Create a page called Blog Topics Directory (or whatever) and apply the Blog Topics Page template you just created.
</li>
</ol>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span> ?php
<span style="color: #666666; font-style: italic;">/*
Template Name: Blog Topics Page
*/</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #339933;">&lt;</span> ?php get_header<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;content&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;narrowcolumn&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;</span> ?php do_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'bp_before_directory_blogs_content'</span> <span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;page&quot;</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;blog-page&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
			<span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
				<span style="color: #339933;">&lt;</span>h2 <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagetitle&quot;</span><span style="color: #339933;">&gt;&lt;</span> ?php the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>h2<span style="color: #339933;">&gt;</span>
&nbsp;
                                <span style="color: #339933;">&lt;!--</span>using anchors <span style="color: #b1b100;">for</span> long lists<span style="color: #339933;">,</span> or you could <span style="color: #000000; font-weight: bold;">use</span> something fancier to browse topics<span style="color: #339933;">--&gt;</span>
&nbsp;
					<span style="color: #339933;">&lt;</span>ul id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;topic-list&quot;</span><span style="color: #339933;">&gt;</span>
					<span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;#topic1&quot;</span><span style="color: #339933;">&gt;</span>Topic <span style="color: #cc66cc;">1</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span>
					<span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;#topic2&quot;</span><span style="color: #339933;">&gt;</span>Topic <span style="color: #cc66cc;">2</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span>	
					<span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;#topic3&quot;</span><span style="color: #339933;">&gt;</span>Topic <span style="color: #cc66cc;">3</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span>	
					<span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;#topic4&quot;</span><span style="color: #339933;">&gt;</span>Topic <span style="color: #cc66cc;">4</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span>	
					<span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;#topic5&quot;</span><span style="color: #339933;">&gt;</span>Topic <span style="color: #cc66cc;">5</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span>	
					<span style="color: #339933;">&lt;/</span>ul<span style="color: #339933;">&gt;</span>					
&nbsp;
<span style="color: #339933;">&lt;!--</span>add the numeric Topic ID according to the models below<span style="color: #339933;">--&gt;</span>	
&nbsp;
<span style="color: #339933;">&lt;!--</span>topic1<span style="color: #339933;">--&gt;</span>
<span style="color: #339933;">&lt;</span>a name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;topic1&quot;</span><span style="color: #339933;">&gt;&lt;/</span>a<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h2 <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagetitle&quot;</span><span style="color: #339933;">&gt;&lt;</span> ?php <span style="color: #b1b100;">echo</span> cets_get_topic_name<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'1'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> Blogs<span style="color: #339933;">&lt;/</span>h2<span style="color: #339933;">&gt;</span>  
<span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">echo</span> cets_get_blogs_from_topic_id_html<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #339933;">&lt;!--</span>topic2<span style="color: #339933;">--&gt;</span>
<span style="color: #339933;">&lt;</span>a name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;topic2&quot;</span><span style="color: #339933;">&gt;&lt;/</span>a<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h2 <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagetitle&quot;</span><span style="color: #339933;">&gt;&lt;</span> ?php <span style="color: #b1b100;">echo</span> cets_get_topic_name<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'2'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> Blogs<span style="color: #339933;">&lt;/</span>h2<span style="color: #339933;">&gt;</span>  
<span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">echo</span> cets_get_blogs_from_topic_id_html<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'2'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #339933;">&lt;!--</span>topic3<span style="color: #339933;">--&gt;</span>
<span style="color: #339933;">&lt;</span>a name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;topic3&quot;</span><span style="color: #339933;">&gt;&lt;/</span>a<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h2 <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagetitle&quot;</span><span style="color: #339933;">&gt;&lt;</span> ?php <span style="color: #b1b100;">echo</span> cets_get_topic_name<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'3'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> Blogs<span style="color: #339933;">&lt;/</span>h2<span style="color: #339933;">&gt;</span>  
<span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">echo</span> cets_get_blogs_from_topic_id_html<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'3'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #339933;">&lt;!--</span>topic4<span style="color: #339933;">--&gt;</span>
<span style="color: #339933;">&lt;</span>a name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;topic4&quot;</span><span style="color: #339933;">&gt;&lt;/</span>a<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h2 <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagetitle&quot;</span><span style="color: #339933;">&gt;&lt;</span> ?php <span style="color: #b1b100;">echo</span> cets_get_topic_name<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'4'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> Blogs<span style="color: #339933;">&lt;/</span>h2<span style="color: #339933;">&gt;</span>  
<span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">echo</span> cets_get_blogs_from_topic_id_html<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'4'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #339933;">&lt;!--</span>topic5<span style="color: #339933;">--&gt;</span>
<span style="color: #339933;">&lt;</span>a name<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;topic5&quot;</span><span style="color: #339933;">&gt;&lt;/</span>a<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h2 <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagetitle&quot;</span><span style="color: #339933;">&gt;&lt;</span> ?php <span style="color: #b1b100;">echo</span> cets_get_topic_name<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'5'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> Blogs<span style="color: #339933;">&lt;/</span>h2<span style="color: #339933;">&gt;</span>  
<span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">echo</span> cets_get_blogs_from_topic_id_html<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'5'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
			<span style="color: #339933;">&lt;</span> ?php <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;</span> ?php do_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'bp_after_directory_blogs_content'</span> <span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
<span style="color: #339933;">&lt;</span> ?php get_sidebar<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #339933;">&lt;</span> ?php get_footer<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>You could probably find any number of ways to integrate this into your theme&#8217;s Blog Directory.  Although I might eventually change it, right now, I&#8217;ve just added a link to the Blog Directory sidebar which users can&#8230; use&#8230; to Browse Blogs by Topic.  If it helps, <a title="Cleveland History Blogs" href="http://clevelandhistory.org/">here&#8217;s a link to the site where this code is being used</a>.  Again, it needs some tweaking but this should get you started.  Hope this quick fix has helped.  </p>
<p>If you&#8217;re wondering why this post has a giant image of <a href="http://en.wikipedia.org/wiki/Brak_%28character%29">Brak</a> (among other notable &#8220;buddies&#8221;) at the top, or if you just need a break from all this BuddyPress nonsense, you might need to listen to this&#8230;<br />
<!-- ProPlayer by Isa Goksu --><div name="mediaspace" id="mediaspace"><div class="pro-player-container" width="630px" height="46px"><div id="pro-player-557pp-single-4f300678d0ad3"></div></div></div><script type="text/javascript" charset="utf-8">var flashvars = {width: "630",height: "46",autostart: "false",repeat: "false",backcolor: "111111",frontcolor: "cccccc",lightcolor: "66cc00",stretching: "fill",enablejs: "true",mute: "false",skin: "http://jeffersonsnewspaper.org/wp-content/plugins/proplayer/players/skins/default.swf",plugins: "",javascriptid: "557pp-single-4f300678d0ad3",image: "",file: 'http://jeffersonsnewspaper.org/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=557pp-single-4f300678d0ad3&sid=1328547449'};var params = {wmode: "transparent",allowfullscreen: "true",allowscriptaccess: "always",allownetworking: "all"};var attributes = {id: "obj-pro-player-557pp-single-4f300678d0ad3",name: "obj-pro-player-557pp-single-4f300678d0ad3"};swfobject.embedSWF("http://jeffersonsnewspaper.org/wp-content/plugins/proplayer/players/player.swf", "pro-player-557pp-single-4f300678d0ad3", "630", "46", "9.0.0", false, flashvars, params, attributes);</script></p>
<p align="center"><a href="http://brakbuddy.ytmnd.com/">Brak sings Yeah Buddy (via brakbuddy.ytmnd.com)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2009/creating-a-blog-topics-directory-in-wpmu-2-8-buddypress-1-1/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
<enclosure url="http://content.ytmnd.com/content/9/3/f/93fb525eff749c9e9f82e14ce629bf12.mp3" length="700465" type="audio/mpeg" />
<enclosure url="http://i.cdn.turner.com/adultswim/shows/downloads/shows/brak/mp3/brak_6.mp3" length="192504" type="audio/mpeg" />
		</item>
		<item>
		<title>The Spectacle, the Social Web and You</title>
		<link>http://jeffersonsnewspaper.org/2009/the-spectacle-and-you/</link>
		<comments>http://jeffersonsnewspaper.org/2009/the-spectacle-and-you/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 21:15:31 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[detournement]]></category>
		<category><![CDATA[digital history]]></category>
		<category><![CDATA[film]]></category>
		<category><![CDATA[Guy Debord]]></category>
		<category><![CDATA[Situationists]]></category>
		<category><![CDATA[social networks]]></category>
		<category><![CDATA[spectacle]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=30</guid>
		<description><![CDATA[&#8220;The only historically justified tactic is extremist innovation&#8221; &#8211; Debord &#38; Wolman, A User&#8217;s Guide to Détournement (1956) I&#8217;ve been thinking about the Situationists for about a decade now, after learning of Guy Debord&#8217;s Society of the Spectacle in some Propagandhi liner notes (I think) about a decade ago.  Sadly, after all that time, I&#8217;ve developed no great insights as to what the hell they were talking about.  I mean, I get the gist if...]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="Guy Debord [via Flickr]" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/09/Ingirum3.jpg" alt="" width="700" height="463" /></p>
<p style="text-align: center;"><em>&#8220;The only historically justified tactic is extremist innovation&#8221; &#8211; Debord &amp; Wolman, A User&#8217;s Guide to Détournement (1956)</em></p>
<p style="text-align: left;">I&#8217;ve been thinking about the <a title="SI @ wikipedia" href="http://en.wikipedia.org/wiki/Situationist_International">Situationists</a> for about a decade now, after learning of Guy Debord&#8217;s <a title="Society of the Spectacle (2002 transl.) @ bopsecrets.org" href="http://www.bopsecrets.org/SI/debord/index.htm">Society of the Spectacle</a> in some <a title="propagandhi.com" href="http://propagandhi.com/">Propagandhi</a> liner notes (I think) about a decade ago.  Sadly, after all that time, I&#8217;ve developed no great insights as to what the hell they were talking about.  I mean, I get the gist if that counts for anything, but I think to really grasp what they&#8217;re really getting at, one needs a graduate seminar and plenty of contextual knowledge.  Nevertheless, the shit is damn brilliant and informs my worldview in many ways (most of which are surely based on misreading).  Since presently, I do what one might call information work, and as a result have become heavily invested in the web and social networking, I&#8217;ll use this post to share some cool films by the Situationist International (SI), and briefly look at how the SI&#8217;s  ideas of spectacle, détournement, and separation apply to the social web.</p>
<p style="text-align: left;"><span id="more-30"></span></p>
<p style="text-align: center;"><strong>Social networks as commodified existence&#8230;</strong></p>
<p style="text-align: left;">I&#8217;ve always felt a certain ambivalence toward the Internet, particularly as it has become the prime mediator of social and professional interaction.  Obviously, we have experienced some real and perceived benefits due to our increasingly rapid adoption of technology (defining &#8220;technology&#8221; is problematic in many of the same ways as &#8220;information,&#8221; but let&#8217;s put that aside and assume I mean computers and electronics and stuff).  We have increased economic opportunities (for some), more free time (theoretically), greater safety and efficiency, instant production and communication without regard to geography, and access to unbelievable amounts of information.  But we can just as easily indict technology for it&#8217;s less benign social, political, and economic effects.  A short list of technology&#8217;s less celebrated effects might include: modern global warfare, loss of personal privacy, environmental devastation, and political (as well as social, economic, and cultural) hegemony &#8212; all brought to new heights by liberatory (at first glance) technology such as industrial automation; steam, electrical, and combustion power; the telephone; modern media; and any number of innovations in digital computing.  Of course, what we currently colloquially refer to as &#8220;technology&#8221; &#8212; the Internet &#8212; is equally hailed in alternation as a force for democracy and a catalyst for democracy&#8217;s demise.  Obviously, both are true in their own argumentation, but miss the larger point altogether.</p>
<p style="text-align: left;">With the relatively recent explosion of Web 2-point-oh!, social networks, etc., we see something notably different than what was experienced with earlier technologies.  Machines, electricity, cars, televisions, and the like, were all transformative and initially liberated in some sense; addressing (and inventing) needs, and conferring legitimacy and status to their early consumers.   In those regards, the Web is not different.  Where it departs from previous innovations is that it goes beyond creating, serving, and reinforcing consumer identity and consumer culture into actually displacing and disappearing the consumer as he exists in reality.  Debord identified this tendency in <em>&#8230;the Spectacle </em>as it relates to earlier (1960s) cultural conditions, but it is ripe for application to the 21st century, with it&#8217;s ravenous tech fetishism and fascination with identity construction and maintenence through social networks.</p>
<p style="text-align: left;">As you may have guessed, I recently picked up <em>Society of the Spectacle</em> for some rereading and found that basically the entirety of the first chapter is as effective a deconstruction of 21st c. new media culture as it was of television, films, and advertising in 1967.  Here&#8217;s a sample&#8230;</p>
<blockquote><p><em>1</em></p>
<p><em>In societies dominated by modern conditions of production, life is presented  as an immense accumulation of spectacles. Everything that was directly  lived has receded into a representation.</em></p>
<p><em><br />
2</em></p>
<p><em>The images detached from every aspect of life merge into a common stream in  which the unity of that life can no longer be recovered. Fragmented views of  reality regroup themselves into a new unity as a separate pseudoworld that can only be looked at. The specialization of images of the world evolves  into a world of autonomized images where even the deceivers are deceived. The  spectacle is a concrete inversion of life, an autonomous movement of the  nonliving.</em></p>
<p><em><br />
</em></p>
<p><em><br />
3</em></p>
<p><em>The spectacle presents itself simultaneously as society itself, as a part of society,  and as a means of unification. As a part of society, it is the focal  point of all vision and all consciousness. But due to the very fact that this sector is  separate, it is in reality the domain of delusion and false  consciousness: the unification it achieves is nothing but an official language  of universal separation.</em></p>
<p><em><br />
4</em></p>
<p><em>The spectacle is not a collection of images; it is a social relation between  people that is mediated by images.</em></p>
<p><em><br />
5</em></p>
<p><em>The spectacle cannot be understood as a mere visual excess produced by  mass-media technologies. It is a worldview that has actually been materialized,  a view of a world that has become objective.</em></p>
<p><em><br />
6</em></p>
<p><em>Understood in its totality, the spectacle is both the result and the project of  the dominant mode of production. It is not a mere decoration added to the real  world. It is the very heart of this real society’s unreality. In all  of its  particular manifestations — news, propaganda, advertising, entertainment — the  spectacle represents the dominant model of life. It is the omnipresent  affirmation of the choices that have already been made in the sphere of  production and in the consumption implied by that production. In both form and  content the spectacle serves as a total justification of the conditions and  goals of the existing system. The spectacle also represents the constant  presence of this justification since it monopolizes the majority of the time  spent outside the production process.</em></p></blockquote>
<p>I could continue quoting <em>ad nauseum</em> (actually, you may already be throwing up), but I&#8217;ll leave it to the reader to <a title="Society of the Spectacle (2002 transl.) @ bopsecrets.org" href="http://www.bopsecrets.org/SI/debord/index.htm">read more</a> if they choose.  In the end, I&#8217;m still not sure where I stand on this.  I like the internet.  It&#8217;s amusing and often useful.  And as a worker in information and technology, I am actually <em>not</em> alienated from my own work.  More than ever, I have a high degree of control over the products of my labor. While I see the potential harm of these evolving conditions, I mostly see them in the bizarrely onanistic tweets/status updates of <em>others</em>.  I, naturally, am able to rise above the unreality of mediated life &#8212; so much so that I&#8217;m thinking about purchasing an island timeshare in <em>Second Life</em> to serve as respite for my <em>World of Warcraft</em> guild.  This, of course, would be done as an act of serious-parodic détournement (not to be confused with shallow irony), and thus would not be lame.</p>
<p style="text-align: center;"><strong>Détournement</strong><strong>&#8230;</strong></p>
<p style="text-align: left;">So, what is détournement?  A quick but insufficient answer might be found reference to hip hop, web mashups, Marcel Duchamp, or Adbusters. &#8220;In détournement, an artist reuses elements of well-known media to create a new work with a different message, often one opposed to the original&#8221; (Wikipedia).  A common example (though I&#8217;m not sure it was ever actually produced) would be to take the footage of <em>The Birth of a Nation</em>, and replace the text panels of that technical masterpiece with new music or text which would change (or détourne) the original meaning, from an egregiously racist historical lie, to something that crafts from the film&#8217;s intellectual content and technical strength an effective (and modern/correct/relevant) moral-political statement.  As Debord &amp; Wolman point out (1956), if such a project merely attempts to negate the meaning through irony, counter-argument or comedic juxtaposition, it misses the opportunity and the point.  The best example I&#8217;ve seen, which serves as a better instruction than I can write, is   René Viénet&#8217;s <em>Can Dialectics Break Bricks?</em>.</p>
<p style="text-align: left;">
<p style="text-align: center;"><!-- ProPlayer by Isa Goksu --><div name="mediaspace" id="mediaspace"><div class="pro-player-container" width="630px" height="425px"><div id="pro-player-30pp-single-4f300679522d2"></div></div></div><script type="text/javascript" charset="utf-8">var flashvars = {width: "630",height: "425",autostart: "false",repeat: "false",backcolor: "111111",frontcolor: "cccccc",lightcolor: "66cc00",stretching: "fill",enablejs: "true",mute: "false",skin: "http://jeffersonsnewspaper.org/wp-content/plugins/proplayer/players/skins/default.swf",plugins: "",javascriptid: "30pp-single-4f300679522d2",image: "",file: 'http://jeffersonsnewspaper.org/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=30pp-single-4f300679522d2&sid=1328547449'};var params = {wmode: "transparent",allowfullscreen: "true",allowscriptaccess: "always",allownetworking: "all"};var attributes = {id: "obj-pro-player-30pp-single-4f300679522d2",name: "obj-pro-player-30pp-single-4f300679522d2"};swfobject.embedSWF("http://jeffersonsnewspaper.org/wp-content/plugins/proplayer/players/player.swf", "pro-player-30pp-single-4f300679522d2", "630", "425", "9.0.0", false, flashvars, params, attributes);</script></p>
<p style="text-align: center;"><strong><span style="color: #000000;"><a href="http://www.ubu.com/film/vienet_dialectics.html"><strong>Film: Can Dialectics Break Bricks?</strong></a>: </span><span style="color: #000000;"> <strong>René Viénet, </strong></span><span style="color: #000000;">1973: </span></strong><strong>via <a title="UBU Web" href="http://www.ubu.com/">U B U W E B</a></strong></p>
<p style="text-align: left;">I&#8217;m not a great fan of the Debord films, though they do nicely illustrate, literally, the idea of the spectacular as it permeates our collective media life.  As with social networks, academia and high culture, the images Debord détournes in <em>Society of the Spectacle</em> are, individually and collectively, simultaneously useful, beautiful, and inspiring, as well as banal, authoritarian and vacuous. Like all cultural products, their meanings are contextual and constructed and can serve many masters at once.  The same is true of new media products, services, and cultural tendencies.</p>
<p style="text-align: center;">
<p style="text-align: center;"><!-- ProPlayer by Isa Goksu --><div name="mediaspace" id="mediaspace"><div class="pro-player-container" width="630px" height="425px"><div id="pro-player-30pp-single-4f300679bc282"></div></div></div><script type="text/javascript" charset="utf-8">var flashvars = {width: "630",height: "425",autostart: "false",repeat: "false",backcolor: "111111",frontcolor: "cccccc",lightcolor: "66cc00",stretching: "fill",enablejs: "true",mute: "false",skin: "http://jeffersonsnewspaper.org/wp-content/plugins/proplayer/players/skins/default.swf",plugins: "",javascriptid: "30pp-single-4f300679bc282",image: "",file: 'http://jeffersonsnewspaper.org/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=30pp-single-4f300679bc282&sid=1328547450'};var params = {wmode: "transparent",allowfullscreen: "true",allowscriptaccess: "always",allownetworking: "all"};var attributes = {id: "obj-pro-player-30pp-single-4f300679bc282",name: "obj-pro-player-30pp-single-4f300679bc282"};swfobject.embedSWF("http://jeffersonsnewspaper.org/wp-content/plugins/proplayer/players/player.swf", "pro-player-30pp-single-4f300679bc282", "630", "425", "9.0.0", false, flashvars, params, attributes);</script></p>
<p style="text-align: center;"><strong><a title="Society of the Spectacle @ UBUweb" href="http://www.ubu.com/film/debord_spectacle.html">Film: Society of the Spectacle, parts 1 &amp; 2</a>: Guy Debord, 1973: via <a title="UBU Web" href="http://www.ubu.com/">U B U W E B</a></strong></p>
<p style="text-align: left;">Although new media culture has some very deep differences from traditional media culture working in its favor (openness, decentralization, interactivity), it&#8217;s yet to be seen how that will change over time.  Likewise, will the ubiquity of web-mediated social interaction continue on its current trajectory (whatever <em>that</em> might be is actually unclear), or will it evolve into new and unexpected forms?  I&#8217;ve got this idea that the (social) web is the perfect vehicle for détournement, though I&#8217;m less convinced it&#8217;s a worthy venue for cultural resistance.  Any thoughts?</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2009/the-spectacle-and-you/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building a WordPress Static Homepage with Dynamic Elements</title>
		<link>http://jeffersonsnewspaper.org/2009/building-a-wordpress-static-homepage-with-dynamic-elements/</link>
		<comments>http://jeffersonsnewspaper.org/2009/building-a-wordpress-static-homepage-with-dynamic-elements/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 18:07:30 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Reference]]></category>
		<category><![CDATA[category feeds]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[dummyproofing]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[external feeds]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[omeka]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[static homepages]]></category>
		<category><![CDATA[theme functions]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=421</guid>
		<description><![CDATA[One of the nice features of WordPress is the ability to create static homepages. While most blogs use the standard configuration, where users scroll vertically from the most recent to older blog posts, it often makes sense to use a static homepage instead &#8212; especially if you are looking to create a more professional looking site, or are using WordPress as a Content Management System. I recently tackled a project where we needed to create...]]></description>
			<content:encoded><![CDATA[<p><img src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/09/Manhattan_Bridge_Construction_19091.jpg" width="620px" height="auto"/>One of the nice features of WordPress is the ability to create <a title="Static Homepages @ WP" href="http://codex.wordpress.org/Creating_a_Static_Front_Page">static homepages</a>.  While most blogs use the standard configuration, where users scroll vertically from the most recent to older blog posts, it often makes sense to use a static homepage instead &#8212; especially if you are looking to create a more professional looking site, or are using <a title="WP as CMS @ DevLounge.net" href="http://www.devlounge.net/publishing/things-to-consider-when-using-wordpress-as-a-cms">WordPress as a Content Management System</a>.  I recently tackled a project where we needed to create a static homepage with the following features</p>
<ol>
<li>The homepage needed to look &#8220;homepagey&#8221; (i.e. not &#8220;bloggy&#8221;)</li>
<li>Client needed room for a short introductory text, which could be edited/updated on the fly without disrupting the homepage layout</li>
<li>The homepage needed to highlight the many features on the site, so that users could quickly scan the page, see what the site had to offer, and quickly find the latest update in each area.</li>
</ol>
<p>This quick tutorial will share some code for reproducing something that meets all or some of those criteria.  You don&#8217;t need to know much code to complete this tutorial, but a little helps.  Once you create and implement your homepage template, you will need to use CSS to add styles and adjust the layout.</p>
<p><span id="more-421"></span></p>
<p><strong>The Basics of Creating a Homepage Template</strong></p>
<p>This is pretty well-documented elsewhere, but here&#8217;s what you need to know on the most basic level.  If you are using a prefab theme, find that theme&#8217;s page.php file.  Now take that file and make a copy called homepage.php (or really, whatever you like).  Next, add the five lines below to the very top of the page (before the header and sidebar calls):</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span> ?php
<span style="color: #666666; font-style: italic;">/*
Template Name: Home Page
*/</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Now, when you edit or create the page you want to use as Home, you can choose the Home Page template and set it as the static homepage for your site in Settings >> Reading.  But this won&#8217;t get you far.  As is, this template just replicates the behavior of any page on your site.  That&#8217;s not very exciting.  Instead, let&#8217;s try adding some dynamic content to the template.</p>
<p><strong>Note on custom theme_excerpt() function used below</strong></p>
<p>Before you get all crazy and just copy-paste from the homepage code below, note that I am using a custom function to generate post excerpts. To use that function you must first create a file called functions.php and add the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span> ?php
<span style="color: #000000; font-weight: bold;">function</span> theme_excerpt<span style="color: #009900;">&#40;</span><span style="color: #000088;">$num</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$more</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$more</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$link</span> <span style="color: #339933;">=</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$limit</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$num</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$excerpt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">' '</span><span style="color: #339933;">,</span> <span style="color: #990000;">strip_tags</span><span style="color: #009900;">&#40;</span>get_the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$limit</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #990000;">array_pop</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$excerpt</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$excerpt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">implode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">,</span><span style="color: #000088;">$excerpt</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'...'</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$excerpt</span> <span style="color: #339933;">=</span> <span style="color: #990000;">preg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'`\[[^\]]*\]`'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">''</span><span style="color: #339933;">,</span><span style="color: #000088;">$excerpt</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;p&gt;'</span><span style="color: #339933;">.</span><span style="color: #000088;">$excerpt</span><span style="color: #339933;">.</span><span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$more</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>This will get you a more flexible excerpt function than the default WordPress one, <code>the_excerpt()</code>.  I think I stole this from the <a href="http://bavotasan.com/downloads/feed-me-seymour-free-wordpress-theme/" title="FMS theme">Feed Me Seymour theme</a>. You can call the function with <code>theme_excerpt(n)</code> where <em>n</em> is the number of words in the excerpt.</p>
<p><em>I&#8217;m going to break this up into sections, so if you are copy-pasting, you will need to copy all the sections below or pick and choose carefully, otherwise you might end up with some unclosed tags.</em></p>
<p><strong>Preserving the Page text</strong><br />
Most of the text in a dynamic homepage is generated from feeds, posts, and database queries (i.e. not by adding it manually to the page called Home in your WordPress page list).  In some cases, your Home page could be totally blank when accessed from the default page editor.  However, you may want to give yourself the option of manually adding and updating text somewhere on your homepage.  In the example below, we keep the WordPress page text intact by calling <a href="http://codex.wordpress.org/The_Loop" title="The Loop @ WP">The Loop</a>.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span> ?php
<span style="color: #666666; font-style: italic;">/*
Template Name: Home Page
*/</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #339933;">&lt;!--</span> get the <span style="color: #990000;">header</span> and sidebar<span style="color: #339933;">...</span> though sometimes you might want to leave the sidebar out of a Home template<span style="color: #339933;">.</span>  It<span style="color: #0000ff;">'s here just for the sake of illustration--&gt; 
&lt; ?php get_header(); ?&gt;
&lt; ?php get_sidebar(); ?&gt;
&nbsp;
&lt;div id=&quot;content&quot;&gt;
&nbsp;
&lt;!-- Homepage text from the page editor using '</span>The Loop<span style="color: #0000ff;">'--&gt;
         &lt; ?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
		&lt;div class=&quot;post&quot; id=&quot;main-entry&quot;&gt;&lt;div id=&quot;in-border&quot;&gt;
&nbsp;
			&lt;div class=&quot;entry&quot;&gt;
				&lt; ?php the_content(); ?&gt;
			&lt;/div&gt;
				  &lt; ?php endwhile; endif; ?&gt;
		&lt;/div&gt;&lt;/div&gt;
&lt;/div&gt;</span></pre></div></div>

<p><strong>An Internal Category Feed</strong><br />
Below we have the latest one post from the &#8216;News&#8217; category.  You can repeat this with other categories as needed.  This is especially useful if you use the <a href="http://http://wordpress.org/extend/plugins/category-visibility-ipeat/" title="Category Visibility plug-in">Category Visibility plug-in</a> or some other means to hide/show certain category posts in certain areas of your site.  In a recent project, for example, we created additional page templates for displaying posts in certain categories (Calendar Events, Timeline Events, Lesson Plans), but excluded them from the blog loop.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;!-- An internal feed.--&gt;
&lt;!-- The latest one post from the 'News' category --&gt;
&lt;!-- You can repeat this with other categories as needed.  --&gt;
&nbsp;
&nbsp;
&lt;li&gt;
&lt;h2&gt;News&lt;/h2&gt;
         &lt; ?php $my_query = new WP_Query('category_name=news&amp;showposts=1'); while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post(); $do_not_duplicate = $post-&gt;ID; ?&gt;
&nbsp;
                &lt;!-- Link to the 'News' category --&gt;
    		&lt;div class=&quot;post&quot;&gt;
    		&lt;div id=&quot;link-contain&quot;&gt;
                &lt;p class=&quot;contread&quot;&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/news&quot;&gt;All News &amp;raquo;&lt;/a&gt;&lt;/p&gt;  
                &lt;/div&gt;
&nbsp;
    		&lt;h3&gt;Latest News&lt;/h3&gt;
&nbsp;
                &lt;!-- The post title --&gt;
		&lt;h3&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt; ?php the_title(); ?&gt;&quot;&gt;&lt; ?php the_title(); ?&gt;&lt;/a&gt;&lt;/h3&gt;
			&lt;div class=&quot;entry&quot;&gt;
                &lt;!-- The post excerpt using custom function from theme/function.php --&gt;		
				&lt; ?php echo theme_excerpt(30); ?&gt; 
			&lt;/div&gt;
		&lt;/div&gt;
  &lt; ?php endwhile; ?&gt;
&lt;/li&gt;</pre></div></div>

<p><strong>An External Feed</strong><br />
This code uses the WordPress core functionality that brings feeds into your Dashboard.   I&#8217;m just pulling the title and link here, but you can do more.  This is especially useful if your site incorporates another platform besides WordPress.  In the example below, I use a feed from the Omeka platform (<a href="http://omeka.org">omeka.org</a>), which I had tucked into my root directory, masquerading as a native section of the site.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;!-- An External Feed  --&gt;
&lt;!-- This is especially useful if your site incorporates another platform besides WordPress.--&gt;
&nbsp;
&lt;li&gt;
&lt;h2&gt;Collections &amp;amp; Exhibits &lt;/h2&gt;
    		&lt;div class=&quot;post&quot; id=&quot;omeka-feed&quot;&gt;
    		&lt;div id=&quot;link-contain&quot;&gt;&lt;p class=&quot;contread&quot;&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/omeka&quot;&gt;View the Archive &amp;raquo;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;
			&lt;div class=&quot;entry&quot;&gt;
             &lt;!-- This code uses the WordPress core functionality that brings feeds into your Dashboard--&gt;
             &lt;!-- I'm just pulling the title and link here, but you can do more--&gt;
			&lt; ?php  
			require_once (ABSPATH . WPINC . '/rss.php');  
			$rss = @fetch_rss('http://www.myurl.org/omeka/items/browse?output=rss2');  
			if ( isset($rss-&gt;items) &amp;&amp; 0 != count($rss-&gt;items) ) {  
			?&gt;  
			&lt;h3&gt;Latest Additions&lt;/h3&gt;
			&lt;ul&gt;  
			&lt; ?php  
			$rss-&gt;items = array_slice($rss-&gt;items, 0,7);  
			foreach ($rss-&gt;items as $item ) {  
 			?&gt;  
			&lt;li&gt; 
			&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> wp_filter_kses<span style="color: #009900;">&#40;</span><span style="color: #000088;">$item</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'link'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
			&lt; ?php echo wp_specialchars($item['title']); ?&gt;  
			&lt;/a&gt;  
			&lt;/li&gt;  
			&lt; ?php } ?&gt;  
			&lt;/ul&gt;  
			&lt; ?php } ?&gt;  
			&lt;/div&gt;
&nbsp;
		&lt;/div&gt;
  &lt; ?php endwhile; ?&gt;
&lt;/li&gt;</pre></div></div>

<p><strong>A Special Plugin Feed (Simple:Press)</strong><br />
Lots of plugins generate their own feed.  Here we have an internal feed from the Simple:Press forum plugin (<a href="http://simplepressforum.com">simplepressforum.com</a>).  Such plug-ins generally use custom functions, such as the one below, the rules for which are defined in the plug-in documentation.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;!-- An internal feed from the Simple:Press forum plugin (simplepressforum.com)--&gt;
&lt;li&gt;
&lt;h2&gt;Discussions&lt;/h2&gt;
    		&lt;div class=&quot;post&quot; id=&quot;forum-posts&quot;&gt;
    		&lt;div id=&quot;link-contain&quot;&gt;&lt;p class=&quot;contread&quot;&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> get_bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/forum&quot;&gt;View Forums &amp;raquo;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;
			&lt;div class=&quot;entry&quot;&gt;
			&lt;h3&gt;Latest Topics&lt;/h3&gt;
				&lt;ul&gt;
				&lt; ?php sf_recent_posts_tag(3, false, true, true, true, 0, false); ?&gt;
				&lt;/ul&gt;
&nbsp;
			&lt;/div&gt;
&nbsp;
		&lt;/div&gt;
&nbsp;
&lt;/li&gt;</pre></div></div>

<p><strong>Listing all Pages</strong><br />
Normally, you should list all your pages in the header navigation, but in this case I had too many pages to list there, some of which didn&#8217;t belong in the navigation.  I listed only the pages that were not part of the header navigation or the footer (About, Contact) in this section.  You can find more info about <code>wp_list_pages()</code> <a href="http://codex.wordpress.org/Template_Tags/wp_list_pages" title="wp_list_pages() @ WP">here</a>.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;!--</span> <span style="color: #990000;">List</span> all parent pages and first level of child pages <span style="color: #339933;">--&gt;</span>
<span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h2<span style="color: #339933;">&gt;</span>More<span style="color: #339933;">&lt;/</span>h2<span style="color: #339933;">&gt;</span>
&nbsp;
    	<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;post&quot;</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;more-list&quot;</span><span style="color: #339933;">&gt;</span>
			<span style="color: #339933;">&lt;</span>ul<span style="color: #339933;">&gt;</span>
			<span style="color: #339933;">&lt;</span>h3<span style="color: #339933;">&gt;&lt;</span> ?php wp_list_pages<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'title_li=&amp;depth=2exclude=1,2,3,4,5,6'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span><span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>h3<span style="color: #339933;">&gt;</span>
			<span style="color: #339933;">&lt;/</span>ul<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;/</span>li<span style="color: #339933;">&gt;</span></pre></div></div>

<p>If you are copy-pasting, don&#8217;t forget to add the footer to end your page</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span> ?php get_footer<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Of course, there are plenty more tricks out there.  Frankly, these aren&#8217;t that special, but they seem fundamental.  If this helps you, let us know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2009/building-a-wordpress-static-homepage-with-dynamic-elements/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Liberal Guerillas to Fling Terror Poo at G-20 Summit!</title>
		<link>http://jeffersonsnewspaper.org/2009/liberal-guerillas-to-fling-terror-poo-at-g-20-summit/</link>
		<comments>http://jeffersonsnewspaper.org/2009/liberal-guerillas-to-fling-terror-poo-at-g-20-summit/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 02:07:35 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[In the News]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[anarchy]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[protest]]></category>
		<category><![CDATA[right wing media]]></category>
		<category><![CDATA[satire]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=382</guid>
		<description><![CDATA[I will rarely address current events on this site, but a friend of mine in PA sent me a link to a completely ridiculous story from KDKA TV News Pittsburgh, a CBS affiliate.  Hit the break for the video and the full story, annotated with my first hand clarifications.  If you think Fox News is the only one towing the right wing agenda, think again.  Luckily, these dupes are so roundly unconcerned with journalistic standards...]]></description>
			<content:encoded><![CDATA[<p><img src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/08/soviet_guerilla.jpg" alt="Advanced protesters from Pittsburgh prepare to storm the G-20 Summit" width="630" height="auto" />I will rarely address current events on this site, but a friend of mine in PA sent me a link to a <a title="G-20 Summit at KDKA TV Pittsburgh" href="http://kdka.com/local/g20/G20.security.protestors.2.1122789.html">completely ridiculous story</a> from KDKA TV News Pittsburgh, a CBS affiliate.  Hit the break for the video and the full story, annotated with my first hand clarifications.  If you think Fox News is the only one towing the right wing agenda, think again.  Luckily, these dupes are so roundly unconcerned with journalistic standards that their absurd inferences and tabloid commentary actually (almost) come across as satire.</p>
<p><span id="more-382"></span></p>
<p style="text-align: center;"><object id="ctl00_ctl00_ContentModulesPlaceHolder_ContentModule_714035_DayportPlayer" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="738" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="ctl00_ctl00_ContentModulesPlaceHolder_ContentModule_714035_DayportPlayer" /><param name="bgcolor" value="#ffffff" /><param name="flashvars" value="CBS_configPath=http://static.cbslocal.com/Themes/CBS/_resources/xml/kdka.xml&amp;CBS_playContinuously=true&amp;CBS_categoryTitle=Video&amp;CBS_playSlideShow=false&amp;CBS_categoryID=7548&amp;CBS_stationName=KDKA&amp;CBS_adsCompanionScript=resetAds&amp;CBS_adsTileId=1&amp;CBS_adsZoneId=g20&amp;CBS_storyIDs=61180@kdka.dayport.com&amp;CBS_adsCustomValues=mod=video;" /><param name="src" value="http://llnw.static.cbslocal.com/Themes/CBS/_resources/swf/minivplayerV2.swf" /><param name="wmode" value="opaque" /><param name="quality" value="high" /><embed id="ctl00_ctl00_ContentModulesPlaceHolder_ContentModule_714035_DayportPlayer" type="application/x-shockwave-flash" width="600" height="738" src="http://llnw.static.cbslocal.com/Themes/CBS/_resources/swf/minivplayerV2.swf" quality="high" wmode="opaque" flashvars="CBS_configPath=http://static.cbslocal.com/Themes/CBS/_resources/xml/kdka.xml&amp;CBS_playContinuously=true&amp;CBS_categoryTitle=Video&amp;CBS_playSlideShow=false&amp;CBS_categoryID=7548&amp;CBS_stationName=KDKA&amp;CBS_adsCompanionScript=resetAds&amp;CBS_adsTileId=1&amp;CBS_adsZoneId=g20&amp;CBS_storyIDs=61180@kdka.dayport.com&amp;CBS_adsCustomValues=mod=video;" bgcolor="#ffffff" name="ctl00_ctl00_ContentModulesPlaceHolder_ContentModule_714035_DayportPlayer"></embed></object></p>
<p>Let me clarify a few understandable journalistic mistakes here, since I frequent the liberal terror underground (also known as Ikea).</p>
<p><strong>1.  &#8220;Sources indicate that graffiti left under a downtown bridge was put there by G-20 protestors&#8230; [video shows graffiti reading "We the People..."]&#8220;</strong></p>
<p>That was me.  It actually said &#8220;G-20 is a total dick, dude&#8221; before we changed our minds and went with an obscure quote from noted Anti-American radical, the US Constitutional Convention.</p>
<p><strong>2.   &#8220;A fire at a local park was reportedly started by protestors staying in a tent&#8230; [video shows extinguished campfire hole]&#8220;</strong></p>
<p>I&#8217;m not sure how they figured it out, since I left no apparent evidence, but that was also me.  Camping is one of <em>the</em> most extreme of all seditious acts, and provides a great ambience for toasting vegan s&#8217;mores and planning future acts of librul terror.</p>
<p><strong>3.  &#8220;A young man, who did not want to be identified, says he&#8217;s been told protestors are renting South Side homes&#8230;. [video shows a conspicuously disguised hippy-surfer type listlessly exclaiming 'people are gonna die.']&#8221; </strong></p>
<p>That was actually me, incognito of course, dressed as &#8220;a total duder from Portland.&#8221;  I will just say it now, I am an agent provocateur for the <a title="About @ sec.gov" href="http://sec.gov/about/whatwedo.shtml">Securities and Exchange Commision</a>.  The disguise was chosen by my case agent, who has been watching a lot of <a title="John from Cincy @ HBO.com" href="http://www.hbo.com/johnfromcincinnati/">John From Cincinnati</a>.<br style="background-color: #ffff33;" /><br />
<strong>4.  &#8220;Sources indicate protestor advance teams have been spotted by police taking video and photographs of the David L. Lawrence Convention Center, Omni William Penn Hotel, City Hall, County Courthouse, Fort Pitt and Liberty Tunnels&#8230; [video shows rapid fire montage of these and other buildings]&#8220;</strong></p>
<p>After some extensive investigation, it appears this one was just Japanese tourists.</p>
<p><strong> 5.  &#8220;Sources indicate highly-organized protestor advance teams are mapping out possible attack points&#8230;&#8221; </strong></p>
<p>The sources actually differ here, which was not disclosed by the crack team of KDKA investigative journalists.  While some observers report that the Anarchist Black Cross was behind this nefarious &#8220;mapping,&#8221; key detainees have claimed innocence, insisting they are geocaching enthusiasts caught up in the haze of espionage.  Others still insist that it was actually a roving band of GIS hacks building a geolocation iPod app for the PA Board of Tourism.</p>
<p><strong>6.  The part about &#8220;stockpiling human waste.&#8221; </strong></p>
<p>That&#8217;s totally true, but unrelated.</p>
<p>In all seriousness, our media continues to plumb the depths in pursuit of the ever-growing simpleton demographic.  My special lady fired off a nice letter to KDKA that sums it up nicely. If you are so inclined, you might <a title="Tell it like it is, maaaan!" href="http://kdka.com/contact">do the same</a>.</p>
<blockquote><p>Dear Marty Griffin,</p>
<p>A friend of mine sent me link to your report about protesters at the G20 summit.  I must say that you made your channel and it&#8217;s staff look foolish and anti-American.  The tone of the entire piece treated protesters like terrorists.  Peaceful protest is LEGAL and it is a truly American act.  I am very curious as to how rigorous the source and fact checking was on your &#8220;feces throwing&#8221; accusations.  The graffiti you showed was a quote from the preamble of our constitution yet you treated it as if it came from some terrorist manifesto.  You gave no evidence that what was obviously the remains of a basic camp fire came from radical, pyromaniac agitators.  I am sick and tired of the scare tactics used by so many local news channels both in my hometown of Cleveland and in Pittsburgh.  You show little respect for your audience and appear to take for granted the freedom of speech that keeps you and other more serious journalists in business.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2009/liberal-guerillas-to-fling-terror-poo-at-g-20-summit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Experimenting with Historical Thinking and Web 2.0: The Little Rock Nine</title>
		<link>http://jeffersonsnewspaper.org/2009/experimenting-with-historical-thinking-and-web-2-0-the-little-rock-nine/</link>
		<comments>http://jeffersonsnewspaper.org/2009/experimenting-with-historical-thinking-and-web-2-0-the-little-rock-nine/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 17:26:08 +0000</pubDate>
		<dc:creator>Justin Hons</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[civil rights]]></category>
		<category><![CDATA[digital history]]></category>
		<category><![CDATA[historical thinking]]></category>
		<category><![CDATA[lessons]]></category>
		<category><![CDATA[Little Rock Nine]]></category>
		<category><![CDATA[MySpace]]></category>
		<category><![CDATA[teaching]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=360</guid>
		<description><![CDATA[Somewhat self-righteously, I consider myself a pretty good teacher.  I teach high school modern American History on the west side of Cleveland where some consider making it to the end of the day a victory.  I’ve been slowly pushing myself and my students to aim for goals much higher however.  Call me audacious. The recent explosion amongst the ranks of historians, history teachers, and digi-gurus in promoting both historical thinking skills (See Wineburg and the...]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-363" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/07/screen-capture.jpg" alt="screen-capture" width="630" height="auto" />Somewhat self-righteously,  I consider myself a pretty good teacher.  I teach high school modern  American History on the west side of Cleveland where some consider making  it to the end of the day a victory.  I’ve been slowly pushing  myself and my students to aim for goals much higher however.  Call  me audacious. The recent explosion amongst the ranks of historians,  history teachers, and digi-gurus in promoting both historical thinking  skills (See <a href="http://www.temple.edu/tempress/titles/1518_reg.html">Wineburg</a> and the <a href="http://historicalthinkingmatters.org/">site</a>) and web 2.0 technologies demands serious attention  with this goal in mind.  The two can be intimately tied together  to achieve a mastery of both.</p>
<p><span id="more-360"></span></p>
<p>My experimentation with these  concepts and methodologies has been occasional up until this year.   I’ve used primary source documents in class before and typically in  a constructivist fashion.  Combining web 2.0 would allow students  to publish their final products on a public medium.  I decided  to start a Myspace page to serve this purpose. I know, I know, Rupert  Murdoch has already purchased my soul and sold it to Bernard Madoff  who in turn sold it to some Mormons in a bizarre pyramid scandal.   I’d estimate that about 60-70% of my students have Myspace pages and  about half of those use Myspace seem to use Myspace as their primary  internet activity.  In fact, about two years ago, a community center  up the street from the high school had a computer lab where Myspace  use was so rampant the center had to make certain times “Myspace free.”   In other words, the site seems extremely popular amongst my student  population.  Regardless, I figured Myspace would be an easy way  to trick kids into thinking I was playing in their world in hopes of  greater participation.  And it worked…. kind of.</p>
<p>We had been studying the Civil  Rights movement, and I really wanted students to figure out, using primary  sources, how de-centralized the movement was.  I wanted them to  grasp how normal folks, including students in high school like them,  were moved to courageous action.  Young people are increasingly  aware of leaders beyond Martin Luther King Jr. but knowledge of groups  like SNCC is sparse.  I wanted to encourage my students to see  beyond the master narrative of “I have a dream” speeches to understand  just how involved folks their age were in this push for freedom.</p>
<p><a href="http://jeffersonsnewspaper.org/wp-content/uploads/2009/07/screen-capture-1.jpg"><img class="aligncenter size-full wp-image-375" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/07/screen-capture-1.jpg" alt="screen-capture-1" width="580" height="224" /></a></p>
<p>Students were divided up into  groups of three to four and given six front pages from 1957 editions  of the Arkansas Democrat Gazette.  They had to use articles from  these newspaper front pages to write a three paragraph blog entry on  the Little Rock Nine and post it alongside their peers’ on my Myspace  page. The results were an interesting mix from fairly terrible to pretty  interesting.  None were shockingly brilliant, however.  This  is not surprising though.  My guess is that few, if any, history  teachers in these students’ classrooms have encouraged them to look  at primary documents, decode them, and then “publish” a written  recreation of their contents.  Take a look at your old college  essay on the Vietnam before you’re too critical of these kids.</p>
<p>Nonetheless, there were some  apparent obstacles that need to be considered for future activities  of a similar nature.  First, the use of the articles as not just  primary sources but the only sources they could use proved difficult  and problematic at times.  Some groups really struggled to put  together a coherent narrative beyond essentially cutting and pasting  interesting facts from the newspaper.  Some failed to even do this  chronologically.  One group stated, “After 8 Africans [sic] entered  the school across the street. They tried to call other students to join  them but they were pushed back by guards.”  This was after  they already mentioned the students entering the building and members  of the 101<sup>st</sup> helping them.  While this might be intellectual  Viagra for a few choice grad students looking to deconstruct the Western  obsession with chronology as history, any educator would see it for  what it is: an inability to properly read the articles together rather  than as separate documents.</p>
<p>Additionally, several groups  included sentences like, “As six negros tried to enter NLR high white  students pushed them back because they did not want them at there school.”  Frustrating grammar and spelling errors aside, I’m hoping you noticed  the antiquated term “negro” in that depiction of the Little Rock  Nine.  Seeing as how the kids in this group are all Puerto Rican  and not rednecks, they were clearly just adopting the language of the  1957 Arkansas Gazette journalists.  While most groups did not make  this mistake, it’s clear that more work needs to be done on the interpretation  side of using primary sources.  Thinking historically does not  necessitate using outdated language.</p>
<p>Another component that troubled  me was the discussion of violence within the narratives.  Clearly,  anyone with even a basic understanding of the Little Rock Nine case  is aware of the intense mob violence that accompanied the desegregation  of Central High School in 1957.  Some students failed to grasp  the level of violence through these primary sources though.   “That caused a big chaos because at lest 100 parents of the students  and other adults lined up on the side walk in front of the high school  an hour before classes recessed for the noon hours.” [sic] There is  no mention as to what these students and parents did  once they lined up in front of the school and this is where the blog  entry abruptly ends.  Lacking detail is to be expected, to a degree,  in an assignment like this, but this clearly lacked understanding.   Did this group really go away thinking this racist family picnic mob  was there to simply “be heard?”</p>
<p>The issue of responsibility  also arose in the blog entries.  One group placed the white riots  squarely on the Little Rock Nine’s boldness.  “Due to court orders  Faubus removed the National guard. After they were removed, the African  Americans tried to enter the school causing the white young students  to form a riot.” [sic]  Perhaps this is splitting hairs, but  there is no discussion of white racism being the source of these riots  in this entry.  I doubt the group of students, a racial mixture  of whites, Puerto Ricans, and Arabs, meant for it to read this way.   The difficulty comes into getting students to grasp that how they phrase  things is perhaps more important than what their intentions are.   This is an integral part of thinking and being able to write  historically.  When others read your interpretation of the past  they do so with their own understanding, not yours.  Getting students  to convey their analysis of something as complex as the Little Rock  Nine case is difficult but they should be encouraged to do so as clearly  and thoroughly as possible.</p>
<p>One group attempted to retell  the tale through the modern civil rights narrative which goes something  like: “Black Americans worked hard to be recognized for their contributions  and are now allowed the same opportunities as whites today.”   It’d be interesting to see if this was sparked by group members comparing  their experiences today to that of the Little Rock Nine but alas, this  was not the assignment.  The group concluded that “the students  were allowed to go to the school with problems but at the same time they  wre getting an oportuinty in life because some people dream of an opportunity  while orthers wake up and work hard for it,” [sic].  I read this  as an attempt to fit African-Americans into the American ethos of “hard  work = success”, which is essentially what many watered down versions  of the Civil Rights movement have become.  This view lacks a historical  understanding of the barriers of white supremacy and the struggles of  grassroots organizing.</p>
<p>Clearly there is much work  to be done here.  Students need to engage and investigate primary  sources much earlier on in order to be more comfortable and familiar  with interpreting them.  Perhaps they also need a little more scaffolding  to get to the point where they can take on similarly styled projects.   Nonetheless, the students did work with primary sources and  did produce a piece of historical work on the topic.  Like  getting President Obama to publicly condemn Cambridge police officers  for acting “stupidly,” it’s a relatively small victory but an  important one.  In doing so the participating students gained a  greater understanding of the importance of historical interpretation,  grassroots organizing during the Civil Rights movement, and their role  in deciding what matters from the past.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2009/experimenting-with-historical-thinking-and-web-2-0-the-little-rock-nine/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Podcasts for History Teachers and Students</title>
		<link>http://jeffersonsnewspaper.org/2009/podcasts-for-history-teachers-and-students/</link>
		<comments>http://jeffersonsnewspaper.org/2009/podcasts-for-history-teachers-and-students/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 19:41:05 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[digital history]]></category>
		<category><![CDATA[new media]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=282</guid>
		<description><![CDATA[I&#8217;m one of those people who listens to NPR all day.  In the shower, in the car, while cooking, as a Sunday morning activity with my partner.  I almost never watch television, but I love passively listening to smart people talk, which is not really substantially different than watching dumb people swap wives when you get down to it.  Though I suppose it&#8217;s also not unlike sitting in an undergrad history lecture.  The point is,...]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/07/kidwradio460.jpg" alt="" width="630" height="auto" />I&#8217;m one of those people who listens to NPR all day.  In the shower, in the car, while cooking, as a Sunday morning activity with my partner.  I almost never watch television, but I love passively listening to smart people talk, which is not really substantially different than watching dumb people swap wives when you get down to it.  Though I suppose it&#8217;s also not unlike sitting in an undergrad history lecture.  The point is, I like to be entertained and I also like to learn.  And I like doing it with my ears, so I can use my eyes and hands for other things.  What follows is an incomplete list of high-quality podcasts dealing with various topics in history.</p>
<p><span id="more-282"></span></p>
<p><a href="http://www.backstoryradio.org/">BackStory</a>:  BackStory is one of my favorite podcasts in any genre.  &#8220;On each show, renowned U.S. historians Ed Ayers, Peter Onuf, and Brian Balogh tear a topic from the headlines and plumb its historical depths.&#8221;  In addition to the hosts&#8217; impressive knowledge, the show has NPR quality production values and a great sense of humor and relevance. The show is a product of the Virginia Foundation for the Humanities, who produce a couple other shows (which I&#8217;ve yet to hear) through  their <a href="http://www.vfhradio.org/">VFH Radio</a> project.</p>
<p><a href="http://www.howstuffworks.com/stuff-you-missed-in-history-class-podcast.htm">StuffYouMissedInHistoryClass</a>: This one is produced by HowStuffWorks.com, which initially made me a bit skeptical.  I was quickly won over though.  Historians Candace Gibson and Jane McGrath investigate &#8220;the stories behind the lines of your textbooks.&#8221;  The topics range from esoteric (e.g. the history of happiness) to  topical (&#8220;Historically inaccurate movies&#8221;) to explanations (&#8220;How the Marshall Plan worked&#8221;) and conversations appropriate for younger students (&#8220;Did Betsy Ross really make the first American Flag?&#8221;).</p>
<p><a href="http://bingethinkinghistory.libsyn.com/">BingeThinkingHistory</a>:  While the previous two podcasts are conversational and focus on American history, this project &#8211; a one man show by Tony Cocks -  is oriented toward British and European history.  Since I know very little about European history, I am both intrigued and confounded by the subject matter.   Luckily the host has a dignified English voice and a knack for telling history in a narrative, documentary style that  makes good use of music and background audio (e.g. the sounds of battlefield artillery).  So I like it, even though I don&#8217;t really know what he&#8217;s talking about.</p>
<p>The<a title="podcasts @ Gilder Lehrman" href="http://www.gilderlehrman.org/wp/?p=4"> Gilder Lehrman Institute of American History</a> has a wide selection of &#8220;eminent historians discussing major topics in American history&#8221;, which they release as audio podcasts.  My first impression of the project site was that this would be a stuffy, old-school academic series wherein pokey old coots discussed their own greatness by way of displaying their mad lecture skillz.  I also thought it would cater primarily to college students and other academics.  In fact, there are some really interesting and informative lectures here, and it serves as a really great resource for pretty much any group above maybe middle school.  I noticed a handful of  high school teacher comments on the project site, reminding me that some teachers actually challenge their students to do real historical thinking.  Imagine that.</p>
<p><a href="http://historyonair.com/?page_id=5">HistoryPodcast/HistoryOnAir</a> &#8230; &#8220;Jason Watts is the host of History Podcast and an amateur historian.  It should be noted that he is not a professional.&#8221;  That&#8217;s what it says on the site, but ignore that (or sit and quietly appreciate it).  Jason does a good job of documenting his sources and telling historical stories, and has been doing it since 2005.  This is actually a nice little operation, and it looks like Jason is <a title="video podcast @ HistoryOnAir" href="http://cdn3.libsyn.com/historypodcast/HP118_The_Six_Wives_of_Henry_VIII.m4v?nvb=20090719190001&amp;nva=20090720191001&amp;t=0c73e1171670065e8a5c6">beginning to use video and visualization</a> tools so this is one to watch.  Users can submit topics, ideas, and even scripts for new episodes.  Also of note is the provision of transcripts and citations for each episode, which is handy for students who might want to explore a topic in more detail.  There&#8217;s also a big list of additional podcasts you might want to check out.</p>
<p>So there&#8217;s a brief list.  I actually have a backlog of additional podcasts in my iTunes library that I haven&#8217;t had time to review, so I  may add more to this post or continue the topic in a new post as I find more quality podcasts.   Please use the comments section to suggest some others you like.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2009/podcasts-for-history-teachers-and-students/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://cdn3.libsyn.com/historypodcast/HP118_The_Six_Wives_of_Henry_VIII.m4v?nvb=20090719190001&amp;amp" length="22947450" type="video/x-m4v" />
		</item>
		<item>
		<title>Overheard in the Learning Management System</title>
		<link>http://jeffersonsnewspaper.org/2009/overheard-in-the-learning-management-system/</link>
		<comments>http://jeffersonsnewspaper.org/2009/overheard-in-the-learning-management-system/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 19:07:11 +0000</pubDate>
		<dc:creator>E. Bell</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[BlackBoard]]></category>
		<category><![CDATA[edupunk]]></category>
		<category><![CDATA[LMS]]></category>
		<category><![CDATA[patriotism]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=317</guid>
		<description><![CDATA[Like any zealot, I spend weekends, evenings, social engagements, and holidays ranting about the things that really get on my nerves.  Today, July 4th, a day commemorating the birth of our glorious nation, I spent the early afternoon orating on the relative merits of the LMS in hopes of fomenting revolution.  I am currently taking an Information Architecture course, ironically offered only through BlackBoard, the arch-nemesis of all that is righteous and enlightened in higher...]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">
<p style="text-align: center;"><a href="http://jeffersonsnewspaper.org/wp-content/uploads/2009/07/BBfullthread.jpg"><img class="aligncenter size-full wp-image-319" title="BBpreview" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/07/BBpreview.jpg" alt="BBpreview" width="630" height="auto" /></a></p>
<p style="text-align: left;">Like any zealot, I spend weekends, evenings, social engagements, and holidays ranting about the things that really get on my nerves.  Today, July 4th, a day commemorating the birth of our glorious nation, I spent the early afternoon orating on the relative merits of the LMS in hopes of fomenting revolution.  I am currently taking an Information Architecture course, ironically offered only through BlackBoard, the arch-nemesis of all that is righteous and enlightened in higher education, a blithely tyrannical George III to Web 2.0&#8242;s promise of digital democracy, a naval blockade on usability and information seeking behavior, an unjust tax levied on the collective sanity of the student body.</p>
<p style="text-align: left;">Maybe I&#8217;m taking this too seriously, you say?  Well, what did you do to celebrate America today? Eat some hotdogs?  Listen to some Lee Greenwood tunes?  I think it&#8217;s clear who the real patriot is.  Hit the break for the full thread.  Names have been changed to protect the innocent, the neutral, and the obsequiously monarchical.</p>
<p style="text-align: left;"><span id="more-317"></span></p>
<p style="text-align: left;">Click on the image for the full size view or scroll down for the transcript&#8230;</p>
<p style="text-align: left;">
<div id="attachment_318" class="wp-caption aligncenter" style="width: 640px"><a href="http://jeffersonsnewspaper.org/wp-content/uploads/2009/07/BBfullthread.jpg"><img class="size-full wp-image-318" title="BBfullthread" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/07/BBfullthread.jpg" alt="Click image for full view" width="630" height="auto" /></a><p class="wp-caption-text">Click image for full size view</p></div>
<ol>
<li> <strong>ME: </strong>Can we discuss the IA of Blackboard?  I&#8217;m not trying to complain.  I understand why it is useful for instructors, but it is pretty rough on student users (poor organization, poor labeling, poor navigation, seemingly no interest in student information needs/behaviors, etc.).   I think it might actually be an interesting case study.  Then again, I&#8217;ve been reading a lot of Jim Groom lately <img src='http://jeffersonsnewspaper.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>
<div>
<div><strong>STUDENT:</strong>I couldn&#8217;t agree with you more. Clunky and awkward at best isn&#8217;t it?</div>
</div>
</li>
<li><strong>STUDENT:</strong>I agree, it could use a little better organization. Sometimes there are 2 left-hand navigation menus, that&#8217;s unusual.</li>
<li><strong>STUDENT: </strong>Very good observation, because I was thinking about that when I first used the site. So context is covered, and content is covered, but it could be more USER friendly. This site is built for knot-item seeking. Once you learn the system, you can get to where you need to be and use the system.</li>
<li><strong>INSTRUCTOR: </strong>It&#8217;s interesting to see what both student and faculty users have to say about Blackboard. I&#8217;ve yet to meet anyone who is thrilled with it. Here are a couple of items that might shed some light on why Blackboard is designed and arranged the way it is:1) The students don&#8217;t get to see this, but there are actually three sets of users who can interface with Blackboard: Course Designers, Instructors and Students. Depending upon roles to which you&#8217;ve been designated, there are three different &#8220;tabs&#8221; one could access: Build, Teach, and Student. Students don&#8217;t see these tabs because they only have one role &#8212; Student. All three roles/tabs have access to the same &#8220;Course Tools&#8221; (the first set of left-hand navigational choices). However, the next set of tools change depending upon the roles to which you have access. If you access the class as a designer, the bottom navigation is labeled &#8220;Designer Tools&#8221; and has a set of links unique to that role, if as an instructor, then &#8220;Instructor Tools&#8221;, if as a student then I believe it&#8217;s &#8220;My Tools.&#8221; Without knowing about the different roles, I can see how two, separate sets of global navigation would make no sense.2) Another part of Blackboard I think most users struggle with is the idea that the Course Tools don&#8217;t offer much other than a *completely* different way to access the content than offered through the Course Content home page. In building a class, the designer chooses the tools on the left, builds the assets, and then sets links to these assets in other places. Learning modules are sets of topical, sequential links to assets created using the other tools. Sound counter-intuitive? It is if you approach the course design and layout with a web/hyperlink mentality. And there&#8217;s the problem. This is elearning. We use the internet to access the training and we, as users, expect it to follow modicums similar to that of sites on the World Wide Web. And this is a fair expectation. However, Blackboard is instead arranged to give users access to the same material in a number of different ways, which is a good idea but read on.So based upon what we&#8217;ve been reading, why might users get frustrated with Blackboard. The first one is that even though it is a good idea to offer multiple roads to the same content, there is *no predominate organizational scheme*. Should I primarily use the global tools on the left because they never change? Should I navigate the course like a web site simply from the Course Content page? What is the main road? What if I&#8217;m serendipitous? How lost and confused could I become? Also the labels, while familiar, English words, may not be self-evident in their meaning. What is a &#8220;Learning module?&#8221; Where will that take me? I imagine that assignments will be part of the course content, but I&#8217;ve got this other button labeled &#8220;Course Content&#8221;, why should I choose one over the other?The good news is that the next iteration of Blackboard is seeking to address a number of these issues. Which is a good thing considering over 70% of all universities in the United States use Blackboard as their learning management system.</li>
<li><strong>ME:</strong> There are many reasons why BlackBoard works for instructors and those listed are all relevant. I have designed courses, modules, and quizzes, and tracked student submissions, etc. in BlackBoard during my time as a graduate assistant for a professor who taught some &#8220;elearning&#8221; type courses.Aside from automating some administrative tasks (gradebooks, adding/tracking users, etc), I don&#8217;t see anything in BBs repertoire that justifies it&#8217;s poor usabiity and it&#8217;s high subscription cost to universities. For something so costly, you would think they would have invested in some user studies and maybe a post-1998 design upgrade. As far as I can tell, 95% of BBs functionality could be duplicated in WordPress (with a few plug-ins and maybe some creative use of GoogleDocs) or some other free/open source system. Of course, the university would have to support this with staff (maybe one guy and a server) and some minimal training for admins (probably less than what it takes to learn BB) and they would come out ahead over time (if not monetarily, then in staff development). Likewise, I&#8217;m not sure any LMS can devise a &#8220;learning environment&#8221; that suits real learning needs when they necessarily design around the generic admin/user. Plus, anecdotal evidence suggests that students are actually more engaged and interactive when they know they are working in the &#8220;open web&#8221; and not inside the BlackBoard blackbox.So I clearly have issues with BB that go beyond IA, but considering that I&#8217;m typing right now in a very tiny text box (maybe 80px high) with a broken editor (at least, using Firefox) inside a pop-up window, dreading the occasional BB-induced browser crash, etc.; the poor design just amplifies all the other issues I have with this system.I work in part as an educational technologist for the History Dept. (or at least for a few courses and workshops), so I know how hard it is to support unique projects and design around technological deficits (in software, user/admin ability, etc.), but I think we can do better than this.And again, I am not directing this at CSU (where I happily work) or the professor (who has limited, if any, choices when it comes to online course platforms). For anyone who is interested in exploring this topic, you can find some good debates online, many of which center around this guy:Jim Groom, Ed-Tech at Univ of Mary Washington, and inventor of &#8220;edupunk&#8221; movement. See his blog (http://bavatuesdays.com/) as well as interviews and stories in NYT and Chronicle of Higher Ed, among others. He of course is not the only person to voice dissatisfaction with BB, but he is by far the most visible.Sorry if I got carried away on this little side-topic, but I have seen many bright young minds crack under the weight of BlackBoard <img src='http://jeffersonsnewspaper.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Happy 4th!</li>
</ol>
<div class="zemanta-pixie"><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2009/overheard-in-the-learning-management-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Studied Medieval History Because I Thought it was the Metal Thing to Do</title>
		<link>http://jeffersonsnewspaper.org/2009/i-studied-medieval-history-because-i-thought-it-was-the-metal-thing-to-do/</link>
		<comments>http://jeffersonsnewspaper.org/2009/i-studied-medieval-history-because-i-thought-it-was-the-metal-thing-to-do/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 09:18:09 +0000</pubDate>
		<dc:creator>James Calder</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[Caravaggio]]></category>
		<category><![CDATA[Gustave Dore]]></category>
		<category><![CDATA[Hieronymus Bosch]]></category>
		<category><![CDATA[Iron Maiden]]></category>
		<category><![CDATA[medieval]]></category>
		<category><![CDATA[Metal]]></category>
		<category><![CDATA[Pieter Bruegel the Elder]]></category>
		<category><![CDATA[The Black Death]]></category>

		<guid isPermaLink="false">http://jeffersonsnewspaper.org/?p=295</guid>
		<description><![CDATA[Yes, that&#8217;s true.  I even got a Master&#8217;s Degree.  Now, I like history and other humanities for lots of reasons, not just because they&#8217;re sometimes kind of metal, but I figured that with my first post on this site I&#8217;d return to my roots and original reasons for liking history. Strangely enough, this post will sort of fit in thematically with some of my others that are in the works in that one of my...]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Yes, that&#8217;s true.  I even got a Master&#8217;s Degree.  Now, I like history and other humanities for lots of reasons, not just because they&#8217;re sometimes kind of metal, but I figured that with my first post on this site I&#8217;d return to my roots and original reasons for liking history.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Strangely enough, this post will sort of fit in thematically with some of my others that are in the works in that one of my goals for this site is to highlight artists that I find interesting, under appreciated or just plain awesome.  So, get ready for some awesome medieval and Renaissance artworks.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Also, just to be clear, by metal I mean like fucking metal man.  Like with guitars and stuff.  Got me?</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Gustave Dore is really metal (he&#8217;s also from the 19th century, so, not medieval at all really.  still super metal though)</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">I can appreciate the intricacies of Gustave Dore&#8217;s etchings on a purely artistic level.  However, I can appreciate them much more on a purely metal level.  I&#8217;d say his interpretation of Dante&#8217;s Divine Comedy is my favorite.  For instance, Dore&#8217;s depiction for Canto XXVII shows the “Sowers of Dischord”, poor damned souls that they are, ripping themselves apart as their innards spew out.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Even his work on the Bible is pretty metal.  This really brings the up the question, unanswered by many except for maybe Zao, as to why is it that the Bible and Christian imagery in general so metal?</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">I guess my first answer would be that both share a strange preoccupation with the Devil.  In fact, looking at Dore&#8217;s work on the Diving Comedy its interesting to note that the majority of his etchings deal with the Inferno, as opposed to Purgatory or Paradise.  I think this has much to do with the fact that hell, being what it is, would be the easiest to represent visually.  Theologically speaking (if I were a medieval Catholic, or I guess the 19th century Dore too), evil/hell/satan could all be represented visually because evil/hell/satan were all tied to a notion of physicality, just like the human body (which was also treated with mistrust).  The mind or spirit (like Paradise or God), on the other hand, were more ephemeral and, specifically, they were decidedly non-physical.  This is all do to some big theological debates that led to a body/spirit = evil/good stance by the Catholic church.  In any event, this theology would make it easier to picture or create an image of a monstrous horned demon than something of the “divine realm”.  Before I get on some crazy tangent about dualism (boy could tell you some tales about the Cathar heresy)or even iconography, lets see what all this has to do with metal.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">First off, I honestly have no real idea, but lets just muse for a second.  I guess I&#8217;d say that metal, being really serious rock music, is concerned, as all great rock n roll is, with the human body and all of its more natural yet frowned upon needs and wants.  By this I guess I mean drugs, sex, moving around a lot in an aggressive yet not necessarily coordinated manner, and loud noise.  Given this, metal&#8217;s choice of Christian imagery is actually a pretty appropriate way, in my opinion, to enter such a debate.  If satan=body, that makes him a pretty obvious rock n roll choice.  I mean, why attack the 70s, 80s or 90s establishment when you can attack the historical root- the ancient and medieval church.  I mean, they&#8217;re the one&#8217;s that started all this anti-body (like, not medicine), anti-sex, anti-cheap fun riff raff to begin with right?</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">As a side note, isn&#8217;t it kind of weird that a society would set itself up where its easy to visualize pure evil, but pure good is, by definition, not visually accessible?  Just sayin&#8217;.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Hieronymus Bosch</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Hieronymus Bosch (yes, I had to copy and paste his name) is probably the most metal of all medieval artists.  Yes, he is in fact from the medieval period, albeit kind of late.  Again, I&#8217;ll just flat out admit that I have no idea what his paintings are supposed to mean exactly.  You would really think he was on drugs, although I&#8217;m guessing that he actually wasn&#8217;t, being the good Catholic that he was.  But man, there&#8217;s all sorts of flying fishes, flowers coming out of people&#8217;s asses, a demon that&#8217;s literally shitting people into a hole.  Its very intense and very metal.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Pieter Bruegel the Elder, similar to Bosch in many ways, should also be mentioned here, although many of his most metal works are both very similar and of lesser quality than Bosch&#8217;s.  The Triumph of Death is an exception to the last statement.  I will also say that his depiction of the Tower of Babel (a copy hangs in my study) is quite epic, which is another aspect of metal.  Epicness (?) is really important to metal, as it was to people during the medieval period.  Its important to lots of people though, but it seems to me the further back in time you go, the more epic the stories are.  Maybe that&#8217;s another reason for the Christian imagery.  I mean, depending on who you talk to, the Bible is and is not many things.  I would say, however, that few could deny that the Bible is quite epic.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Caravaggio</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Caravaggio was also pretty metal, although he&#8217;s more Renaissance than medieval.  Also, a lot of his paintings aren&#8217;t that metal, to tell you the truth.  I&#8217;ll give him credit for the Medusa head (Greek mythology is also kind of metal) and that its possible he murdered someone.  I don&#8217;t know, I&#8217;m not in love with the guy, but I&#8217;d feel bad leaving him off the list.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">The Black Death</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">One of the most metal topics in medieval art was the Black Death, Bubonic Plague, the Plague (all great metal band names btw).  Its just a metal topic, I don&#8217;t know.  Its so metal its even kind of hard to explain.  Hope you enjoy a few examples.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">The Point?</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Obviously, there&#8217;s really no point to this article, just thought it would be fun.  If anything, I hope to turn people on to some great artists, especially Dore, Bosch and Bruegel because while each is totally famous, sometimes I think that they don&#8217;t get enough exposure, especially to certain audiences.  Also, its an interesting historiographical framework.  I mean, we&#8217;ve(historians) have imposed plenty of other subjectively constructed frameworks on the past (nation state, progress narrative, anything really- just read Hayden White, you&#8217;ll see what I mean), why not do something more fun.  If not metal, how about Radical History as in like surfer radical, not politically radical.  Think about it, it could be kind of postmodern or at the very least historical events would be connected only in the most nontraditional fashion.  For example:</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">1965- Snowboards are invented- way radical.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">1993- Bill Clinton, who loved weed and saxophones became president- totally radical.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">1994- My friend Doug ate 6 burritos in one sitting- most radical.</div>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">See?</div>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-299" title="Gustave_Dore_Inferno34" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/06/Gustave_Dore_Inferno34.jpg" alt="Gustave_Dore_Inferno34" width="621" height="492" />Yes, that&#8217;s true.  I even got a Master&#8217;s Degree.  Now, I like history and other humanities for lots of reasons, not just because they&#8217;re sometimes kind of metal, but I figured that with my first post on this site I&#8217;d return to my roots and original reasons for liking history.</p>
<p>Strangely enough, this post will sort of fit in thematically with some of my others that are in the works in that one of my goals for this site is to highlight artists that I find interesting, under appreciated or just plain awesome.  So, get ready for some awesome medieval and Renaissance artworks.</p>
<p>Also, just to be clear, by metal I mean like fucking metal man.  Like with guitars and stuff.  Got me?</p>
<p><span id="more-295"></span></p>
<p><strong>Gustave Dore</strong></p>
<p><img class="alignleft size-medium wp-image-300" title="gustave_dore" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/06/gustave_dore-238x300.jpg" alt="gustave_dore" width="280" height="352" />Gustave Dore is really metal (he&#8217;s also from the 19th century, so, not medieval at all really.  still super metal though).  I can appreciate the intricacies of <a href="http://en.wikipedia.org/wiki/Gustave_Dore">Gustave Dore</a>&#8216;s etchings on a purely artistic level.  However, I can appreciate them much more on a purely metal level.  I&#8217;d say his interpretation of Dante&#8217;s <em>Divine Comedy</em> is my favorite.  For instance, Dore&#8217;s depiction for Canto XXVII shows the “Sowers of Dischord”, poor damned souls that they are, ripping themselves apart as their innards spew out.</p>
<p>Even his work on the Bible is pretty metal.  This really brings the up the question, unanswered by many except for maybe <a href="http://en.wikipedia.org/wiki/Zao_(US_band)">Zao</a>, as to why is it that the Bible and Christian imagery in general is so metal?</p>
<p>I guess my first answer would be that both share a strange preoccupation with the Devil.  In fact, looking at Dore&#8217;s work on the Divine Comedy its interesting to note that the majority of his etchings deal with the Inferno, as opposed to Purgatory or Paradise.  I think this has much to do with the fact that hell, being what it is, would be the easiest to represent visually.  Theologically speaking (if I were a medieval Catholic, or I guess the 19th century Dore too), evil/hell/satan could all be represented visually because evil/hell/satan were all tied to a notion of physicality, just like the human body (which was also treated with mistrust).  The mind or spirit (like Paradise or God), on the other hand, were more ephemeral and, specifically, they were decidedly non-physical.  This is all due to some big theological debates that led to a body/spirit = evil/good stance by the Catholic church.  In any event, this theology would make it easier to picture or create an image of a monstrous horned demon than something of the “divine realm”.  Before I get on some crazy tangent about dualism (boy could tell you some tales about the Cathar heresy) or even iconography, lets see what all this has to do with metal.</p>
<p>First off, I honestly have no real idea, but lets just muse for a second.  I guess I&#8217;d say that metal, being really serious rock music, is concerned, as all great rock n roll is, with the human body and all of its more natural yet frowned upon needs and wants.  By this I guess I mean drugs, sex, moving around a lot in an aggressive yet not necessarily coordinated manner, and loud noise.  Given this, metal&#8217;s choice of Christian imagery is actually a pretty appropriate way, in my opinion, to enter such a debate.  If satan=body, that makes him a pretty obvious rock n roll choice.  I mean, why attack the 70s, 80s or 90s establishment when you can attack the historical root- the ancient and medieval church.  I mean, they&#8217;re the one&#8217;s that started all this anti-body, anti-sex, anti-cheap fun riff raff to begin with right?</p>
<p>As a side note, isn&#8217;t it kind of weird that a society would set itself up where its easy to visualize pure evil, but pure good is, by definition, not visually accessible?  Just sayin&#8217;.</p>
<p><strong>Hieronymus Bosch</strong></p>
<p><a href="http://en.wikipedia.org/wiki/Hieronymus_Bosch"><img class="alignleft size-medium wp-image-302" title="hieronymus_bosch" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/06/hieronymus_bosch-282x300.jpg" alt="hieronymus_bosch" width="80" height="86" /></a></p>
<p><img class="alignright size-medium wp-image-301" title="bosch" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/06/bosch-225x300.jpg" alt="bosch" width="80" height="107" /></p>
<p><a href="http://en.wikipedia.org/wiki/Hieronymus_Bosch">Hieronymus Bosch</a> (yes, I had to copy and paste his name) is probably the most metal of all medieval artists.  Yes, he is in fact from the medieval period, albeit kind of late.  Again, I&#8217;ll just flat out admit that I have no idea what his paintings are supposed to mean exactly.  You would really think he was on drugs, although I&#8217;m guessing that he actually wasn&#8217;t, being the good Catholic that he was.  But man, there&#8217;s all sorts of flying fishes, flowers coming out of people&#8217;s asses, a demon that&#8217;s literally shitting people into a hole.  Its very intense and very metal.</p>
<p><strong>Bruegel the Elder</strong></p>
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">
<p><img class="size-medium wp-image-303 alignleft" title="Bruegel Tower of Babel" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/06/Bruegel-Tower-of-Babel-300x226.jpg" alt="Bruegel Tower of Babel" width="279" height="209" /></p>
<p style="text-align: left;"><a href="http://en.wikipedia.org/wiki/Pieter_Brueghel_the_Elder">Pieter Bruegel the Elder</a>, similar to Bosch in many ways, should also be mentioned here, although many of his most metal works are both very similar and of lesser quality than Bosch&#8217;s.  <em><a href="http://en.wikipedia.org/wiki/The_Triumph_of_Death">The Triumph of Death</a></em> is an exception to the last statement.  I will also say that his depiction of the Tower of Babel (a copy hangs in my study) is quite epic, which is another aspect of metal.  Epicness (?) is really important to metal, as it was to people during the medieval period.  It&#8217;s important to lots of people though, but it seems to me the further back in time you go, the more epic the stories are.  Maybe that&#8217;s another reason for the Christian imagery.  I mean, depending on who you talk to, the Bible is and is not many things.  I would say, however, that few could deny that the Bible is quite epic.</p>
<p><strong>Caravaggio</strong></p>
<p><a href="http://en.wikipedia.org/wiki/Caravaggio"><strong><img class="alignleft size-thumbnail wp-image-304" title="post_caravaggio_christ-at-column-1607" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/06/post_caravaggio_christ-at-column-1607-150x150.jpg" alt="post_caravaggio_christ-at-column-1607" width="80" height="80" /></strong>Caravaggio</a> was also pretty metal, although he&#8217;s more Renaissance than medieval.  Also, a lot of his paintings aren&#8217;t that metal, to tell you the truth.  I&#8217;ll give him credit for the <a href="http://en.wikipedia.org/wiki/Medusa_(Caravaggio)">Medusa head</a> (Greek mythology is also kind of metal), as well as the possibility that he murdered someone.  I don&#8217;t know, I&#8217;m not in love with the guy, but I&#8217;d feel bad leaving him off the list.</p>
<p><strong><br />
</strong></p>
<p><strong>The Black Death</strong></p>
<p><img class="alignleft size-thumbnail wp-image-305" style="float: left; border: 0px initial initial;" title="black_death" src="http://jeffersonsnewspaper.org/wp-content/uploads/2009/06/black_death-150x150.jpg" alt="black_death" width="80" height="80" /></p>
<p>One of the most metal topics in medieval art was the Black Death, <a href="http://en.wikipedia.org/wiki/Bubonic_plague">Bubonic Plague</a>, the Plague (all great metal band names btw).  Its just a metal topic, I don&#8217;t know.  It&#8217;s so metal its even kind of hard to explain.  <a href="http://images.google.com/images?hl=en&amp;q=bubonic+plague,+art&amp;um=1&amp;ie=UTF-8&amp;ei=rNxBSqGmOJSMtgfGvfSWCQ&amp;sa=X&amp;oi=image_result_group&amp;resnum=4&amp;ct=title">Hope you&#8217;ll enjoy a few examples.</a></p>
<p><strong>The Point?</strong></p>
<p>Obviously, there&#8217;s really no point to this article, I just thought it would be fun.  If anything, I hope to turn people on to some great artists, especially Dore, Bosch and Bruegel because while each is totally famous, sometimes I think that they don&#8217;t get enough exposure, especially to certain audiences.  Also, its an interesting historiographical framework.  I mean, we (historians) have imposed plenty of other subjectively constructed frameworks on the past (nation state, progress narrative, anything really- just read Hayden White, you&#8217;ll see what I mean), why not do something more fun.  If not metal, how about Radical History as in like surfer radical, not politically radical.  Think about it, it could be kind of postmodern or at the very least historical events would be connected only in the most nontraditional fashion.  For example:</p>
<p>1965- Snowboards are invented- way radical.</p>
<p>1993- Bill Clinton, who loved weed and saxophones became president- totally radical.</p>
<p>1994- My friend Doug ate 6 burritos in one sitting- most radical.</p>
<p>See what I mean?</p>
<p>I must also admit that this article had absolutely nothing to do with Digital anything, and for that I&#8217;m sorry.  I have no problem if anyone wants to make a mash-up of Gustave Dore&#8217;s artwork to metal music.  Maybe his interpretation of <em>Rhyme of the Ancient Mariner</em> with Iron Maiden&#8217;s <em>Rhyme of the Ancient Mariner</em>?   Just a thought.</p>
<p>Next time: I much more serious article on d.a.levy and new media.</p>
<p><span style="font-family: arial; color: #333333; font-size: 12px;">Related Reading:</span> <span style="font-family: arial; color: #333333; font-size: small;"><a style="text-decoration: none;" href="Related Reading:">Wikipedia: Dualism</a> (sorry for all the wikipedia links by the way, i promise better research next time)</span></p>
]]></content:encoded>
			<wfw:commentRss>http://jeffersonsnewspaper.org/2009/i-studied-medieval-history-because-i-thought-it-was-the-metal-thing-to-do/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

