<?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>Scholars&#039; Lab</title>
	<atom:link href="http://www.scholarslab.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scholarslab.org</link>
	<description>Works in Progress</description>
	<lastBuildDate>Fri, 17 May 2013 19:05:50 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Graduate Fellows Forum: Lydia Rodríguez</title>
		<link>http://www.scholarslab.org/podcasts/graduate-fellows-forum-lydia-rodriguez/</link>
		<comments>http://www.scholarslab.org/podcasts/graduate-fellows-forum-lydia-rodriguez/#comments</comments>
		<pubDate>Fri, 17 May 2013 18:36:28 +0000</pubDate>
		<dc:creator>ronda</dc:creator>
				<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8161</guid>
		<description><![CDATA[Graduate Fellows Forum: Lydia Rodríguez The Time Has Come: Ethnography, Gesture Research, and Digital Technology Lydia Rodríguez PhD Candidate, Department of Anthropology Scholars&#8217; Lab Fellow Respondent Dr. Eve Danziger Associate Professor, Department of Anthropology University of Virginia Summary: In Western societies, time is usually perceived as a linear progression of events, but not all cultures&#8230;. <a href="http://www.scholarslab.org/podcasts/graduate-fellows-forum-lydia-rodriguez/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><strong>Graduate Fellows Forum: Lydia Rodríguez</strong></p>
<p><strong>The Time Has Come: Ethnography, Gesture Research, and Digital Technology</strong></p>
<p>Lydia Rodríguez<br />
PhD Candidate, Department of Anthropology<br />
Scholars&#8217; Lab Fellow</p>
<p>Respondent<br />
Dr. Eve Danziger<br />
Associate Professor, Department of Anthropology<br />
University of Virginia</p>
<p>Summary:</p>
<p>In Western societies, time is usually perceived as a linear progression of events, but not all cultures think about and experience time in this particular way. In this presentation I analyze the relationship among linguistic, conceptual, and cultural notions of time through ethnographic observation of spoken interactions in Chol, a Maya language spoken in Chiapas, Mexico. In particular, I describe how the concept of time is depicted in the spontaneous gestures which are produced in conversational exchanges among speakers of Chol Maya. I also discuss the role that digital technology has played in the collection and analysis of gestural data, and how digital tools can be used to complement and enhance traditional ethnographic research about temporal conceptualization.</p>
<p>&nbsp;&nbsp;</p>
<p>As always, you can listen to (or <a href="http://www.scholarslab.org/category/podcasts/">subscribe to</a>) our podcasts on the Scholars&#8217; Lab blog, or <a href="http://itunes.apple.com/us/itunes-u/scholars-lab-speaker-series/id401906619">on iTunesU</a>.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/podcasts/graduate-fellows-forum-lydia-rodriguez/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://deimos3.apple.com/WebObjects/Core.woa/FeedEnclosure/virginia-public-dz.5154837759.05154837761.23987868880/enclosure.mp3" length="" type="" />
		</item>
		<item>
		<title>Testing asynchronous background processes in Omeka</title>
		<link>http://www.scholarslab.org/research-and-development/testing-asynchronous-background-processes-in-omeka/</link>
		<comments>http://www.scholarslab.org/research-and-development/testing-asynchronous-background-processes-in-omeka/#comments</comments>
		<pubDate>Fri, 17 May 2013 14:16:22 +0000</pubDate>
		<dc:creator>dm4fn</dc:creator>
				<category><![CDATA[Research and Development]]></category>
		<category><![CDATA[omeka]]></category>
		<category><![CDATA[testing philosophy]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8333</guid>
		<description><![CDATA[[Cross-posted from dclure.org] I ran into an interesting testing challenge yesterday. In Neatline, there are a couple of controller actions that need to spawn off asynchronous background processes to handle operations that are too long-running to cram inside of a regular request. For example, when the user imports Omeka items into an exhibit, Neatline needs&#8230;. <a href="http://www.scholarslab.org/research-and-development/testing-asynchronous-background-processes-in-omeka/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><em>[Cross-posted from <a href="http://dclure.org/logs/testing-asynchronous-background-processes-in-omeka/">dclure.org</a>]</em></p>
<p>I ran into an interesting testing challenge yesterday. In Neatline, there are a couple of controller actions that need to spawn off asynchronous background processes to handle operations that are too long-running to cram inside of a regular request. For example, when the user imports Omeka items into an exhibit, Neatline needs to query a (potentially quite large) collection of Omeka items and insert a corresponding Neatline record for each of them.</p>
<p>Jobs extend <code>Omeka_Job_AbstractJob</code> and define a public <code>perform</code> method:</p>
<p><script src="https://gist.github.com/davidmcclure/5599068.js"></script></p>
<p>And can be dispatched asynchronously by getting the <code>job_dispatcher</code> out of the registry and passing the job name and parameters to <code>sendLongRunning</code>:</p>
<p><script src="https://gist.github.com/davidmcclure/5599091.js"></script></p>
<p>It&#8217;s easy enough to directly unit test the <code>perform</code> method on the job, but, since actual execution of the process is non-blocking, the jobs can&#8217;t be tested at the integration level in the ordinary manner. For example, I&#8217;d like to just dispatch a request with a mock item query, and check that the correct Neatline records were created. This can&#8217;t be asserted reliably, though, since there&#8217;s no guarantee that the job will have completed before the testing assertions are executed.</p>
<p>The job itself is non-blocking, but the job invocation in the controller code <em>is</em> blocking, and can be tested pretty easily by replacing the <code>job_dispatcher</code> with a testing double and spying on the <code>sendLongRunning</code> method. Since this is a pattern that needs to be implemented in more than one test, I started by adding a <code>mockJobDispatcher</code> method to the abstract test-case class that mocks the job dispatcher and injects it into the registry:</p>
<p><script src="https://gist.github.com/davidmcclure/5599177.js"></script></p>
<p>Then, in the test, we can just call this method to mock the dispatcher, assert that the dispatcher is expecting a call to <code>sendLongRunning</code> with the correct job and parameters, and then fire off a mock request to the controller action under test:</p>
<p><script src="https://gist.github.com/davidmcclure/5599187.js"></script></p>
<p>This is a pretty good solution, but not perfect: The integration test is really asserting an intermediate step in the implementation of the controller action, not the end result &#8211; it tests <em>that</em> the job was called with certain parameters, not the final effect of the request. This opens up the door to false positives. For example, in the future, I might make a breaking change to the public API of the <code>Neatline_ImportItems</code>. Assuming I&#8217;ve changed the job&#8217;s unit tests to assert against the new API, the test suite would pass even if I completely forget to update any of the job invocations, since the integration tests are just asserting the structure of the invocation, not the final effects.</p>
<p>I&#8217;ve encountered a version of this problem more than once, and I&#8217;ve never really found a good solution to it. Short of moving up to something like in-browser Selenium tests, or resorting to hacky execution pauses in the integration tests, has anyone ever come across a better way to do this?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/research-and-development/testing-asynchronous-background-processes-in-omeka/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Neatline 1.1.3 Maintenance Release</title>
		<link>http://www.scholarslab.org/geospatial-and-temporal/neatline-1-1-3-maintenance-release/</link>
		<comments>http://www.scholarslab.org/geospatial-and-temporal/neatline-1-1-3-maintenance-release/#comments</comments>
		<pubDate>Thu, 16 May 2013 20:17:57 +0000</pubDate>
		<dc:creator>dm4fn</dc:creator>
				<category><![CDATA[Geospatial and Temporal]]></category>
		<category><![CDATA[neatline]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8319</guid>
		<description><![CDATA[This morning, Kiyonori Nagasaki noticed that one of the remote API&#8217;s used by the Neatline 1.x releases went offline, which had the effect of breaking exhibits that included the SIMILE Timeline widget. To fix this, we just posted a 1.1.3 maintenance release that patches up the timeline problem and also includes a couple of other&#8230;. <a href="http://www.scholarslab.org/geospatial-and-temporal/neatline-1-1-3-maintenance-release/">More.</a>]]></description>
				<content:encoded><![CDATA[<p>This morning, <a href="https://twitter.com/knagasaki">Kiyonori Nagasaki</a> noticed that one of the remote API&#8217;s used by the Neatline 1.x releases went offline, which had the effect of breaking exhibits that included the SIMILE Timeline widget. To fix this, we just posted a <a href="http://omeka.org/add-ons/plugins/neatline/"><strong>1.1.3 maintenance release</strong></a> that patches up the timeline problem and also includes a couple of other improvements:</p>
<ul>
<li>
<p>Disabled animated opacity transitions on WMS tiles, which were causing performance problems in recent builds of Chrome;</p>
</li>
<li>
<p>Fixed a bug that was causing the map not to focus correctly when a record is selected that has a default focus position/zoom, but no vector geometry.</p>
</li>
</ul>
<p><a href="http://omeka.org/add-ons/plugins/neatline/"><strong>Download Neatline 1.1.3</strong></a>.</p>
<p>Meanwhile, lots of activity on the Neatline 2.0 front &#8211; we&#8217;re almost done with a second alpha release, which gets us one step closer to a stable 2.0 release, which will include the migration to update existing installations from the 1.x series.</p>
<p>Stay posted!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/geospatial-and-temporal/neatline-1-1-3-maintenance-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interactive CSS in Neatline 2.0</title>
		<link>http://www.scholarslab.org/geospatial-and-temporal/interactive-css-in-neatline-2-0/</link>
		<comments>http://www.scholarslab.org/geospatial-and-temporal/interactive-css-in-neatline-2-0/#comments</comments>
		<pubDate>Tue, 14 May 2013 16:23:53 +0000</pubDate>
		<dc:creator>dm4fn</dc:creator>
				<category><![CDATA[Geospatial and Temporal]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[neatline]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8290</guid>
		<description><![CDATA[[Cross-posted with dclure.org] Neatline 2.0 makes it possible to work with really large collections of records &#8211; as many as about 1,000,000 in a single exhibit. This level of scalability opens up the door to a whole range of projects that would have been impossible with the first version of Neatline, but it also introduces&#8230;. <a href="http://www.scholarslab.org/geospatial-and-temporal/interactive-css-in-neatline-2-0/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><em>[Cross-posted with <a href="http://dclure.org/uncategorized/interactive-css-in-neatline-2-0/">dclure.org</a>]</em></p>
<p>Neatline 2.0 makes it possible to work with really large collections of records &#8211; as many as about <a href="http://dclure.org/logs/neatline-one-million-records/">1,000,000 in a single exhibit</a>. This level of scalability opens up the door to a whole range of projects that would have been impossible with the first version of Neatline, but it also introduces some really interesting content management challenges. If the map can <em>display</em> millions of records, it also needs utilities to effectively <em>manage</em> content at that scale.</p>
<p>This often involves a shift from working with individual records to working with groups of records. When there are a million records on the map, it&#8217;s pretty unlikely that you&#8217;ll want to change the color of just one of them. More likely, that record will exist as part of a large grouping of related records (eg, &#8220;democratic precincts,&#8221; or &#8220;photographs from 1945&#8243;), all of which should share a certain set of attributes. There needs to be a way to slice and dice records into overlapping clusters of related records, and then apply bulk updates to the individual clusters.</p>
<p>Really, this is a familiar problem &#8211; it&#8217;s structurally identical to the task of styling web pages with CSS, which makes it possible to address groupings of elements with &#8220;selectors&#8221; and apply key-value styling rules to the groups. Inspired by projects like Mike Migurski&#8217;s <a href="https://github.com/mapnik/Cascadenik"><strong>Cascadenick</strong></a>, Neatline 2.0 makes it possible to use a Neatline-inflected dialect of CSS to update groups of records linked together with &#8220;tags,&#8221; which can be applied in any combination to the individual records.</p>
<p><strong>Neatline Stylesheet Basics</strong></p>
<p>Let&#8217;s take a look at how this works in practice. Imagine you&#8217;re plotting results from the last four presidential elections. You load in a big collection of 800,000 records (200,000 precincts for each of the four elections), each representing an individual polling place with a point on the map. Each point is scaled to represent the number of ballots cast at that location, and shared red or blue according to which party won more votes. In this case, there are really seven different nested and overlapping taxonomies in the data. All of the records are <code>precincts</code>, but each falls into one of the our election seasons &#8211; <code>2000</code>, <code>2004</code>, <code>2008</code>, or <code>2012</code>. And each precinct went either <code>democrat</code> or <code>republican</code>, regardless of which election cycle it belongs to. Each record can be tagged with some combination of these tags:</p>
<p><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/tags-input.jpg"><img src="http://www.scholarslab.org/wp-content/uploads/2013/05/tags-input.jpg" alt="tags-input" width="396" height="331" class="alignnone size-full wp-image-8293" /></a></p>
<p>Each of the groupings needs to share a specific set of attributes &#8211; and also <em>not</em> share some attributes that need to be assigned separate values on individual records. For example, all of the precincts &#8211; regardless of date or party &#8211; should share the same basic <code>fill-opacity</code> and <code>stroke-width</code> styles. All records in each of the groupings for the four election seasons need to share the same <code>after-date</code> and <code>before-date</code> visibility settings so that the records phase in and out of visibility in unison. And all republican and democratic records should share the same shares of red and blue. Meanwhile, none of the groupings should define a standard point-radius style, which is used on a per-record basis to encode the number of ballots cast at that location.</p>
<p>Neatline-inflected CSS makes it easy to model these relationships. To start, I&#8217;ll define some basic styles for the top-level <code>precinct</code> tag, which is applied to all the records in the exhibit:</p>
<p><script src="https://gist.github.com/davidmcclure/5570829.js"></script></p>
<p>Now, when I click &#8220;Save,&#8221; Neatline instantaneously updates the <code>stroke-width</code> and <code>fill-opacity</code> styles on all records tagged with <code>precinct</code>:</p>
<p><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/precinct-styles.jpg"><img src="http://www.scholarslab.org/wp-content/uploads/2013/05/precinct-styles-1024x640.jpg" alt="precinct-styles" width="1024" height="640" class="alignnone size-large wp-image-8294" /></a></p>
<p>Next, I&#8217;ll set the <code>before-date</code> and <code>after-date</code> properties for each of the for election season tags, which ensure that the four batches of records phase in and out of visibility in unison as the timeline is scrolled back and forth:</p>
<p><script src="https://gist.github.com/davidmcclure/5570897.js"></script></p>
<p>Now, when I open up any individual record, the <code>before-date</code> and <code>after-date</code> fields will be updated with new values depending on which election the record belongs to:</p>
<p><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/dates-fieldset.jpg"><img src="http://www.scholarslab.org/wp-content/uploads/2013/05/dates-fieldset.jpg" alt="dates-fieldset" width="304" height="353" class="alignnone size-full wp-image-8295" /></a></p>
<p>Last, I&#8217;ll define the coloring rules for the two political parties. First, the Democrats:</p>
<p><script src="https://gist.github.com/davidmcclure/5571166.js"></script></p>
<p>Click &#8220;Save,&#8221; and all democratic precincts update with the new color:</p>
<p><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/democrat-styles.jpg"><img src="http://www.scholarslab.org/wp-content/uploads/2013/05/democrat-styles-1024x640.jpg" alt="democrat-styles" width="1024" height="640" class="alignnone size-large wp-image-8296" /></a></p>
<p><strong>Auto-updating stylesheet values</strong></p>
<p>So far, we&#8217;ve just been entering hard-coded values into the stylesheet. This often makes sense for properties that have inherently semantic values (eg, dates). For other attributes, though (namely colors), it&#8217;s much harder to reason in the abstract about what value you want. For example, I know that I want the republican precincts to be &#8220;red,&#8221; but I don&#8217;t know off-hand that <code>#ff0000</code> is the specific hexadecimal value that I want to use. It makes more sense to open up the edit form for an individual record and use the color pickers for the &#8220;Fill Color&#8221; field to find a color that looks good.</p>
<p>And even for styles that can be reasoned about in the abstract, it&#8217;s often easier and more intuitive to use the auto-previewing functionality on one of the record forms to tinker around with different values. Once you&#8217;ve decided on a new setting, though, it&#8217;s annoying to have to manually propagate the value back into the stylesheets so that all of the record&#8217;s siblings stay in sync &#8211; you&#8217;d have to copy the value, close the form, open up the stylesheet, find the right rule, and paste in the new value. To avoid this, Neatline also automatically updates the <em>stylesheet</em> when individual record values are changed, and immediately pushes out the new value to all of the record&#8217;s siblings.</p>
<p>Let&#8217;s go back to the election results. For the republican precincts, instead of pasting in a specific hex value for the <code>fill-color</code> style, we&#8217;ll just &#8220;register&#8221; <code>fill-color</code> as being one of the properties controlled by the <code>republican</code> tag by listing the style and assigning it a value of <code>auto</code>:</p>
<p><script src="https://gist.github.com/davidmcclure/5571635.js"></script></p>
<p>When I click &#8220;Save,&#8221; nothing happens, since a value isn&#8217;t defined. Now, though, I can just open up any of the individual <code>republican</code> records, choose a shade of red, and save the record. Since we activated the fill-color style for the republican tag, Neatline automatically updates all of the other <code>republican</code> records <em>just as if we had set the value directly on the stylesheet</em>:</p>
<p><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/republican-record.jpg"><img src="http://www.scholarslab.org/wp-content/uploads/2013/05/republican-record-1024x640.jpg" alt="republican-record" width="1024" height="640" class="alignnone size-large wp-image-8297" /></a></p>
<p>And now, when I go back to the stylesheet, the <code>fill-color</code> rule under <code>republican</code> is automatically updated with the value that we just set in the record form:</p>
<p><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/updated-stylesheet.jpg"><img src="http://www.scholarslab.org/wp-content/uploads/2013/05/updated-stylesheet.jpg" alt="updated-stylesheet" width="304" height="593" class="alignnone size-full wp-image-8298" /></a></p>
<p>This also works for styles that already have concrete values. For example, say I change my mind and want to tweak the shade of blue used for democratic precincts. I can just open up any of the individual <code>democrat</code>-tagged records, pick a new value with the color picker, and save the record. Again, Neatline automatically replaces the old value on the stylesheet and propagates the change to all of the other democratic precincts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/geospatial-and-temporal/interactive-css-in-neatline-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arduino Rainbow Hack</title>
		<link>http://www.scholarslab.org/experimental-humanities/arduino-rainbow-hack/</link>
		<comments>http://www.scholarslab.org/experimental-humanities/arduino-rainbow-hack/#comments</comments>
		<pubDate>Tue, 14 May 2013 13:58:37 +0000</pubDate>
		<dc:creator>bmw9t</dc:creator>
				<category><![CDATA[Experimental Humanities]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8252</guid>
		<description><![CDATA[The following was co-authored and co-hacked with Claire. Claire and I went to the Arduino Hackday hosted by the Scholars’ Lab on Friday. We had no idea what we were getting into, which made it all the more fun. Jeremy brought in a bunch of Arduino kits of all shapes and sizes, and various people&#8230;. <a href="http://www.scholarslab.org/experimental-humanities/arduino-rainbow-hack/">More.</a>]]></description>
				<content:encoded><![CDATA[<p>The following was co-authored and co-hacked with <a title="Claire Maiers" href="http://www.scholarslab.org/people/claire-maiers/">Claire</a>.</p>
<p>Claire and I went to the <a href="http://www.arduino.cc">Arduino</a> Hackday hosted by the Scholars’ Lab on Friday. We had no idea what we were getting into, which made it all the more fun. <a title="Jeremy Boggs" href="http://www.scholarslab.org/people/jeremy-boggs/">Jeremy</a> brought in a bunch of Arduino kits of all shapes and sizes, and various people went to work to see what they could make out of them.</p>
<p>First Claire and I got a blinking light to work. From there we decided to skip several chapters to make a little music player using a piezo speaker component. At that point we went off the map, dreaming big and working off the page. We started out working with this <a href="http://www.arduino.cc/en/Tutorial/Melody">schematic</a>, but we wanted to expand things a little.</p>
<p>I apologize in advance for whatever vocabulary gap there might be in the discussion below; it was my first time coding in C.</p>
<p>For one, this set-up only uses a single octave major scale. We opened things up by expanding the range of tones the speaker could play, including both a chromatic scale and adding an extra octave. One difficulty here was in the way that way that accidentals would be read by the board. At first we tried to use standard notation – f sharp would be represented by f#. But the code finds the notes in the melody by reading character by character through an array. So when the computer sees “cc#”, it processes it as two ‘c’s and one nonsense syllable that it can’t process. There is probably a more elegant solution, but we got around this by associating the accidentals with new characters entirely</p>
<p>C#/Db             =&gt;       l</p>
<p>D#/Eb              =&gt;       m</p>
<p>F#/Gb              =&gt;       n</p>
<p>G#/Ab             =&gt;       o</p>
<p>A#/Bb             =&gt;       p</p>
<p>Next, we added an extra octave. To extend the range, we hard coded frequencies for the new notes according to the formula given by the original Arduino code:</p>
<p>timeHigh = period / 2 = 1 / (2 * toneFrequency)</p>
<p>We probably could have done this in a more dynamic way. Or, as <a title="Eric Johnson" href="http://www.scholarslab.org/people/eric-johnson/">Eric</a> and <a title="Ronda Grizzle" href="http://www.scholarslab.org/people/ronda-grizzle/">Ronda</a> showed, we could have just downloaded a tone library to do this for us. They were jamming out to the Star Wars theme while we were still trying to get things working.  But eventually, we were able to program in the opening of “Mary Had a Little Lamb,”<i> </i>Mozart’s <i>Lacrimosa</i>, John Coltrane’s “26-2,” and “Somewhere Over the Rainbow<i>.</i>”</p>
<p>Here is where things got really ambitious, we came up with the idea to incorporate a RGB LED light that would change colors each time there was a note change in “Somewhere Over the Rainbow.” Rainbow lights for a song about rainbows.</p>
<p>To get the light working we worked off a slightly modified version of <a href="http://ardx.org/CODE12S">this schematic</a>, mashed in with the piezo tutiorial. With some quick help from <a title="Eric Rochester" href="http://www.scholarslab.org/people/eric-rochester/">Eric</a>, we modified the light arrangement so that each generates a random RGB combination. We then synchronized this with the rhythm of the melody.</p>
<p>In terms of the actual circuitry, we just split the digital signal so that it went out to two different parts of the bread board simultaneously and then fed information to both pins. Later we added a volume knob to reduce the maddening noise. You can see attached photos below, though you’ll have to meet us halfway with our diagram of the breadboard.</p>
<p>A later, unsuccessful attempt to key each frequency to a particular color resulted in a light that got brighter or darker depending on the note. I think with a little more time I could fix that by hard coding particular RGB values to particular frequencies, but we were trying to do it dynamically by converting the frequency directly into an intensity value.</p>
<p>Behold our final product!</p>
<p><script src="https://gist.github.com/5569210.js"></script><noscript><pre><code class="language- ">// Piezo speaker connected to pins
int speakerPin = 6;
// RGB LED leads connected to PWM pins
const int RED_LED_PIN = 9;
const int GREEN_LED_PIN = 10;
const int BLUE_LED_PIN = 11;

// Used to store the current intensity level of the individual LEDs
int redIntensity = 0;
int greenIntensity = 0;
int blueIntensity = 0;

char notes[] = {&quot;cCbgabccaag &quot;}; // a space represents a rest
int length = sizeof(notes); // the number of notes
int beats[] = {4,4,2,1,1,2,4,1,1,1,4,1};
int tempo = 300;

void playTone(int tone, int duration) {
  for (long i = 0; i &lt; duration * 1000L; i += tone * 2) {
    digitalWrite(speakerPin, HIGH);
    delayMicroseconds(tone);
    digitalWrite(speakerPin, LOW);
    delayMicroseconds(tone);
  }
}

void playNote(char note, int duration) {
char names[] = { 'c', 'l', 'd', 'm','e', 'f', 'n', 'g', 'o','a', 'p', 'b', 'C', 'L', 'D', 'M', 'E', 'F', 'N', 'G', 'O', 'A', 'P', 'B' };
int tones[] = { 1915, 1805, 1700, 1608, 1519, 1432, 1351, 1275, 1205, 1136, 1073, 1014, 956, 903, 850, 804, 760, 716, 676, 638, 603, 568, 478 };
  
  // play the tone corresponding to the note name
  for (int i = 0; i &lt; sizeof(names); i++) {
    if (names[i] == note) {
      playTone(tones[i], duration);
    }
  }
}

void setup() {
  pinMode(speakerPin, OUTPUT);
}

void loop() {
  for (int i = 0; i &lt; length; i++) {
    if (notes[i] == ' ') {
      delay(beats[i] * tempo); // rest
    } else {
      playNote(notes[i], beats[i] * tempo);
      greenIntensity = 255 * rand();
      redIntensity = 255 * rand();
      blueIntensity = 255 * rand();
      analogWrite(GREEN_LED_PIN, greenIntensity);
      analogWrite(RED_LED_PIN, redIntensity);
      analogWrite(BLUE_LED_PIN, blueIntensity);
      delay(beats[i]);
    }
    
    // pause between notes
    delay(tempo / 2); 
  }
}

</code></pre></noscript><img class="alignnone size-medium wp-image-8313" alt="Arduino Rainbow Circuit Map" src="http://www.scholarslab.org/wp-content/uploads/2013/05/photo-300x224.jpg" width="300" height="224" /><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/photo-1.jpg"><img class="alignnone size-medium wp-image-8315" alt="Arduino Breadboard Diagram" src="http://www.scholarslab.org/wp-content/uploads/2013/05/photo-1-300x224.jpg" width="300" height="224" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/experimental-humanities/arduino-rainbow-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing Neatline 2.0-alpha1!</title>
		<link>http://www.scholarslab.org/geospatial-and-temporal/announcing-neatline-2-0-alpha1/</link>
		<comments>http://www.scholarslab.org/geospatial-and-temporal/announcing-neatline-2-0-alpha1/#comments</comments>
		<pubDate>Mon, 13 May 2013 14:38:10 +0000</pubDate>
		<dc:creator>dm4fn</dc:creator>
				<category><![CDATA[Geospatial and Temporal]]></category>
		<category><![CDATA[neatline]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8256</guid>
		<description><![CDATA[[Cross-posted with dclure.org] It&#8217;s here! After much hard work, we&#8217;re delighted to announce the first alpha release of Neatline 2.0, which migrates the codebase to Omeka 2.0 and adds lots of exciting new things. For now, this is just an initial testing release aimed at developers and other brave folks who want to tinker around&#8230;. <a href="http://www.scholarslab.org/geospatial-and-temporal/announcing-neatline-2-0-alpha1/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.scholarslab.org/wp-content/uploads/2013/05/neatline-2.0-alpha1-small.png" alt="neatline-2.0-alpha1-small" width="600" height="153" class="alignnone size-full wp-image-8265" /></p>
<p><em>[Cross-posted with <a href="http://dclure.org/logs/announcing-neatline-2-0-alpha1/">dclure.org</a>]</em></p>
<p>It&#8217;s here! After much hard work, we&#8217;re delighted to announce the first alpha release of Neatline 2.0, which migrates the codebase to Omeka 2.0 and adds lots of exciting new things. For now, this is just an initial testing release aimed at developers and other brave folks who want to tinker around with the new set of features and help us work out the kinks. <strong>Notably, this build doesn&#8217;t yet include the migration to upgrade existing exhibits from the 1.1.x series</strong>, which we&#8217;ll ship with the first stable release in the next couple weeks once we&#8217;ve had a chance to field test the new code.</p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/_c6Fw0zgg2w?rel=0" frameborder="0" allowfullscreen></iframe><br />
<small>45 minutes of Neatline 2.0 alpha testing, compressed to 90 seconds, set to Chopin.</small></p>
<p>In the interest of modularity (more on this later), the set of features that was bundled together in the original version of Neatline has been split into three separate plugins:</p>
<ul>
<li><strong><a href="http://neatline.org/wp-content/uploads/2013/05/Neatline-2.0-alpha1.zip">Neatline</a></strong> &#8211; The core map-making toolkit and content management system.</li>
<li><strong><a href="http://neatline.org/wp-content/uploads/2013/05/NeatlineWaypoints-0.1.zip">NeatlineWaypoints</a></strong> &#8211; A list of sortable waypoints, the new version of the vertical &#8220;Item Browser&#8221; panel from the 1.x series.</li>
<li><strong><a href="http://neatline.org/wp-content/uploads/2013/05/NeatlineSimile-0.1.zip">NeatlineSimile</a></strong> &#8211; The SIMILE Timeline widget.</li>
</ul>
<p>Just unpack the <code>.zip</code> archives, copy the folders into the <code>/plugins</code> directory in your Omeka 2.x installation, and install the plugins in the Omeka admin. For more detailed information, head over to the <a href="https://github.com/scholarslab/Neatline/wiki/Neatline-2.0-alpha1-Installation"><strong>Neatline 2.0-alpha1 Installation Wiki</strong></a>, and take a look at the <a href="https://github.com/scholarslab/Neatline/blob/develop/CHANGELOG.md"><strong>change log</strong></a> for a more complete list of changes and additions.</p>
<p>We&#8217;re really excited about this code. Since releasing the first version last summer, we&#8217;ve gotten a huge amount of incredibly helpful feedback from users, much of which has been directly incorporated into the new release. We&#8217;ve also added a carefully-selected set of new features that opens up the door to some really interesting new approaches to geospatial (and completely <em>non</em>-geospatial) annotation. It&#8217;s a leaner, faster, more focused, more reliable, and generally more capable piece of software &#8211; we&#8217;re excited to start building projects with it!</p>
<p>Some of the additions and changes:</p>
<ul>
<li>
<p><strong>Real-time spatial querying</strong>, which makes it possible to create <em>really</em> large exhibits &#8211; as many as about 1,000,000 records on a single map;</p>
</li>
<li>
<p><strong>A total rewrite of the front-end application</strong> in <a href="http://backbonejs.org/">Backbone.js</a> and <a href="http://marionettejs.com/">Marionette</a> that provides a more minimal, streamlined, and responsive environment for creating and publishing exhibits;</p>
</li>
<li>
<p><strong>An interactive &#8220;stylesheet&#8221; system</strong> (inspired by projects like Mike Migurski&#8217;s <a href="https://github.com/mapnik/Cascadenik">Cascadenick</a>), that makes it possible to use a dialect of CSS &#8211; built directly into the editing environment &#8211; to synchronize large batches of records;</p>
</li>
<li>
<p><strong>The ability to import high-fidelity SVG illustrations</strong> created in specialized vector editing tools like Adobe Illustrator and Inkscape;</p>
</li>
<li>
<p><strong>The ability to add custom base layers</strong>, which, among other things, makes it possible to annotate completely non-spatial entities &#8211; paintings, photographs, documents, and anything else that can be captured as an image;</p>
</li>
<li>
<p><strong>A revamped import-from-Omeka workflow</strong> that makes it easier to link Neatline records to Omeka items and batch-import large collections of items;</p>
</li>
<li>
<p><strong>A flexible programming API and &#8220;sub-plugin&#8221; system</strong> that makes it easy for developers to extend the core feature set with custom functionality for specific projects &#8211; everything from simple JavaScript widgets (legends, sliders, scrollers, etc.) up to really deep modifications that extend the core data model and add completely new interactions.</p>
</li>
</ul>
<p>Over the course of the next two weeks, I&#8217;ll be writing in much more detail about some of the new features. In the meantime &#8211; let us know what you think! We&#8217;re going to be pushing out a series of alpha releases in pretty rapid succession over the course of the next couple weeks, and we&#8217;re really keen to get feedback about the new features before cutting off a stable 2.0 release. If you find a bug, or think of a feature that you&#8217;d like to see included, be sure to file a report on the <a href="https://github.com/scholarslab/Neatline/issues">issue tracker</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/geospatial-and-temporal/announcing-neatline-2-0-alpha1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prism, for Play</title>
		<link>http://www.scholarslab.org/digital-humanities/prism-for-play/</link>
		<comments>http://www.scholarslab.org/digital-humanities/prism-for-play/#comments</comments>
		<pubDate>Thu, 09 May 2013 19:31:20 +0000</pubDate>
		<dc:creator>Bethany Nowviskie</dc:creator>
				<category><![CDATA[Digital Humanities]]></category>
		<category><![CDATA[Grad Student Research]]></category>
		<category><![CDATA[Research and Development]]></category>
		<category><![CDATA[praxis program]]></category>
		<category><![CDATA[Prism]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8248</guid>
		<description><![CDATA[[cross-posted from nowviskie.org] This week marks the release of a new version of Prism, a web-based tool for &#8220;crowdsourcing interpretation,&#8221; constructed over the course of two academic years by two separate cohorts of graduate fellows in our Praxis Program at the Scholars&#8217; Lab. Praxis fellows are humanities and social science grad students across a variety&#8230;. <a href="http://www.scholarslab.org/digital-humanities/prism-for-play/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><em>[cross-posted from <a href="http://nowviskie.org/2013/prism-for-play/">nowviskie.org</a>]</em></p>
<p>This week marks the release of a new version of <a href="http://prism.scholarslab.org/">Prism</a>, a web-based tool for &#8220;<a href="http://www.scholarslab.org/digital-humanities/crowdsourcing-interpretation/">crowdsourcing interpretation</a>,&#8221; constructed over the course of two academic years by two separate cohorts of graduate fellows in our <a href="http://praxis-network.org/praxis-program.html">Praxis Program</a> at the <a href="http://scholarslab.org">Scholars&#8217; Lab</a>. </p>
<p><a href="http://nowviskie.org/wp-content/uploads/2013/05/LOGO-6747d62e676eadfc92873f25fb82d6af.png"><img src="http://nowviskie.org/wp-content/uploads/2013/05/LOGO-6747d62e676eadfc92873f25fb82d6af.png" alt="prism-logo" width="320" class="aligncenter size-full wp-image-2074" /></a> </p>
<p><a href="http://praxis.scholarslab.org/people.html">Praxis fellows</a> are humanities and social science grad students across a variety of departments at UVa, who come to our library-based lab for an intensive, team-based, hands-on experience in digital humanities project-work, covering as many aspects of DH practice as our practiced <a href="https://www.scholarslab.org/people/">Scholars&#8217; Lab staff</a> can convey. <span id="more-8248"></span> (By the end of the year, our fellows have negotiated a project charter; learned to create and appreciate robust ontologies and database designs; programmed or at least hacked around in Ruby and Javascript/CoffeeScript; raised up a Rails scaffold and become competent in HTML/CSS; managed the versioning of open source code in GitHub and deployed staging and production instances of a project; made design decisions and analyzed and drawn conclusions about user-experience aspects of a real-world project; communicated the value of their work and grown more comfortable sharing it in iterations and open-access venues; honed their skills at speaking across disciplinary and professional lines; learned hard project-management lessons; expanded their contacts in the DH world; engaged in conversations about funding, academic personnel, professionalization, and broadened career paths for scholars; and had fun and survived it all.) </p>
<p>Where our 2011-12 cohort of Praxis fellows laid the groundwork (resurrecting an old SpecLab game that evolved into the finest bit of vaporware <a href="http://www.digitalhumanities.org/companion/view?docId=blackwell/9781405103213/9781405103213.xml&#038;chunk.id=ss1-3-4&#038;toc.depth=1&#038;toc.id=ss1-3-4&#038;brand=default">never to be produced</a> by the humanities computing community at UVa, and creating a <a href="http://www.scholarslab.org/grad-student-research/teaching-prism-how-to-speak-spanish-and-french/">multilingual</a>, prototype system that allowed multiple readers to mark up a pre-set list of texts according to a shared vocabularly), our 2012-13 team had the opportunity to refine the concept into a usable, open-ended tool. Thanks to their work, it&#8217;s easy to <a href="http://prism.scholarslab.org/users/sign_in">create a Prism account</a> (including by logging in via existing services) and launch your own markup games, by uploading texts and defining the facets available to readers for the kind of blunt-force, collaborative annotation Prism allows.  Users now have a catalogue of texts they&#8217;ve added to the system or participated in marking up, and can get a sense of the <a href="http://prism.scholarslab.org/prisms">evolving, shared reading</a> of those texts through two visualization modes &#8212; one new (showing a quantified breakdown of crowdsourced readings), and one (showing the affective frequency of reader agreement) refined. Best of all, Prism has become lovely and light.  A design refresh and <a href="http://prism.scholarslab.org/pages/demo">attention to ease-of-entry</a> should make it an attractive tool for classroom use, and for experimentation and play.</p>
<p>Please try it out and let our students know what you think. (They are <a href="http://cdm6zf.github.io/">Claire Maiers</a>, Sociology; <a href="http://bmw9t.github.io/">Brandon Walsh</a>, English; <a href="http://egnally.github.io/">Gwen Nally</a>, Philosophy; <a href="http://www.ceciliamarquez.org/">Cecilia Marquez</a>, History; <a href="http://artsandsciences.virginia.edu/music/people/graduatestudents/#a25">Chris Peck</a>, Music; and <a href="http://ssl2ab.github.io/">Shane Lin</a>, History &#8212; emerging scholars and scholar-practitioners to watch!)  We would be especially interested in pedagogical applications of Prism.  And, since next year&#8217;s Praxis cohort &#8212; soon to be announced &#8212; will be moving on to a new project (reviving and re-thinking another SpecLab classic, <a href="http://nowviskie.org/2009/sketching-ivanhoe/">the Ivanhoe Game</a>), we also <a href="https://github.com/scholarslab/prism">encourage developers</a> to send pull requests for bug fixes and new features.  Much remains possible with the &#8220;crowdsourcing interpretation&#8221; concept at the heart of Prism, which <a href="http://www.michelepasin.org/blog/2012/06/01/crowdsourcing-interpretation-with-prism-a-new-software-from-the-scholars-lab/">one early reviewer</a> called &#8220;potentially the beginning of a new research field.&#8221;  Further visualizations?  Image-based or non-textual approaches to collaborative markup?  Computational linguistic analysis based on comparison of crowdsourced readings to larger corpora?  The sky is the limit.  </p>
<p>For now, we&#8217;re just enjoying the way the new, bright, child-like design for Prism matches <a href="https://www.scholarslab.org/grad-student-research/one-day-of-praxis/">the current mood</a> in the Scholars&#8217; Lab grad lounge: &#8220;Look! We made this!&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/digital-humanities/prism-for-play/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drum Roll Please&#8230;..</title>
		<link>http://www.scholarslab.org/announcements/drum-roll-please/</link>
		<comments>http://www.scholarslab.org/announcements/drum-roll-please/#comments</comments>
		<pubDate>Wed, 08 May 2013 20:06:32 +0000</pubDate>
		<dc:creator>cdm6zf</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Grad Student Research]]></category>
		<category><![CDATA[Praxis]]></category>
		<category><![CDATA[praxis program]]></category>
		<category><![CDATA[Prism]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8238</guid>
		<description><![CDATA[After many months of brainstorming, debating, dreaming big, getting down to business, panicking, refocusing, programming, and fine tuning, Prism is here! It has been a great journey, and I think my fellow Praxers would agree when I say that we have learned a lot.  Not only have we been introduced to the world of DH&#8230;. <a href="http://www.scholarslab.org/announcements/drum-roll-please/">More.</a>]]></description>
				<content:encoded><![CDATA[<p>After many months of brainstorming, debating, dreaming big, getting down to business, panicking, refocusing, programming, and fine tuning, <a href="http://prism.scholarslab.org/">Prism</a> is here!</p>
<p><a href="http://prism.scholarslab.org/"><img class="alignnone size-medium wp-image-8239" alt="LOGO" src="http://www.scholarslab.org/wp-content/uploads/2013/05/LOGO-300x126.png" width="300" height="126" /></a></p>
<p>It has been a great journey, and I think <a title="On Tasks Large and Small" href="http://praxis.scholarslab.org/">my fellow Praxers</a> would agree when I say that we have learned a lot.  Not only have we been introduced to the world of DH and received hands-on training in things like HTML, CSS, Ruby on Rails, database construction, and a smidge of JavaScript and Coffee Script, but we have also learned a great deal about working in a team environment and collaboration.</p>
<p>Although I plan to share some of the lessons learned throughout this year with you all in a subsequent blog post, I thought I would take this opportunity to tell you about what we have done with Prism this year.</p>
<p><span style="text-decoration: underline;">Oauth</span>:  With the new Prism, users are able to sign in through a variety of options.  We have retained the ability for users to create their own account on Prism.  However, users can also sign in through existing accounts with Facebook, Google, and Mozilla Persona.   Props go out to <a href="http://twitter.com/walshbr">Brandon</a> who tackled OmniAuth early on in the semester and then stuck with it despite many unforeseen hurdles!</p>
<p><span style="text-decoration: underline;">Redesign</span>:  From the beginning of our meetings, we discussed creating an online environment that was playful and would invite users to explore and participate.  In tandem with our vision of playfulness, we wanted to design the site with special attention to the user interface.  We pictured a site where the design itself would direct users on how to interact and lead them through the workflow from Prism creation to visualization in a streamlined manner.  Manifesting this vision fell to <a title="Graduate Fellows Forum: David Flaherty" href="https://twitter.com/GwenNally/">Gwen</a> and <a href="https://twitter.com/cmarque/">Cecilia</a>, and they have done a remarkable job creating a beautiful and functional site.</p>
<p><span style="text-decoration: underline;">Database Refactoring:</span> On perhaps a less glamorous note, Brandon and <a href="https://twitter.com/shane_et_al/">Shane</a> (or “Brane” as I call them) have refactored the database for Prism.  This refactoring was crucial to some of the improvements we’ve made to visualizations, allowing for user uploads, and will hopefully allow for others to build upon our code more easily.</p>
<p><span style="text-decoration: underline;">U</span><span style="text-decoration: underline;">ser Uploads</span>: Thanks to Shane and Brandon, Prism now also provides the ability for users to upload their own texts to the site.  Our hope is that this contribution allows for Prism to be deployed in a variety of classroom and scholarly settings.  As users create a new Prism, they have the option to either make their Prism public and available to anyone for highlighting or they can choose to make an unlisted Prism.  Unlisted Prisms are not listed in the Browse page, allowing users to limit participation to desired audiences.  I encourage you to check this feature out for yourself!</p>
<p><span style="text-decoration: underline;">A New Visualization</span>:  This version of Prism also includes a second option for visualizing collaborative interpretation, the Winning Facet Visualization, developed by Chris.  This option allows users to see a combination of all the facet categories at once.  In addition, users can interact with the pie chart to see the exact break down of user highlights by category.</p>
<p>There are many other smaller improvements that I have not listed here, so go take a look at <a title="PRISM!" href="http://prism.scholarslab.org/">Prism</a> and experience it for yourself!</p>
<p>Before I sign off, I want to give a shout out to the <a href="https://www.scholarslab.org/people/">SLab faculty and staff.</a>  They invested many hours in our team and rescued each of us from a precipice of panic or frustration more than once this year.  None of this would have been possible without them.  I will have more to say on that later, but for now, I will just say THANKS!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/announcements/drum-roll-please/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graduate Fellows Forum: David Flaherty</title>
		<link>http://www.scholarslab.org/podcasts/graduate-fellows-forum-david-flaherty/</link>
		<comments>http://www.scholarslab.org/podcasts/graduate-fellows-forum-david-flaherty/#comments</comments>
		<pubDate>Tue, 07 May 2013 12:23:24 +0000</pubDate>
		<dc:creator>ronda</dc:creator>
				<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8159</guid>
		<description><![CDATA[Graduate Fellows Forum: David Flaherty Mapping the British Vision of Empire in 1731 David Flaherty PhD Candidate, Corcoran Department of History Scholars&#8217; Lab Fellow 2012-2013 Respondent: Dr. S. Max Edelson Associate Professor, Corcoran Department of History University of Virginia Summary: The British Board of Trade, a bureaucratic body responsible for overseeing the 18th-century Atlantic colonies,&#8230;. <a href="http://www.scholarslab.org/podcasts/graduate-fellows-forum-david-flaherty/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><strong>Graduate Fellows Forum: David Flaherty</strong><br />
<strong>Mapping the British Vision of Empire in 1731</strong></p>
<p>David Flaherty<br />
PhD Candidate, Corcoran Department of History<br />
Scholars&#8217; Lab Fellow 2012-2013</p>
<p>Respondent:<br />
Dr. S. Max Edelson<br />
Associate Professor, Corcoran Department of History<br />
University of Virginia</p>
<p>Summary:<br />
The British Board of Trade, a bureaucratic body responsible for overseeing the 18th-century Atlantic colonies, had a broad geographic vision of the British Atlantic based on their extensive communication with colonies from Newfoundland to Honduras.  This project maps the Board&#8217;s correspondence for a single year, showing which points on the map it received information about and where those letters came from, in an attempt to illustrate that vision.</p>
<p>As always, you can listen to (or <a href="http://www.scholarslab.org/category/podcasts/">subscribe to</a>) our podcasts on the Scholars&#8217; Lab blog, or <a href="http://itunes.apple.com/us/itunes-u/scholars-lab-speaker-series/id401906619">on iTunesU</a>.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/podcasts/graduate-fellows-forum-david-flaherty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://deimos3.apple.com/WebObjects/Core.woa/FeedEnclosure/virginia-public-dz.5154837759.05154837761.23698365867/enclosure.mp3" length="" type="" />
		</item>
		<item>
		<title>On Tasks Large and Small</title>
		<link>http://www.scholarslab.org/grad-student-research/on-tasks-large-and-small/</link>
		<comments>http://www.scholarslab.org/grad-student-research/on-tasks-large-and-small/#comments</comments>
		<pubDate>Mon, 06 May 2013 18:06:03 +0000</pubDate>
		<dc:creator>bmw9t</dc:creator>
				<category><![CDATA[Grad Student Research]]></category>
		<category><![CDATA[praxis program]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8230</guid>
		<description><![CDATA[The biggest issue that I have faced with my work with the Praxis Program has to do with how I judge the difficulty of the tasks before me. I have proven to be singularly inadequate at distinguishing quick fixes with a large payoff from larger problems that would yield only small utility. This issue surfaced&#8230;. <a href="http://www.scholarslab.org/grad-student-research/on-tasks-large-and-small/">More.</a>]]></description>
				<content:encoded><![CDATA[<p>The biggest issue that I have faced with my work with the Praxis Program has to do with how I judge the difficulty of the tasks before me. I have proven to be singularly inadequate at distinguishing quick fixes with a large payoff from larger problems that would yield only small utility. This issue surfaced early on, when I boldly suggested that I could implement <a href="http://www.omniauth.org/">Omniauth</a> in a week. Two and a half months later I am still trying to get it to work: the Omniauth code structure works more generally, but each authentication service is its own unique little snowflake, different from all the other snowflakes in the code breaking eccentricities that it brings to the table. We had to jettison Twitter early on because it would not return user emails, which are central to the way that Devise handles logins. Facebook worked on local rails servers, but something whacky is happening on staging (and in deployment, for that matter) so that it throws a redirect uri failure at us that did not appear before. I feel as though I could have pounded away at these problems for ages and gotten nowhere.</p>
<p>But for every task like Omniauth there have been other jobs that seemed large but turned out to be much easier than expected. I implemented a destroy function on prisms last week in just a couple of hours (<a title="Shane Lin" href="http://www.scholarslab.org/people/shane-lin/">Shane</a> had already provided a lot of the scaffolding on an older database setup), which meant that I also had to implement user roles and permissions using cancan. Cancan felt like a bigger job than it wound up being, and the whole thing seems to be working in the feature branch now. Now a user can delete a prism that they have uploaded. Great success!</p>
<p>I think this ability to distinguish between large and small tasks is something that can only come with time and experience. We Praxers may be unable to tell how much work a particular feature will require, but the SLab team has been incredibly helpful in that regard. Where we see mountains, they see molehills, and vice versa. And when you get right down to it, Prism seemed like the biggest mountain of all a couple months ago. Prism felt like an insurmountable task until last week when everything came together in a flurry of productivity. I am impressed with what we have done.</p>
<p>Now, without warning, a couple of inspirational <a href="http://www.youtube.com/watch?v=NG2zyeVRcbs">climbing</a> <a href="http://www.youtube.com/watch?v=EoCPuhhE6dw">videos</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/grad-student-research/on-tasks-large-and-small/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Scholars&#8217; Lab Speaker Series: Alan Liu</title>
		<link>http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-alan-liu/</link>
		<comments>http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-alan-liu/#comments</comments>
		<pubDate>Mon, 06 May 2013 15:11:59 +0000</pubDate>
		<dc:creator>ronda</dc:creator>
				<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8157</guid>
		<description><![CDATA[Scholars&#8217; Lab Speaker Series: Alan Liu 4Humanities: Values, Strategies, Technologies for Humanities Advocacy in the Digital Age In April, Dr. Alan Liu, Professor in the Department of English at the University of California, Santa Barbara, spoke about ways in which the skills and resources of the DH community can help advocate for the humanities. &#160;&#8230;. <a href="http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-alan-liu/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><strong>Scholars&#8217; Lab Speaker Series: Alan Liu</strong><br />
<strong>4Humanities: Values, Strategies, Technologies for Humanities Advocacy in the Digital Age</strong></p>
<p>In April, Dr. Alan Liu, Professor in the Department of English at the University of California, Santa Barbara, spoke about ways in which the skills and resources of the DH community can help advocate for the humanities.</p>
<p>&nbsp;</p>
<p>Summary:<br />
Alan Liu will present an informal talk exploring such issues as assessing values and narrative frames for communicating the worth of the humanities. He will also brainstorm next-generation methods for using digital/networked technologies to create material for public view of scholars&#8217; normal research and teaching work.</p>
<p>As always, you can listen to (or <a href="http://www.scholarslab.org/category/podcasts/">subscribe to</a>) our podcasts on the Scholars&#8217; Lab blog, or <a href="http://itunes.apple.com/us/itunes-u/scholars-lab-speaker-series/id401906619">on iTunesU</a>.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-alan-liu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://deimos3.apple.com/WebObjects/Core.woa/FeedEnclosure/virginia-public-dz.5154837759.05154837761.23697875127/enclosure.mp3" length="" type="" />
		</item>
		<item>
		<title>Digital Humanities Speaker Series: Alan Liu &amp; Rama Hoetzlein</title>
		<link>http://www.scholarslab.org/podcasts/digital-humanities-speaker-series-alan-liu-rama-hoetzlein/</link>
		<comments>http://www.scholarslab.org/podcasts/digital-humanities-speaker-series-alan-liu-rama-hoetzlein/#comments</comments>
		<pubDate>Mon, 06 May 2013 12:37:38 +0000</pubDate>
		<dc:creator>ronda</dc:creator>
				<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8155</guid>
		<description><![CDATA[Digital Humanities Speaker Series: Alan Liu &#038; Rama Hoetlein The History of Thought as Networked Community: The RoSE Prototype In March, Dr. Alan Liu, Professor in the Department of English at University of California, Santa Barbara, and Rama Hoetzlein, Project Scientist, spoke about their work developing the RoSE Prototype. Summary: What if bibliographies of past&#8230;. <a href="http://www.scholarslab.org/podcasts/digital-humanities-speaker-series-alan-liu-rama-hoetzlein/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><strong>Digital Humanities Speaker Series: Alan Liu &#038; Rama Hoetlein</strong><br />
<strong>The History of Thought as Networked Community: The RoSE Prototype</strong></p>
<p>In March, Dr. Alan Liu, Professor in the Department of English at University of California, Santa Barbara,<br />
and Rama Hoetzlein, Project Scientist, spoke about their work developing the RoSE Prototype.</p>
<p>Summary:<br />
What if bibliographies of past authors and works could be modeled as a dynamic, evolving society linked to today&#8217;s scholars and students?  What if scholars and students could add data about biographical, historical, and intellectual relationships to the bibliographical entries, thus using present-day crowdsourcing to make more socially meaningful the crowds of history?  And what if visualizations could help us actively &#8220;storyboard&#8221; intellectual movements and not just spectate them?  Alan Liu and Rama Hoetzlein present the conceptual framework and some of the discoveries and challenges of the RoSE Research-oriented Social Environment (in beta at the conclusion of a NEH Digital Humanities Start-up grant).</p>
<p>The Digital Humanities Speaker Series is co-sponsored by <a href="http://www.iath.virginia.edu/">IATH</a>, <a href="http://shanti.virginia.edu/">SHANTI</a>, and the <a href="http://www.scholarslab.org/">Scholars&#8217; Lab</a>.</p>
<p>As always, you can listen to (or <a href="http://www.scholarslab.org/category/podcasts/">subscribe to</a>) our podcasts on the Scholars&#8217; Lab blog, or <a href="http://itunes.apple.com/us/itunes-u/scholars-lab-speaker-series/id401906619">on iTunesU</a>.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/podcasts/digital-humanities-speaker-series-alan-liu-rama-hoetzlein/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://deimos3.apple.com/WebObjects/Core.woa/FeedEnclosure/virginia-public-dz.5154837759.05154837761.23700755297/enclosure.mp3" length="" type="" />
<enclosure url="http://deimos3.apple.com/WebObjects/Core.woa/FeedEnclosure/virginia-public-dz.5154837759.05154837761.23700755297/enclosure.mp3" length="" type="" />
		</item>
		<item>
		<title>Random Skills: Check</title>
		<link>http://www.scholarslab.org/grad-student-research/random-skills-check/</link>
		<comments>http://www.scholarslab.org/grad-student-research/random-skills-check/#comments</comments>
		<pubDate>Fri, 03 May 2013 20:25:12 +0000</pubDate>
		<dc:creator>cdm6zf</dc:creator>
				<category><![CDATA[Grad Student Research]]></category>
		<category><![CDATA[Praxis]]></category>
		<category><![CDATA[praxis program]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8213</guid>
		<description><![CDATA[This week Cecilia and took a few hours and completed one of our goals for this semester: creating a tutorial video for using Prism.   Not only did this turn out to be surprisingly fun (due mostly to Cecilia’s amazing antics), but it also added a few more skills to the list of things we have&#8230;. <a href="http://www.scholarslab.org/grad-student-research/random-skills-check/">More.</a>]]></description>
				<content:encoded><![CDATA[<p>This week Cecilia and took a few hours and completed one of our goals for this semester: creating a tutorial video for using Prism.   Not only did this turn out to be surprisingly fun (due mostly to Cecilia’s amazing antics), but it also added a few more skills to the list of things we have learned through Praxis.</p>
<p><img class="alignnone size-medium wp-image-8216" alt="DSCF1799" src="http://www.scholarslab.org/wp-content/uploads/2013/05/DSCF1799-300x225.jpg" width="300" height="225" /></p>
<p>First&#8212;though this might seem trivial&#8211; we got to draw upon out teaching skills, devising a plan for how to teach someone to use Prism in under three minutes.  I authored the tutorial, and thanks to some great ad lib from Cecilia, I think the tutorial manages to capture the playful attitude with which we have approached our work and which we hope Prism engenders.</p>
<p>In addition, we learned how to use the <a href="http://www.shinywhitebox.com/ishowu-hd/">iShowU HD</a> software program.  Admittedly, this is a very user-friendly program which allows you to record an area on your screen as a video.  Still, it has left us with one more skill which we can confidently claim for our own.</p>
<p>And finally, and perhaps most importantly, we got to use this awesome microphone.   Need I say more?</p>
<p><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/DSCF17891.jpg"><img class="alignnone size-medium wp-image-8215" alt="DSCF1789" src="http://www.scholarslab.org/wp-content/uploads/2013/05/DSCF17891-254x300.jpg" width="254" height="300" /></a></p>
<p>The launch of Prism is just around the corner.  In the mean time, check out our <a title="prism tutorial" href="http://www.youtube.com/watch?v=AxHDcW15UBI">tutorial here</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/grad-student-research/random-skills-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One day of Praxis</title>
		<link>http://www.scholarslab.org/grad-student-research/one-day-of-praxis/</link>
		<comments>http://www.scholarslab.org/grad-student-research/one-day-of-praxis/#comments</comments>
		<pubDate>Fri, 03 May 2013 19:07:23 +0000</pubDate>
		<dc:creator>Shane Lin</dc:creator>
				<category><![CDATA[Grad Student Research]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[Praxis]]></category>
		<category><![CDATA[praxis program]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8175</guid>
		<description><![CDATA[Here is a bunch of photos from our most recent team meeting!      ]]></description>
				<content:encoded><![CDATA[<p>Here is a bunch of photos from our most recent team meeting!</p>
<p><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8502-Edit.jpg"><img class="alignnone size-medium wp-image-8176" alt="20130429-_MG_8502-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8502-Edit-300x200.jpg" width="300" height="200" /></a><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8503-Edit.jpg"><img class="alignnone size-medium wp-image-8177" alt="20130429-_MG_8503-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8503-Edit-300x200.jpg" width="300" height="200" /></a><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8634.jpg"><img class="alignnone size-medium wp-image-8196" alt="20130429-_MG_8634" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8634-300x200.jpg" width="300" height="200" /></a><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8631-Edit.jpg"><img class="alignnone size-medium wp-image-8195" alt="20130429-_MG_8631-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8631-Edit-202x300.jpg" width="202" height="300" /></a><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8605-Edit.jpg"><img class="alignnone size-medium wp-image-8192" alt="20130429-_MG_8605-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8605-Edit-300x130.jpg" width="300" height="130" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8558-Edit.jpg"><img class="alignnone size-medium wp-image-8187" alt="20130429-_MG_8558-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8558-Edit-300x140.jpg" width="300" height="140" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8586-Edit.jpg"><img class="alignnone size-medium wp-image-8190" alt="20130429-_MG_8586-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8586-Edit-300x200.jpg" width="300" height="200" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8583-Edit.jpg"><img class="alignnone size-medium wp-image-8189" alt="20130429-_MG_8583-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8583-Edit-300x200.jpg" width="300" height="200" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8596-Edit.jpg"><img class="alignnone size-medium wp-image-8191" alt="20130429-_MG_8596-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8596-Edit-200x300.jpg" width="200" height="300" /></a><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8622-Edit.jpg"><img class="alignnone size-medium wp-image-8193" alt="20130429-_MG_8622-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8622-Edit-300x200.jpg" width="300" height="200" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8572-Edit.jpg"><img class="alignnone size-medium wp-image-8188" alt="20130429-_MG_8572-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8572-Edit-300x200.jpg" width="300" height="200" /></a>  <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130502-0030_83650030_edit.jpg"><img class="alignnone size-medium wp-image-8197" alt="20130502-0030_###83650030_edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130502-0030_83650030_edit-300x198.jpg" width="300" height="198" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8545-Edit.jpg"><img class="alignnone size-medium wp-image-8186" alt="20130429-_MG_8545-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8545-Edit-231x300.jpg" width="231" height="300" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8543-Edit.jpg"><img class="alignnone size-medium wp-image-8185" alt="20130429-_MG_8543-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8543-Edit-200x300.jpg" width="200" height="300" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8528-Edit.jpg"><img class="alignnone size-medium wp-image-8184" alt="20130429-_MG_8528-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8528-Edit-200x300.jpg" width="200" height="300" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8519-Edit.jpg"><img class="alignnone size-medium wp-image-8183" alt="20130429-_MG_8519-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8519-Edit-300x200.jpg" width="300" height="200" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8516-Edit.jpg"><img class="alignnone size-medium wp-image-8182" alt="20130429-_MG_8516-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8516-Edit-300x200.jpg" width="300" height="200" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8515-Edit.jpg"><img class="alignnone size-medium wp-image-8181" alt="20130429-_MG_8515-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8515-Edit-300x165.jpg" width="300" height="165" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8509-Edit-2.jpg"><img class="alignnone size-medium wp-image-8179" alt="20130429-_MG_8509-Edit-2" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8509-Edit-2-200x300.jpg" width="200" height="300" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8511-Edit.jpg"><img class="alignnone size-medium wp-image-8180" alt="20130429-_MG_8511-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8511-Edit-200x300.jpg" width="200" height="300" /></a><a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8506-Edit.jpg"><img class="alignnone size-medium wp-image-8178" alt="20130429-_MG_8506-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8506-Edit-300x200.jpg" width="300" height="200" /></a> <a href="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8624-Edit.jpg"><img class="alignnone size-medium wp-image-8194" alt="20130429-_MG_8624-Edit" src="http://www.scholarslab.org/wp-content/uploads/2013/05/20130429-_MG_8624-Edit-300x200.jpg" width="300" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/grad-student-research/one-day-of-praxis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Team Praxis!</title>
		<link>http://www.scholarslab.org/grad-student-research/team-praxis/</link>
		<comments>http://www.scholarslab.org/grad-student-research/team-praxis/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 15:42:12 +0000</pubDate>
		<dc:creator>cm2ug</dc:creator>
				<category><![CDATA[Grad Student Research]]></category>
		<category><![CDATA[praxis program]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8169</guid>
		<description><![CDATA[This past week we started a soft (internal) launch of the new Prism so we could begin to work out all of the kinks. This of course meant that we spent a lot of time together working out last minute concerns.  This was a really different &#8220;finals&#8221; type experience than the one I am currently experiencing.  Finals&#8230;. <a href="http://www.scholarslab.org/grad-student-research/team-praxis/">More.</a>]]></description>
				<content:encoded><![CDATA[<p>This past week we started a soft (internal) launch of the new Prism so we could begin to work out all of the kinks. This of course meant that we spent <em>a lot </em>of time together working out last minute concerns.  This was a really different &#8220;finals&#8221; type experience than the one I am currently experiencing.  Finals in graduate school basically means that I find a quiet place and don&#8217;t leave until all of the papers have been written.  This crunch time collaboration felt exciting, dynamic, and fun.  It made me realize how much I have come to value the teamwork time that I get in Praxis each week.  Grad school can be isolating and socializing can feel like a distraction.  What was great about Praxis was that we were able to come together weekly in a work-related activity but really enjoy each other&#8217;s company.</p>
<p>I have always known that I&#8217;m a social worker but this experience has confirmed that in order to be successful in my graduate career I will have to build a team of people around me who are willing and able to support me.  I am also increasingly thinking about what type of alt-ac careers would allow me to keep this team experience central to my work life.  I&#8217;m going to miss these weekly work/hang sessions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/grad-student-research/team-praxis/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Graduate Fellows Forum: Joanna Swafford</title>
		<link>http://www.scholarslab.org/podcasts/graduate-fellows-forum-joanna-swafford/</link>
		<comments>http://www.scholarslab.org/podcasts/graduate-fellows-forum-joanna-swafford/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 13:04:19 +0000</pubDate>
		<dc:creator>ronda</dc:creator>
				<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8148</guid>
		<description><![CDATA[Graduate Fellows Forum: Joanna Swafford Victorian Songs and Digital Tools: Facilitating Sound Studies Scholarship Joanna Swafford PhD Candidate, Department of English Scholars&#8217; Lab Fellow 2012-2013 Respondent Dr. Herbert Tucker John C. Coleman Professor of English University of Virginia Summary: Although sound studies and interdisciplinary music and poetry scholarship have increased over the last decade, scholars&#8230;. <a href="http://www.scholarslab.org/podcasts/graduate-fellows-forum-joanna-swafford/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><strong>Graduate Fellows Forum: Joanna Swafford</strong><br />
<strong>Victorian Songs and Digital Tools: Facilitating Sound Studies Scholarship</strong></p>
<p>Joanna Swafford<br />
PhD Candidate, Department of English<br />
Scholars&#8217; Lab Fellow 2012-2013</p>
<p>Respondent<br />
Dr. Herbert Tucker<br />
John C. Coleman Professor of English<br />
University of Virginia</p>
<p>Summary:<br />
Although sound studies and interdisciplinary music and poetry scholarship have increased over the last decade, scholars have not had the digital tools necessary to make their auditory arguments accessible to a wider audience. This talk will present two tools built by Scholars&#8217; Lab Fellow Joanna Swafford that will help change that: <em>Songs of the Victorians</em>, an archive and analysis of parlor and art song settings of Victorian poems, and <em>Augmented Notes</em>, a tool that will let scholars build their own interdisciplinary websites like <em>Songs of the Victorians</em>.</p>
<p>As always, you can listen to (or <a href="http://www.scholarslab.org/category/podcasts/">subscribe to</a>) our podcasts on the Scholars&#8217; Lab blog, or <a href="http://itunes.apple.com/us/itunes-u/scholars-lab-speaker-series/id401906619">on iTunesU</a>.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/podcasts/graduate-fellows-forum-joanna-swafford/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://deimos3.apple.com/WebObjects/Core.woa/FeedEnclosure/virginia-public-dz.5154837759.05154837761.23538270765/enclosure.mp3" length="" type="" />
		</item>
		<item>
		<title>Digital Humanities Speaker Series: Walter Sheidel</title>
		<link>http://www.scholarslab.org/podcasts/digital-humanities-speaker-series-walter-sheidel/</link>
		<comments>http://www.scholarslab.org/podcasts/digital-humanities-speaker-series-walter-sheidel/#comments</comments>
		<pubDate>Fri, 26 Apr 2013 18:46:07 +0000</pubDate>
		<dc:creator>ronda</dc:creator>
				<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8140</guid>
		<description><![CDATA[Digital Humanities Speaker Series: Walter Scheidel Redrawing the Map of the Roman World In March, Dr. Walter Scheidel, Dickason Professor in the Humanities, Professor of Classics and History, and Chair of the Department of Classics at Stanford University, spoke about ORBIS, a tool developed at Standord that models the geospatial network of the Roman world.&#8230;. <a href="http://www.scholarslab.org/podcasts/digital-humanities-speaker-series-walter-sheidel/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><strong>Digital Humanities Speaker Series: Walter Scheidel</strong><br />
<strong>Redrawing the Map of the Roman World</strong></p>
<p>In March, Dr. Walter Scheidel, Dickason Professor in the Humanities, Professor of Classics and History, and Chair of the Department of Classics at Stanford University, spoke about ORBIS, a tool developed at Standord that models the geospatial network of the Roman world.</p>
<p>Summary:<br />
Ancient societies were shaped by logistical constraints that are almost unimaginable to modern observers. “ORBIS: The Stanford Geospatial Network Model of the Roman World” (<a href="http://orbis.stanford.edu/">orbis.stanford.edu</a>), for the first time, allows us to understand the true cost of distance in building and maintaining a huge empire with pre-modern technology. This talk explores various ways in which this novel Digital Humanities tool changes and enriches our understanding of ancient history. </p>
<p>The Digital Humanities Speaker Series is co-sponsored by <a href="http://www.iath.virginia.edu/">IATH</a>, <a href="http://shanti.virginia.edu/">SHANTI</a>, and the <a href="http://www.scholarslab.org/">Scholars&#8217; Lab</a>.</p>
<p>As always, you can listen to (or <a href="http://www.scholarslab.org/category/podcasts/">subscribe to</a>) our podcasts on the Scholars&#8217; Lab blog, or <a href="http://itunes.apple.com/us/itunes-u/scholars-lab-speaker-series/id401906619">on iTunesU</a>.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/podcasts/digital-humanities-speaker-series-walter-sheidel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://deimos3.apple.com/WebObjects/Core.woa/FeedEnclosure/virginia-public-dz.5154837759.05154837761.23529002200/enclosure.mp3" length="" type="" />
		</item>
		<item>
		<title>Scholars&#8217; Lab Speaker Series: Shawn Graham</title>
		<link>http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-shawn-graham/</link>
		<comments>http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-shawn-graham/#comments</comments>
		<pubDate>Fri, 26 Apr 2013 16:13:59 +0000</pubDate>
		<dc:creator>ronda</dc:creator>
				<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8129</guid>
		<description><![CDATA[Scholars&#8217; Lab Speaker Series: Shawn Graham Practical Necromancy: Simulation and Agent Based Modeling in the Humanities In March, Dr. Shawn Graham, Assistant Professor of Digital Humanities in the Department of History at Carleton University, spoke about using agent based simulations to understand aspects of Greco-Roman antiquity. &#160; Summary: Raising the dead presents certain difficulties, but&#8230;. <a href="http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-shawn-graham/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><strong>Scholars&#8217; Lab Speaker Series: Shawn Graham</strong><br />
<strong>Practical Necromancy: Simulation and Agent Based Modeling in the Humanities</strong></p>
<p>In March, Dr. Shawn Graham, Assistant Professor of Digital Humanities in the Department of History at Carleton University, spoke about using agent based simulations to understand aspects of Greco-Roman antiquity.</p>
<p>&nbsp;</p>
<p>Summary:<br />
Raising the dead presents certain difficulties, but computation suggests a way forward. In Practical Necromany, Dr. Graham discusses the use of agent based simulations to understand aspects of Greco-Roman antiquity, its perils and potentials, and how all of this fits into a worldview informed by the digital humanities.</p>
<p>As always, you can listen to (or <a href="http://www.scholarslab.org/category/podcasts/">subscribe to</a>) our podcasts on the Scholars&#8217; Lab blog, or <a href="http://itunes.apple.com/us/itunes-u/scholars-lab-speaker-series/id401906619">on iTunesU</a>.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-shawn-graham/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://deimos3.apple.com/WebObjects/Core.woa/FeedEnclosure/virginia-public-dz.5154837759.05154837761.23530048996/enclosure.mp3" length="" type="" />
		</item>
		<item>
		<title>Scholar&#8217;s Lab Presentation: Using Juxta Commons in the Classroom</title>
		<link>http://www.scholarslab.org/podcasts/scholars-lab-presentation-using-juxta-commons-in-the-classroom/</link>
		<comments>http://www.scholarslab.org/podcasts/scholars-lab-presentation-using-juxta-commons-in-the-classroom/#comments</comments>
		<pubDate>Fri, 26 Apr 2013 14:18:18 +0000</pubDate>
		<dc:creator>Dana Wheeles</dc:creator>
				<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8057</guid>
		<description><![CDATA[Scholars&#8217; Lab Speaker Series: Andrew Stauffer &#038; Dana Wheeles Using Juxta Commons in the Classroom In February, Andrew Stauffer, Professor of English and Director of NINES, and Juxta Project Administrator Dana Wheeles spoke about using the newly released Juxta Commons in the classroom. Because the presentation was a show-and-tell, Dana has been kind enough to&#8230;. <a href="http://www.scholarslab.org/podcasts/scholars-lab-presentation-using-juxta-commons-in-the-classroom/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><strong>Scholars&#8217; Lab Speaker Series: Andrew Stauffer &#038; Dana Wheeles</strong><br />
<strong>Using Juxta Commons in the Classroom</strong></p>
<p><em>In February, Andrew Stauffer, Professor of English and Director of NINES, and Juxta Project Administrator Dana Wheeles spoke about using the newly released Juxta Commons in the classroom. Because the presentation was a show-and-tell, Dana has been kind enough to create this blog post as a companion to the podcast of their talk.</p>
<p>As always, you can listen to (or <a href="http://www.scholarslab.org/category/podcasts/">subscribe to</a>) our podcasts on the Scholars&#8217; Lab blog, or <a href="http://itunes.apple.com/us/itunes-u/scholars-lab-speaker-series/id401906619">on iTunesU</a>.</em></p>
<p>&nbsp;</p>

<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_8058" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.scholarslab.org/wp-content/uploads/2013/04/workspace.jpg"><img class="size-medium wp-image-8058 " alt="Juxta Commons work space" src="http://www.scholarslab.org/wp-content/uploads/2013/04/workspace-300x136.jpg" width="300" height="136" /></a><p class="wp-caption-text">The Juxta Commons Work Space</p></div>
<p>During our recent presentation of Juxta Commons in the Scholar&#8217;s Lab, NINES Director Andrew Stauffer and I showed a number of visualizations of texts collated within the interface of our newly-released application. Because this aspect of the presentation does not translate for an audience listening to the podcast audio, this blog post is meant as a visual companion to our talk.</p>
<p>We began the presentation with a tour of the Juxta Commons workspace, from the library section at the top of the page (for managing your source files, witnesses and comparison sets) to the visualization pane that dominates the lower portion of the window. Using <a href="http://www.juxtacommons.org/shares/GJm4O9" target="_blank">a set</a> comparing Lewis Carroll&#8217;s Alice&#8217;s Adventures Underground with the more well-know Alice&#8217;s Adventures in Wonderland, Dr. Stauffer showed how the <a href="http://juxtacommons.org/guide#visualizations" target="_blank">heat map</a> overlays color over variants &#8211; the deeper the color, the more different the passage. He also showed how the <a href="http://juxtacommons.org/images/histogram.jpg" target="_blank">histogram</a> offers a more global view of the collation, and allows the user to target the regions with the most difference quickly, even for long documents.</p>
<div id="attachment_8062" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.scholarslab.org/wp-content/uploads/2013/04/alice_set.jpg"><img class="size-medium wp-image-8062 " alt="Alice Underground vs Alice in Wonderland: heat map and histogram" src="http://www.scholarslab.org/wp-content/uploads/2013/04/alice_set-300x170.jpg" width="300" height="170" /></a><p class="wp-caption-text">Alice Underground vs Alice in Wonderland: heat map and histogram</p></div>
<p>Dr. Stauffer also showed <a href="http://www.juxtacommons.org/shares/FF0x40">a comparison</a> of two versions of D.G. Rossetti&#8217;s review, &#8220;<a href="http://www.rossettiarchive.org/docs/34p-1870.raw.html">The Stealthy School of Criticism</a>,&#8221; illustrating how the author toned down his rhetoric in the version published in the Athenaeum.</p>
<div id="attachment_8079" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.scholarslab.org/wp-content/uploads/2013/04/creeping.jpg"><img class="size-medium wp-image-8079 " alt="Highlight of variant in Rossetti's text" src="http://www.scholarslab.org/wp-content/uploads/2013/04/creeping-300x114.jpg" width="300" height="114" /></a><p class="wp-caption-text">Highlight of variant in Rossetti&#8217;s text</p></div>
<p>When I took the podium, I chose to focus on other ways of utilizing Juxta Commons, from authenticating texts found on the web, to exploring the history of news items and Wikipedia articles. For example, a look at <a href="http://www.juxtacommons.org/shares/Ma6uaV" target="_blank">two versions of an article</a> posted on the New York Times website in November shows that the same article might be drastically different 30 minutes after posting.</p>
<p style="text-align: center"><a href="http://www.scholarslab.org/wp-content/uploads/2013/04/nyt.jpg"><img class="size-medium wp-image-8084 aligncenter" alt="New York Times article" src="http://www.scholarslab.org/wp-content/uploads/2013/04/nyt-300x157.jpg" width="300" height="157" /></a></p>
<p>A full compendium of the sets we shared can be found at the main Juxta blog at <a href="http://www.juxtasoftware.org/using-juxta-in-the-classroom-scholars-lab-presentation/">juxtasoftware.org</a>.</p>
<p>If you have any questions about Juxta or Juxta Commons, please visit us at our development list, or write us directly at technologies at nines dot org.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/podcasts/scholars-lab-presentation-using-juxta-commons-in-the-classroom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://deimos3.apple.com/WebObjects/Core.woa/FeedEnclosure/virginia-public-dz.5154837759.05154837761.23530048967/enclosure.mp3" length="" type="" />
		</item>
		<item>
		<title>Scholars&#8217; Lab Speaker Series: Gretchen Gueguen</title>
		<link>http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-gretchen-gueguen/</link>
		<comments>http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-gretchen-gueguen/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 12:39:37 +0000</pubDate>
		<dc:creator>ronda</dc:creator>
				<category><![CDATA[Podcasts]]></category>

		<guid isPermaLink="false">http://www.scholarslab.org/?p=8117</guid>
		<description><![CDATA[Scholars&#8217; Lab Speaker Series: Gretchen Gueguen Do Digital Archivists Dream of Electronic Records? Born Digital Collections in the Small Special Collections Library In February, Gretchen Gueguen, Digital Archivist in UVa Library&#8217;s Digital Curation Services unit spoke about the challenges to fundamental principles of the archival practice by electronic communication.. Summary: The information age has ushered&#8230;. <a href="http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-gretchen-gueguen/">More.</a>]]></description>
				<content:encoded><![CDATA[<p><strong>Scholars&#8217; Lab Speaker Series: Gretchen Gueguen</strong><br />
<strong>Do Digital Archivists Dream of Electronic Records? Born Digital Collections in the Small Special Collections Library</strong></p>
<p>In February, Gretchen Gueguen, Digital Archivist in UVa Library&#8217;s Digital Curation Services unit spoke about the challenges to fundamental principles of the archival practice by electronic communication.</em>.</p>
<p>Summary:<br />
The information age has ushered in the biggest changes in human communication since the rise of printed text. The dynamic and ephemeral nature of electronic communication presents stark challenges to the fundamental principles of the archival practice. Join us for a look at how the tradition of collecting and creating archives is facing this paradigm shift and how the historical record will be shaped for the future.</p>
<p>As always, you can listen to (or <a href="http://www.scholarslab.org/category/podcasts/">subscribe to</a>) our podcasts on the Scholars&#8217; Lab blog, or <a href="http://itunes.apple.com/us/itunes-u/scholars-lab-speaker-series/id401906619">on iTunesU</a>.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.scholarslab.org/podcasts/scholars-lab-speaker-series-gretchen-gueguen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://deimos3.apple.com/WebObjects/Core.woa/FeedEnclosure/virginia-public-dz.5154837759.05154837761.23237371565/enclosure.mp3" length="" type="" />
		</item>
	</channel>
</rss>
