<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/stylesheets/rss.css" type="text/css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>a.muse</title>
    <link>http://www.jessirae.com/blog</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>if you ever want to see your precious, little butter bear again...</title>
      <description>&lt;center&gt;
&lt;img src="http://jessirae.com/blog/files/butterbear.jpg" width=300 /&gt;
&lt;/center&gt;

	&lt;p&gt;&lt;br /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://adventuresofmolli.blogspot.com/"&gt;Zeldy Pants&lt;/a&gt;,&lt;/p&gt;


	&lt;p&gt;Regarding the events of June 8th, 2008, we are most displeased with your uncooperation in &lt;em&gt;what was supposed to be&lt;/em&gt; The Risk Heist of 2008.  Despite all of our planning, you failed at the most crucial of steps&amp;#8212;distracting the infantry while we acheive world domination; for this we have confiscated one butter bear.  We are willing to negotiate an exchange.&lt;/p&gt;


	&lt;p&gt;Sincerely,&lt;/p&gt;


	&lt;p&gt;Aesop, Blanche and a reluctant Maddie&lt;/p&gt;
</description>
      <pubDate>Mon, 09 Jun 2008 19:20:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:77764b65-1ef8-4e7f-8919-2fd593e0ed15</guid>
      <author>Jessica</author>
      <link>http://www.jessirae.com/blog/articles/2008/06/09/if-you-ever-want-to-see-your-precious-little-butter-bear-again</link>
      <category>blythe</category>
      <category>bear</category>
      <category>dolls</category>
      <category>blythe</category>
      <trackback:ping>http://www.jessirae.com/blog/articles/trackback/12749</trackback:ping>
    </item>
    <item>
      <title>Android Sheep</title>
      <description>&lt;p&gt;&lt;strong&gt;The Goal&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;Using the Android development kit, &lt;a href="http://draves.org/blog/archives/000549.html"&gt;create an Android application&lt;/a&gt; that allows users to scroll through images of &lt;a href="http://www.electricsheep.org"&gt;electric sheep&lt;/a&gt; and vote on which images they like.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;First impression of Android: rich, open &lt;span class="caps"&gt;API&lt;/span&gt; with quick-n-easy dev set up&lt;/strong&gt;&lt;/p&gt;


Holy shit! The documentation is like drinking from a &lt;a href="http://www.oreillynet.com/onjava/blog/2007/11/android_first_impressions.html"&gt;water hose&lt;/a&gt;, definitely worse than a JavaDoc.  The pay off is that there is a ton of features that &amp;#8220;come with&amp;#8221; this open source &lt;span class="caps"&gt;SDK&lt;/span&gt;.  As mentioned on &lt;a href="http://www.androidlinux.com/"&gt;android linux&lt;/a&gt;,  
	&lt;blockquote&gt;
		&lt;p&gt;usually you have major companies forming an oligarchy of mobile handset programming, but not so much with Android, anyone, even the girl next door, could be the person making the next great Android based mobile application.&lt;/p&gt;
	&lt;/blockquote&gt;


	&lt;p&gt;And if you are familiar with Eclipse and HttpClient and jaxp and a slew of other things int the java world, then developing an Android app should be a snap. :-)&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;First lesson learned: keep your performance tuning cap on&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;Go ahead and resize all images to fit the phone screen.  One &lt;a href="http://code.google.com/p/android/issues/detail?id=175"&gt;issue&lt;/a&gt; that &lt;a href="http://www.devchix.org"&gt;Gloria&lt;/a&gt; and I encountered was that switching between images in the image switcher was slow.  I am not sure what the best way to do this is if you do not know the screen size; i mean i guess you would simply detect the screen size and choose the corresponding image size, but this assumes that the appropriately sized image would be available to you.&lt;/p&gt;


	&lt;p&gt;I did change the scaletype to &lt;span class="caps"&gt;CENTER&lt;/span&gt;, but I didn&amp;#8217;t really notice a big performance difference&amp;#8230; I mean I couldn&amp;#8217;t even tell which one was faster.  Per the moderator&amp;#8217;s comments&amp;#8230; the thumbnail isn&amp;#8217;t stretched.  The thumbnail and the png are two different files.  But the &amp;#8216;stretching&amp;#8217; that could be giving us problems is the shrinking of the png to fit it inside the small screen&amp;#8212;I can see this because when the scaletype is set to &lt;span class="caps"&gt;CENTER&lt;/span&gt; or not set at all, the image appears much larger and not all of it fits on the screen.  But so, unless we resize the images, there will always be some stretching/shrinking&amp;#8230; it seems reasonable to close the ticket; we can optimize by resizing if there continues to be a performance issue.  Anyways&amp;#8230; interesting stuff.  I am beginning to see what some of the challenges would be in writing a mobile app.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Second lesson learned: be mindful of your focus&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;Either do not set the focus on the ImageView or pass in the gallery so you can set the focus back to the gallery.  I received some &lt;a href="http://groups.google.com/group/android-beginners/browse_thread/thread/137db51ea2f394a2"&gt;great help&lt;/a&gt; from the Android Beginners Google Group.&lt;/p&gt;


&lt;em&gt;Setup Tips&lt;/em&gt;
	&lt;ol&gt;
	&lt;li&gt;Another issue that tripped me up was logging.  Sysouts won&amp;#8217;t work&amp;#8230; or at least Android provides its own logging.  This &lt;a href="http://www.winksaville.com/blog/programming/debug-logging-in-android/"&gt;logging how to&lt;/a&gt; helped me out.  The short of it is use &amp;#8220;adb logcat&amp;#8221; command to view logging done by android.util.Log.&lt;/li&gt;
		&lt;li&gt;Don&amp;#8217;t waste time decompiling; &lt;a href="http://code.google.com/p/android/"&gt;get the source&lt;/a&gt;.  Although it never fails, I end up decompiling stuff anyways.  &lt;code&gt;&amp;lt;^_^&amp;gt;&lt;/code&gt;&lt;/li&gt;
	&lt;/ol&gt;


&lt;center&gt;
&lt;img src="http://www.jessirae.com/blog/images/androidSheep.jpg" width="200" /&gt;
&lt;/center&gt;
&lt;p&gt;&lt;em&gt;Updates to Come&lt;/em&gt;:
I wrote this post some time ago, and there are several cool things that I have learned since that time&amp;#8230; more updates to come.  Currently, I am working on displaying images downloaded from the sheep server given some &lt;a href="http://v2d7b.sheepserver.net/cgi/query.cgi?q=recent_frames&amp;#38;n=50"&gt;set of sheep&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Sat, 22 Mar 2008 17:12:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:318597ee-c6d9-4587-9984-18006eb104e0</guid>
      <author>Jessica</author>
      <link>http://www.jessirae.com/blog/articles/2008/03/22/android-sheep</link>
      <category>technology</category>
      <category>logging</category>
      <category>gallery</category>
      <category>imageview</category>
      <category>electricsheep</category>
      <category>android</category>
      <trackback:ping>http://www.jessirae.com/blog/articles/trackback/12743</trackback:ping>
    </item>
    <item>
      <title>cute cupcakes come as camel-colored, carmel culinary  confections</title>
      <description>&lt;p&gt;We had another &lt;a href="http://www.thisisblythe.com/newforum/viewtopic.php?t=74813&amp;#38;sid=db07cea82148b41333f97d073cbdb5f7"&gt;Atlanta Blythe Meetup&lt;/a&gt; a few weekends ago.  There were a bunch of cute, new dollies to oogle over.  Afterwards &lt;a href="http://adventuresofmolli.blogspot.com/"&gt;Linda&lt;/a&gt; taught me how to make bead headbands and clay cupcakes, for Blythes of course!  Below are my notes and shopping lists for making these myself&amp;#8230; next time.&lt;/p&gt;


&lt;strong&gt;Atlanta February Meetup by the Numbers&lt;/strong&gt;
	&lt;ul&gt;
	&lt;li&gt;Over 30 dollies showed up&lt;/li&gt;
		&lt;li&gt;Approximately 8 pirate swords&amp;#8230; Arrrrg!&lt;/li&gt;
		&lt;li&gt;5 Blonde Blythes&lt;/li&gt;
		&lt;li&gt;2 attendees with human offspring (aka Moms)&lt;/li&gt;
		&lt;li&gt;1 &lt;a href="http://www.irwinstreetmarket.com/"&gt;Irwin Street Market&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;&lt;img src="http://farm3.static.flickr.com/2225/2316190046_05ae3912ba.jpg?v=0" alt="" /&gt;&lt;/p&gt;


	&lt;table style="border:1px solid black;"&gt;
		&lt;tr&gt;
			&lt;th&gt;Blythe Bead Headbands&lt;/th&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;wire&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;wire cutters&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;pliers&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;plastic beads&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;p&gt;&lt;br /&gt;&lt;/p&gt;


	&lt;table style="border:1px solid black;"&gt;
		&lt;tr&gt;
			&lt;th&gt;Clay Food&lt;/th&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt; clay in different colors&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;clay knife&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;td&gt;latex gloves&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/table&gt;




	&lt;p&gt;To make the clay food all you have to do is mix the colors, shape the clay into your cute creation, and bake for 13 min @ 350.  Beat that Martha!&lt;/p&gt;


	&lt;p&gt;Next time we are going to make &lt;a href="http://www.flickr.com/photos/mikacreations/1386819588/in/pool-matchboxdrawers/"&gt;Matchbox Dressers&lt;/a&gt;.   And maybe the guys can play &lt;a href="http://en.wikipedia.org/wiki/Risk_(game)"&gt;Risk&lt;/a&gt;. Sweet! I can&amp;#8217;t wait.&lt;/p&gt;
</description>
      <pubDate>Thu, 20 Mar 2008 21:32:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:17de3310-86a8-4d7c-88ec-c9620dfa569d</guid>
      <author>Jessica</author>
      <link>http://www.jessirae.com/blog/articles/2008/03/20/lazy</link>
      <category>blythe</category>
      <category>crafts</category>
      <category>food</category>
      <category>clay</category>
      <category>headband</category>
      <category>dolls</category>
      <category>atlanta</category>
      <category>blythe</category>
      <trackback:ping>http://www.jessirae.com/blog/articles/trackback/12744</trackback:ping>
    </item>
    <item>
      <title>J2EE 1.4 Content Type Tidbit</title>
      <description>&lt;p&gt;Using Wireshark, you can detect some subtle differences in the j2ee 1.3 and 1.4 api&amp;#8217;s as relating to http responses.  One is difference is that PrintWriter appends the charset to the end of the content type (e.g. the &lt;span class="caps"&gt;MIME&lt;/span&gt; type) with a default of iso-8850-1.  Also, setting the locale using response.setLocale() &lt;em&gt;after&lt;/em&gt; setting the content type also appears to cause the charset to be appended to the content type.&lt;/p&gt;


	&lt;p&gt;Why is this an interesting find?  Well, these extra characters have the potential of breaking things if client side code hasn&amp;#8217;t been written well.  For instance, a browser plugin that decides what to do with the response based on the &lt;span class="caps"&gt;MIME&lt;/span&gt; type may not know how to deal with a &lt;span class="caps"&gt;MIME&lt;/span&gt; type where &amp;#8221;;charset: iso-8850-1&amp;#8221; is appended to the end.  If these changes to the api are breaking someone else&amp;#8217;s code :-(, you can work around these differences by writing the needed string in a jsp.&lt;/p&gt;


	&lt;p&gt;&lt;em&gt;See future self, how would you ever have remembered that one if you hadn&amp;#8217;t have written it down?&lt;/em&gt;&lt;/p&gt;
</description>
      <pubDate>Wed, 20 Feb 2008 00:25:00 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:fceceb4e-c804-4cb8-955e-7094a8061007</guid>
      <author>Jessica</author>
      <link>http://www.jessirae.com/blog/articles/2008/02/20/j2ee-1-4-content-type-tidbit</link>
      <category>technology</category>
      <category>type</category>
      <category>content</category>
      <category>mime</category>
      <category>j2ee</category>
      <category>java</category>
      <trackback:ping>http://www.jessirae.com/blog/articles/trackback/12737</trackback:ping>
    </item>
    <item>
      <title>aesop</title>
      <description>&lt;p&gt;I wanted to give her two names, but that would require more typing. &lt;code&gt;&amp;lt;^_^&amp;gt;&lt;/code&gt;&lt;/p&gt;


	&lt;p&gt;All of these photos were taken prior to doing anything to the doll.  No combing, no washing, no nothin&amp;#8217;.  She is very pale, and her eyechips are what I would call carmel, deep blue, purple and grassy green (not shown here).&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://jessirae.com/blog/images/blythe/aesop.JPG" alt="" /&gt;&lt;/p&gt;


	&lt;p&gt;These RBLs are like a completely different doll.  I can&amp;#8217;t imagine what the first folks to get an &lt;span class="caps"&gt;RBL&lt;/span&gt; in the mail thought.&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://jessirae.com/blog/images/blythe/aesop2.JPG" alt="" /&gt;&lt;/p&gt;


	&lt;p&gt;She has no real identity yet, although I am pretty sure she can see into the future; she&amp;#8217;s a pre-born.  &lt;em&gt;That child is an abomination!&lt;/em&gt;&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://jessirae.com/blog/images/blythe/aesop4.JPG" alt="" /&gt;&lt;/p&gt;


	&lt;p&gt;More photos to come!&lt;/p&gt;
</description>
      <pubDate>Tue, 19 Feb 2008 16:39:00 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:3ee0bfe1-0d16-49a3-8fec-f84fad7d7c35</guid>
      <author>Jessica</author>
      <link>http://www.jessirae.com/blog/articles/2008/02/19/aesop</link>
      <category>blythe</category>
      <category>eve</category>
      <category>angelica</category>
      <trackback:ping>http://www.jessirae.com/blog/articles/trackback/12736</trackback:ping>
    </item>
    <item>
      <title>One Useful Infinite Loop</title>
      <description>&lt;p&gt;If you are ever are in need of a page that would keep a url connection open for an extended period of time, as opposed to simply returned a 404 or 500 error, then you might consider simulating an unresponsive page by creating a page with an infinite loop on it.&lt;/p&gt;


&lt;code&gt;
&lt;pre&gt;
&amp;lt;html&amp;gt;
&amp;lt;script&amp;gt;
   function infiniteLoop() {
   var i = 0;

   while (i&amp;lt;=0)
   {
     i = i-1;
   }
}
&amp;lt;/script&amp;gt;
&amp;lt;body onload="infiniteLoop()"&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;
&lt;/code&gt;

	&lt;p&gt;Ok, so javascript won&amp;#8217;t work (that is, you should get a 200 from this page) because it is on the client side, but do the same thing with a jsp or embedded ruby.&lt;/p&gt;


&lt;code&gt;
&lt;pre&gt;
&amp;lt;html&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;% int i = 0;
while (i&amp;lt;=0) {
  i--;
}
%&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;
&lt;/code&gt;

	&lt;p&gt;This is nice for testing timeout parameters on an http connection that you have opened up.  For instance, using the java library &lt;a href="http://hc.apache.org/httpclient-3.x/apidocs/org/apache/commons/httpclient/HttpClient.html"&gt;HttpClient&lt;/a&gt;, you can set the connection timeout on a connection.  Instead of attempting to connect with the availabe resource, try to connection to this infinite loop page.&lt;/p&gt;
</description>
      <pubDate>Mon, 28 Jan 2008 20:49:00 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:59f66ffe-aff2-4a6a-ae49-035561e426a5</guid>
      <author>Jessica</author>
      <link>http://www.jessirae.com/blog/articles/2008/01/28/one-useful-infinite-loop</link>
      <category>technology</category>
      <category>test</category>
      <category>timeout</category>
      <category>connection</category>
      <category>http</category>
      <category>httpclient</category>
      <category>java</category>
      <trackback:ping>http://www.jessirae.com/blog/articles/trackback/12734</trackback:ping>
    </item>
    <item>
      <title>Naming</title>
      <description>&lt;p&gt;I&amp;#8217;m getting a new doll!  She is an &lt;a href="http://www.flickr.com/groups/blythe_angelicaeve/pool/"&gt;Angelica Eve&lt;/a&gt;.  I haven&amp;#8217;t decided on a name yet.  The &lt;a href="http://www.sandiferclassroom.com/blog/?p=68"&gt;baptisimal moment&lt;/a&gt;, both necessary and a priori according to Kripke, is almost as exciting as getting the doll itself.  Some programmers say that they can&amp;#8217;t start work on a project until they give it an agreeable name.  There&amp;#8217;s something about naming that I enjoy.  Naming, in and of itself, isn&amp;#8217;t about discovery, like Kripke&amp;#8217;s intuitions show, rather naming is like putting a hook or a piece of Velcro on an object, so that the object can be referenced.  I guess naming satisfies my need to organize and tiddy things, albeit word things.  Anyways, enough about naming&amp;#8230; I want to name her something with two names and more than 4 syllables.&lt;/p&gt;


	&lt;p&gt;I went to Inman Perk this weekend with Linda.  We got a ton of great advice from Christy Petterson of &lt;a href="http://www.ice-atlanta.com/"&gt;&lt;span class="caps"&gt;ICE&lt;/span&gt;&lt;/a&gt; regarding putting on a large event.  Maybe one day we will get to return the favor or pay the favor forward.&lt;/p&gt;


	&lt;p&gt;Here are our girls chillin&amp;#8217; literally outside in the snow.&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://jessirae.com/blog/images/InmanPark2.jpg" alt="" /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://adventuresofmolli.blogspot.com/"&gt;Linda&lt;/a&gt; took the following beautiful photo.  I am holding the top of Blanches head like a place kicker &amp;#8211; that&amp;#8217;s what Linda says.  So, if you haven&amp;#8217;t tried this method for photographing your doll, make sure to try Linda&amp;#8217;s &lt;em&gt;place kicker method&lt;/em&gt;!  Ah, yet another name is given. :-)&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://jessirae.com/blog/images/20080119_sidewalkblanche3.jpg" alt="" /&gt;&lt;/p&gt;
</description>
      <pubDate>Sun, 20 Jan 2008 20:01:00 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:9530b373-6b4d-49c4-8c41-1f28983474aa</guid>
      <author>Jessica</author>
      <link>http://www.jessirae.com/blog/articles/2008/01/20/naming</link>
      <category>blythe</category>
      <trackback:ping>http://www.jessirae.com/blog/articles/trackback/12733</trackback:ping>
    </item>
    <item>
      <title>Toys and Tech</title>
      <description>&lt;p&gt;I&amp;#8217;ve been so busy lately; ruby group, getting ready to go to New York and blythe con site design have been taking up all of my extra time.  So, I&amp;#8217;m sure my girls are feeling neglected.&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://jessirae.com/blog/images/bathing_tlc.png" alt="" /&gt;&lt;/p&gt;


Ok, I guess that answers that question.  
	&lt;blockquote&gt;
		&lt;p&gt;&lt;em&gt;Girl, you need to go get some clothes on.  You&amp;#8217;re going to visit your friends tomorrow, and you can&amp;#8217;t go naked.&lt;/em&gt;&lt;/p&gt;
	&lt;/blockquote&gt;


Anyways, a few lessons learned from ruby group are:
	&lt;ul&gt;
	&lt;li&gt;if you are being a total idiot &amp;#38; notice that a field appears to be written out to the db (no errors), but isn&amp;#8217;t making it into the db, you might have a duplicate field.  Just a warning!&lt;/li&gt;
		&lt;li&gt;in the rails script/console, you can use tab complete to view a more complete list of rails methods beginning with some word or part of a word&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;&lt;strong&gt;Essential &lt;span class="caps"&gt;SVN&lt;/span&gt; (for use on the run)&lt;/strong&gt;&lt;br /&gt;

&lt;code&gt; svn propedit svn:ignore db\schema.rb&lt;/code&gt;
&lt;br /&gt;
  &lt;code&gt;svn revert -R &lt;/code&gt;
&lt;br /&gt;
  &lt;code&gt;svn commit -m "did cool stuff"&lt;/code&gt;
&lt;br /&gt;
  &lt;code&gt;svn update&lt;/code&gt;
&lt;br /&gt;
  &lt;code&gt;svn co http://tools.assembla.com/svn/atlrug/atlrug01/trunk/atlrug01/ atlrug01&lt;/code&gt;
&lt;em&gt;you can&amp;#8217;t check out our code unless you are apart of our assembla group, but soon you might be able to, but here&amp;#8217;s the repository anyways&lt;/em&gt;&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://jessirae.com/blog/images/Maddy.jpg" alt="" /&gt;&lt;/p&gt;


	&lt;p&gt;Ok, ok!  I know you need some &lt;span class="caps"&gt;TLC&lt;/span&gt;; I&amp;#8217;m coming.&lt;/p&gt;
</description>
      <pubDate>Sat, 29 Sep 2007 22:56:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:da9b56c7-af33-418d-9a2d-ee3eb29dc2a9</guid>
      <author>Jessica</author>
      <link>http://www.jessirae.com/blog/articles/2007/09/29/toys-and-tech</link>
      <trackback:ping>http://www.jessirae.com/blog/articles/trackback/12718</trackback:ping>
    </item>
    <item>
      <title>Recap from Ruby Coding Group: 8-11-07</title>
      <description>&lt;ul&gt;
	&lt;li&gt;Make sure Ruby, Rails, MySql &amp;#38; Subversion are installed and working properly on your machine.&lt;/li&gt;
	&lt;/ul&gt;


	&lt;ul&gt;
	&lt;li&gt;Create 2 databases: atlrug01_development &amp;#38; atlrug01_test&lt;/li&gt;
	&lt;/ul&gt;


	&lt;ul&gt;
	&lt;li&gt;Login to Assembla where the atlrug coding project 1 is being hosted.  You need to be invited to the atlrug project in order to checkout the project with subversion.&lt;/li&gt;
	&lt;/ul&gt;


	&lt;ul&gt;
	&lt;li&gt;Checkout the atlrug project: svn co http://tools.assembla.com/svn/atlrug.  You will have to enter your assembla password and username in order to check the project out.&lt;/li&gt;
	&lt;/ul&gt;


&lt;hr /&gt;

	&lt;p&gt;Here are two options for syncing the data between development databases in rails:&lt;/p&gt;


	&lt;p&gt;1.  export and import sql&amp;#8212;using a command like this one&amp;#8230;&lt;/p&gt;


	&lt;p&gt;mysql -u root -p atlrug01_development &amp;lt; /path/to/your/project/.../atlrug/atlrug01/trunk/atlrug01/db/development_data.sql&lt;/p&gt;


	&lt;p&gt;2. fixtures + yaml&lt;/p&gt;


	&lt;p&gt;I placed a rake task in lib/tasks that will take whatever is in the db and dump that into a yaml fixture located in test/fixtures.&lt;/p&gt;


	&lt;p&gt;After checking out the latest version of the project, you run rake db:migrate &amp;#38; rake db:fixtures:load to import the yaml to your db.&lt;/p&gt;


	&lt;p&gt;Full instructions here: http://snippets.dzone.com/posts/show/3393&lt;/p&gt;
</description>
      <pubDate>Wed, 26 Sep 2007 19:03:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:25a39c24-f714-415c-958d-e099cbf87778</guid>
      <author>Jessica</author>
      <link>http://www.jessirae.com/blog/articles/2007/09/26/recap-from-ruby-coding-group-8-11-07</link>
      <category>technology</category>
      <category>ruby &amp; rails</category>
      <category>atlanta</category>
      <category>group</category>
      <category>coding</category>
      <category>ruby</category>
      <trackback:ping>http://www.jessirae.com/blog/articles/trackback/12704</trackback:ping>
    </item>
    <item>
      <title>A No-Touch-Up Photo of the New Blanche</title>
      <description>&lt;p&gt;&lt;img src="http://jessirae.com/blog/files/100_1654.jpg" alt="" /&gt;&lt;/p&gt;


	&lt;p&gt;I finished Blanche&amp;#8217;s customizations tonight.  She is bald &amp;#38; waiting for some wigs.  Her eye chips were replaced, face sanded and pastel blush and eye shadow applied along with lips painted.  Oh yeah, new eye lashes, too!&lt;/p&gt;


My tips:
	&lt;ul&gt;
	&lt;li&gt;Follow all of the Puchi Collective tutorials.&lt;/li&gt;
		&lt;li&gt;Be patient and creative with your tool use.  Figure out what you need to do and search around the house for objects that can help you do those things.&lt;/li&gt;
		&lt;li&gt;Use a bobby pen to re-attach the eye spring to the head.  Attach bobby pen to spring and drop the pen down through the small hole in the back of her head before closing the head up.  You may have to widen the spring&amp;#8217;s loop in order to attach the spring to the head, as well as push the bobby pen off into the head and move the head around until you can grab the pen out.&lt;/li&gt;
		&lt;li&gt;It took me three days to get the head open.  There was a ton of glue holding her head together.  Soak, soak, soak.&lt;/li&gt;
	&lt;/ul&gt;
</description>
      <pubDate>Fri, 24 Aug 2007 00:21:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:a5bf39ef-d34d-4509-a866-2405194a5783</guid>
      <author>Jessica</author>
      <link>http://www.jessirae.com/blog/articles/2007/08/24/a-no-touch-up-photo-of-the-new-blanche</link>
      <trackback:ping>http://www.jessirae.com/blog/articles/trackback/12706</trackback:ping>
    </item>
  </channel>
</rss>
