<?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>Brilla.org &#187; Work</title>
	<atom:link href="http://brilla.org/archives/category/work/feed" rel="self" type="application/rss+xml" />
	<link>http://brilla.org</link>
	<description>Too Much Rage</description>
	<lastBuildDate>Wed, 20 Jan 2010 23:27:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>An IE6 bug dissected: iFrames, IE7.js, and more dumb things Microsoft</title>
		<link>http://brilla.org/archives/2010/01/an-ie6-bug-dissected-iframes-ie7-js-and-more-dumb-things-microsoft</link>
		<comments>http://brilla.org/archives/2010/01/an-ie6-bug-dissected-iframes-ie7-js-and-more-dumb-things-microsoft#comments</comments>
		<pubDate>Wed, 20 Jan 2010 23:27:40 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[2004 bugs]]></category>
		<category><![CDATA[cancerous software]]></category>
		<category><![CDATA[frames]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[ie7.js]]></category>
		<category><![CDATA[iframe]]></category>

		<guid isPermaLink="false">http://brilla.org/?p=110</guid>
		<description><![CDATA[We don&#8217;t do markup or CSS. We take the code you give us and chop it up with some XSLT, so that it wraps on top of our XML-based content management system beautifully. (If you are still tuning in then you&#8217;re definitely a web developer on the hunt for a bug fix&#8230; keep reading) There&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ingeniux.com">We</a> don&#8217;t do markup or CSS. We take the code you give us and chop it up with some XSLT, so that it wraps on top of our XML-based content management system beautifully. (If you are still tuning in then you&#8217;re definitely a web developer on the hunt for a bug fix&#8230; keep reading)</p>
<p>There&#8217;s the IE6 problem. It renders everything that<strong> should</strong> be beautiful to look like absolute ass. Thankfully, that ain&#8217;t our problem.</p>
<p>But, for times when it <strong>is</strong> your problem, <a title="Dean Edwards" href="http://dean.edwards.name/">someone smarter than me</a> came up with <a title="ie7-js on Google Code" href="http://code.google.com/p/ie7-js/">a brilliant solution to this</a>. IE7.js a workaround to get IE6 to play nicely like it should. Just drop it in and it does the rest. Done and done.</p>
<p>Recently a client delivered some XHTML/CSS making use of IE7.js. Done and done; set it and forget it.</p>
<p>So we did. Nobody actually checked out their finished site in IE6 — frankly, because no one with a right mind actually uses that browser.</p>
<p>But, the client&#8217;s clients do. They started getting emails that everything was ugly in that awful broken old excuse for a browser.</p>
<p>Henceforth, the IE6 problem became <span style="text-decoration: underline;">my</span> problem.</p>
<p>So what changed? Assuming we kept all that intact in the process (we did), why then, would a demo page with bogus content look fine, but once it&#8217;s filled out with living, breathing pages and news stories, does everything blow up?</p>
<p>JavaScript error. Hm: <em> &#8216;v&#8217; is null or not an object.</em></p>
<p><a href="http://brilla.org/wordpress/wp-content/uploads/2010/01/v_is_null.jpg"><img class="alignnone size-full wp-image-111" title="v_is_null" src="http://brilla.org/wordpress/wp-content/uploads/2010/01/v_is_null.jpg" alt="v is null or not an object" width="437" height="290" /></a></p>
<p>A little Googling reveals <a title="IE7.js and iframes Options" href="http://groups.google.com/group/ie7-js/browse_thread/thread/ee0445214469d567">a possible culprit</a>. Apparently, IE7.js starts acting up when frames are involved. Our CMS solution does make unabashed use of iframes.</p>
<p>So, I make the code changes mentioned in that message. Save, dump cache, and hit F5. A new error message appears:</p>
<p><em>Internet Explorer cannot open the Internet site http://&#8230;</em></p>
<p><em>Operation aborted.<br />
</em></p>
<p><a href="http://brilla.org/wordpress/wp-content/uploads/2010/01/operation_aborted1.jpg"><img class="alignnone size-full wp-image-113" title="Operation Aborted" src="http://brilla.org/wordpress/wp-content/uploads/2010/01/operation_aborted1.jpg" alt="Internet Explorer cannot open the Internet site ... / Operation aborted" width="473" height="133" /></a></p>
<p>Seriously? After that, my web page defaults to a yucky <strong>The page cannot be displayed</strong> screen. Ick.</p>
<p>More Googling and I find myself skeptically glossing over <a title="What Happened to Operation Aborted?" href="http://blogs.msdn.com/ie/archive/2008/04/23/what-happened-to-operation-aborted.aspx">a page on MSDN</a>. And there she is:</p>
<h3>2. Adding the <a href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-defer">defer</a> boolean attribute to the script block (this defers execution of the script content until parsing is complete)</h3>
<p>I&#8217;d heard of this &#8216;defer&#8217; thing before. It&#8217;s a stupid IE-only attribute that instructs the browser to not load the script until the page is done rendering. Think of it as one big $(document).ready().</p>
<p>So I add &#8221; defer&#8221; to my opening &lt;script&gt; tag. Error messages gone. Blank screens gone. Page is no longer looking yucko in IE6, it renders like it should. Everything just works™.</p>
<h2>In conclusion (<acronym title="Too Long, Didn't Read">TL, DR</acronym>)</h2>
<p>If your IE7.js is acting a fool on you, put <code>defer</code> to work:</p>
<pre><code>&lt;!--[if lt IE 7]&gt;
&lt;script src="http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE7.js" type="text/javascript" <strong>defer="defer"</strong>&gt;&lt;/script&gt;
&lt;![endif]--&gt;</code></pre>
<p>Set it, and forget it.</p>
]]></content:encoded>
			<wfw:commentRss>http://brilla.org/archives/2010/01/an-ie6-bug-dissected-iframes-ie7-js-and-more-dumb-things-microsoft/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010: The Year of the Better</title>
		<link>http://brilla.org/archives/2009/12/2010-the-year-of-the-better</link>
		<comments>http://brilla.org/archives/2009/12/2010-the-year-of-the-better#comments</comments>
		<pubDate>Tue, 22 Dec 2009 04:40:12 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Thinking]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://brilla.org/?p=84</guid>
		<description><![CDATA[The last couple years have been about things cheap, fast, and accessible. Google and Wikipedia cemented themselves as de-facto brain extensions for anyone working on the web. Twitter became the 140 character venue for the A.D.D. blogger. Life hacks, lists of 46 best blanks to do blank. Even a broader sense of advertising: getting ripped [...]]]></description>
			<content:encoded><![CDATA[<p>The last couple years have been about things cheap, fast, and accessible. Google and Wikipedia cemented themselves as de-facto brain extensions for anyone working on the web. Twitter became the 140 character venue for the <acronym title="Attention Deficit Dis--oh hey look over there...">A.D.D.</acronym> blogger. Life hacks, lists of 46 best blanks to do blank. Even a broader sense of advertising: getting ripped in two weeks with one simple rule. Lose weight &amp; get rich fast have been around for a while now, but you see what I&#8217;m getting at.</p>
<p>But there&#8217;s a new trend we&#8217;re seeing here. Lots of brilliant web thinkers (and even <a href="http://twitter.com/johncmayer/status/6875383885">celebrities-turned-Twitter allstars</a>) are turning a new leaf. <a title="Project52" href="http://project52.info/">Project52</a> insists we start blogging again and revive this mostly-dead medium. Guys like <a href="http://twitter.com/anildash/status/5030440040">Anil</a>, <a title="Merlin Mann - &quot;Makebelieve Help, Old Butchers, and Figuring Out Who You Are (For Now)&quot;" href="http://www.43folders.com/2009/10/22/who-you-are">Merlin</a> and <a title="Seth Godin - &quot;Quieting the Lizard Brain&quot;" href="http://the99percent.com/videos/5822/seth-godin-quieting-the-lizard-brain">Seth</a> are beckoning us to reach a little deeper and put a lot of creative force and focus into what you produce. Derek <a title="Derek Featherstone - &quot;What Gives?&quot;" href="http://boxofchocolates.ca/archives/2009/10/01/what-gives/">dissects burnout beautifully</a>. My buddy Jay has kindly asked all the hack get-rich-on-bullshit-content people to <a title="Jay Hathaway - &quot;Cold Content Farm&quot;" href="http://jayhathaway.com/2009/12/14/cold-content-farm/">leave his internet alone</a>. Rob Goodlatte <a href="http://twitter.com/rsg/status/2907279882">preaches it</a>. Even Mister Santa Maria&#8217;s <a title="Mighty" href="http://madebymighty.com/">new manifesto </a>is fucking righteous.</p>
<p>I am thrilled to see a slow shift away from the hyper-multi-tasking life. From spreading ourselves so thin; we&#8217;ve done that. I feel like we as a small society of  designers, developers and nerds, have proven to ourselves that we can juggle 528 things at once. But also, we&#8217;re going to start getting picky and turning away the 524 things we <strong>don&#8217;t</strong> want to do, and start focusing the handful of engaging projects where our passion lies.</p>
<p><strong>THEN.</strong> Oh man. Big beautiful nasty things are going to start surfacing. Geeks being geeks for the sake of being geeks, and not just to fulfill a stakeholder&#8217;s wish or some bloated business objective, man. The Pictorys, and the Favrds (bless its little heart); the stuff <a title="Elliot Jay Stocks - &quot;A Pet Project is For Life, Not Just for Christmas&quot; on 24 ways" href="http://24ways.org/2009/a-pet-project-is-for-life-not-just-for-christmas">EJS is talking about</a>.</p>
<p>And, as I wrap up this post now, I see Jina writing on<a title="Jina Bolton - &quot;Make Out Like a Bandit&quot; on 24 ways" href="http://24ways.org/2009/make-out-like-a-bandit"> a very similar theme</a>.</p>
<p>I have seen the future, people. It is lovely.</p>
]]></content:encoded>
			<wfw:commentRss>http://brilla.org/archives/2009/12/2010-the-year-of-the-better/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Raging</title>
		<link>http://brilla.org/archives/2009/12/more-raging</link>
		<comments>http://brilla.org/archives/2009/12/more-raging#comments</comments>
		<pubDate>Tue, 08 Dec 2009 08:11:06 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://brilla.org/?p=80</guid>
		<description><![CDATA[Too much going on, gang. I can&#8217;t not blog. Pleasantries first: since we last spoke, I have moved again. This will be fourth time in the last eighteen months, and should be my last for a while. Most notably, it solidifies that I&#8217;ll be in Seattle for a while. Good Christ, I love this city. Learning. [...]]]></description>
			<content:encoded><![CDATA[<p>Too much going on, gang. I can&#8217;t not blog.</p>
<p>Pleasantries first: since we last spoke, I have moved <strong>again</strong>. This will be <em>fourth</em> time in the last eighteen months, and should be my last for a while. Most notably, it solidifies that I&#8217;ll be in Seattle for a while. Good Christ, I love this city.</p>
<p>Learning. I&#8217;ve bought some fifteen books in the last two weeks. Design. Novels. Cocktail recipes. Big photo essays. A visual guide to dream interpretations. A few <strong>very</strong> trendy web-related topics (Ruby on Rails, Django, and mobile design). <a href="http://www.shelfari.com/bahoo">Follow along</a>, if you want. It&#8217;s more fun if <a title="Shelfari - Sign Up" href="http://www.shelfari.com/register.aspx">you participate too</a>, though.</p>
<p>Work is blowing up right now in a big way. I built <a href="http://www.illumina.com/">the site</a> for Forbes&#8217;<a href="http://www.forbes.com/2009/01/29/illumina-biotech-equities-technology-breakthroughs-0129_illumina.html"> #1 Fastest Growing Tech Company</a>. But there&#8217;s more coming that I either don&#8217;t want to jinx, or can&#8217;t blog about yet. Lotta opportunity before me.</p>
<p>Part of me feels like I&#8217;m blowing up, too: quite literally, combusting. There is so much ambition, desire, and passion flowing through me. Sometimes I feel like my skin is going to rupture and just spew all of this energy all over the hardwood floor.</p>
<p>Thankfully, I blog instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://brilla.org/archives/2009/12/more-raging/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rush IGX</title>
		<link>http://brilla.org/archives/2009/08/rush-igx</link>
		<comments>http://brilla.org/archives/2009/08/rush-igx#comments</comments>
		<pubDate>Thu, 27 Aug 2009 03:38:29 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[career]]></category>
		<category><![CDATA[GTD]]></category>

		<guid isPermaLink="false">http://brilla.org/wordpress/?p=79</guid>
		<description><![CDATA[Good news: I am up for promotion in a few weeks. It is understood that I am deadly dangerous with technology. But the folks at work are discovering that I also have these soft skills: chiefly, talking to people. So, they are moving me into Sales Engineering. I am going to become the technical guru, [...]]]></description>
			<content:encoded><![CDATA[<p>Good news: I am up for promotion in a few weeks. It is understood that I am deadly dangerous with technology. But the folks at work are discovering that I also have these soft skills: chiefly, talking to people. So, they are moving me into Sales Engineering. I am going to become the technical guru, breaking down the details for the people who write the checks.</p>
<p>In preparation, the next month or two are my veritable &#8216;rush weeks&#8217; at work. Jim&#8217;s goal is to, &#8220;throw as much weird shit at [me]&#8221; as he can. Which is good on a couple levels:</p>
<ol>
<li><strong>Stress testing</strong>. How does Johnny C balance his current workload with these additional new duties? Jury&#8217;s still out.</li>
<li><strong>Cramming</strong>. Soon I&#8217;m going to be expected to be a product genius on our software. So it&#8217;s good to get exposure to the many strange facets of the software we ship out to customers. I need to know my stuff.</li>
</ol>
<p>Admittedly, last week was absolute hell. This week I realized I gotta buck up, manage people and get my stuff done. Been reading a lotta that <a title="Inbox Zero by Merlin Mann" href="http://inboxzero.com/">Merlin Mann bullhonkey</a>. I check my email twice(!) a day, and I am loving it. Staying busy and feeling good about it.</p>
<p>This is really a completely new direction, too. My major (MIS) is perfectly suited for this, but every role I have ever had has been strictly development. Ain&#8217;t no going back to programming after I make this jump. But, maybe that&#8217;s a great thing for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://brilla.org/archives/2009/08/rush-igx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
