<?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>Libby Hemphill</title>
	<atom:link href="http://www.libbyh.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.libbyh.com</link>
	<description>research and posts on social media, collaboration, and related technologies</description>
	<lastBuildDate>Tue, 05 Jan 2010 18:42:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Pedestrian Tools and Character-driven Science: How Bones Helped Me Rethink My Research</title>
		<link>http://www.libbyh.com/2010/01/05/pedestrian-tools-and-character-driven-science-how-bones-helped-me-rethink-my-research/</link>
		<comments>http://www.libbyh.com/2010/01/05/pedestrian-tools-and-character-driven-science-how-bones-helped-me-rethink-my-research/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 18:42:38 +0000</pubDate>
		<dc:creator>libbyh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.libbyh.com/?p=513</guid>
		<description><![CDATA[I wrote a memo for myself in which I develop analogies between television shows that involve collaborative science work and my own research on geographically distributed science teams. My goal is to use popularized science to get us to think differently about our own research. I use examples from the forensics drama Bones and data [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote a memo for myself in which I develop analogies between television shows that involve collaborative science work and my own research on geographically distributed science teams. My goal is to use popularized science to get us to think differently about our own research. I use examples from the forensics drama Bones and data from my current study of post doctoral researchers and their labs to examine how we make sense of scientific collaboration and the tools used to accomplish science. I argue that we should focus more on the pedestrian tools scientists use to accomplish their work and to carefully study the scientists themselves and not just their tasks.</p>
<p><a href="/docs/bones_memo.pdf" target="_blank">Download the full paper (3.5 pages)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.libbyh.com/2010/01/05/pedestrian-tools-and-character-driven-science-how-bones-helped-me-rethink-my-research/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails on Snow Leopard</title>
		<link>http://www.libbyh.com/2009/10/18/ruby-on-rails-on-snow-leopard/</link>
		<comments>http://www.libbyh.com/2009/10/18/ruby-on-rails-on-snow-leopard/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 17:12:58 +0000</pubDate>
		<dc:creator>libbyh</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.libbyh.com/?p=494</guid>
		<description><![CDATA[I finally tackled the (hopefully) last bit of my Snow Leopard upgrade today: getting Ruby (and Rails) ready to go. I'm working on an information visualization project and am using Ruby to write the app. Mike Gunderloy at A Fresh Cup has a great step by step guide (I started at step 19 since I [...]]]></description>
			<content:encoded><![CDATA[<p>I finally tackled the (hopefully) last bit of my Snow Leopard upgrade today: getting Ruby (and Rails) ready to go. I'm working on an information visualization project and am using Ruby to write the app. Mike Gunderloy at A Fresh Cup has a great step by step guide (I started at step 19 since I was happy to upgrade in place):</p>
<p><a title="RoR dev" href="http://afreshcup.com/2009/09/02/migrating-to-snow-leopard-for-rails-development-a-definitive-guide/">Migrating to Snow Leopard for Rails Development</a></p>
<p>As always happens when upgrading or installing, it seems, I did run into a few problems.</p>
<p><strong>Errors and Workarounds</strong></p>
<p><em>Problem</em>: Git doesn't want to install.</p>
<p><em>Error</em>:</p>
<p><code>ld: warning: in /opt/local/lib/libiconv.dylib, file is not of required architecture</code></p>
<p><em>Workaround</em>:</p>
<p>MacPorts is to blame. To uninstall MacPorts, use</p>
<p><code>sudo rm -rf \<br />
/opt/local \<br />
/etc/manpaths.d/macports \<br />
/etc/paths.d/macports \<br />
/Applications/DarwinPorts \<br />
/Applications/MacPorts \<br />
/Library/LaunchDaemons/org.macports.* \<br />
/Library/Receipts/DarwinPorts*.pkg \<br />
/Library/Receipts/MacPorts*.pkg \<br />
/Library/StartupItems/DarwinPortsStartup \<br />
/Library/Tcl/darwinports1.0 \<br />
/Library/Tcl/macports1.0</code></p>
<p>(Thanks, <a title="Simon Engledew on reinstalling git" href="http://blog.engledew.com/post/reinstalling-git-on-snow-leopard">Simon Engledew</a>)</p>
<p><em>Problem</em>: MySQL gem doesn't install.</p>
<p><em>Error</em>:</p>
<p><code>ERROR: Failed to build gem native extension mysql</code></p>
<p><em>Workaround</em>:</p>
<p>Make sure you installed the <a title="MySQL Download page" href="http://dev.mysql.com/downloads/mysql/5.1.html#macosx-dmg">latest version of MySQL</a>, the <a title="Swoon" href="http://www.swoon.net/site/software.html">MySQL Preference Pane</a>, and that you started the MySQL server before trying to install the gem. iCoreTech has <a title="iCoreTech" href="http://www.icoretech.org/2009/08/install-mysql-and-mysql-ruby-gem-on-snow-leopard-64-bit/">directions for installing MySQL and MySQL gem on Snow Leopard</a>.</p>
<p><strong>Other Options</strong></p>
<p>HiveLogic has another method for <a title="HiveLogic" href="http://hivelogic.com/articles/compiling-git-on-snow-leopard/">installing Git on Snow Leopoard</a>. I was having trouble with the package installers, and doing it "by hand" via HiveLogic's instructions worked well.</p>
<p>My project uses RMagick. RMagick's DMG installer wouldn't work for me either. I was able to <a title="Install RMagick from source" href="http://onrails.org/articles/2009/09/04/rmagick-from-source-on-snow-leopard">install RMagick from source using a script from OnRails.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.libbyh.com/2009/10/18/ruby-on-rails-on-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter network for danah boyd JSB Symposium talk</title>
		<link>http://www.libbyh.com/2009/10/13/twitter-network-for-danah-boyd-jsb-symposium-talk/</link>
		<comments>http://www.libbyh.com/2009/10/13/twitter-network-for-danah-boyd-jsb-symposium-talk/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 02:07:56 +0000</pubDate>
		<dc:creator>libbyh</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Social Computing]]></category>
		<category><![CDATA[Talks]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.libbyh.com/?p=480</guid>
		<description><![CDATA[Today's John Seely Brown Symposium had an active Twitter hashtag of #danahjsb. I imported the hashtag network* into NodeXL and had it draw up a graph for me (click the image for a giant BMP version):

Image size depends on the user's number of followers. Edge color depends on the kind of edge - yellow indicates [...]]]></description>
			<content:encoded><![CDATA[<p>Today's <a title="John Seely Brown symposium" href="http://si.umich.edu/jsb" target="_blank">John Seely Brown Symposium</a> had an active Twitter hashtag of #danahjsb. I imported the hashtag network* into <a title="NodeXL website" href="http://nodexl.codeplex.com" target="_blank">NodeXL</a> and had it draw up a graph for me (click the image for a giant BMP version):</p>
<p style="text-align: center;">
<div class="wp-caption aligncenter" style="width: 460px"><a href="http://www.libbyh.com/docs/danahjsb_zoom.bmp"><img title="#danahjsb network" src="/docs/danahjsb.gif" alt="#danahjsb network" width="450" height="300" /></a><p class="wp-caption-text">#danahjsb network</p></div>
<p>Image size depends on the user's number of followers. Edge color depends on the kind of edge - yellow indicates a following relationship, blue a reply/mention relationship. Compare our graph to <a title="Marc's post about #win09" href="http://www.connectedaction.net/wp-content/uploads/2009/10/2009-October-NodeXL-Twitter-Network-WIN09.png" target="_blank">Marc Smith's graph of the #win09 hashtag users</a>:</p>
<p style="text-align: center;">
<div class="wp-caption aligncenter" style="width: 460px"><img title="#win09 network" src="http://www.connectedaction.net/wp-content/uploads/2009/10/2009-September-NodeXL-Twitter-Search-WIN09-Follows-Network-profile-pictures.png" alt="#win09 network" width="450" height="300" /><p class="wp-caption-text">#win09 network</p></div>
<p>You'll notice a couple of things. First, Marc is better with NodeXL than I am, and his graph is just easier to read. Then, dig a little deeper and notice that the network of users who used the #danahjsb hashtag is more densely connected. The #win09 network is brokered by the guy in the middle, and the #danahjsb network has no obvious brokers. More to come on my thoughts about the symposium talk and panel, stay tuned.</p>
<p>* only users whose tweets are public are included in these network diagrams</p>
<p><strong>More Info:</strong></p>
<p><a title="What the hashtag for danahjsb" href="http://wthashtag.com/Danahjsb" target="_blank">What the hashtag?!</a> - view the tweets</p>
<p>Coming Soon - watch the symposium talk and panel</p>
]]></content:encoded>
			<wfw:commentRss>http://www.libbyh.com/2009/10/13/twitter-network-for-danah-boyd-jsb-symposium-talk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building Bridges: A Study of Coordination in Projects</title>
		<link>http://www.libbyh.com/2009/09/16/dissertation-abstract/</link>
		<comments>http://www.libbyh.com/2009/09/16/dissertation-abstract/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 15:58:22 +0000</pubDate>
		<dc:creator>libbyh</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Dissertation]]></category>
		<category><![CDATA[ECC]]></category>
		<category><![CDATA[Organizations]]></category>
		<category><![CDATA[Publications]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.libbyh.com/?p=459</guid>
		<description><![CDATA[On August 13, I successfully defended my dissertation. Today, I submitted my final, approved version to University of Michigan's institutional repository. That version won't be available until after I receive my degree in December, but you're welcome to read a nearly identical version of my complete dissertation.
Dissertation Abstract
In our efforts to understand how collaborative work [...]]]></description>
			<content:encoded><![CDATA[<p>On August 13, I successfully defended my dissertation. Today, I submitted my final, approved version to University of Michigan's institutional repository. That version won't be available until after I receive my degree in December, but you're welcome to read a nearly identical version of <a href="/docs/hemphill_dissertation.pdf">my complete dissertation</a>.</p>
<p><strong>Dissertation Abstract</strong><br />
In our efforts to understand how collaborative work can be accomplished, we often turn to discussions of “coordination” for help. However, the concept of coordination is inadequate for explaining the many interdependent processes at work within successful collaborations. In this dissertation, I examined a collaborative construction project – the Woods Avenue Bridge (WAB) Project – with many coordination demands. I used data from this project to develop the concept of adaptive capacity – the set of capabilities a team develops that enable them to adjust to internal and external stresses.</p>
<p>Through analyzing meeting minutes, interview transcripts, and documents the project team developed, I was able to identify behaviors and approaches the team took that may have enabled them to better respond to changes in their environment. I use a specific example of a time when the team successfully redesigned the structure they were building in the field to illustrate the kind of coordination work adaptive capacity enables.</p>
<p>From data about the WAB Project, I identified components of adaptive capacity including perspective taking, multimembership, affect, and social capital. Understanding these components and the adaptive capacity they can develop helps us understand what about a team enables them to accomplish coordination work. Without adaptive capacity, we lack an integrated explanation of the ways in which different components interact and how those components address coordination.</p>
<p>This dissertation contributes to our understanding of how collaborative teams accomplish coordination by refining the concept of adaptive capacity and integrating earlier literatures on coordination, collaboration, and adaptation. The concept of adaptive capacity helps us understand the resources collaborative teams develop that make it possible for them to find flexible and creative solutions to their coordination problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.libbyh.com/2009/09/16/dissertation-abstract/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Current Research: Joining Virtual Organizations</title>
		<link>http://www.libbyh.com/2009/09/01/current-research-joining-virtual-organizations/</link>
		<comments>http://www.libbyh.com/2009/09/01/current-research-joining-virtual-organizations/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 22:57:55 +0000</pubDate>
		<dc:creator>libbyh</dc:creator>
				<category><![CDATA[Academia]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[Organizations]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.libbyh.com/?p=455</guid>
		<description><![CDATA[People keep asking me what I'm working on now that I've defended my dissertation and moved to Arizona State. The answer is, "research!" More specifically, I'm working on a research project to understand and improve the experience of joining a virtual organization. My colleagues, Erik Johnston and Stephanie Teasley, and I are studying post doctoral [...]]]></description>
			<content:encoded><![CDATA[<p>People keep asking me what I'm working on now that I've defended my dissertation and moved to Arizona State. The answer is, "research!" More specifically, I'm working on a research project to understand and improve the experience of joining a virtual organization. My colleagues, Erik Johnston and Stephanie Teasley, and I are studying post doctoral researchers who joined (or are joining) virtual science research organizations. I've made a diagram of our research process to make this more clear (click the image for a larger version):<br />
<a href="/docs/voss_process_big.gif"><img src="/docs/voss_process_small.gif" alt="Joining Virtual Organizations Research Project Process" /></a></p>
<p>The red parts represent the inductive, qualitative portion of our study. I am primarily responsible for those stages of the project. I am currently collecting data, and that's why that piece looks different. Erik is primarily responsible for the deductive portions, those in blue. This diagram was inspired by process diagrams of grounded theory and deduction from</p>
<p>Gasson, S. (2003) Rigor in Grounded Theory Research: An Interpretive Perspective on Generating Theory from Qualitative Research. In Whitman, M.E. and Woszczynski, A.B., eds. <em><a href="http://books.google.com/books?id=7EBLeYHbPNEC&#038;printsec=frontcover&#038;source=gbs_v2_summary_r&#038;cad=0#v=onepage&#038;q=&#038;f=false">The handbook of information systems research</a></em>. Hershey, PA: Idea Group.</p>
<p>Gill, J. and Johnson, P. (1997) <em>Research Methods for Managers</em>, 2nd Ed., London: Paul Chapman Publishing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.libbyh.com/2009/09/01/current-research-joining-virtual-organizations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.605 seconds -->
