<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rambles &#187; General Assembly</title>
	<atom:link href="http://rambles.bearcircle.net/category/general-assembly/feed/" rel="self" type="application/rss+xml" />
	<link>http://rambles.bearcircle.net</link>
	<description>Programming, Poker, and Politics.  Just Another voice in the electronic wilderness</description>
	<lastBuildDate>Thu, 13 Jan 2011 08:12:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>And off we go!</title>
		<link>http://rambles.bearcircle.net/2009/06/21/and-off-we-go/</link>
		<comments>http://rambles.bearcircle.net/2009/06/21/and-off-we-go/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 03:02:32 +0000</pubDate>
		<dc:creator>Lance</dc:creator>
				<category><![CDATA[General Assembly]]></category>
		<category><![CDATA[uuaga09]]></category>

		<guid isPermaLink="false">http://rambles.bearcircle.net/2009/06/21/and-off-we-go/</guid>
		<description><![CDATA[I&#8217;m about to go offline and pack up my laptop for the trip to Salt Lake City.&#160; My flight is at 6:30AM Monday morning so I need to be up around 4AM and heading out at 4:45 or so.&#160; Ugh.&#160; I&#8217;ll arrive in SLC at 8:50AM SLC time and have a full day ahead of [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: sans-serif;">I&#8217;m about to go offline and pack up my laptop for the trip to Salt Lake City.&nbsp; My flight is at 6:30AM Monday morning so I need to be up around 4AM and heading out at 4:45 or so.&nbsp; Ugh.&nbsp; I&#8217;ll arrive in SLC at 8:50AM SLC time and have a full day ahead of me still.&nbsp; I plan on sleeping during the flight.&nbsp; We&#8217;ll see how well that works.<br />See you all in SLC!<br /></span></p>
]]></content:encoded>
			<wfw:commentRss>http://rambles.bearcircle.net/2009/06/21/and-off-we-go/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>On Not Reinventing the Wheel</title>
		<link>http://rambles.bearcircle.net/2009/05/12/on-not-reinventing-the-wheel/</link>
		<comments>http://rambles.bearcircle.net/2009/05/12/on-not-reinventing-the-wheel/#comments</comments>
		<pubDate>Tue, 12 May 2009 05:07:15 +0000</pubDate>
		<dc:creator>Lance</dc:creator>
				<category><![CDATA[General Assembly]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[cpan]]></category>
		<category><![CDATA[uuaga09]]></category>

		<guid isPermaLink="false">http://rambles.bearcircle.net/2009/05/12/reinventing-the-wheel/</guid>
		<description><![CDATA[Last year I wrote a Catalyst-based application to manage the workflow for the team of reporters, editors, and publishers providing web reporting for the the annual Unitarian Universalist General Assembly.  This includes tracking each event at GA, assigning reporters, photographers, videographers, and managing the writing/editing/publishing workflow for each article to be posted on the GA [...]]]></description>
			<content:encoded><![CDATA[<p>Last year I wrote a <a href="http://www.catalystframework.org/">Catalyst</a>-based application to manage the workflow for the team of reporters, editors, and publishers providing web reporting for the the annual <a href="http://www.uua.org/events/generalassembly/">Unitarian Universalist General Assembly</a>.  This includes tracking each event at GA, assigning reporters, photographers, videographers, and managing the writing/editing/publishing workflow for each article to be posted on the GA website.</p>
<p>I didn&#8217;t know about <a href="http://search.cpan.org/%7Eribasushi/DBIx-Class-0.08102/lib/DBIx/Class/InflateColumn/File.pm">DBIx::Class::InflateColumn::File</a> at the time, so I wrote my own system using <a href="http://search.cpan.org/%7Eash/Catalyst-Model-File-0.07/">Catalyst::Model::File</a> to store the uploaded files.  It was a mild pain in the ass to deal with the files separately from the DB model, but it worked and got the job done.</p>
<p>Lately, I&#8217;ve been working on another application that requires uploading and storing files:  a discussion paper archive and search system for the <a href="http://www.stat.duke.edu/">Department of Statistical Science</a> at Duke University.  Again, I was struggling with using <a href="http://search.cpan.org/%7Eash/Catalyst-Model-File-0.07/">Catalyst::Model::File</a> to store the uploaded manuscripts and associated data files.  I don&#8217;t like using C::M::File because it breaks the model paradigm.  I&#8217;d rather put all the data for each discussion paper in the DBIx::Class based DB model I built.  I&#8217;m thinking of writing some command line utility scripts for the archive and using C::M::File binds me to Catalyst in ways I don&#8217;t want.  So I went looking.</p>
<p>I saw discussion of <a href="http://search.cpan.org/%7Emmims/DBIx-Class-InflateColumn-FS/lib/DBIx/Class/InflateColumn/FS.pm">DBIx::Class::InflateColumn::FS</a> on the Catalyst mailing list and started investigating it.  Then I found <a href="http://search.cpan.org/%7Eribasushi/DBIx-Class-0.08102/lib/DBIx/Class/InflateColumn/File.pm">DBIx::Class::InflateColumn::File</a>.  Both provide the filesystem-based storage of files tied into my DB model I need, but I&#8217;m going to use InflateColumn::File.  It fits my needs better and lets me serve up the files using <a href="http://search.cpan.org/%7Eflora/Catalyst-Plugin-Static-Simple-0.21/lib/Catalyst/Plugin/Static/Simple.pm">Static::Simple</a> in a straightforward manner.</p>
<p>I love the <a href="http://search.cpan.org/">CPAN</a>!  It gave me not one, but two!, good alternatives to Catalyst::Model::File, and I don&#8217;t have to write it.   I only wish I&#8217;d noticed InflateColumn::File last year.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=9aa85621-445a-84f1-bd4e-889d859e933f" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://rambles.bearcircle.net/2009/05/12/on-not-reinventing-the-wheel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GA 2009</title>
		<link>http://rambles.bearcircle.net/2009/05/05/ga-2009/</link>
		<comments>http://rambles.bearcircle.net/2009/05/05/ga-2009/#comments</comments>
		<pubDate>Tue, 05 May 2009 12:48:18 +0000</pubDate>
		<dc:creator>Lance</dc:creator>
				<category><![CDATA[General Assembly]]></category>
		<category><![CDATA[ga2009]]></category>

		<guid isPermaLink="false">http://rambles.bearcircle.net/2009/05/05/ga-2009/</guid>
		<description><![CDATA[Yahtzee!&#160; I just scored my airline tickets for my trip to General Assembly in June for less than $300 with direct flights in both directions!&#160; The only bad part is my flight out to Salt Lake City leaves at 6:30AM.&#160; Ugh.
I figured I was going to have to do at least one layover on both [...]]]></description>
			<content:encoded><![CDATA[<p>Yahtzee!&nbsp; I just scored my airline tickets for my trip to <a href="http://www.uua.org/events/generalassembly/">General Assembly</a> in June for less than $300 with direct flights in both directions!&nbsp; The only bad part is my flight out to Salt Lake City leaves at 6:30AM.&nbsp; Ugh.</p>
<p>I figured I was going to have to do at least one layover on both flights and it would cost me around $400 so I&#8217;m quite pleased.&nbsp; <a href="http://kayak.com/">Kayak.com</a>&#8217;s daily emailed price search is your friend!</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=aa35acbf-776e-8c89-9110-3ee437569d21" /></div>
]]></content:encoded>
			<wfw:commentRss>http://rambles.bearcircle.net/2009/05/05/ga-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GA Room mate</title>
		<link>http://rambles.bearcircle.net/2009/03/01/ga-room-mate/</link>
		<comments>http://rambles.bearcircle.net/2009/03/01/ga-room-mate/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 19:18:33 +0000</pubDate>
		<dc:creator>Lance</dc:creator>
				<category><![CDATA[General Assembly]]></category>
		<category><![CDATA[uuaga09]]></category>

		<guid isPermaLink="false">http://rambles.bearcircle.net/2009/03/01/ga-room-mate/</guid>
		<description><![CDATA[Greetings,
I&#8217;m going to GA again this year and working, again, on the UUA web reporting team.&#160; I will be in town probably from the Monday before GA all the way through the event and am looking for a room mate to share accomodations in the Marriott as that is where I&#8217;ll be working.&#160; If you [...]]]></description>
			<content:encoded><![CDATA[<p>Greetings,</p>
<p>I&#8217;m going to GA again this year and working, again, on the UUA web reporting team.&nbsp; I will be in town probably from the Monday before GA all the way through the event and am looking for a room mate to share accomodations in the Marriott as that is where I&#8217;ll be working.&nbsp; If you are interested, please contact me at <a href="mailto:lance@bearcircle.net">lance@bearcircle.net</a> and I&#8217;ll get back to you.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=6a5a53af-158c-438d-aa32-3c8db7880553" /></div>
]]></content:encoded>
			<wfw:commentRss>http://rambles.bearcircle.net/2009/03/01/ga-room-mate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>General Assembly 2008, Part 2</title>
		<link>http://rambles.bearcircle.net/2008/06/28/general-assembly-2008-part-2/</link>
		<comments>http://rambles.bearcircle.net/2008/06/28/general-assembly-2008-part-2/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 05:43:53 +0000</pubDate>
		<dc:creator>Lance</dc:creator>
				<category><![CDATA[General Assembly]]></category>
		<category><![CDATA[uuaga08]]></category>

		<guid isPermaLink="false">http://rambles.bearcircle.net/?p=31</guid>
		<description><![CDATA[I&#8217;m not getting as much written about GA this year as I hoped.  Partly because I&#8217;m struggling with finding/recognizing my voice on this blog and partly because I&#8217;ve been busy enjoying myself and working on the web team.  
Thursday morning, I video-taped the &#8220;Green Forum: Beyond Darwin and Lincoln&#8221; workshop.  Interesting factoid: [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not getting as much written about GA this year as I hoped.  Partly because I&#8217;m struggling with finding/recognizing my voice on this blog and partly because I&#8217;ve been busy enjoying myself and working on the web team. <img src='http://rambles.bearcircle.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Thursday morning, I video-taped the &#8220;Green Forum: Beyond Darwin and Lincoln&#8221; workshop.  Interesting factoid:  Abe Lincoln and Charles Darwin were born on the same day in the same year.  Both candidates for the 2009 UUA Presidential election spoke and answered questions from the audience.  I&#8217;m almost entirely apolitical about UUA governance so this was my first experience with the candidates.  Both impressed me.  I may say more about them at a later date.  The workshop was interesting and some very cool questions about the interface between liberal religion and science came up.  In response to a question about engaging advocates of Creationism and Intelligent Design in science classrooms, Rev. Morales presented a powerful argument I had not encountered before:  Creationists who claim there is s in the scientific community over the theory of evolution are bearing false witness.  They are flat out lying.  I knew it was lying, but couching it in the traditional biblical terminology confronts Creationists with the actions on their own ground.</p>
<p>Thursday evening I monitored streaming video for the <a href="http://www.uua.org/events/generalassembly/2008/commonthreads/115697.shtml">Service of the Living Tradition</a>.  The SLT always impresses me, even when I&#8217;m sitting in the production area off to the side of the hall instead of the in the audience.</p>
<p>Today was my heaviest workload:  Streaming video coverage for Friday Morning Worship and the third Plenary session, than videotaping the &#8220;Theology of Peacemaking&#8221; workshop right after lunch and back for more streaming coverage for the Bridging Ceremony in the evening.  I don&#8217;t remember much of the Morning Worship although the music was very cool.  I just wasn&#8217;t awake yet.  I <span style="font-weight: bold;">love</span> watching Gini Courtier manage the the Plenary sessions.  It takes a special person to do that job and she&#8217;s definitely got the skills for it!  I about fell out of my chair laughing at some of her humorous lines&#8230;.</p>
<p>I really enjoyed the <a href="http://media.uua.org:8080/asxgen/ga2008/3033.wmv">&#8220;Theology of Peacemaking&#8221;</a>(video) workshop.  It was a reprise of a similar workshop given last year that was scheduled into a too-small room for the massive crowd that showed up.  UUA volunteers had to herd protesting GA attendees out of the room because they had gone past &#8216;full&#8217; and &#8217;standing room only&#8217; to &#8216;packed in like sardines&#8217; to see the Rev. Dr. Bill Schultz speak.  One attendee protested so strenuously that he caught the attention of Rev. Schultz and ended up getting asked to join the workshop as a presenter this year.  I encourage everyone to watchi this workshop.  Rev. Schultz is an amazing speaker.</p>
<p>Given his past work with the UUA and Amnesty International, his position on peacemaking surprised me.  He falls in between the &#8220;Just War&#8221; and &#8220;Pacifist&#8221; positions on the scale of using force to oppose oppression and violence.  I thought he was a full-on pacifict type.  His argument is that sometimes the only possible response to violence is use of appropriate force.  Force employed only when all peaceful solutions have failed and with conscious decision to use it to protect the helpless and innocent from the actions of malicious and malevalent agents.  He strongly supports the recent developments in the UN that provides for emergency response forces that can act in such situations.  I need to explore this more, but my gut feeling is that he&#8217;s right.</p>
<p>More later.  I need to sleep and get up early.</p>
]]></content:encoded>
			<wfw:commentRss>http://rambles.bearcircle.net/2008/06/28/general-assembly-2008-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>General Assembly 2008</title>
		<link>http://rambles.bearcircle.net/2008/06/25/general-assembly-2008/</link>
		<comments>http://rambles.bearcircle.net/2008/06/25/general-assembly-2008/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 01:29:56 +0000</pubDate>
		<dc:creator>Lance</dc:creator>
				<category><![CDATA[General Assembly]]></category>
		<category><![CDATA[uuaga08]]></category>

		<guid isPermaLink="false">http://rambles.bearcircle.net/?p=29</guid>
		<description><![CDATA[Once again I&#8217;m at the UUA General Assembly working on the UUA GA web reporting team doing streaming and tape videography, computer geek support, and support for the new web-based system we are using for the writing/editing/publishing workflow.  Fort Lauderdale at midsummer is just way too hot for reason.  Too. Damn. Hot.  Have I made [...]]]></description>
			<content:encoded><![CDATA[<p>Once again I&#8217;m at the UUA General Assembly working on the UUA GA web reporting team doing streaming and tape videography, computer geek support, and support for the new web-based system we are using for the writing/editing/publishing workflow.  Fort Lauderdale at midsummer is just way too hot for reason.  Too. Damn. Hot.  Have I made myself understood on this point?  I definitely plan on minimizing the number of trips I make between the GA webworkers office and the convention center even though the office in the hotel catty-corner across the street from the convention center.  I&#8217;m not sure which is worse:  the heat outside or the blast of air-conditioned air when you enter center or the hotel.  I&#8217;ll be very surprised if I don&#8217;t get some of cold or sore throat from repeated temperature changes.  Anyway, enough about the heat.</p>
<p>I&#8217;m impressed with the convention center so far.  It seems to be laid out nicely so I won&#8217;t have to lug a video camera and tripod hither-and-yon to reach my various assignments.  Last year&#8217;s center was a sprawling complex and I routinely had 10 or 15 minute walks just to get from room to room for my assignments.  This year everything seems to be close by.  I&#8217;m glad.</p>
<p>As I write this, I&#8217;m sitting at our table behind the production crew monitoring the streaming video for the opening ceremony and worship.  The opening always makes me proud to be a UU and be part of the effort to bring General Assembly to UUs who can&#8217;t be here with us.  Currently, our steaming service has 135 connections, which easily blows out our max connections from last year.</p>
<p>I hope to write more about GA this year as it happens.</p>
<p>Peace<br />
&#8211;[Lance]</p>
]]></content:encoded>
			<wfw:commentRss>http://rambles.bearcircle.net/2008/06/25/general-assembly-2008/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

