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

<channel>
	<title>jujubeans</title>
	<atom:link href="http://jujubeans.slicedcucumber.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://jujubeans.slicedcucumber.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Mon, 09 Jun 2008 16:01:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linkage</title>
		<link>http://jujubeans.slicedcucumber.com/?p=12</link>
		<comments>http://jujubeans.slicedcucumber.com/?p=12#comments</comments>
		<pubDate>Mon, 09 Jun 2008 16:01:55 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jujubeans.slicedcucumber.com/?p=12</guid>
		<description><![CDATA[http://www.physicalinterface.com/view/that-design-is-money
]]></description>
			<content:encoded><![CDATA[<p>http://www.physicalinterface.com/view/that-design-is-money</p>
]]></content:encoded>
			<wfw:commentRss>http://jujubeans.slicedcucumber.com/?feed=rss2&amp;p=12</wfw:commentRss>
		</item>
		<item>
		<title>Linkage</title>
		<link>http://jujubeans.slicedcucumber.com/?p=11</link>
		<comments>http://jujubeans.slicedcucumber.com/?p=11#comments</comments>
		<pubDate>Mon, 09 Jun 2008 16:01:32 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
		
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://jujubeans.slicedcucumber.com/?p=11</guid>
		<description><![CDATA[http://www.septemberindustry.co.uk/blog/?p=271
]]></description>
			<content:encoded><![CDATA[<p>http://www.septemberindustry.co.uk/blog/?p=271</p>
]]></content:encoded>
			<wfw:commentRss>http://jujubeans.slicedcucumber.com/?feed=rss2&amp;p=11</wfw:commentRss>
		</item>
		<item>
		<title>Gotta brush up on the scripting</title>
		<link>http://jujubeans.slicedcucumber.com/?p=10</link>
		<comments>http://jujubeans.slicedcucumber.com/?p=10#comments</comments>
		<pubDate>Sun, 16 Mar 2008 04:21:06 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jujubeans.slicedcucumber.com/?p=10</guid>
		<description><![CDATA[A few nights ago I spent an embarassingly long time working out this little script just b.c. of that damn ie6.  I had thought to do it with sibling selectors. Interesting idea but there didn&#8217;t seem to be any good, clear javascript snippets for mimicking css sibling selector behavior.
Anyways, this is the script. It [...]]]></description>
			<content:encoded><![CDATA[<p>A few nights ago I spent an embarassingly long time working out this little script just b.c. of that damn ie6.  I had thought to do it with sibling selectors. Interesting idea but there didn&#8217;t seem to be any good, clear javascript snippets for mimicking css sibling selector behavior.</p>
<p>Anyways, this is the script. It works with a variation on a <a href="http://www.cssplay.co.uk/menus/doors_drop_line_three.html">CSS menu </a> so that onmouseover of the li whose parent ul is &#8220;select&#8221;, it grabs the parent&#8217;s parent, picks the parent&#8217;s kid (aka the sibling of &#8220;select&#8221;) that is named &#8220;current&#8221; and changes the class name.</p>
<p>Just today, I found <a href="http://www.3point7designs.com/blog/2007/12/22/advanced-css-menu-trick/">this</a> which points out the behavior <a href="http://www.xs4all.nl/~peterned/htc/csshover.htc">whatever:hover</a> (somewhat like the <a href="http://www.twinhelix.com/css/iepngfix/">png fix</a>). I remember hearing about whatever:hover but forgot of course and I think it&#8217;s a very good thing to not forget.  If not for ie6 and the need to not have the current tab itself disappear when it is hovered over it could&#8217;ve been this simple:</p>
<pre>#nav:hover ul.current a,</pre>
<pre>#nav:hover ul.current a span {background:none;}</pre>
<p>Instead I&#8217;ve got all this junk in my header:</p>
<p><code>&lt;script type="text/javascript"&gt;<br />
&lt;!--//--&gt;&lt;![CDATA[//&gt;&lt;!--<br />
function menuhover_currentoff() {<br />
var list = document.getElementById("nav").getElementsByTagName("LI");<br />
for (var i=0; i&lt;list.length; i++) {<br />
list[i].onmouseover=function() {<br />
if (this.parentNode.className==&#8221;select&#8221;){<br />
var list_uncles = document.getElementById(&#8221;nav&#8221;).getElementsByTagName(&#8221;UL&#8221;);<br />
for (var j=0; j&lt;list_uncles.length; j++){<br />
if(list_uncles[j].className==&#8221;current&#8221;){<br />
list_uncles[j].className=list_uncles[j].className.replace(&#8221;current&#8221;, &#8220;current_over&#8221;);<br />
}<br />
}<br />
}<br />
}<br />
list[i].onmouseout=function() {<br />
var list_uncles = document.getElementById(&#8221;nav&#8221;).getElementsByTagName(&#8221;UL&#8221;);<br />
for (var j=0; j&lt;list_uncles.length; j++){<br />
if(list_uncles[j].className==&#8221;current_over&#8221;){<br />
list_uncles[j].className=list_uncles[j].className.replace(&#8221;current_over&#8221;, &#8220;current&#8221;);<br />
}<br />
}<br />
}<br />
}<br />
}<br />
window.onload = menuhover_currentoff;<br />
//&#8211;&gt;&lt;!]]&gt;<br />
&lt;/script&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://jujubeans.slicedcucumber.com/?feed=rss2&amp;p=10</wfw:commentRss>
		</item>
		<item>
		<title>Linkage</title>
		<link>http://jujubeans.slicedcucumber.com/?p=9</link>
		<comments>http://jujubeans.slicedcucumber.com/?p=9#comments</comments>
		<pubDate>Wed, 12 Mar 2008 16:10:36 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
		
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://jujubeans.slicedcucumber.com/?p=9</guid>
		<description><![CDATA[HTML email design
SVN workcycle
RSS feed styling with CSS and XSLT, and here
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sitepoint.com/article/principles-beautiful-html-email">HTML email design</a></p>
<p><a href="http://svnbook.red-bean.com/en/1.4/svn.tour.cycle.html">SVN workcycle</a></p>
<p><a href="http://mondaybynoon.com/2006/08/14/beginning-to-style-your-rss-feed/">RSS feed styling with CSS and XSLT</a>, and <a href="http://www.xefteri.com/articles/show.cfm?id=24">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jujubeans.slicedcucumber.com/?feed=rss2&amp;p=9</wfw:commentRss>
		</item>
		<item>
		<title>Linkage</title>
		<link>http://jujubeans.slicedcucumber.com/?p=8</link>
		<comments>http://jujubeans.slicedcucumber.com/?p=8#comments</comments>
		<pubDate>Fri, 29 Feb 2008 17:10:55 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
		
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://jujubeans.slicedcucumber.com/?p=8</guid>
		<description><![CDATA[Information Software and the Graphical Interface [via kottke].
Read this a long time (year?) ago and the magic of google found it again for me. Interesting analysis/redesign of Amazon, Soutwest, Yahoo movies components,
]]></description>
			<content:encoded><![CDATA[<p><a href="http://worrydream.com/MagicInk/">Information Software and the Graphical Interface</a> [via <a href="http://www.kottke.org">kottke</a>].</p>
<p>Read this a long time (year?) ago and the magic of google found it again for me. Interesting analysis/redesign of Amazon, Soutwest, Yahoo movies components,</p>
]]></content:encoded>
			<wfw:commentRss>http://jujubeans.slicedcucumber.com/?feed=rss2&amp;p=8</wfw:commentRss>
		</item>
		<item>
		<title>Linkage</title>
		<link>http://jujubeans.slicedcucumber.com/?p=7</link>
		<comments>http://jujubeans.slicedcucumber.com/?p=7#comments</comments>
		<pubDate>Fri, 29 Feb 2008 04:51:55 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
		
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://jujubeans.slicedcucumber.com/?p=7</guid>
		<description><![CDATA[LOL this is important research and its incredible that we have access to it: iphone stopwatch hits 1000 hrs, [via Daring Fireball]
]]></description>
			<content:encoded><![CDATA[<p>LOL this is important research and its incredible that we have access to it: <a href="http://www.youtube.com/watch?v=ke9kxb_H-ac">iphone stopwatch hits 1000 hrs</a>, [via <a href="http://daringfireball.net/">Daring Fireball</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://jujubeans.slicedcucumber.com/?feed=rss2&amp;p=7</wfw:commentRss>
		</item>
		<item>
		<title>Awesome pussy cat</title>
		<link>http://jujubeans.slicedcucumber.com/?p=6</link>
		<comments>http://jujubeans.slicedcucumber.com/?p=6#comments</comments>
		<pubDate>Fri, 29 Feb 2008 03:41:02 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jujubeans.slicedcucumber.com/?p=6</guid>
		<description><![CDATA[
I just saw this on TV and thought it was So Funny. It&#8217;s such a perfect combination of ridiculous Michael Bay + ridiculous explosions + ridiculous Wes Anderson-ness + ridiculous shilling.Maybe if they just make commercials interesting, they wouldn&#8217;t have to force people to watch the with fast-forward disabled onDemand.
Here&#8217;s another I saw tonight:

]]></description>
			<content:encoded><![CDATA[<p><object width="325" height="255"><param name="movie" value="http://www.youtube.com/v/MiHsxQJ9ZOo"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/MiHsxQJ9ZOo" type="application/x-shockwave-flash" wmode="transparent" width="325" height="255"></embed></object></p>
<p>I just saw this on TV and thought it was So Funny. It&#8217;s such a perfect combination of ridiculous Michael Bay + ridiculous explosions + ridiculous <a href="http://youtube.com/watch?v=spCknVcaSHg">Wes Anderson-ness</a> + ridiculous shilling.Maybe if they just make commercials interesting, they wouldn&#8217;t have to force people to watch the with <a href="http://www.nytimes.com/2008/02/25/business/media/25abc.html">fast-forward disabled</a> onDemand.</p>
<p>Here&#8217;s another I saw tonight:</p>
<p><object width="325" height="255"><param name="movie" value="http://www.youtube.com/v/lZr2nlOQiks"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/lZr2nlOQiks" type="application/x-shockwave-flash" wmode="transparent" width="325" height="255"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://jujubeans.slicedcucumber.com/?feed=rss2&amp;p=6</wfw:commentRss>
		</item>
		<item>
		<title>note to self: check out this CSS book</title>
		<link>http://jujubeans.slicedcucumber.com/?p=5</link>
		<comments>http://jujubeans.slicedcucumber.com/?p=5#comments</comments>
		<pubDate>Fri, 29 Feb 2008 03:31:16 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jujubeans.slicedcucumber.com/?p=5</guid>
		<description><![CDATA[I still have all sorts of love for &#8220;the green book&#8221; (CSS Mastery) as a reference but I downloaded the sample chapter from &#8220;The Art &#38; Science of CSS&#8221; over the weekend and it seems pretty solid. I only skimmed through it  and thought it looked nice but a) I see no need to [...]]]></description>
			<content:encoded><![CDATA[<p>I still have all sorts of love for &#8220;the green book&#8221; (<a href="http://www.cssmastery.com/">CSS Mastery</a>) as a reference but I downloaded the sample chapter from &#8220;<a href="http://www.sitepoint.com/books/cssdesign1/">The Art &amp; Science of CSS</a>&#8221; over the weekend and it seems pretty solid. I only skimmed through it  and thought it looked nice but a) I see no need to use lists for form elements and b) it doesn&#8217;t seem to mind taking up lots of space &#8212; that is, lots of half-page screenshots, large blocks of code, etc.</p>
<p>I hate having reference books I never read, much less &#8220;reference&#8221; so I&#8217;d like to see it in the person before adding it to the bookshelf.  Also I rather wish they had included a chapter that was a little more &#8220;art&#8221; and utilized the advertised &#8220;full color pictures&#8221; more&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://jujubeans.slicedcucumber.com/?feed=rss2&amp;p=5</wfw:commentRss>
		</item>
		<item>
		<title>you know how you read something obscure and then suddenly hear references to it ALL THE TIME?</title>
		<link>http://jujubeans.slicedcucumber.com/?p=3</link>
		<comments>http://jujubeans.slicedcucumber.com/?p=3#comments</comments>
		<pubDate>Wed, 27 Feb 2008 20:29:28 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jujubeans.slicedcucumber.com/?p=3</guid>
		<description><![CDATA[Well it kinda happened like that except it was FIVE semi-obscure html/css things that about 48 hrs later, I was suddenly questioned on about ALL of them.
An example:
TT: &#8220;I have a form where there are 4 options and the owner of the form wants two of the options to appear and be inactive. I think [...]]]></description>
			<content:encoded><![CDATA[<p>Well it kinda happened like that except it was FIVE semi-obscure html/css things that about 48 hrs later, I was suddenly questioned on about ALL of them.</p>
<p>An example:</p>
<p>TT: &#8220;I have a form where there are 4 options and the owner of the form wants two of the options to appear and be inactive. I think that would mean a span containing grey text and is there a way to create an unclickable checkbox form control?&#8230;Oh yeah, what would you call the span? Inactive?&#8221;</p>
<p>24 HRS BEFORE: I was googling for the Inman article on <a href="http://shauninman.com/archive/2006/11/02/text_inputs_on_safari">safari text inputs</a> and instead somehow found &#8220;<a href="http://www.askthecssguy.com/2007/05/shawn_asks_the_css_guy_about_s_1.html">Shawn asks the CSS guy about styling disabled text inputs</a>&#8220;. Whatever, right? I&#8217;ve never used it before and probably will never hear of the <a href="http://www.w3.org/TR/html4/interact/forms.html#adef-disabled">disabled</a> attribute again&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://jujubeans.slicedcucumber.com/?feed=rss2&amp;p=3</wfw:commentRss>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://jujubeans.slicedcucumber.com/?p=1</link>
		<comments>http://jujubeans.slicedcucumber.com/?p=1#comments</comments>
		<pubDate>Sat, 16 Feb 2008 10:51:08 +0000</pubDate>
		<dc:creator>Judy</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Okay, I&#8217;m throwing in the towel. I give up &#8212; I am no longer resisting the inevitability of having a blog. Though I love the web, I might be a bit of a snobbish Luddite at heart and this whole thing where anyone can just up and publish their often banal and trivial musings wasn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, I&#8217;m throwing in the towel. I give up &#8212; I am no longer resisting the inevitability of having a blog. Though I love the web, I might be a bit of a snobbish Luddite at heart and this whole thing where <em>anyone</em> can just up and publish their often banal and trivial musings wasn&#8217;t really a bandwagon I wanted to be on.</p>
<p>Still, I hear that <a href="http://www.darowski.com/tracesofinspiration/2007/03/06/the-blog-is-the-new-resume/">blogs are the new resume</a> and it&#8217;s becoming so there&#8217;s just too much face lost when I sheepishly tell people that, yes I make webpages but no, I don&#8217;t have a webpage. Also it&#8217;s damn hard to keep track of all this stuff on the internet that I read.</p>
<p>So hello world, here I go throwing my lot in with the &#8220;bloggers&#8221;.*</p>
<p>*But I will <strong>not</strong> compromise on having a MySpace page.  :shudder:</p>
]]></content:encoded>
			<wfw:commentRss>http://jujubeans.slicedcucumber.com/?feed=rss2&amp;p=1</wfw:commentRss>
		</item>
	</channel>
</rss>
