<?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>jake olsen &#187; dev</title>
	<atom:link href="http://jakeo.org/blog/category/dev/feed/" rel="self" type="application/rss+xml" />
	<link>http://jakeo.org/blog</link>
	<description>brain_get_contents(jake_olsen);</description>
	<lastBuildDate>Thu, 10 Jun 2010 18:37:42 +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>New Gig</title>
		<link>http://jakeo.org/blog/2009/06/29/new-gig/</link>
		<comments>http://jakeo.org/blog/2009/06/29/new-gig/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 18:54:45 +0000</pubDate>
		<dc:creator>jakeo</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://jakeo.org/blog/?p=238</guid>
		<description><![CDATA[I am joining Insite as Technical Director.
I have had the pleasure of working with Paul Irving (Founder/President) and Kristin Beadle (UX/Design) over the years and have experienced their dedication and professionalism firsthand. This is a good fit that I am excited about.
I&#8217;ll be providing the same devotion I&#8217;ve had in my work to Insite and [...]]]></description>
			<content:encoded><![CDATA[<p>I am joining <a href="http://iwpi.com">Insite</a> as Technical Director.</p>
<p>I have had the pleasure of working with Paul Irving (Founder/President) and Kristin Beadle (UX/Design) over the years and have experienced their dedication and professionalism firsthand. This is a good fit that I am excited about.</p>
<p>I&#8217;ll be providing the same devotion I&#8217;ve had in my work to Insite and our clients, bringing new services and technology online for a wide variety of industries.</p>
<p>In my spare time, I&#8217;ll be providing consultation to numerous friends and colleagues in the startup realm.</p>
<p>Cheers.</p>
<p>&#8211;jake</p>
]]></content:encoded>
			<wfw:commentRss>http://jakeo.org/blog/2009/06/29/new-gig/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Opacity and Flash Transparency in Mac Firefox</title>
		<link>http://jakeo.org/blog/2007/03/16/css-opacity-and-flash-transparency-in-mac-firefox/</link>
		<comments>http://jakeo.org/blog/2007/03/16/css-opacity-and-flash-transparency-in-mac-firefox/#comments</comments>
		<pubDate>Fri, 16 Mar 2007 21:12:03 +0000</pubDate>
		<dc:creator>jakeo</dc:creator>
				<category><![CDATA[dev]]></category>

		<guid isPermaLink="false">http://jakeo.org/blog/2007/03/16/css-opacity-and-flash-transparency-in-mac-firefox/</guid>
		<description><![CDATA[I don&#8217;t normally paste code up here. I don&#8217;t know why. If people find it interesting, maybe I&#8217;ll post more.
At the sake of alienating my 4 readers, I wanted to post this so anyone else encountering this ridiculous bug in Mac Firefox regarding CSS opacity with Flash transparency could find some help.
I encountered this bug [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t normally paste code up here. I don&#8217;t know why. If people find it interesting, maybe I&#8217;ll post more.</p>
<p>At the sake of alienating my 4 readers, I wanted to post this so anyone else encountering this ridiculous bug in Mac Firefox regarding CSS opacity with Flash transparency could find some help.</p>
<p>I encountered this bug in the specific case of embedding a transparent Flash SWF (wmode=&#8221;transparent&#8221;) in a lightbox within an IFRAME. The lightbox code creates a full page div which shades the page, and brings the lightbox into focus.</p>
<p>Calling CSS opacity on this div works for all other browsers, except Mac Firefox. The hack means bypassing CSS opacity in favor of a transparent png used for the shade effect.</p>
<p>Here&#8217;s the code.</p>
<p>First, we need to detect Mac Firefox,</p>
<pre>
<code>
function detectMacXFF() {
  var userAgent = navigator.userAgent.toLowerCase();
  if (userAgent.indexOf('mac') != -1 &#038;&#038; userAgent.indexOf('firefox')!=-1) {
    return true;
  }
}
</code></pre>
<p><strong>UPDATE:</strong> Joe Aston points out this is fixed in Firefox 3. Here&#8217;s a new detect script which will detect the version. Make sure the code below points to detectMacXFF<strong>2</strong>.</p>
<pre>
<code>
function detectMacXFF2() {
  var userAgent = navigator.userAgent.toLowerCase();
  if (/firefox[\/\s](\d+\.\d+)/.test(userAgent)) {
    var ffversion = new Number(RegExp.$1);
    if (ffversion < 3 &#038;&#038; userAgent.indexOf('mac') != -1) {
      return true;
    }
  }
}
</code></code></pre>
<p>Then, where your lightbox opacity is set, do this. (note this is not the complete code, but rather what needs to happen). You&#8217;ll need a grey (#666) PNG set to 65% opaque in this case.</p>
<p>&#8230;</p>
<pre>
<code>
  var yourShade = document.getElementById('yourShadeDiv');
  var d = detectMacXFF(); //note new detectMacXFF2 script above
  if (d) {
    //osx ff css opacity + flash wmode transparent doesn't work
    yourShade.style.backgroundImage= "url(/path_to/opaque_grey.png)";
    yourShade.style.backgroundRepeat="repeat";
  } else {
    yourShade.style.backgroundColor = "#666";
    yourShade.style.MozOpacity = .65;
    yourShade.style.opacity = .65;
    yourShade.style.filter = "alpha(opacity=65)";
  }
</code></pre>
<p>&#8230;</p>
<p>I hope this helps anyone that stumbles upon it!</p>
<p>&#8211;jake</p>
]]></content:encoded>
			<wfw:commentRss>http://jakeo.org/blog/2007/03/16/css-opacity-and-flash-transparency-in-mac-firefox/feed/</wfw:commentRss>
		<slash:comments>65</slash:comments>
		</item>
		<item>
		<title>No iPhone for Jakeo</title>
		<link>http://jakeo.org/blog/2007/01/14/no-iphone-for-jakeo/</link>
		<comments>http://jakeo.org/blog/2007/01/14/no-iphone-for-jakeo/#comments</comments>
		<pubDate>Sun, 14 Jan 2007 21:13:56 +0000</pubDate>
		<dc:creator>jakeo</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://jakeo.org/blog/2007/01/14/no-iphone-for-jakeo/</guid>
		<description><![CDATA[Steve Jobs:
&#8220;You don?｢どｨび｢t want your phone to be an open platform,&#8221; said Jobs, referring to the concept of any phone owner writing applications for it. &#8220;You need it to work when you need it to work. Cingular doesn?｢どｨび｢t want to see their West Coast network go down because some application messed up.&#8221;
What is Cingular&#8217;s network [...]]]></description>
			<content:encoded><![CDATA[<p>Steve Jobs:</p>
<blockquote><p>&#8220;You don?｢どｨび｢t want your phone to be an open platform,&#8221; said Jobs, referring to the concept of any phone owner writing applications for it. &#8220;You need it to work when you need it to work. Cingular doesn?｢どｨび｢t want to see their West Coast network go down because some application messed up.&#8221;</p></blockquote>
<p>What is Cingular&#8217;s network built on? Duct tape and fishing line?</p>
<p>With <a href="http://www.openmoko.com/">open source phones</a> starting to spring up, Apple has a big opportunity here they are going to miss. This closed source approach is why Apple stinks IMHO. DRM is another issue, but that discussion is for another day.</p>
<p><a href="http://www.hook.org/">Anselm Hook</a>:</p>
<blockquote><p>
to me the cellphone space still look like a witches brew of free agents competing over scraps without any real awareness of a bigger opportunity&#8230; if they could get their act together over the basic idea of making those 64 bits of information free&#8230;  we&#8217;d all tra la la through flowery fields of bliss i am sure.</p>
<p>playing in somebody elses sandbox, with their image of prescribed activities is not fun&#8230;</p></blockquote>
<p>For further reading, walled gardens and the iPhone are a hot topic in this months <a href="http://lists.burri.to/pipermail/geowanking/2007-January/thread.html">Geowankers</a> discussion.</p>
<p>&#8211;jake</p>
]]></content:encoded>
			<wfw:commentRss>http://jakeo.org/blog/2007/01/14/no-iphone-for-jakeo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Where 2.0 Decompress</title>
		<link>http://jakeo.org/blog/2006/06/16/where-20-decompress/</link>
		<comments>http://jakeo.org/blog/2006/06/16/where-20-decompress/#comments</comments>
		<pubDate>Fri, 16 Jun 2006 19:57:30 +0000</pubDate>
		<dc:creator>jakeo</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[geo]]></category>

		<guid isPermaLink="false">http://urbanverb.com/blog/2006/06/16/where-20-decompress/</guid>
		<description><![CDATA[I&#8217;m back from Where 2.0 and thinking through all the ideas and projects presented. Google&#8217;s Geo Developer Day was fun, but the interesting bits came out in the conference and some BOF&#8217;s.
I was most enthused about the launch of MetaCarta Labs and specifically, their GeoParser API, which we, at Platial, will be integrating soon as [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m back from <a href="http://www.wired.com/news/technology/0,71170-0.html">Where 2.0</a> and thinking through all the ideas and projects presented. <a href="http://platial.typepad.com/news/2006/06/thanks_google.html">Google&#8217;s Geo Developer Day</a> was fun, but the interesting bits came out in the conference and some <a href="http://conferences.oreillynet.com/cs/where2006/view/e_sess/9469">BOF&#8217;s</a>.</p>
<p>I was most enthused about the launch of <a href="http://labs.metacarta.com/">MetaCarta Labs</a> and specifically, their <a href="http://labs.metacarta.com/GeoParser/documentation.html">GeoParser API</a>, which we, at Platial, will be integrating soon as we&#8217;re fortunate enough to share wonder kid developer, <a href="http://crschmidt.net/">Chris Schmidt</a>.</p>
<p>&#8211;jake</p>
<p>(modified) Oh yeah, I won this phone after the Pixie (Scavenger) Hunt (photo by <a href="http://flickr.com/photos/hive/">Hive</a> and <a href="http://flickr.com/photos/crschmidt/">Chris Schmidt</a>):</p>
<p><img src="http://static.flickr.com/47/168490234_f326cac55a_m.jpg" alt="crappy phone" /> <img src="http://static.flickr.com/72/166479584_5db7144544_m.jpg" alt="unfresh phone" /></p>
]]></content:encoded>
			<wfw:commentRss>http://jakeo.org/blog/2006/06/16/where-20-decompress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I &#8220;hit it big&#8221; on the Internet</title>
		<link>http://jakeo.org/blog/2006/01/26/i-hit-it-big-on-the-internet/</link>
		<comments>http://jakeo.org/blog/2006/01/26/i-hit-it-big-on-the-internet/#comments</comments>
		<pubDate>Fri, 27 Jan 2006 02:02:10 +0000</pubDate>
		<dc:creator>jakeo</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://urbanverb.com/blog/2006/01/26/i-hit-it-big-on-the-internet/</guid>
		<description><![CDATA[I met with Monica Garcia from the PSU Vanguard last Sunday about Platial.
This is what she wrote:
http://www.dailyvanguard.com/vnews/display.v/ART/2006/01/25/43d75552305c8 
The only correction I have to make is my DJ name is Kola, not Koala, and sorry to all those &#8220;marketing monkeys&#8221; I may have offended.
&#8211;jake
]]></description>
			<content:encoded><![CDATA[<p>I met with Monica Garcia from the PSU Vanguard last Sunday about Platial.<br />
This is what she wrote:</p>
<p><a target="_blank" title="http://www.dailyvanguard.com/vnews/display.v/ART/2006/01/25/43d75552305c8" href="http://www.dailyvanguard.com/vnews/display.v/ART/2006/01/25/43d75552305c8">http://www.dailyvanguard.com/vnews/display.v/ART/2006/01/25/43d75552305c8 </a></p>
<p>The only correction I have to make is my DJ name is Kola, not Koala, and sorry to all those &#8220;marketing monkeys&#8221; I may have offended.</p>
<p>&#8211;jake</p>
]]></content:encoded>
			<wfw:commentRss>http://jakeo.org/blog/2006/01/26/i-hit-it-big-on-the-internet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Working in a Bubble</title>
		<link>http://jakeo.org/blog/2005/10/07/working-in-a-bubble/</link>
		<comments>http://jakeo.org/blog/2005/10/07/working-in-a-bubble/#comments</comments>
		<pubDate>Fri, 07 Oct 2005 22:08:45 +0000</pubDate>
		<dc:creator>jakeo</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://urbanverb.com/blog/?p=5</guid>
		<description><![CDATA[You have users, they can also be customers, co-workers, friends, and family, but first, they were called people.
The phrase &#8220;user generated content&#8221; takes the stigma off generalizes what this content actually is. Emotions, fears, desires, resentments. The very personal nature of this content screams for respect, and needs to be treated in a different manner [...]]]></description>
			<content:encoded><![CDATA[<p>You have users, they can also be customers, co-workers, friends, and family, but first, they were called people.</p>
<p>The phrase &#8220;user generated content&#8221; <del datetime="2005-10-10T18:58:06+00:00">takes the stigma off</del> generalizes what this content actually is. Emotions, fears, desires, resentments. The very personal nature of this content screams for respect, and needs to be treated in a different manner by organizations wishing to capitalize on &#8220;user generated content&#8221;.</p>
<p>When I replace the term user with a friends actual name, it puts a much different (literal) face on the phrase:</p>
<p>&#8220;Matt generated content&#8221;</p>
<p>Huh? It makes no sense to dehumanize Matt. I&#8217;m talking about his feelings, his thoughts. Not his &#8220;generated content&#8221;. Aren&#8217;t we generating content all the time? Instead couldn&#8217;t we call it:</p>
<p>&#8220;(insert corporation here) captured content&#8221;?</p>
<p>It all comes down to people, and the relationships I have with those people. Do they trust me? Do I honestly respect their feelings, thoughts, emotions, and actions? I guess that all depends on the human I am.</p>
<p>Watch my actions first, and then my words.</p>
<p>&#8211;jake</p>
]]></content:encoded>
			<wfw:commentRss>http://jakeo.org/blog/2005/10/07/working-in-a-bubble/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Microsoft aiming at Web 2.0</title>
		<link>http://jakeo.org/blog/2005/09/09/microsoft-aiming-at-web-20/</link>
		<comments>http://jakeo.org/blog/2005/09/09/microsoft-aiming-at-web-20/#comments</comments>
		<pubDate>Fri, 09 Sep 2005 15:52:15 +0000</pubDate>
		<dc:creator>jakeo</dc:creator>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://urbanverb.com/blog/2005/09/09/microsoft-aiming-at-web-20/</guid>
		<description><![CDATA[Microsoft opens APIs. Good for them, not as late to the game as their entrance into the INTERNET, but still on the heels of some very important development.
They must improve their goodwill with Web developers. Do they still market Frontpage?
Full text
In the geosphere:
Also next week, the company will announce a free commercial license to use [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft opens APIs. Good for them, not as late to the game as their entrance into the INTERNET, but still on the heels of some very important development.</p>
<p>They must improve their goodwill with Web developers. Do they still market Frontpage?</p>
<p><a href="http://news.zdnet.com/2100-3513_22-5855244.html">Full text</a></p>
<p>In the geosphere:</p>
<blockquote><p>Also next week, the company will announce a free commercial license to use a JavaScript &#8220;control&#8221; to display data from its Virtual Earth mapping service.</p></blockquote>
<p>&#8211;jake</p>
]]></content:encoded>
			<wfw:commentRss>http://jakeo.org/blog/2005/09/09/microsoft-aiming-at-web-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
