<?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"
	>

<channel>
	<title>One Day in the Life</title>
	<atom:link href="http://www.ebynum.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ebynum.com</link>
	<description></description>
	<pubDate>Mon, 28 Dec 2009 23:52:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Die Verwandlung</title>
		<link>http://www.ebynum.com/2009/12/28/die-verwandlung/</link>
		<comments>http://www.ebynum.com/2009/12/28/die-verwandlung/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 23:52:55 +0000</pubDate>
		<dc:creator>Ed</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ebynum.com/?p=16</guid>
		<description><![CDATA[New Year&#8217;s Resolutions:

There&#8217;s talk about a new food (cooking/eating out) blog with several friends. I want to participate actively.
2010 is the year of not eating fast food. The only exception will be the occasional visit to Subway. The list of non-allowed places includes Zaxby&#8217;s and Moe&#8217;s. The list of allowed (but largely avoided) places includes [...]]]></description>
			<content:encoded><![CDATA[<p>New Year&#8217;s Resolutions:</p>
<ol>
<li>There&#8217;s talk about a new food (cooking/eating out) blog with several friends. I want to participate actively.</li>
<li>2010 is the year of not eating fast food. The only exception will be the occasional visit to Subway. The list of non-allowed places includes Zaxby&#8217;s and Moe&#8217;s. The list of allowed (but largely avoided) places includes Hot Dog King. Here&#8217;s to healthier eating.</li>
<li>In addition to the fast food fast, I&#8217;m also going to avoid soft drinks in 2010. In this context, soft drinks includes sweet iced-tea but not hot tea, even sweetened and creamed.</li>
<li>Resume walking to work consistently - at least 3 days a week. I&#8217;m willing to give that up for a few months in the summer, but &#8230;</li>
<li>Save and spend my money more intelligently, allowing me to purchase a bicycle and go on my mom&#8217;s birthday-bicycling-trip to Europe this spring/summer.</li>
<li>Have people over for dinner/games/coffee/whatever else regularly.</li>
<li>This will be the hardest of these. At no time during the 2010 football season will I start a sentence with: &#8220;If C.J. Spiller were still here, &#8230;&#8221;</li>
</ol>
<p>One thing that I have discovered about myself is that if I attempt to impose a &#8220;personal&#8221; discipline, I&#8217;ll keep it up for a week or two and in a weak moment, give in. However, if I&#8217;ve told <em>anybody</em> about it, that weak moment loses most of its power over me.</p>
<p>There are several expected benefits to keeping these resolutions. The amount of money I throw away on fast food terrifies me. The amount of fast food that that means I consume is even more terrifying. Walking/biking to work is &#8220;automatic&#8221; exercise. Success in these resolutions should have me leaving 2010 happier and healthier than I entered it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ebynum.com/2009/12/28/die-verwandlung/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Heart of Darkness</title>
		<link>http://www.ebynum.com/2009/11/15/heart-of-darkness/</link>
		<comments>http://www.ebynum.com/2009/11/15/heart-of-darkness/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 01:24:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[ie6]]></category>

		<category><![CDATA[web development]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.ebynum.com/?p=13</guid>
		<description><![CDATA[IE6 is the Heart of Darkness.
Enough said.
But, for the sake of anybody who finds this by searching, the reason. Internet Explorer 6 (IE6) does not seem to take kindly to using jQuery to show and hide floated elements. I don&#8217;t know if it&#8217;s a general JavaScript bug or a jQuery specific bug.
&#60;html&#62;
    &#60;head&#62;
        &#60;script [...]]]></description>
			<content:encoded><![CDATA[<p>IE6 is the Heart of Darkness.</p>
<p>Enough said.</p>
<p>But, for the sake of anybody who finds this by searching, the reason. Internet Explorer 6 (IE6) does not seem to take kindly to using jQuery to show and hide floated elements. I don&#8217;t know if it&#8217;s a general JavaScript bug or a jQuery specific bug.</p>
<pre>&lt;html&gt;
    &lt;head&gt;
        &lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"
                type="text/javascript"&gt;&lt;/script&gt;
        &lt;script type="text/javascript" charset="utf-8"&gt;
            $(function() {
                $('span').click(function() {
                    $('div').hide();
                    $('#'+this.id+'_content').show();
                });
            });
        &lt;/script&gt;
        &lt;style type="text/css"&gt;
            div   {width:100%; float:left;}
            p     {float:left;}
        &lt;/style&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;p&gt;
            &lt;span id="tab_1"&gt;T1&lt;/span&gt;
            &lt;span id="tab_2"&gt;T2&lt;/span&gt;
        &lt;/p&gt;
        &lt;div id="tab_1_content"&gt;
            &lt;p&gt;1&lt;/p&gt;
        &lt;/div&gt;
        &lt;div id="tab_2_content"&gt;
            &lt;p&gt;2&lt;/p&gt;
        &lt;/div&gt;
    &lt;/body&gt;
&lt;/html&gt;</pre>
<p>This code has a very simple display with a very simple functionality. Two tabs (T1, T2) toggle the display of two divs (#tab_1_content, #tab_2_content). On click of a tab, ALL DIVs are hidden (css display:none-ed). Then, the div associated with the clicked tab is un-hidden (css display:block-ed).</p>
<p>Simple. One (and only one) of the divs is showing all the time. Great. Except in IE6, when the first div is hidden, it still &#8220;takes up space&#8221;. The first div is hidden, display:none-ed. It isn&#8217;t supposed to affect flow. It isn&#8217;t supposed to take up space. It isn&#8217;t supposed to do ANYTHING. It&#8217;s GONE. Only it&#8217;s not. Because in IE6, the newly shown second div sits down below where the first div was.</p>
<p>Apparently, IE6 doesn&#8217;t handle hidden floating things well. It&#8217;s not universal (the page this code was distilled from had the exact same block repeated above it without the issue appearing). It might only break for the LAST floating element. I&#8217;m not sure. Clearing the floated elements fixed it in the real-life example this code was distilled from, but it doesn&#8217;t fix it here.</p>
<p>For anybody who doesn&#8217;t care. I understand. All I ask is that you upgrade your browser if you&#8217;re still using IE6. My recommendation would be <a href="http://www.getfirefox.com">Firefox</a>. Google&#8217;s <a href="http://www.google.com/chrome">Chrome</a> is nice also. If you&#8217;re attached to the Microsoft native browser, <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">IE8</a> is bearable. Mac users, you can&#8217;t accidentally use IE6. Congratulations. If I catch you using IE5Mac, I will find you, and you will pay.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ebynum.com/2009/11/15/heart-of-darkness/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pilgrim&#8217;s Progress</title>
		<link>http://www.ebynum.com/2007/11/19/pilgrims-progress/</link>
		<comments>http://www.ebynum.com/2007/11/19/pilgrims-progress/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 02:32:29 +0000</pubDate>
		<dc:creator>Ed</dc:creator>
		
		<category><![CDATA[Cooking]]></category>

		<category><![CDATA[Play]]></category>

		<category><![CDATA[brine]]></category>

		<category><![CDATA[fried turkey]]></category>

		<category><![CDATA[Good Eats]]></category>

		<category><![CDATA[turkey]]></category>

		<guid isPermaLink="false">http://www.ebynum.com/2007/11/19/pilgrims-progress/</guid>
		<description><![CDATA[This evening, I had the distinct pleasure of frying a turkey. I had never before undertaken such an endeavor, and I can only say that I am completely satisfied.
For any of you aspiring cooks out there - in addition to a turkey-frying setup, you&#8217;ll need one (1) large pot in which to &#8220;brine&#8221; the turkey. [...]]]></description>
			<content:encoded><![CDATA[<p>This evening, I had the distinct pleasure of frying a turkey. I had never before undertaken such an endeavor, and I can only say that I am completely satisfied.</p>
<p>For any of you aspiring cooks out there - in addition to a turkey-frying setup, you&#8217;ll need one (1) large pot in which to &#8220;brine&#8221; the turkey. I have talked to other turkey fryers, and many of them choose not to brine. I choose to brine.</p>
<p>Add almost enough hot water to submerge the turkey into the brining pot. Mix in one (1) pound of salt and one (1) pound of dark brown sugar. Yes, it sounds gross. Yes, it looks gross. That doesn&#8217;t matter. It will smell and taste delicious. Your turkey will turn out amazing. Heat the oil in your fryer to about 375ºF (this will take about twenty (20) to thirty (30) minutes), and then immerse the turkey fully. You&#8217;ll want to dry off the turkey first, to avoid bubbling and splattering, and then gently put it in the oil (safety note: turn off the burner before you add the turkey, and wait for the oil to settle before re-igniting).</p>
<p>Leave it alone for about three (3) minutes per pound (for those of you who aren&#8217;t good at math, this is about forty-five (45) minutes for a fifteen (15) pound turkey). The thickest parts of the turkey should reach about one hundred fifty-one (141º) degrees, which will reach about 161º thanks to carry-over cooking. Remove and allow to rest for about 30 minutes, and enjoy.</p>
<p>Simple. Delicious. Done.</p>
<p>Special thanks to John Breitmeier for pointing me to the Good Eats episode where Alton Brown discussed deep frying a turkey. For the most part, these directions follow his. Special thanks also to Alton Brown for making the Good Eats episode.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ebynum.com/2007/11/19/pilgrims-progress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Farewell to Arms</title>
		<link>http://www.ebynum.com/2007/10/09/a-farewell-to-arms/</link>
		<comments>http://www.ebynum.com/2007/10/09/a-farewell-to-arms/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 15:46:37 +0000</pubDate>
		<dc:creator>Ed</dc:creator>
		
		<category><![CDATA[Play]]></category>

		<category><![CDATA[Work]]></category>

		<category><![CDATA[brooks]]></category>

		<category><![CDATA[dead presidents]]></category>

		<category><![CDATA[frisbee]]></category>

		<category><![CDATA[ultimate]]></category>

		<guid isPermaLink="false">http://www.ebynum.com/2007/10/09/a-farewell-to-arms/</guid>
		<description><![CDATA[I just worked backstage for my first touring Broadway show (Hairspray) at the Brooks Center. We started the load-in at 4:30am and finished the strike and theatre restore around 10:00pm. That was only two days after a 9:30am call for the North Carolina Dance Theatre that finished around 11:00pm. My work for the majority of [...]]]></description>
			<content:encoded><![CDATA[<p>I just worked backstage for my first touring Broadway show (<em>Hairspray</em>) at the Brooks Center. We started the load-in at 4:30am and finished the strike and theatre restore around 10:00pm. That was only two days after a 9:30am call for the <em>North Carolina Dance Theatre</em> that finished around 11:00pm. My work for the majority of both of those calls was pulling linesets on the fly-rail - to the tune of 13 blisters on my left hand. It&#8217;s been a long weekend/week.</p>
<p><img src="http://www.ebynum.com/wp-content/wmptwh.jpg" alt="We Must Protect This White House" />In other (even better) news, I played my first game with <em><a href="http://buttonofdoom.com/dp" title="The Dead Presidents">The Dead Presidents</a></em> yesterday, after feeling &#8220;safe&#8221; playing since I finally have some timesheets in from my work at the Brooks. In my first game, I had one bad throw and one catch for a touchdown. We won the game about 14-6, and should make the playoffs. <strong>Hail to the Chief</strong> !</p>
<p>There were a couple of fairly small changes made to the layout/content with this update. First, there are now links to &#8220;tags&#8221; that I have made, and second, whole posts show up on the main page instead of just the first 100 words of each post. It just seems easier. Also, Jeromie (and maybe others) will appreciate that WordPress features a Comments RSS feed (that keeps track of recent comments) in addition to the Posts feed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ebynum.com/2007/10/09/a-farewell-to-arms/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Brave New World</title>
		<link>http://www.ebynum.com/2007/10/04/brave-new-world/</link>
		<comments>http://www.ebynum.com/2007/10/04/brave-new-world/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 16:21:42 +0000</pubDate>
		<dc:creator>Ed</dc:creator>
		
		<category><![CDATA[Job Search]]></category>

		<guid isPermaLink="false">http://www.ebynum.com/?p=4</guid>
		<description><![CDATA[As many of you know, I have been pursuing a &#8220;real&#8221; job for the last few weeks. Yesterday, that resulted in an informal interview at Erwin Penland in their Interactiv group. In short, I feel like it went well, but until I hear back from them, I&#8217;m going to keep my &#8220;public&#8221; commentary to a [...]]]></description>
			<content:encoded><![CDATA[<p>As many of you know, I have been pursuing a &#8220;real&#8221; job for the last few weeks. Yesterday, that resulted in an informal interview at <a target="_blank" href="http://www.erwinpenland.com" title="Erwin Penland">Erwin Penland</a> in their <a target="_blank" href="http://www.epinteractiv.com" title="Erwin Penland Interactiv">Interactiv</a> group. In short, I feel like it went well, but until I hear back from them, I&#8217;m going to keep my &#8220;public&#8221; commentary to a minimum. I&#8217;m not sure when I&#8217;ll be hearing back from them, but I&#8217;ll keep you (my minimal blog-reading public) posted as I do.</p>
<p>OK, today&#8217;s modification to the style of the blog is going to be a complete theme change (to give me somewhere better to start from) &#8230; so enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ebynum.com/2007/10/04/brave-new-world/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Great Expectations</title>
		<link>http://www.ebynum.com/2007/10/01/great-expectations/</link>
		<comments>http://www.ebynum.com/2007/10/01/great-expectations/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 20:34:42 +0000</pubDate>
		<dc:creator>Ed</dc:creator>
		
		<category><![CDATA[Meta-Posts]]></category>

		<category><![CDATA[promises]]></category>

		<guid isPermaLink="false">http://ebynum.com/downloading/wordpress/?p=3</guid>
		<description><![CDATA[Despite my best efforts to the contrary, I find myself submitting to the worldly demand for writing a blog. In an effort to keep both myself and my readers interested, I am going to extend my regular interaction here past the commonplace adding of content (aka &#8220;Posting&#8221;) into the creative and interesting modification of the [...]]]></description>
			<content:encoded><![CDATA[<p>Despite my best efforts to the contrary, I find myself submitting to the worldly demand for writing a blog. In an effort to keep both myself and my readers interested, I am going to extend my regular interaction here past the commonplace adding of content (aka &#8220;Posting&#8221;) into the creative and interesting modification of the site itself.</p>
<p>Each time I post, there will be some changes made to what you see. Let&#8217;s call it an experiment in my creativity.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ebynum.com/2007/10/01/great-expectations/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
