<?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>rubberflat</title>
	<atom:link href="http://rubberflat.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rubberflat.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sun, 11 Jul 2010 17:55:20 +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>IE7 Gradient Filter Ignored on Block Elements</title>
		<link>http://rubberflat.com/2010/07/ie7-gradient-filter-ignored-on-block-elements/</link>
		<comments>http://rubberflat.com/2010/07/ie7-gradient-filter-ignored-on-block-elements/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 17:55:20 +0000</pubDate>
		<dc:creator>eug</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[ie filter]]></category>

		<guid isPermaLink="false">http://rubberflat.com/?p=83</guid>
		<description><![CDATA[The fancy CSS3 properties available in webkit and firefox (such as border-radius, text-shadow, box-shadow and browser generated gradients) that people seem to want so much on their sites tend to make an identical user experience across all browsers near to impossible without bringing unnecessary images (unnecessary for modern browsers) back into the layout. If an [...]]]></description>
			<content:encoded><![CDATA[<p>The fancy CSS3 properties available in webkit and firefox (such as border-radius, text-shadow, box-shadow and browser generated gradients) that people seem to want so much on their sites tend to make an identical user experience across all browsers near to impossible without bringing unnecessary  images (unnecessary for modern browsers) back into the layout. If an identical experience is not desired, or perhaps not in the budget, a reasonable degradation of the eye-candy is expected and, for the most part, can come out usable and in good taste.</p>
<p>IE (&lt;=8), naturally being the most common cause of acute sharp pain, is the browser to suffer most from new features of modern browsers. Surprisingly, however, the browser has been outfitted with a gradient generator since version 5.5 (circa June 2000.) It is not robust, by any means, but can help smooth some of the irregularities between the intended layout and the IE rendering of it.</p>
<p>To the point: IE7 does not render gradient elements properly in some cases. The gradient filter (and perhaps other filters as well &#8211; will need to test that) is not rendered for bock elements, <code>&lt;div&gt;</code>, <code>&lt;h1&gt;</code>, <code>&lt;p&gt;</code> tags, that do not have an explicit width set in CSS. Both IE7 and IE8 will not render a gradient on an <code>inline</code> element, but will for an <code>inline-block</code>.</p>
<p style="text-align: center;"><img class="size-full wp-image-88 aligncenter" title="Demo Screenshot" src="http://rubberflat.com/wp-content/uploads/2010/07/post2eg.png" alt="" /></p>
<p>If, for whatever masochistic reason, you are using IE7 or have it on hand you can <a href="/demo/ie7-gradients">look at a gradient demo</a> that shows the IE7 gradient issue and a potential solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://rubberflat.com/2010/07/ie7-gradient-filter-ignored-on-block-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Refresh jQuery UI Droppable Area After Shifting Position</title>
		<link>http://rubberflat.com/2010/06/refresh-jquery-ui-droppable-area-after-shifting-position/</link>
		<comments>http://rubberflat.com/2010/06/refresh-jquery-ui-droppable-area-after-shifting-position/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 07:05:23 +0000</pubDate>
		<dc:creator>eug</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[quirk]]></category>

		<guid isPermaLink="false">http://rubberflat.com/?p=78</guid>
		<description><![CDATA[I&#8217;ve recently been adding drag and drop functionality, using jQuery UI&#8217;s draggable and droppable interactions, to a website with a potentially large number of listings on each page. In order to provide a good user experience it was decided that the drop area should be moved when a drag operation starts so our users aren&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently been adding drag and drop functionality, using jQuery UI&#8217;s <a href="http://jqueryui.com/demos/draggable/" target="_blank">draggable</a> and  <a href="http://jqueryui.com/demos/droppable/" target="_blank">droppable</a> interactions, to a website with a potentially large number of listings on each page. In order to provide a good user experience it was decided that the drop area should be moved when a drag operation starts so our users aren&#8217;t left dangling the draggable at the top of the page as it slowly scrolls upwards to the drop area.</p>
<p>This worked great from a UI and UX perspective, but given that the drag and drop was initialized with the drop area at the top of the page the drop only worked properly if the top of the drop area lined up with the top of the drop receiver [Fig. 1]. Shifting the drop area after the fact left the drop receiver unaltered, causing it to appear inactive [Fig. 2]. Or worse, if the shift was minimal, the drop area would overlap the drop receiver in an incorrect area and cause improper results (if there are a number of distinct listeners in the drop receiver area.) [Fig. 3]</p>
<p style="text-align: center;"><img class="size-full wp-image-80 aligncenter" title="post1eg" src="http://rubberflat.com/wp-content/uploads/2010/06/post1eg.png" alt=""  /></p>
<p style="text-align: left;">An attempt to destroy and re-initialize the drop zone using both <code>$(droppables).droppable('disable');$(droppables).droppable('enable');</code> and <code>$(droppables).droppable('destroy');$(droppables).droppable();</code> did not have the desired effect &#8211; the position of the drop receiver had not been refreshed.</p>
<p>An option would be to use <code>refreshPositions</code> on a draggable object, but refreshing the positions on every mouse move would be a little much. However, peeking under the hood in <code>refreshPositions</code> reveals a <code>$.ui.ddmanager.prepareOffsets</code> function that takes two parameters. The first is either a collection of elements returned by a jQuery selector (ones already initialized for dragging) or a set of elements internal to the drag and drop plug-ins. Since the function is called externally, we&#8217;ll make use of the former:</p>
<pre>
$('.drag-elt').draggble({
    start: function(e, ui) {
        $.ui.ddmanager.prepareOffsets(
            $(e.target).data('draggable'), e
        );
    }
});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://rubberflat.com/2010/06/refresh-jquery-ui-droppable-area-after-shifting-position/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RF Doodle</title>
		<link>http://rubberflat.com/2010/06/rf-doodle/</link>
		<comments>http://rubberflat.com/2010/06/rf-doodle/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 07:27:02 +0000</pubDate>
		<dc:creator>eug</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[draw]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://rubberflat.com/?p=75</guid>
		<description><![CDATA[Simple flash doodle applet.]]></description>
			<content:encoded><![CDATA[<p>An extremely rudimentary sketching/drawing/doodling app.<span id="more-75"></span> Black ink on light paper. The user is not given a choice of colors because.. well, photoshop and gimp and etc exist; this app constrains the user, forcing a specific type of result.</p>
<p>Brush and eraser size can be changed with the slider bar on the right, or honed in with the 1(increase size) and 2(decrease size) keys. The 3 key switches between eraser and brush, and the 4 key clears the screen.</p>
<p>Currently, pressing the save button will produce a .png image file with your sketch in a new window ‚Äì if you want to keep it, you should save that image, because it is gone once the window is closed.<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://rubberflat.com/doodle/rfdr.swf" /><embed type="application/x-shockwave-flash" width="550" height="400" src="http://rubberflat.com/doodle/rfdr.swf"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://rubberflat.com/2010/06/rf-doodle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Branding</title>
		<link>http://rubberflat.com/2010/06/branding/</link>
		<comments>http://rubberflat.com/2010/06/branding/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 07:39:13 +0000</pubDate>
		<dc:creator>eug</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://rubberflat.com/?p=66</guid>
		<description><![CDATA[Logo designs]]></description>
			<content:encoded><![CDATA[<p>A rather short collection of logo designs created for businesses and projects.<span id="more-66"></span></p>
<p>
<img src="http://rubberflat.com/wp-content/uploads/2010/06/logocarrie.png" alt="" title="logo.cc1" class="alignnone size-full wp-image-67" /><img src="http://rubberflat.com/wp-content/uploads/2010/06/carrie2-e1275669922833.png" alt="" title="carrie2" width="389" height="155" class="alignnone size-full wp-image-74" /><img src="http://rubberflat.com/wp-content/uploads/2010/06/lisearch.png" alt="" title="lisearch" class="alignnone size-full wp-image-73" /></p>
]]></content:encoded>
			<wfw:commentRss>http://rubberflat.com/2010/06/branding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Club Flyers</title>
		<link>http://rubberflat.com/2010/06/club-flyers/</link>
		<comments>http://rubberflat.com/2010/06/club-flyers/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 07:09:57 +0000</pubDate>
		<dc:creator>eug</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[advert]]></category>
		<category><![CDATA[contextfreeart]]></category>
		<category><![CDATA[fliers]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://rubberflat.com/?p=63</guid>
		<description><![CDATA[A couple of fliers created to promote events, generally of Dutch origin, in and around San Francisco.]]></description>
			<content:encoded><![CDATA[<p>A couple of fliers created to promote events<span id="more-63"></span>, generally of Dutch origin, in and around San Francisco.<br />
<img src="http://rubberflat.com/wp-content/uploads/2010/06/flyer1.png" alt="" title="flyer1" width="429" height="300" class="alignnone size-full wp-image-64" /></p>
<p><img src="http://rubberflat.com/wp-content/uploads/2010/06/flyer3.png" alt="" title="flyer3" width="429" height="300" class="alignnone size-full wp-image-65" /></p>
]]></content:encoded>
			<wfw:commentRss>http://rubberflat.com/2010/06/club-flyers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Plains Site</title>
		<link>http://rubberflat.com/2010/06/great-plains-web/</link>
		<comments>http://rubberflat.com/2010/06/great-plains-web/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 06:50:08 +0000</pubDate>
		<dc:creator>eug</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://rubberflat.com/?p=61</guid>
		<description><![CDATA[Joomla-based commerce-enabled record company website.]]></description>
			<content:encoded><![CDATA[<p>Great Plains Records&#8217; home on the internet<span id="more-61"></span> was created using the content management application Joomla, with many customized add-ons to handle bands, records, and music-related media. There is no shortage of profanity, less than polite conversation, and downright nasty stuff &#8211; but I&#8217;m sure not much more than in the average rock record shop.</p>
<p><a href="http://www.greatplainsrecords.com"><img class="alignnone size-large wp-image-62" title="greatplainsrecsite" src="http://rubberflat.com/wp-content/uploads/2010/06/greatplainsrecsite-596x373.png" alt="" width="596" height="373" />Visit at your own risk.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubberflat.com/2010/06/great-plains-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sherri D Site</title>
		<link>http://rubberflat.com/2010/06/sherri-d-site/</link>
		<comments>http://rubberflat.com/2010/06/sherri-d-site/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 06:22:02 +0000</pubDate>
		<dc:creator>eug</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://rubberflat.com/?p=58</guid>
		<description><![CDATA[Online portfolio for creative director Sherri Dee Smith]]></description>
			<content:encoded><![CDATA[<p>I sat down at a cafe with Sherri to discuss the ideal website she was looking for<span id="more-58"></span> and ‚Äôsimple‚Äô was the first word that came to mind. For that matter, it may have been the only word on said topic. She was looking for a web analog to her physical portfolio album.</p>
<p>For the color, we decided to stick with white and gray ‚Äì and a little simple blue thrown in for accents ‚Äì muted colors that let the work take center stage. The narrow left column, tiny header, and small fonts all help to focus user attention to the main content.</p>
<p><a href="http://www.sherrideesmith.com" target="_blank"><br />
<img src="http://rubberflat.com/wp-content/uploads/2010/06/sherrideesmithsite-596x411.png" alt="" title="sherrideesmithsite" width="596" height="411" class="alignnone size-large wp-image-60" />Visit the website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubberflat.com/2010/06/sherri-d-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Icons</title>
		<link>http://rubberflat.com/2010/05/icons/</link>
		<comments>http://rubberflat.com/2010/05/icons/#comments</comments>
		<pubDate>Mon, 31 May 2010 23:04:16 +0000</pubDate>
		<dc:creator>eug</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://rubberflat.com/?p=46</guid>
		<description><![CDATA[Computer related icons in .png and .icns formats.]]></description>
			<content:encoded><![CDATA[<p>Feel free to use the following icons in whichever way desired.<span id="more-46"></span></p>
<p><img class="alignnone size-medium wp-image-45" title="terminal" src="/wp-content/uploads/2010/05/terminal-300x300.png" alt="" width="300" height="300" /></p>
<p>Terminal: <a href="/wp-content/uploads/2010/05/terminal.png">[PNG]</a> <a href="/wp-content/uploads/2010/05/terminal.icns">[ICNS]</a></p>
<p><img class="alignnone size-medium wp-image-44" title="saturn512" src="/wp-content/uploads/2010/05/saturn512-298x300.png" alt="" width="298" height="300" /></p>
<p>Saturn: <a href="/wp-content/uploads/2010/05/saturn512.png">[PNG]</a> <a href="/wp-content/uploads/2010/05/saturn.icns">[ICNS]</a></p>
<p><img class="alignnone size-medium wp-image-43" title="barn" src="/wp-content/uploads/2010/05/barn-300x300.png" alt="" width="300" height="300" /><br />
Barn: <a href="/wp-content/uploads/2010/05/barn.png">[PNG]</a> <a href="/wp-content/uploads/2010/05/barn.icns">[ICNS]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubberflat.com/2010/05/icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RF Blocks</title>
		<link>http://rubberflat.com/2010/05/rf-blocks/</link>
		<comments>http://rubberflat.com/2010/05/rf-blocks/#comments</comments>
		<pubDate>Thu, 27 May 2010 07:52:26 +0000</pubDate>
		<dc:creator>eug</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[game]]></category>

		<guid isPermaLink="false">http://rubberflat.com/?p=32</guid>
		<description><![CDATA[A flash based game in the style of the 'Same Game' that comes with gnome, I believe.]]></description>
			<content:encoded><![CDATA[<p>A flash based same game clone<span id="more-32"></span> that has multiple levels that increase with difficulty due to added block colors and a rising score-to-clear threshold.</p>
<p>Controls are mouse click based, keep an eye on the timer &#8211; if that runs out the game is over.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="596" height="522" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://rubberflat.com/jts.swf" /><embed type="application/x-shockwave-flash" width="592" height="522" src="http://rubberflat.com/jts.swf"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://rubberflat.com/2010/05/rf-blocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Barn App</title>
		<link>http://rubberflat.com/2010/05/barn-app/</link>
		<comments>http://rubberflat.com/2010/05/barn-app/#comments</comments>
		<pubDate>Thu, 27 May 2010 06:00:57 +0000</pubDate>
		<dc:creator>eug</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[mac app]]></category>

		<guid isPermaLink="false">http://rubberflat.com/?p=29</guid>
		<description><![CDATA[Native cocoa app for batch file renaming.]]></description>
			<content:encoded><![CDATA[<p>Regular expressions batch renaming application<span id="more-29"></span> written in objective c. Mostly this was an excuse to play around with objective c, but there are times when it is extremely useful to have a simple drag and drop gui selection process instead of maneuvering in terminal.</p>
<p><img class="size-full wp-image-57 " title="Barn" src="http://rubberflat.com/wp-content/uploads/2010/05/projbarn.main1_.png" alt="" width="400" height="290" /></p>
<p>The application has a help menu that contains a regex cheatsheet &#8211; if you&#8217;re rusty.</p>
<p><a title="Barn download" href="http://code.google.com/p/eugene-goldin/downloads/detail?name=Barn-v1.12.dmg" target="_blank">download here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rubberflat.com/2010/05/barn-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
