<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>DevChix</title>
	
	<link>http://www.devchix.com</link>
	<description>Boys can't have all the fun</description>
	<lastBuildDate>Sat, 14 Apr 2012 18:26:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Devchix" /><feedburner:info uri="devchix" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>ASP.NET Membership.GetUserNameByEmail Error: “The E-mail supplied is invalid.”</title>
		<link>http://feedproxy.google.com/~r/Devchix/~3/nAPUclla5h4/</link>
		<comments>http://www.devchix.com/2012/04/13/asp-net-membership-getusernamebyemail-error-the-e-mail-supplied-is-invalid/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 16:46:51 +0000</pubDate>
		<dc:creator>kris_rudin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.devchix.com/?p=709</guid>
		<description><![CDATA[What the heck does this error message mean?? I had cause to find out when I was getting this error in a method that was simply updating the email address for an existing user. Mind you, I wasn’t creating a new user &#8211; I was just updating an existing user.  Since the error message is [...]]]></description>
			<content:encoded><![CDATA[<p>What the heck does this error message mean?? I had cause to find out when I was getting this error in a method that was simply updating the email address for an existing user. Mind you, I wasn’t creating a new user &#8211; I was just updating an existing user.  Since the error message is less than helpful, I thought I’d post this so anyone else getting this error won’t have to search as much as I did to find the solution.</p>
<p>Here’s how it came into play: I had created a secure web page to allow my client to manage some of their user accounts. They often had requests to change the email address for the account, so I created a simple form with a couple of text boxes (tbChangeEmail_Old and tbChangeEmail_New), a label to display the status of the attempt (lblChangeEmail_Status) and a Submit button.</p>
<p>Here’s the code I was using, when the user clicked the Submit button:</p>
<pre>
try
{
   string username = Membership.GetUserNameByEmail(tbChangeEmail_Old.Text);
   if (!string.IsNullOrEmpty(username))
   {
      MembershipUser user = Membership.GetUser(username, false);
      user.Email = tbChangeEmail_New.Text;
      Membership.UpdateUser(user);
      lblChangeEmail_Status.Text = "Email address successfully changed.";
   }
   else
   {
      lblChangeEmail_Status.Text = "Unable to find user with that email.";
   }
}
catch (Exception ex)
{
   lblChangeEmail_Status.Text = "Error: " + ex.Message;
}
</pre>
<p>It’s pretty straightforward – attempt to get the username using the ‘old’ email, and if the account isn’t found, display a message to the user. If we do find the username, then use it to get a MembershipUser object, set the Email property to the ‘new’ value, and update the user. Wrap that up in a try/catch block, and we’re good to go.</p>
<p>Everything worked fine, until today, when my client reported she was getting an error message for one user: “The E-Mail is invalid.” Huh. Did that mean the new email address wasn’t a valid email format? No, the new email was fine. Did it mean the old email didn’t work and the user wasn’t found? No, the test for !string.IsNullOrEmpty(username) catches that, and I verified that the account with the old email address was present. So what’s going on?</p>
<p>I did the usual trick of Googling for a solution, and found a lot of forum questions related to creating a new user, but then I finally found something about DUPLICATE emails, which, of course, are not allowed in the Membership database, based on our configuration. Aha! I did a quick SQL query of the DB, and sure enough, there was already an account with the ‘new’ email address, so it was not possible to update the ‘old’ account with the ‘new’ address!</p>
<p>So, since the existing error message is less than helpful in this case, I changed the logic in the catch block, so I could display a more helpful error on the web page:</p>
<pre>
catch (Exception ex)
{
   if (ex.Message.ToLower() == "the e-mail supplied is invalid.")
      lblChangeEmail_Status.Text = "There is another account with the 'new' email address, so the 'old' email account cannot be updated.";
   else
      lblChangeEmail_Status.Text = "Error: " + ex.Message;
}
</pre>
<p>Now, if we run across another case like this, my client will know exactly what’s going on. No more ambiguous error messages! J</p>
<p>So, not earth-shattering .NET stuff, but I figure what I learned might help someone else in the same situation. Happy coding!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devchix?a=nAPUclla5h4:HTLq9i_99ZY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=nAPUclla5h4:HTLq9i_99ZY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Devchix?i=nAPUclla5h4:HTLq9i_99ZY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=nAPUclla5h4:HTLq9i_99ZY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devchix?i=nAPUclla5h4:HTLq9i_99ZY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=nAPUclla5h4:HTLq9i_99ZY:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=nAPUclla5h4:HTLq9i_99ZY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devchix?i=nAPUclla5h4:HTLq9i_99ZY:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.devchix.com/2012/04/13/asp-net-membership-getusernamebyemail-error-the-e-mail-supplied-is-invalid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.devchix.com/2012/04/13/asp-net-membership-getusernamebyemail-error-the-e-mail-supplied-is-invalid/</feedburner:origLink></item>
		<item>
		<title>Displaying another app’s data using HTTParty and Kaminari</title>
		<link>http://feedproxy.google.com/~r/Devchix/~3/jEJOrFXf1_s/</link>
		<comments>http://www.devchix.com/2012/03/04/displaying-another-apps-data-using-httparty-and-kaminari/#comments</comments>
		<pubDate>Sun, 04 Mar 2012 22:49:27 +0000</pubDate>
		<dc:creator>Angel N. Sciortino</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.devchix.com/?p=657</guid>
		<description><![CDATA[I needed to access some data from another app and display it to users. The api side was a Rails 2.3.11 app and used will_paginate. It returned the json of a model collection and an association along with paginator information. The client side was a Rails 3.1 app using HTTParty and Kaminari. API Controller Rails [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to access some data from another app and display it to users. The api side was a Rails 2.3.11 app and used will_paginate. It returned the json of a model collection and an association along with paginator information. The client side was a Rails 3.1 app using HTTParty and Kaminari.</p>
<h2>API Controller</h2>
<p>Rails 2.3.11 doesn&#8217;t include associations in the json, which is a known bug. So I returned a collection with the two models&#8217; information. I used an API key to authenticate, which I won&#8217;t describe in detail since it&#8217;s outside the scope of this post.</p>
<pre><code>
class Api::FoosController &lt; ApplicationController
  before_filter :authenticate_api_key!

  def foos_index
    @foos = Foo.paginate(:order =&gt; "created_at desc", :per_page =&gt; 40, :page =&gt; params[:page],
        :include =&gt; :bar)
    @records = @foos.collect { |foo| {:foo =&gt; foo, :bar =&gt; bar} }
    render :json =&gt;  {:records =&gt; @records, :total_entries =&gt; @foos.total_entries,
        :per_page =&gt; @foo.per_page }
  end
end

</code></pre>
<h2>API Route</h2>
<p>The route requires the page number.</p>
<pre><code>
map.connect '/api/foos/foos_index/:page', :controller =&gt; "api/foos", :action =&gt; :foos_index
</code></pre>
<h2>Client Model</h2>
<p>FooIndex.foos_index returns itself, along with accessors for the response, records, total_count, current_page, and limit_value. The last three are important for Kaminari. When I parsed the JSON, I symbolized the keys. Much prettier than strings.</p>
<pre><code>
class FooIndex
  include HTTParty
  base_uri ENV['FOO_APP_URL']
  default_params :api_key =&gt; ENV['FOO_API_KEY']
  format :json
  attr_accessor :response, :records, :total_count, :current_page, :limit_value

  def initialize(response, records, total_count, current_page, limit_value)
    self.response = response
    self.records = records
    self.total_count = total_count
    self.current_page = current_page
    self.limit_value = limit_value
  end

  def self.foos_index(page)
    @current_page = page || 1
    response = get("/api/foos/foos_index/#{@current_page}")
    if response.success?
      json = JSON.parse(response.body, symbolize_names: true)
      self.new(response, json[:records], json[:total_entries], page, json[:per_page])
    else
      raise response.response
    end
  end
end
</code></pre>
<h2>Client Controller</h2>
<p>I had to be creative with Kaminari using the paginate_array method. The options total_count and limit are used because the api doesn&#8217;t return the whole set of data, just the data for one page.</p>
<pre><code>
class FoosController &lt; ApplicationController
  def index
    params[:page] ||= 1
    @foos_index = FooIndex.foos_index(params[:page])
    @paginated_array = Kaminari.paginate_array(@foos_index.records,
        total_count: @foos_index.total_count,
        limit: @foos_index.limit_value).page(@foos_index.current_page)
  end
end
</code></pre>
<h2>Client Route</h2>
<p>Page number is optional in the route. The controller defaults it to page 1.</p>
<pre><code>
match '/foos(/:page)', :controller =&gt; :foos, :action =&gt; :index
</code></pre>
<h2>Client View in HAML</h2>
<p> The json returned by the api doubles up the first part of the hash. I&#8217;m not sure of an elegant way to handle that.</p>
<pre><code>
= paginate @paginated_array

%table
  %thead
    %th Foo Name
    %th Bar Name
    - @foos_index.records.each do |record|
      %tr
        %td= record[:foo][:foo][:name]
        %td= record[:bar][:bar][:name]

= paginate @paginated_array
</code></pre>
<p>And that&#8217;s all it takes. Please comment with any comments or questions.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devchix?a=jEJOrFXf1_s:sBPb2ZJPprc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=jEJOrFXf1_s:sBPb2ZJPprc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Devchix?i=jEJOrFXf1_s:sBPb2ZJPprc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=jEJOrFXf1_s:sBPb2ZJPprc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devchix?i=jEJOrFXf1_s:sBPb2ZJPprc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=jEJOrFXf1_s:sBPb2ZJPprc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=jEJOrFXf1_s:sBPb2ZJPprc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devchix?i=jEJOrFXf1_s:sBPb2ZJPprc:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.devchix.com/2012/03/04/displaying-another-apps-data-using-httparty-and-kaminari/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.devchix.com/2012/03/04/displaying-another-apps-data-using-httparty-and-kaminari/</feedburner:origLink></item>
		<item>
		<title>DevChix Speaking at Conferences 2012</title>
		<link>http://feedproxy.google.com/~r/Devchix/~3/g9kJw46pJjA/</link>
		<comments>http://www.devchix.com/2012/03/03/devchix-speaking-at-conferences-2012/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 22:21:21 +0000</pubDate>
		<dc:creator>chiuki</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.devchix.com/?p=621</guid>
		<description><![CDATA[We&#8217;ve collected a list of the DevChix speaking at conferences (so far) this year. If you are at one of these conferences, be sure to say hi! January Akkana Peck &#8211; SCALE 10x &#8211; Los Angeles, CA, USA Estelle Weyl &#8211; GTUGSF Code Lab &#8211; San Francisco, CA, USA February Lori Olson &#8211; ConFoo &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve collected a list of the DevChix speaking at conferences (so far) this year. If you are at one of these conferences, be sure to say hi!</p>
<h3>January</h3>
<ul>
<li><a class="external text" title="http://shallowsky.com" rel="nofollow" href="http://shallowsky.com">Akkana Peck</a> &#8211; <a class="external text" title="http://www.socallinuxexpo.org/scale10x" rel="nofollow" href="http://www.socallinuxexpo.org/scale10x">SCALE 10x</a> &#8211; Los Angeles, CA, USA</li>
<li><a class="external text" title="http://standardista.com/" rel="nofollow" href="http://standardista.com/">Estelle Weyl</a> &#8211; <a class="external text" title="http://www.gtugsf.com/events/47556102/" rel="nofollow" href="http://www.gtugsf.com/events/47556102/">GTUGSF Code Lab</a> &#8211; San Francisco, CA, USA</li>
</ul>
<h3>February</h3>
<ul>
<li><a class="external text" title="http://wndx.posterous.com" rel="nofollow" href="http://wndx.posterous.com">Lori Olson</a> &#8211; <a class="external text" title="http://confoo.ca" rel="nofollow" href="http://confoo.ca">ConFoo</a> &#8211; Montreal, Canada</li>
<li><a class="external text" title="http://standardista.com/" rel="nofollow" href="http://standardista.com/">Estelle Weyl</a> &#8211; <a class="external text" title="http://www.webstock.org.nz/" rel="nofollow" href="http://www.webstock.org.nz/">Webstock</a> &#8211; Wellington, New Zealand</li>
</ul>
<h3>March</h3>
<ul>
<li><a class="external text" title="http://jesstess.com" rel="nofollow" href="http://jesstess.com">Jessica McKellar</a> &#8211; <a class="external text" title="https://us.pycon.org/2012/" rel="nofollow" href="https://us.pycon.org/2012/">PyCon</a> &#8211; Santa Clara, CA, USA</li>
<li><a class="external text" title="http://sandimetz.com" rel="nofollow" href="http://sandimetz.com">Sandi Metz</a> &#8211; <a class="external text" title="http://www.rubynation.org/" rel="nofollow" href="http://www.rubynation.org/">RubyNation</a> &#8211; Washington, DC, USA</li>
<li><a class="external text" title="http://shallowsky.com" rel="nofollow" href="http://shallowsky.com">Akkana Peck</a> &#8211; <a class="external text" title="https://us.pycon.org/2012/" rel="nofollow" href="https://us.pycon.org/2012/">PyCon</a> &#8211; Santa Clara, CA, USA</li>
<li><a class="external text" title="http://standardista.com/" rel="nofollow" href="http://standardista.com/">Estelle Weyl</a> &#8211; <a class="external text" title="South by South West" rel="nofollow" href="http://www.sxsw.com">SXSW</a> &#8211; Austin, TX, USA</li>
<li><a class="external text" title="http://www.chariotsolutions.com" rel="nofollow" href="http://www.chariotsolutions.com">Andrea O. K. Wright</a> &#8211; <a class="external text" title="https://us.pycon.org" rel="nofollow" href="https://us.pycon.org">PyCon</a> &#8211; Santa Clara, CA, USA</li>
</ul>
<h3>April</h3>
<ul>
<li><a class="external text" title="http://blog.sqisland.com" rel="nofollow" href="http://blog.sqisland.com">Chiu-Ki Chan</a> &#8211; <a class="external text" title="http://windycitygo.org/" rel="nofollow" href="http://windycitygo.org/">WindyCityGo</a> &#8211; Chicago, IL, USA</li>
<li><a class="external text" title="http://blog.sqisland.com" rel="nofollow" href="http://blog.sqisland.com">Chiu-Ki Chan</a> &#8211; <a class="external text" title="http://phillyemergingtech.com/2012" rel="nofollow" href="http://phillyemergingtech.com/2012">Philly ETE</a> &#8211; Philadelphia, PA, USA</li>
<li><a class="external text" title="http://vanessahurst.com" rel="nofollow" href="http://vanessahurst.com">Vanessa Hurst</a> &#8211; <a class="external text" title="http://pgday.nycpug.org" rel="nofollow" href="http://pgday.nycpug.org">PG Day NYC</a> &#8211; New York, NY, USA</li>
<li><a class="external text" title="http://jessitron.blogspot.com" rel="nofollow" href="http://jessitron.blogspot.com">Jessica Kerr</a> &#8211; <a class="external text" title="Kansas City Developer Conference" rel="nofollow" href="http://kcdc.info">KCDC</a> &#8211; Kansas City, MO, USA</li>
<li><a class="external text" title="http://www.spellboundblog.com" rel="nofollow" href="http://www.spellboundblog.com">Jeanne Kramer-Smyth</a> &#8211; <a class="external text" title="Mid-Atlantic Regional Archives Conference " rel="nofollow" href="http://www.marac.info/">MARAC</a> &#8211; Cape May, NJ, USA</li>
<li><a class="external text" title="http://coreylatislaw.com" rel="nofollow" href="http://coreylatislaw.com">Corey Latislaw</a> &#8211; <a class="external text" title="http://phillyemergingtech.com/2012" rel="nofollow" href="http://phillyemergingtech.com/2012">Philly ETE</a> &#8211; Philadelphia, PA, USA</li>
<li><a class="external text" title="http://wndx.posterous.com" rel="nofollow" href="http://wndx.posterous.com">Lori Olson</a> &#8211; <a class="external text" title="http://railsconf2012.com" rel="nofollow" href="http://railsconf2012.com">RailsConf</a> &#8211; Austin, TX, USA</li>
<li><a class="external text" title="http://standardista.com/" rel="nofollow" href="http://standardista.com/">Estelle Weyl</a> &#8211; JS CodeLab &#8211; San Francisco, CA, USA</li>
</ul>
<h3>May</h3>
<ul>
<li><a class="external text" title="http://blog.sqisland.com" rel="nofollow" href="http://blog.sqisland.com">Chiu-Ki Chan</a> &#8211; <a class="external text" title="http://www.andevcon.com/AnDevCon_III" rel="nofollow" href="http://www.andevcon.com/AnDevCon_III">AnDevCon III</a> &#8211; Burlingame, CA, USA</li>
<li><a class="external text" title="http://elblinkin.info" rel="nofollow" href="http://elblinkin.info">LB Denker</a> &#8211; <a class="external text" title="http://tek12.phparch.com/" rel="nofollow" href="http://tek12.phparch.com/">PHP|Tek&#8217; 12</a> &#8211; Chicago, IL, USA</li>
<li><a class="external text" title="http://jessitron.blogspot.com" rel="nofollow" href="http://jessitron.blogspot.com">Jessica Kerr</a> &#8211; <a class="external text" title="http://DevTeach.com" rel="nofollow" href="http://DevTeach.com">DevTeach</a> &#8211; Vancouver, BC, Canada</li>
<li><a class="external text" title="http://standardista.com/" rel="nofollow" href="http://standardista.com/">Estelle Weyl</a> &#8211; <a class="external text" title="http://fluentconf.com/fluent2012" rel="nofollow" href="http://fluentconf.com/fluent2012">Fluent Conf</a> &#8211; San Francisco, CA, USA</li>
</ul>
<h3>June</h3>
<ul>
<li><a class="external text" title="http://blog.sqisland.com" rel="nofollow" href="http://blog.sqisland.com">Chiu-Ki Chan</a> &#8211; <a class="external text" title="http://www.mobileconference.nl" rel="nofollow" href="http://www.mobileconference.nl">Dutch Mobile Conference</a> &#8211; Amsterdam, Netherlands</li>
<li><a class="external text" title="http://standardista.com/" rel="nofollow" href="http://standardista.com/">Estelle Weyl</a> &#8211;  <a class="external text" title="http://www.mobileconference.nl" rel="nofollow" href="http://www.mobileconference.nl">Dutch Mobile Conference</a> &#8211; Amsterdam, Netherlands</li>
<li><a class="external text" title="http://standardista.com/" rel="nofollow" href="http://standardista.com/">Estelle Weyl</a> &#8211; <a class="external text" title="http://velocityconf.com/velocity2012" rel="nofollow" href="http://velocityconf.com/velocity2012">Velocity Conf</a> &#8211; Santa Clara, CA, USA</li>
</ul>
<h3>July</h3>
<ul>
<li><a class="external text" title="http://standardista.com/" rel="nofollow" href="http://standardista.com/">Estelle Weyl</a> &#8211; <a class="external text" title="http://www.oscon.com/oscon2012" rel="nofollow" href="http://www.oscon.com/oscon2012">OSCON</a> &#8211; Portland, OR, USA</li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devchix?a=g9kJw46pJjA:CPKTRtJUxZk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=g9kJw46pJjA:CPKTRtJUxZk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Devchix?i=g9kJw46pJjA:CPKTRtJUxZk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=g9kJw46pJjA:CPKTRtJUxZk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devchix?i=g9kJw46pJjA:CPKTRtJUxZk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=g9kJw46pJjA:CPKTRtJUxZk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=g9kJw46pJjA:CPKTRtJUxZk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devchix?i=g9kJw46pJjA:CPKTRtJUxZk:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.devchix.com/2012/03/03/devchix-speaking-at-conferences-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.devchix.com/2012/03/03/devchix-speaking-at-conferences-2012/</feedburner:origLink></item>
		<item>
		<title>Meet devChix member Susan Potter</title>
		<link>http://feedproxy.google.com/~r/Devchix/~3/6N6BLv3HhqM/</link>
		<comments>http://www.devchix.com/2011/07/13/meet-devchix-member-susan-potter/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 15:19:41 +0000</pubDate>
		<dc:creator>Carmelyne Thompson</dc:creator>
				<category><![CDATA[Introductions]]></category>
		<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://www.devchix.com/?p=598</guid>
		<description><![CDATA[Susan Potter is a wearer of many hats, but mostly software engineer and practicing applications architect (based in Chicago, IL). Employer: Finsignia Extras: Last month, Susan presented at WindyCityDB conference in Chicago, IL on Link-walking with Riak. She was a speaker at Code PaLOUsa 2011 in June. Talk: Deploying distributed software services to the cloud without [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Susan Potter</strong> is a wearer of many hats, but mostly <em>software engineer</em> and practicing <em>applications architect</em> (based in Chicago, IL).</p>
<p>Employer: <a href="http://finsignia.com">Finsignia</a></p>
<p>Extras: Last month, Susan presented at  WindyCityDB conference in Chicago, IL on <a href="http://windycitydb.org/sessions/#potter">Link-walking with Riak</a>. She was a speaker at Code PaLOUsa 2011 in June. Talk:  <a href="http://susanpotter.net/talks/codepalousa/2011/deployment-pipeline/">Deploying distributed software services to the cloud without breaking a sweat</a>. She is very active in the open source community with <a href="http://github.com/mbbx6spp">GitHub personal repositories</a>, <a href="http://github.com/twitter4r/twitter4r-core">Twitter4R</a> and <a href="http://gist.github.com/mbbx6spp">collection of Gists</a>.</p>
<p>Our short Q&amp;A with Susan Potter:</p>
<p><strong>What is your technical background? </strong></p>
<p><strong></strong>At university I studied Mathematics, but audited Computer Science courses while writing an experimental parallel and distributed <abbr title="Partial Differential Equation">PDE</abbr> solver first in C, then in C++ and finally in Java, which didn&#8217;t have much utility other than to teach me how not to write multi-threaded or distributed software.After graduating I worked for investment banks in London before skipping off to a San Francisco startup building a B2B trading platform and have since been working as a senior software consultant for hedge funds, investment banks and technology startups all over the US.</p>
<p><strong>What industry sites or blogs do you read regularly? </strong></p>
<p><strong></strong>To be honest, I use my Twitter timeline and some private lists as a fairly reliable source of interesting, relevant and/or thought-provoking technical resources from all over the internet. However, the following links have been fonts of <em>recent </em>software engineering wisdom or great resources in the areas I currently practice within:</p>
<ul>
<li><strong>Erlang/OTP resourses:</strong><br />
<a href="http://steve.vinoski.net/blog/">Steve Vinoski&#8217;s blog</a>,<br />
<a href="http://erlang.org/pipermail/erlang-questions/">erlang-questions mailing list</a></li>
<li><strong>Haskell resources:</strong><br />
<a href="http://contemplatecode.blogspot.com/">Home of Haskell Weekly News</a>,<br />
<a href="http://donsbot.wordpress.com/">Control.Monad.Writer by Don Stewart</a></li>
<li><strong>Databases &amp; datastores:</strong><br />
<a href="http://nosql.mypopescu.com/">myNOSQL blog</a></li>
<li><strong>Scaling &amp; high-availability:</strong><br />
<a href="http://highscalability.com/">High Scalability</a></li>
<li><strong>Code:</strong><br />
<a href="http://github.com">GitHub</a> (yes there are other sites, but not as active or fast growing)</li>
</ul>
<p><strong>What are a few of your favorite development tools and why?</strong></p>
<p><strong> </strong><strong></strong>I recently wrote a blog post on the <a href="http://susanpotter.net/blogs/software/2011/05/software-engineering-tools-of-trade">(types of) tools that have made me a better software engineer</a>. In short these are: emacs, vi(m), make, gdb, UNIX commands / utilities, UNIX shells, LaTeX, Git. The blog post explains why.</p>
<p><strong>What tip or advice would you like to impart to women interested in programming? </strong></p>
<p><strong></strong><strong></strong>If you enjoy software development, always learning new things and are excited about the possibilities in this field, then do not let anyone discourage you from persuing it further. There will always be a job market for self-starters that can teach themselves even if they don&#8217;t have the right educational background. Make sure to back up what you have learned on your own. Open source projects, blog posts or screencasts that demonstrate your skills in the areas you are looking to get into help much more nowadays than simply having a CS degree with no public portfolio IMHO.</p>
<p><strong>If you were a computer part, what would you be? </strong></p>
<p><strong></strong><strong></strong>A CPU socket comes close. It provides multiple connections (mechanical and electrical) between the microprocessor and circuit board. In the technology community it seems I am always connecting people based on their interests and needs such as connecting business founders with technical founders or hiring managers with skilled developers (mechanical connections). Other times I am suggesting new architectures, software stacks, tools, etc. to solve the problems people I talk to are currently encountering (electrical connections).</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devchix?a=6N6BLv3HhqM:K6eF6aWRfI8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=6N6BLv3HhqM:K6eF6aWRfI8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Devchix?i=6N6BLv3HhqM:K6eF6aWRfI8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=6N6BLv3HhqM:K6eF6aWRfI8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devchix?i=6N6BLv3HhqM:K6eF6aWRfI8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=6N6BLv3HhqM:K6eF6aWRfI8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=6N6BLv3HhqM:K6eF6aWRfI8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devchix?i=6N6BLv3HhqM:K6eF6aWRfI8:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.devchix.com/2011/07/13/meet-devchix-member-susan-potter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.devchix.com/2011/07/13/meet-devchix-member-susan-potter/</feedburner:origLink></item>
		<item>
		<title>Meet devChix member Aimee Daniells</title>
		<link>http://feedproxy.google.com/~r/Devchix/~3/A_uz0T739uk/</link>
		<comments>http://www.devchix.com/2011/06/02/meet-devchix-member-aimee-daniells/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 17:05:19 +0000</pubDate>
		<dc:creator>Carmelyne Thompson</dc:creator>
				<category><![CDATA[Introductions]]></category>
		<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://www.devchix.com/?p=579</guid>
		<description><![CDATA[aimee daniells (lowercase as requested) is a self-employed software crafter from Winchester, UK. Her twitter handle: @sermoa and thoughts: http://sermoasquared.co.uk/ &#160; Our short Q&#38;A with aimee daniells: &#160; What is your technical background? I was sponsored through university by IBM. I had an integrated degree where I worked at IBM 3 days a week and studied Computer [...]]]></description>
			<content:encoded><![CDATA[<p><strong>aimee daniells</strong> (lowercase as requested) is a self-employed software crafter from Winchester, UK.</p>
<p>Her twitter handle: @<a href="https://twitter.com/#!/search/sermoa" target="_blank">sermoa</a> and thoughts: <a href="http://sermoasquared.co.uk/" target="_blank">http://sermoasquared.co.uk/</a></p>
<p>&nbsp;</p>
<p>Our short Q&amp;A with aimee daniells:</p>
<p>&nbsp;</p>
<p><strong>What is your technical background? </strong></p>
<p>I was sponsored through university by IBM. I had an integrated degree where I worked at IBM 3 days a week and studied Computer Science at university 2 days a week. After I graduated I worked for IBM for a few years. Although I began as a developer, they decided to retrain me as a tester. I didn&#8217;t like the way IBM made decisions for me.</p>
<p>Now a tester, I looked for a job where I could begin as a tester but progress back into development. This didn&#8217;t really work. Fortunately I was learning in my spare time. I learned Ruby on Rails and made the application <a href="http://mychores.co.uk/" target="_blank">mychores.co.uk</a> &#8211; a team based tracking system for recurring tasks. On the strength of that I got a job with Eden Development, an agile web development and consultancy company.</p>
<p>I worked at Eden for 3 years and took an apprenticeship under Enrique Comba Riepenhausen. I learned an incredible amount about good quality, reliable, well tested software and user experience design. Towards the end I took on two apprentices, one of whom I am still in regular contact with.</p>
<p>I am now an independent software crafter, doing freelance work and visiting companies to work as a contractor. I love what I do, I love meeting people and I love learning and sharing. At the last company I&#8217;ve just finished working at, I was approached by somebody who wanted to be mentored by me, who has now become my newest apprentice.</p>
<p>&nbsp;</p>
<p><strong>What industry sites or blogs do you read regularly? </strong></p>
<p><strong> </strong>I do not read RSS. I used to be subscribed to hundreds but I couldn&#8217;t read them all. These days I get all the news I need through twitter.</p>
<p>&nbsp;</p>
<p><strong>What are a few of your favorite development tools and why?</strong></p>
<p>I love my macbook. It just does exactly what I want it to do, feels reliable and very rarely annoys me. I prefer to develop using Vim because I feel it is very powerful and I can express my intentions using intuitive combinations of keystrokes. I typed on the Dvorak keyboard layout for years, but I&#8217;ve recently changed to Colemak. I find it very comfortable and efficient to type on.</p>
<p>&nbsp;</p>
<p><strong>What tip or advice would you like to impart to women interested in programming?</strong></p>
<p>Ask questions. Better to ask a silly question one day than give a silly answer another day. There is no such thing as silly questions, only silly answers. Listen a lot and ponder. Think carefully about what you believe. Share your opinions when asked. Share whatever you know. Be generous. Blog about things you find interesting: somebody else will do too. Ask for things you need. If you want to learn more, find a mentor. Don&#8217;t wait for people to do things for you. Make your own luck. Be extremely proud of who you are. Look yourself in the mirror every day and tell yourself how wonderful you are. Be humble. Don&#8217;t brag, but let your skills speak for themselves.</p>
<p>&nbsp;</p>
<p><strong>Last question on our q&amp;a, if you were a computer part, what would you be?</strong></p>
<p>I would be the Any key! <img src='http://www.devchix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devchix?a=A_uz0T739uk:lXXcA_PX0o0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=A_uz0T739uk:lXXcA_PX0o0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Devchix?i=A_uz0T739uk:lXXcA_PX0o0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=A_uz0T739uk:lXXcA_PX0o0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devchix?i=A_uz0T739uk:lXXcA_PX0o0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=A_uz0T739uk:lXXcA_PX0o0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=A_uz0T739uk:lXXcA_PX0o0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devchix?i=A_uz0T739uk:lXXcA_PX0o0:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.devchix.com/2011/06/02/meet-devchix-member-aimee-daniells/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.devchix.com/2011/06/02/meet-devchix-member-aimee-daniells/</feedburner:origLink></item>
		<item>
		<title>Meet devChix member Nola Stowe</title>
		<link>http://feedproxy.google.com/~r/Devchix/~3/LNDKGPN20SU/</link>
		<comments>http://www.devchix.com/2011/05/19/meet-devchix-member-nola-stowe/#comments</comments>
		<pubDate>Thu, 19 May 2011 14:00:52 +0000</pubDate>
		<dc:creator>Carmelyne Thompson</dc:creator>
				<category><![CDATA[Introductions]]></category>
		<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://www.devchix.com/?p=548</guid>
		<description><![CDATA[Nola Stowe is a co-founder of devChix from the Texas, USA. You can reach her at @rubygeekdotcom on twitter. She is currently a web developer at Game Salad. Game Salad is a free tool that creates games for the iPhone, iPad, Mac &#38; Web with no coding required. Her linkedin: http://www.linkedin.com/in/nolastowe &#38; She blogs at RubyGeek. &#160; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Nola Stowe</strong> is a co-founder of devChix from the Texas, USA.<br />
You can reach her at @<a title="Ruby Geek" href="https://twitter.com/#!/rubygeekdotcom" target="_blank">rubygeekdotcom</a> on twitter.<br />
She is currently a web developer at <a title="Game Salad" href="http://www.gamesalad.com" target="_blank">Game Salad</a>.<br />
Game Salad is a free tool that creates games for the iPhone, iPad, Mac<br />
&amp; Web with no coding required.</p>
<p>Her linkedin: <a href="http://www.linkedin.com/in/nolastowe" target="_blank">http://www.linkedin.com/in/nolastowe</a> &amp;<br />
She blogs at <a title="Ruby Geek" href="http://www.rubygeek.com" target="_blank">RubyGeek</a>.</p>
<p>&nbsp;</p>
<p>Our short Q&amp;A with Nola Stowe:</p>
<p>&nbsp;</p>
<p><strong>What is your technical background?</strong></p>
<p><strong> </strong>I started programming the summer I turned 13. I had a TRS-80 and read the BASIC programming book that came with it, along with another programming book I bought at Radio Shack. I had a cassette tape drive to save my files and a 5inc thermal printer. I programmed math games for my siblings. I distinctly remember making a program that would roll five dice and using ascii characters to draw  a box around the number. You could then choose which dice to re-roll. Ahh, sometimes I long for those summer days and also think: &#8220;&#8230;. boy, how much better I could have been if I had the internet like now!&#8221;</p>
<p>In college, I discovered the fun of web development so I majored in Computer Information System and Design Studio minor. I actually petitioned to have my water color class count towards my CIS degree, arguing that since my chosen field was web programming with a design minor, it is good to have the training and understanding of color principles from my water color class. They accepted my petition</p>
<p>&nbsp;</p>
<p><strong>What industry sites or blogs do you read regularly? </strong></p>
<p><strong> </strong>I check:</p>
<p><a href="http://rubyinside.com/" target="_blank">rubyinside.com</a> &#8211; ruby is my favorite language; this is a great site to keep up with the ever-changing landscape</p>
<p><a href="http://techcrunch.com/" target="_blank">techcrunch.com</a> &#8211; to keep up with what&#8217;s new with facebook, google, etc</p>
<p><a href="http://railscasts.com/" target="_blank">railscasts.com</a> &#8211; weekly screencasts, they are super informative</p>
<p><a href="http://teachmetocode.com/" target="_blank">teachmetocode.com</a> &#8211; screencasts on web development, very helpful</p>
<p><a href="http://peepcode.com/" target="_blank">peepcode.com</a> &#8211; screencasts at affordable prices, and great supporters of devChix.com</p>
<p>&nbsp;</p>
<p><strong>What are a few of your favorite development tools and why?</strong></p>
<p><strong> </strong>I use vim and textmate. It depends on the environment. For home development, I am on Ubuntu so I use Vim. For work, I use a Mac so I use both Vim and Textmate , but lately I&#8217;ve been using Textmate a lot.</p>
<p>&nbsp;</p>
<p><strong>What tip or advice would you like to impart to women interested in programming?</strong></p>
<p><strong> </strong>It&#8217;s a mans world for sure. Do not take it personally when someone gives you slack. Focus on doing the best work you can so people cannot tell the difference between your work and that of any other. Do not assume every issue you come across is &#8220;because you are a  girl&#8221; &#8230; just focus on what is needed to get the job done.</p>
<p>&nbsp;</p>
<p><strong>If you were a computer part, what would you be?</strong></p>
<p><strong> </strong>I would be a keyboard because I am always focusing on what is needed to get the job done. If we did not have keyboards, we would not be able to get much done. <img src='http://www.devchix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devchix?a=LNDKGPN20SU:BWaY0uIRRxk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=LNDKGPN20SU:BWaY0uIRRxk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Devchix?i=LNDKGPN20SU:BWaY0uIRRxk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=LNDKGPN20SU:BWaY0uIRRxk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devchix?i=LNDKGPN20SU:BWaY0uIRRxk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=LNDKGPN20SU:BWaY0uIRRxk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=LNDKGPN20SU:BWaY0uIRRxk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devchix?i=LNDKGPN20SU:BWaY0uIRRxk:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.devchix.com/2011/05/19/meet-devchix-member-nola-stowe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.devchix.com/2011/05/19/meet-devchix-member-nola-stowe/</feedburner:origLink></item>
		<item>
		<title>DevChix Speaking at Conferences 2011</title>
		<link>http://feedproxy.google.com/~r/Devchix/~3/uCCe9YGJFQA/</link>
		<comments>http://www.devchix.com/2011/05/04/devchix-speaking-at-conferences-2011/#comments</comments>
		<pubDate>Wed, 04 May 2011 01:45:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.devchix.com/?p=539</guid>
		<description><![CDATA[We&#8217;ve collected a list of the DevChix speaking at conferences (so far) this year. If you are at one of these conferences, be sure to say hi! April Sarah Mei &#8211; Red Dot Ruby Conf &#8211; Singapore Garann Means &#8211; jQuery Conference &#8211; SF/Bay Area, CA, USA Estelle Weyl &#8211; jQuery Conference &#8211; SF/Bay Area, [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve collected a list of the DevChix speaking at conferences (so far) this year. If you are at one of these conferences, be sure to say hi!</p>
<h3>April</h3>
<ul>
<li><a class="external text" title="http://sarahmei.com" rel="nofollow" href="http://sarahmei.com">Sarah Mei</a> &#8211; <a class="external text" title="http://reddotrubyconf.com/" rel="nofollow" href="http://reddotrubyconf.com/">Red Dot Ruby Conf</a> &#8211; Singapore</li>
<li><a class="external text" title="http://garann.com" rel="nofollow" href="http://garann.com">Garann Means</a> &#8211; <a class="external text" title="http://events.jquery.org/2011/sf-bay-area/" rel="nofollow" href="http://events.jquery.org/2011/sf-bay-area/">jQuery Conference</a> &#8211; SF/Bay Area, CA, USA</li>
<li><a class="external text" title="http://standardista.com" rel="nofollow" href="http://standardista.com">Estelle Weyl</a> &#8211; <a class="external text" title="http://events.jquery.org/2011/sf-bay-area/" rel="nofollow" href="http://events.jquery.org/2011/sf-bay-area/">jQuery Conference</a> &#8211; SF/Bay Area, CA, USA</li>
<li><a class="external text" title="http://lornajane.net" rel="nofollow" href="http://lornajane.net">Lorna Mitchell</a> &#8211; <a class="external text" title="http://phpcon.org" rel="nofollow" href="http://phpcon.org">PHP Community Conference</a> &#8211; Nashville, TN, USA</li>
<li><a class="external text" title="http://feyeleanor.tel" rel="nofollow" href="http://feyeleanor.tel">Eleanor McHugh</a> &#8211; <a class="external text" title="http://accu.org/index.php/conferences/accu_conference_2011" rel="nofollow" href="http://accu.org/index.php/conferences/accu_conference_2011">ACCU 2011</a> &#8211; Oxford, UK</li>
</ul>
<h3>May</h3>
<ul>
<li><a class="external text" title="http://sarahmei.com" rel="nofollow" href="http://sarahmei.com">Sarah Mei</a> &#8211; <a class="external text" title="http://farmhouse.la/conf" rel="nofollow" href="http://farmhouse.la/conf">FarmhouseConf</a> &#8211; Los Angeles, CA, USA&nbsp;</li>
<li><a class="external text" title="http://jabberwocky.eu" rel="nofollow" href="http://jabberwocky.eu">Elise Huard</a> &#8211; <a class="external text" title="http://euruko2011.org/" rel="nofollow" href="http://euruko2011.org/">Euruko</a> &#8211; Berlin, Germany</li>
<li><a class="external text" title="http://lornajane.net" rel="nofollow" href="http://lornajane.net">Lorna Mitchell</a> &#8211; <a class="external text" title="http://phpconference.nl" rel="nofollow" href="http://phpconference.nl">Dutch PHP Conference</a> &#8211; Amsterdam, Netherlands</li>
<li><a class="external text" title="http://lornajane.net" rel="nofollow" href="http://lornajane.net">Lorna Mitchell</a> &#8211; <a class="external text" title="http://tek.phparch.com" rel="nofollow" href="http://tek.phparch.com">php|tek</a> &#8211; Chicago, IL, USA</li>
</ul>
<h3>June</h3>
<ul>
<li><a class="external text" title="http://garann.com" rel="nofollow" href="http://garann.com">Garann Means</a> &#8211; <a class="external text" title="http://2011.texasjavascript.com/" rel="nofollow" href="http://2011.texasjavascript.com/">Texas JavaScript</a> &#8211; Austin, TX, USA</li>
<li><a class="external text" title="http://jabberwocky.eu" rel="nofollow" href="http://jabberwocky.eu">Elise Huard</a> &#8211; <a class="external text" title="http://nordicruby.org/" rel="nofollow" href="http://nordicruby.org/">Nordic Ruby</a> &#8211; Goteborg, Sweden</li>
<li><a class="external text" title="http://jabberwocky.eu" rel="nofollow" href="http://jabberwocky.eu">Elise Huard</a> &#8211; <a class="external text" title="http://rulu.eu" rel="nofollow" href="http://rulu.eu">Rulu</a> &#8211; Lyon, France</li>
<li><a href="http://www.linkedin.com/in/susanpotter" target="_blank">Susan Potter</a> &#8211; <a title="WindyCityDB" href="http://windycitydb.org/" target="_blank">WindyCityDB</a> &#8211; Chicago, IL</li>
</ul>
<h3>July</h3>
<ul>
<li><a class="external text" title="http://standardista.com" rel="nofollow" href="http://standardista.com">Estelle Weyl</a> &#8211; <a class="external text" title="http://www.csssummit.com/" rel="nofollow" href="http://www.csssummit.com/">CSSSummit</a> &#8211; Online, USA</li>
<li><a class="external text" title="http://christiekoehler.com" rel="nofollow" href="http://christiekoehler.com">Christie Koehler</a> &#8211; <a class="external text" title="http://www.oscon.com/oscon2011" rel="nofollow" href="http://www.oscon.com/oscon2011">OSCON</a> &#8211; Portland, OR, USA</li>
<li><a class="external text" title="http://standardista.com" rel="nofollow" href="http://standardista.com">Estelle Weyl</a> &#8211; <a class="external text" title="http://www.oscon.com/oscon2011" rel="nofollow" href="http://www.oscon.com/oscon2011">OSCON</a> &#8211; Portland, OR, USA</li>
<li><a class="external text" title="http://jabberwocky.eu" rel="nofollow" href="http://jabberwocky.eu">Elise Huard</a> &#8211; <a class="external text" title="http://rubykaigi.org/2011/en" rel="nofollow" href="http://rubykaigi.org/2011/en">Rubykaigi</a> &#8211; Tokyo, Japan</li>
</ul>
<h3>August</h3>
<ul>
<li><a class="external text" title="http://HackerChick.com" rel="nofollow" href="http://HackerChick.com">Abby Fichtner</a> &#8211; <a class="external text" title="http://agile2011.agilealliance.org" rel="nofollow" href="http://agile2011.agilealliance.org">Agile 2011</a>: Lean Startup: How Development Looks Different When You&#8217;re Changing the World &#8211; Salt Lake City, UT, USA</li>
<li><a class="external text" title="http://wndx.posterous.com" rel="nofollow" href="http://wndx.posterous.com">Lori Olson</a> &#8211; <a class="external text" title="http://madisonruby.org/" rel="nofollow" href="http://madisonruby.org/">Madison Ruby</a> &#8211; Madison WI, USA</li>
</ul>
<h3>October</h3>
<ul>
<li><a class="external text" title="http://ruthiebendor.com" rel="nofollow" href="http://ruthiebendor.com">Ruthie BenDor</a> &#8211; <a class="external text" title="http://www.eeciconf.com/" rel="nofollow" href="http://www.eeciconf.com/">EECI</a> &#8211; Brooklyn, NY, USA</li>
<li><a class="external text" title="http://lornajane.net" rel="nofollow" href="http://lornajane.net">Lorna Mitchell</a> &#8211; <a class="external text" title="http://joind.in/event/view/569" rel="nofollow" href="http://joind.in/event/view/569">PHPCon Poland</a> &#8211; Kielce, Poland</li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devchix?a=uCCe9YGJFQA:gOwFYCAG9HE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=uCCe9YGJFQA:gOwFYCAG9HE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Devchix?i=uCCe9YGJFQA:gOwFYCAG9HE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=uCCe9YGJFQA:gOwFYCAG9HE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devchix?i=uCCe9YGJFQA:gOwFYCAG9HE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=uCCe9YGJFQA:gOwFYCAG9HE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=uCCe9YGJFQA:gOwFYCAG9HE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devchix?i=uCCe9YGJFQA:gOwFYCAG9HE:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.devchix.com/2011/05/04/devchix-speaking-at-conferences-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.devchix.com/2011/05/04/devchix-speaking-at-conferences-2011/</feedburner:origLink></item>
		<item>
		<title>Presenting at a start up conference for students</title>
		<link>http://feedproxy.google.com/~r/Devchix/~3/4GPi5pwl7gw/</link>
		<comments>http://www.devchix.com/2011/02/08/presenting-at-a-start-up-conference-for-students/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 03:26:31 +0000</pubDate>
		<dc:creator>Beth</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.devchix.com/?p=520</guid>
		<description><![CDATA[This is an example of how devchix can work as a resource to connect events with developers.  If the organizers of this conference hadn&#8217;t reached out through this group I&#8217;d never have heard that it was happening, and I&#8217;m certainly glad I did. Last weekend Greenhorn and Thoughtbot put on the D8 event (which stands for [...]]]></description>
			<content:encoded><![CDATA[<p>This is an example of how devchix can work as a resource to connect events with developers.  If the organizers of this conference hadn&#8217;t reached out through this group I&#8217;d never have heard that it was happening, and I&#8217;m certainly glad I did.</p>
<p>Last weekend Greenhorn and Thoughtbot put on the D8 event (which stands for Developers x 4 &amp; Designers x 4) at the Microsoft Research Center in Cambridge, MA.  It was a collection of 10 minute of presentations designed to introduce high school and college students interested in web design and/or development to the tools and workflow used by local start ups.  <a href="http://developersdevelopersdevelopersdevelopers.org/" target="_blank">The website </a>has lists of speakers and a collection of other resources for further reading on the topics presented. <span id="more-520"></span> 320 students had registered and the turn out looked pretty good, though I don&#8217;t know the exact numbers.</p>
<p>I got involved when the organizer had an email fowarded to devchix during their search for speakers.  The story I heard yesterday was that they had opened up registration and of the first 100 registrations somewhere around 40% were women, which prompted them to reach out to women in particular.  They ended up getting three women of 17 speakers, including me.  Of those I was the only developer.  I&#8217;m not sure whether that&#8217;s a success or not for their goal, but it was definitely more than zero and came about in part because of the specific effort they&#8217;d put in.</p>
<p>In the end, the audience was probably about 30-40% young women, and even the &#8220;have you used X development technology?&#8221; hands seemed to be about a quarter women.  I also noticed more racial diversity than when I went to similar stuff as an undergrad a decade ago (though those were on a different coast and didn&#8217;t set the bar particularly high.) On the other hand, most of the representatives from the start ups were men and despite the idea being developers and designers, there was more focus on, and demand for, developers and development tools.  Only one presentation was really about the intersection of the two domains, the awesome opening talk given by Caroline Hadilaksono.</p>
<p>My talk was on text editors, and I tried to approach it as a technical marketing pitch rather than a demonstration or pure information dump.  I wasn&#8217;t completely happy with my slides and I talked too fast, but I think I was able to communicate some of what makes text editors useful without loosing people who aren&#8217;t already used to scripting and automation. The slides, without explanation or notes, are <a href="https://docs.google.com/viewer?a=v&amp;pid=explorer&amp;chrome=true&amp;srcid=0B-q4UxuWMyJRMjlmYmJmMDYtNDc2Yy00NjJlLWE3ZWItYzgxN2RiYzgxMzcw&amp;hl=en&amp;authkey=CJ-4uOsP" target="_blank">here </a>if you&#8217;re curious.  The only one I love is the illustration of the keyboard and mouse and the <em>vast </em>distance between them.  I purposefully limited the effort I put in, because I didn&#8217;t want it to become something I went perfectionist over.  Now that I&#8217;ve delivered it once I can do  feedback-informed improvement if I give the talk again.  It was my first time giving a technical presentation to a public audience, and the major things I&#8217;d address for next time would be better pacing and ditching the notes for a 10 minute presentation.  I ended up not looking at the cards, even though I had them in my hand.  My slides also don&#8217;t have the Keynote polish or pure originality some other people&#8217;s had, but I figured that I was there as a developer, not a designer, so that&#8217;s probably okay then.</p>
<p>The technical difficulties were educational.  When I went to plug my machine in it didn&#8217;t work, and after a minute of fiddling around I couldn&#8217;t get the resolution right, so I had someone else present and waited until I could set it up during the break.  It turned out it was the projector, not my computer and it took someone who worked there to doing some magic to make it work.  When the same thing happened to other presenters later, they immediately asked the person who knew the projector for help.  It was a lesson in not trying to fix everything myself!  I had brought a backup slides on a USB, but the main computer available only had Keynote, which can&#8217;t handle OpenOffice files.  In the future, in addition to back up slides I will try to arrive at the venue early and make sure  I know how to work the projector.</p>
<p>I found several of the other talks super-fun, even though I&#8217;m familiar with the technologies already.  I thought the presentation on minimum viable product and lean start up ideas was a fantastic 10 minute sales pitch for &#8220;ship early, ship often&#8221;.  The technology walk-throughs (of which they were four) were entertaining, but a couple twitter comments suggested they went straight over some attendees&#8217; heads instead of making the technology feel use-able.</p>
<p>The after party was also fun, though less gender-balanced than the conference as a whole.  I wonder if there is a better venue for social networking that migh change that dynamic, because it&#8217;s one I observed before.  On the other hand I heard that bringing a resume and following up with startups that you were interested in the next day was an effective approach, and it doesn&#8217;t involve any casual networking at a noisy bar.</p>
<p>I came out of the event personally energized.  The students I talked with were excited about both their work and the field; it was great to see the optimisim and enthusiasm they are bringing with them.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devchix?a=4GPi5pwl7gw:kiRttiaJi2o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=4GPi5pwl7gw:kiRttiaJi2o:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Devchix?i=4GPi5pwl7gw:kiRttiaJi2o:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=4GPi5pwl7gw:kiRttiaJi2o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devchix?i=4GPi5pwl7gw:kiRttiaJi2o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=4GPi5pwl7gw:kiRttiaJi2o:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=4GPi5pwl7gw:kiRttiaJi2o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devchix?i=4GPi5pwl7gw:kiRttiaJi2o:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.devchix.com/2011/02/08/presenting-at-a-start-up-conference-for-students/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.devchix.com/2011/02/08/presenting-at-a-start-up-conference-for-students/</feedburner:origLink></item>
		<item>
		<title>What makes the best workplace atmosphere and culture?</title>
		<link>http://feedproxy.google.com/~r/Devchix/~3/P2s1OQU20gk/</link>
		<comments>http://www.devchix.com/2011/01/23/what-makes-the-best-workplace-atmosphere-and-culture/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 20:22:36 +0000</pubDate>
		<dc:creator>garann</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://www.devchix.com/?p=515</guid>
		<description><![CDATA[The DevChix community recently attacked the issue of what to do about a “blah” workplace environment. If you’ve done development for any length of time, or for more than a few companies, you’ve probably experienced the same thing somewhere along the way. Your coworkers are nice folks and everyone gets along, but there’s no real [...]]]></description>
			<content:encoded><![CDATA[<p>The DevChix community  recently attacked the issue of what to do about a “blah” workplace  environment. If you’ve done development for any length of time, or for  more than a few companies, you’ve probably experienced the same thing  somewhere along the way. Your coworkers are nice folks and everyone gets  along, but there’s no real camaraderie. People work hard and produce  good code, but no one seems too terribly excited about it. Sound  familiar?</p>
<p>Lots of companies try  to guard against this with perks meant to be fun and make work feel less  formal. But sometimes all the kegerators in the world don’t make a  difference. One of the DevChix described her experience in an office  that sounds on paper like the Disneyland of workplaces:</p>
<blockquote><p>“There are foosball  tables, pool tables, air hockey tables and a beer keg in the kitchen. We work  in quad-pods where there are 4 people in each large sized pod. The idea  was to create a space open to collaboration. Nobody really talks much  though. Things like the gaming tables are nice but I don&#8217;t see them having  much impact. Some people grab a pint [from the keg] after 5pm and work at  their desk, again not talking much. “</p></blockquote>
<p>A “neutral” company culture, it seems,  is not a problem you can just throw a couple foosball tables at. The  DevChix suggested the problem is rooted in how a company treats its  devs.</p>
<h3>Where  does uninspiring culture begin?</h3>
<p>If you guessed “management”, the list  agrees with you (at least partially). Developer empowerment was  highlighted as one of the biggest things that make a difference in  developers’ passion at work. Without realizing it, managers may be  making their developers feel isolated or ignored:</p>
<blockquote><p>“Management might be  thinking that what they&#8217;re working on isn&#8217;t that relevant to their  staff, or is relevant but they haven&#8217;t made significant enough progress  to share &#8211; but communicating  the use of your time, however vaguely, on a regular basis has a  way of clearing the air.  It says, &#8220;I&#8217;m not forgetting about you&#8221; and also  promotes open communication (when I&#8217;m not hearing anything from a  manager, I don&#8217;t feel as comfortable going to him or her with my problems).   I&#8217;ve been surprised at how strong of a reaction seeing upper management going  in and out of meetings without sharing any details whatsoever has had on  me, and it&#8217;s not even that I want to have a lot of data.”</p></blockquote>
<p>Another problem can be  the ways in which developers are encouraged to interact. If  collaboration is rare, developers have less to talk about as developers. The extroverted ones  will probably find other things to discuss around the water cooler, but  if they aren’t working together, it’s likely that company culture is  repressing the urge to share ideas over the cubicle wall. It’s important  to consider how many developers are likely to be introverts &#8211;  development, after all, isn’t sales &#8211; and leave a space for interaction  at work that isn’t so unstructured that it exhausts anyone or excludes  them. In short, aimless chatter can be tiring or distracting, but active  teamwork is inspiring.</p>
<h3>What can companies do differently?</h3>
<p>One of the more  unanimous suggestions was to offer developers the opportunity to do  non-business-driven projects. Giving teams the opportunity to use new  technologies, proof of concept the things they think are important, and generally  develop something to their own standards gives developers a voice in  what they’re doing. Google’s 20% time was offered as an example of this.  Having a policy like this and promoting it as aggressively as Google  does creates an impression of a place where developers’ ideas are sought  out and supported, even in outsiders. And supporting developer-driven  projects doesn’t mean simply tolerating them. The DevChix who gave  examples of similar projects they’d worked on mentioned that these &#8211; in  whole or in part &#8211; had eventually been used by their employers in  “normal” projects.</p>
<p>Something  that was new to me was the idea of project leads bidding on resources  to give developers more control over what they’re working on (a project  owner could say, “I need this done but it’s the only thing I need done  this sprint,” if I understand correctly). At a busy agency or a start-up  just getting its feet under it, committing 20% of each developer’s time  to projects that might turn out to be technically infeasible might be  too expensive. Letting developers choose their projects would be a great  alternative.</p>
<p>Toward  the end of promoting camaraderie and sharing knowledge, something  developers might be able to do without having to get management approval  is peer code reviews. This is certainly more challenging when everyone  is working on a separate project, but consider that not everyone has to  share all their code all the time. The woman who suggested this  mentioned that her team had one or two people presenting once a week,  something that should be manageable no matter how many different  projects a dev team was working on.</p>
<p>A simple but important suggestion that  was brought up by different people with different examples was offering  developers the chance to “learn something cool”. This could be done by  in-office trainings, brown bag lunches, or sending developers to  conferences, but the DevChix who mentioned it seemed to agree that it’s a  big part of getting developers excited. These can range in cost to the  company all the way up to (and occasionally past) $2k, but consider what  the employer gets in return:</p>
<blockquote><p>“It was amazing how [attending a conference  turned] jaded, tired corporate workers into ra-ra cheerleaders like  overnight. The amount of info you can get at these things &#8211; along with  connections of course &#8211; is intense. And it&#8217;s great to show that the  corporation is willing to invest in the employee.”</p></blockquote>
<p>If a company can’t  spend the money on conference registration, air travel, and a hotel stay  for an employee, they could also try to bring the expertise to the  developers. It was pointed out that many technical leaders are happy to  share an hour of their time, and this gives everyone on the team the  chance to learn together instead of one or two people getting to go to a  conference while the rest of the team is back at the office park  slaving away. If a company is so isolated that the only way to boost  developer knowledge is through sending employees out of town for  conferences, one suggestion was to give the rest of the dev team the  same time off their peer attending the conference was getting to read,  learn, and work on exciting proofs of concept.</p>
<p>In summary, the  DevChix who participated in this thread emphasized the need to treat  smart, valuable people like smart, valuable people, whether you manage  them or sit next to them. One nice thing about developers is that you  don’t really need a foosball table to get them excited about coming into  the office &#8211; generally you just need to give them the freedom to do  what they love: write good code.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devchix?a=P2s1OQU20gk:1sFUfO_HZ-0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=P2s1OQU20gk:1sFUfO_HZ-0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Devchix?i=P2s1OQU20gk:1sFUfO_HZ-0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=P2s1OQU20gk:1sFUfO_HZ-0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devchix?i=P2s1OQU20gk:1sFUfO_HZ-0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=P2s1OQU20gk:1sFUfO_HZ-0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=P2s1OQU20gk:1sFUfO_HZ-0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devchix?i=P2s1OQU20gk:1sFUfO_HZ-0:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.devchix.com/2011/01/23/what-makes-the-best-workplace-atmosphere-and-culture/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.devchix.com/2011/01/23/what-makes-the-best-workplace-atmosphere-and-culture/</feedburner:origLink></item>
		<item>
		<title>RailsBridge Open Workshop Project</title>
		<link>http://feedproxy.google.com/~r/Devchix/~3/oJO4tdzN8Hs/</link>
		<comments>http://www.devchix.com/2011/01/18/railsbridge-open-workshop-project/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 22:15:28 +0000</pubDate>
		<dc:creator>desi</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://www.devchix.com/?p=503</guid>
		<description><![CDATA[Wow so many workshops!  I will be helping run the Chicago one on the weekend of Feb. 4-5th details are at the bottom of this press release. Be sure to tell others or volunteer!  We could also use sponsors so if any one would like to donate just email me directly. desi.mcadam at gmail RailsBridge [...]]]></description>
			<content:encoded><![CDATA[<p>Wow so many workshops!  I will be helping run the Chicago one on the weekend of Feb. 4-5th details are at the bottom of this press release. Be sure to tell others or volunteer!  We could also use sponsors so if any one would like to donate just email me directly. desi.mcadam at gmail</p>
<p><a href="http://workshops.railsbridge.org/2011/01/2011-workshop-kick-off/"><strong>RailsBridge Open Workshop Project Announces Workshops for 2011</strong></a></p>
<p>SAN FRANCISCO, Calif. &#8212; The RailsBridge Open Workshop project, which teaches web application development to both programmers and non-programmers, is announcing eight more of its popular free workshops for women in 2011.</p>
<p>The project, which has trained almost 600 people, nearly 500 of them women, in five cities in the past year and a half, is gaining speed in 2011.  RailsBridge has planned eight workshops so far, mostly in San Francisco, but branching out to the north bay, as well as Chicago and Seattle.</p>
<p><a href="http://workshops.railsbridge.org/2011/01/2011-workshop-kick-off/">Read More..</a></p>
<p><strong>Workshops Confirmed for 2011</strong></p>
<p><strong></strong>The following workshops have confirmed venues and leaders.  Several additional workshops are also in the planning stages:</p>
<p>February 4-5, Twitter, San Francisco, led by Amy Chen (<a href="http://www.meetup.com/sfruby/calendar/16004702/" target="_blank">already full</a>)</p>
<p>February 4-5, Hashrocket, Chicago, led by Desi McAdam &#8211; <a href="http://vurl.me/YMH">Attendees Meetup Page</a> <a href="http://vurl.me/YMF">Volunteers Meetup Page:</a></p>
<p>March 11-12, Enphase Energy, Petaluma, led by Brenda Strech &amp; Ilen Zazueta-Hall (<a href="http://www.meetup.com/sfruby/calendar/16002166/" target="_blank">meetup</a>)</p>
<p>April 7-8, ModCloth, San Francisco, Megan Guering</p>
<p>April, White Pages, Seattle, Elise Worthy</p>
<p>May 6-7, SoMA Central, San Francisco, led by Andrea Ängquist and Raphael Lee</p>
<p>July 15-16, Miso, San Francisco, Amy Lightholder, Rachel Myers</p>
<p>August 5-6, Quid, San Francisco, Andrea Angquist, Walter Y</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Devchix?a=oJO4tdzN8Hs:_Geqz-YdFPI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=oJO4tdzN8Hs:_Geqz-YdFPI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Devchix?i=oJO4tdzN8Hs:_Geqz-YdFPI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=oJO4tdzN8Hs:_Geqz-YdFPI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Devchix?i=oJO4tdzN8Hs:_Geqz-YdFPI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=oJO4tdzN8Hs:_Geqz-YdFPI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Devchix?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Devchix?a=oJO4tdzN8Hs:_Geqz-YdFPI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Devchix?i=oJO4tdzN8Hs:_Geqz-YdFPI:F7zBnMyn0Lo" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.devchix.com/2011/01/18/railsbridge-open-workshop-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.devchix.com/2011/01/18/railsbridge-open-workshop-project/</feedburner:origLink></item>
	</channel>
</rss>

