<?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>techno.blog("Dion") &#187; Tech</title>
	<atom:link href="http://almaer.com/blog/category/tech/feed" rel="self" type="application/rss+xml" />
	<link>http://almaer.com/blog</link>
	<description>blogging about life, the universe, and everything tech</description>
	<pubDate>Fri, 02 Jan 2009 16:03:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Loving Ubiquity; Extending the Web in 2009</title>
		<link>http://almaer.com/blog/loving-ubiquity-extending-the-web-in-2009</link>
		<comments>http://almaer.com/blog/loving-ubiquity-extending-the-web-in-2009#comments</comments>
		<pubDate>Fri, 02 Jan 2009 15:19:14 +0000</pubDate>
		<dc:creator>dion</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

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

		<category><![CDATA[Web Browsing]]></category>

		<guid isPermaLink="false">http://almaer.com/blog/?p=2235</guid>
		<description><![CDATA[I have a project that deals with JavaScript commands that anyone can author, so I decided it would be smart to take more time looking and integrating with Ubiquity which recently got another beautiful upgrade.
Ubiquity really is the &#8220;other&#8221; command line of the Web (the URL bar being the first one). It gives me Quicksilver [...]]]></description>
			<content:encoded><![CDATA[<p>I have a project that deals with JavaScript commands that anyone can author, so I decided it would be smart to take more time looking and integrating with <a href="https://wiki.mozilla.org/Labs/Ubiquity/">Ubiquity</a> which recently got another <a href="http://www.readwriteweb.com/archives/ubiquity_gets_an_update_prettier_faster.php">beautiful upgrade</a>.</p>
<p>Ubiquity really is the &#8220;other&#8221; command line of the Web (the URL bar being the first one). It gives me Quicksilver like access, but also has huge improvements: Writing plugins is simple JavaScript, and you can subscribe to commands from other people. This is huge. A social command-line!</p>
<p>There is a built in tinyurl command, but I use tr.im one these days, so <a href="http://almaer.com/firefox/commands/">I quickly wrote one</a>:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript javascript" style="font-family:monospace;">CmdUtils.<span style="color: #660066;">CreateCommand</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #000066;">name</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;trimurl&quot;</span><span style="color: #339933;">,</span>
  homepage<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;http://almaer.com/firefox/commands/&quot;</span><span style="color: #339933;">,</span>
  author<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span> <span style="color: #000066;">name</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;Dion Almaer&quot;</span><span style="color: #339933;">,</span> email<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;dion@almaer.com&quot;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
  license<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;ASL&quot;</span><span style="color: #339933;">,</span>
  description<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;Sends your URL to tr.im instead of tiny url&quot;</span><span style="color: #339933;">,</span>
  help<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;Just type in the URL!&quot;</span><span style="color: #339933;">,</span>
  takes<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;url to shorten&quot;</span><span style="color: #339933;">:</span> noun_arb_text<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
  modifiers<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;as&quot;</span><span style="color: #339933;">:</span> noun_arb_text<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
&nbsp;
  preview<span style="color: #339933;">:</span> <span style="color: #3366CC;">&quot;Replaces the inputted URL with a Tr.im URL.&quot;</span><span style="color: #339933;">,</span>
  execute<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>urlToShorten<span style="color: #339933;">,</span> mods<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> baseUrl <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;http://tr.im/api/trim_url.json&quot;</span>;
    <span style="color: #003366; font-weight: bold;">var</span> params <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;?url=&quot;</span> <span style="color: #339933;">+</span> urlToShorten.<span style="color: #660066;">text</span>;
&nbsp;
    <span style="color: #003366; font-weight: bold;">var</span> custom  <span style="color: #339933;">=</span> mods<span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;as&quot;</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">text</span>;
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>custom<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      params <span style="color: #339933;">+=</span> <span style="color: #3366CC;">&quot;&amp;custom=&quot;</span> <span style="color: #339933;">+</span> custom;
    <span style="color: #009900;">&#125;</span>
    jQuery.<span style="color: #660066;">getJSON</span><span style="color: #009900;">&#40;</span>baseUrl <span style="color: #339933;">+</span> params<span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>data<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      CmdUtils.<span style="color: #660066;">copyToClipboard</span><span style="color: #009900;">&#40;</span>data.<span style="color: #660066;">url</span><span style="color: #009900;">&#41;</span>;
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>;</pre></div></div>

<p>This chap uses modifiers to allow me to pass in a custom url.</p>
<p>The following said that there will be a url following, and you can optionally say &#8220;as customname&#8221;:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript javascript" style="font-family:monospace;">  takes<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;url to shorten&quot;</span><span style="color: #339933;">:</span> noun_arb_text<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
  modifiers<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;as&quot;</span><span style="color: #339933;">:</span> noun_arb_text<span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span></pre></div></div>

<p>I couldn&#8217;t find a way to just add to the takes hash, as it would be nice to say:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript javascript" style="font-family:monospace;">  takes<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span><span style="color: #3366CC;">&quot;url to shorten&quot;</span><span style="color: #339933;">:</span> noun_arb_text<span style="color: #339933;">,</span> custom<span style="color: #339933;">:</span> noun_optional_text <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span></pre></div></div>

<p>After using Ubiquity for some time now, I am really impressed with how the team is accelerating, and I see this as a great way to extend the Web, and Firefox in 2009.</p>
<p>I find myself in a funny place with the key combos for bringing up Ubiquity and Quicksilver in my mind. I am using Quicksilver less and less (e.g. won&#8217;t use it to search the Web or do anything with email) and Ubiquity more and more. As the Open Web takes over the desktop (another prediction;) then Ubiquity will gain usage for me.</p>
<p>Atul has <a href="http://www.toolness.com/wp/?p=426">released a preview of Ubiquity 0.2</a> which has a <a href="http://www.toolness.com/wp/?p=422">new architecture</a> and a new <a href="http://hg.toolness.com/ubiquity-firefox-0.2/raw-file/aa58cbcf85fe/ubiquity/chrome/content/locked-down-feed-plugin/example.js">Locked-Down Feed Plugin (LDFP)</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/loving-ubiquity-extending-the-web-in-2009/feed</wfw:commentRss>
		</item>
		<item>
		<title>window.resize firing frequency in browsers</title>
		<link>http://almaer.com/blog/windowresize-firing-frequency</link>
		<comments>http://almaer.com/blog/windowresize-firing-frequency#comments</comments>
		<pubDate>Wed, 31 Dec 2008 17:57:01 +0000</pubDate>
		<dc:creator>dion</dc:creator>
		
		<category><![CDATA[Ajax]]></category>

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

		<category><![CDATA[Web Browsing]]></category>

		<guid isPermaLink="false">http://almaer.com/blog/?p=2229</guid>
		<description><![CDATA[I was playing with a Web application that did interesting redrawing of the layout (e.g. needed to do JavaScript magic in the onresize event).
I noticed that in Firefox the event took a fair time to fire. Joel Webber (of GWT fame) has also found this and said:

&#8220;Firefox and Opera do this wierd thing where they [...]]]></description>
			<content:encoded><![CDATA[<p>I was playing with a Web application that did interesting redrawing of the layout (e.g. needed to do JavaScript magic in the onresize event).</p>
<p>I noticed that in Firefox the event took a fair time to fire. Joel Webber (of GWT fame) has also found this and said:</p>
<blockquote><p>
&#8220;Firefox and Opera do this wierd thing where they only fire resize events when you let go of the mouse button, or every second or so while dragging. It&#8217;s really irritating because there&#8217;s no way to get a &#8220;real&#8221; resize event, and it makes your ui look crappy when it goes through intermediate wrong-sized states.</p>
<p>I&#8217;ve always assumed this was to cover up layout performance issues. WebKit and IE fire resize events immediately.&#8221;
</p></blockquote>
<p>I wonder if the layout issue is correct, and if so, it would be nice to be able to somehow say to the browser &#8220;yup, I am in control of layout so please fire faster&#8221; or maybe by defining onresize you are saying that.</p>
<p>With decorators/annotations you would say:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript javascript" style="font-family:monospace;"><span style="color: #339933;">@</span>FireFrequency<span style="color: #009900;">&#40;</span>ms<span style="color: #339933;">=</span><span style="color: #CC0000;">10</span><span style="color: #009900;">&#41;</span> window.<span style="color: #000066;">onresize</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #006600; font-style: italic;">// ....</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Turns out that Ben was being a good citizen and in going to file a bug, found a <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=387917">couple</a> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=387913">out there</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/windowresize-firing-frequency/feed</wfw:commentRss>
		</item>
		<item>
		<title>Not just social history, actual information from Twitter</title>
		<link>http://almaer.com/blog/not-just-social-history-actual-information-from-twitter</link>
		<comments>http://almaer.com/blog/not-just-social-history-actual-information-from-twitter#comments</comments>
		<pubDate>Wed, 31 Dec 2008 16:53:22 +0000</pubDate>
		<dc:creator>dion</dc:creator>
		
		<category><![CDATA[Security]]></category>

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

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

		<guid isPermaLink="false">http://almaer.com/blog/?p=2233</guid>
		<description><![CDATA[
&#60;html&#62;
&#60;head&#62;
&#60;script&#62;
&#160;
document.write(&#34;This page should show you your twitter info if you're logged in. (If you see a login box make sure you're logged into Twitter)&#60;br/&#62;&#60;br/&#62;&#34;);
&#160;
// forgive the document.write ugliness
function orly(data)
{
document.write(&#34;Your username is &#34;+data[0]['user']['screen_name']+&#34;&#60;br&#62;&#34;);
document.write(&#34;Your real name is &#34;+data[0]['user']['name']);
&#160;
}
&#60;/script&#62;
&#60;script src=&#34;http://twitter.com/statuses/user_timeline.json?count=1&#38;callback=orly&#34;&#62;&#60;/script&#62;
&#160;
&#60;/head&#62;
&#60;body&#62;
&#160;
&#60;/body&#62;
&#60;/html&#62;

What is that is all it took to grab your username and even real name out of Twitter?  [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
&lt;head&gt;
&lt;script&gt;
&nbsp;
document.write(&quot;This page should show you your twitter info if you're logged in. (If you see a login box make sure you're logged into Twitter)&lt;br/&gt;&lt;br/&gt;&quot;);
&nbsp;
// forgive the document.write ugliness
function orly(data)
{
document.write(&quot;Your username is &quot;+data[0]['user']['screen_name']+&quot;&lt;br&gt;&quot;);
document.write(&quot;Your real name is &quot;+data[0]['user']['name']);
&nbsp;
}
&lt;/script&gt;
&lt;script src=&quot;http://twitter.com/statuses/user_timeline.json?count=1&amp;callback=orly&quot;&gt;&lt;/script&gt;
&nbsp;
&lt;/head&gt;
&lt;body&gt;
&nbsp;
&lt;/body&gt;
&lt;/html&gt;</pre></div></div>

<p>What is that is all it took to grab your username and even real name out of Twitter?  <a href="http://test.from.bz/twitter.htm">Try it</a>, it works.</p>
<p>Yowser?!</p>
<p>(via <a href="http://twitter.com/billzeller">Bill Zeller</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/not-just-social-history-actual-information-from-twitter/feed</wfw:commentRss>
		</item>
		<item>
		<title>F**k That; Love The Tool You&#8217;re With</title>
		<link>http://almaer.com/blog/fk-that-love-the-tool-youre-with</link>
		<comments>http://almaer.com/blog/fk-that-love-the-tool-youre-with#comments</comments>
		<pubDate>Tue, 30 Dec 2008 23:05:19 +0000</pubDate>
		<dc:creator>dion</dc:creator>
		
		<category><![CDATA[Tech]]></category>

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

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

		<guid isPermaLink="false">http://almaer.com/blog/?p=2224</guid>
		<description><![CDATA[Dave Thomas gave a great keynote talk at RubyConf this year titled F**k Ruby (where the term was for Fork ;).
Dave is a very enjoyable presenter to listen too. He always has some of the British humour that I am of course partial too.
I loved how he managed to use the Scottish term Tath:

The luxuriant [...]]]></description>
			<content:encoded><![CDATA[<p>Dave Thomas gave a great keynote talk at RubyConf this year titled <a href="http://rubyconf2008.confreaks.com/keynote.html">F**k Ruby</a> (where the term was for Fork ;).</p>
<p>Dave is a very enjoyable presenter to listen too. He always has some of the British humour that I am of course partial too.</p>
<p>I loved how he managed to use the Scottish term <a href="http://dictionary.reference.com/browse/tath">Tath</a>:</p>
<blockquote><p>
The luxuriant grass growing about the droppings of cattle in a pasture.
</p></blockquote>
<p>His talk is embedded at the end of this post. The Ruby stuff was very interesting and great, but what stuck with me was the early talk about loving the tool that you work with every day.</p>
<p>As programmers (Dave always titles himself as &#8220;programmer&#8221;) Dave talks about how we get a blank sheet daily, and if we don&#8217;t love the tool that we get to use to make the creation that day, then we will not do the best that we can, and it will show in our work.</p>
<p>I can totally relate to that. Sometimes we may think &#8220;use any tool as long as you create somethin useful.&#8221; Stick with Java even if you fancy doing something with Rails/Django/&#8230; because it is the safe choice.</p>
<p>If you are having fun and loving your tools then you will create (or adapt, which could simply be with config, plugins, or whatever) something so much better. Of course, as I now run a developer tools lab with <a href="http://galbraiths.org/">Ben</a> I don&#8217;t think of &#8220;tool&#8221; as just a programming language, but much more. Your entire environment. The items in the box.</p>
<p>As 2009 rolls around, I can&#8217;t wait to create some tools that I love. Something that makes me excited to start building something new. And not only for myself, but hopefully for some of the Web community.</p>
<p>Happy new year, and let&#8217;s <a href="http://rubyconf2008.confreaks.com/keynote.html">listen to Dave</a>:</p>
<p><embed src='http://rubyconf2008.confreaks.com/player.swf' height='260' width='640' allowscriptaccess='always' allowfullscreen='true' flashvars='image=images%2Fkeynote-preview.jpg&#038;file=http%3A%2F%2Frubyconf2008.confreaks.com%2Fvideos%2Fkeynote-small.mp4&#038;plugins=viral-1'></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/fk-that-love-the-tool-youre-with/feed</wfw:commentRss>
		</item>
		<item>
		<title>Using the crowd to tell us about browser responsiveness</title>
		<link>http://almaer.com/blog/using-the-crowd-to-tell-us-about-browser-responsiveness</link>
		<comments>http://almaer.com/blog/using-the-crowd-to-tell-us-about-browser-responsiveness#comments</comments>
		<pubDate>Mon, 22 Dec 2008 19:11:15 +0000</pubDate>
		<dc:creator>dion</dc:creator>
		
		<category><![CDATA[Google]]></category>

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

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

		<guid isPermaLink="false">http://almaer.com/blog/?p=2220</guid>
		<description><![CDATA[
A lot of people are talking about the interview with John Lilly that discusses the relationship between Mozilla and Google.
People like to paint think black and white. Either Mozilla is Google&#8217;s poodle (Mozilla is to Google as Tony Blair was to George Bush) or there is a falling out and they hate each other.
Of course, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://almaer.com/blog/uploads/addons.png" alt="addons" title="addons" width="500" height="91" class="alignnone size-full wp-image-2222" /></p>
<p>A lot of people are <a href="http://www.techmeme.com/081222/p23#a081222p23">talking</a> about the interview with John Lilly that discusses the relationship between Mozilla and Google.</p>
<p>People like to paint think black and white. Either Mozilla is Google&#8217;s poodle (Mozilla is to Google as Tony Blair was to George Bush) or there is a falling out and they hate each other.</p>
<p>Of course, the answer is grey as John points out. From my standpoint, focusing on the Open Web, I see more areas to collaborate on than to fight over. When I was at Google I knew that the Open Web was very important to the long term future. Now I am at Mozilla, the same is true. At the micro level there will be differences, but at the macro-level there is alignment.</p>
<p>Switching gears a little, I have had some folks talk to me about responsiveness issues with Firefox 3. I have had a fantastic experience, and currently I run Mozilla nightlies / Minefield / Shiretoka (3.1.*) and WebKit nightlies side by side. I am very happy with the shape that Minefield is in.</p>
<p>Of course, the issue with the extension mechanism with Firefox is that you get a window to the entire world (which has also been a reason that lead to amazing add-ons). Since this is the case a bad add-on can do a lot.</p>
<p>Chrome does a good job showing you basic info about a tab (memory etc). What if we did that and more for add-ons. Give me <code>top</code> for the browser.</p>
<p>Now, this is a lot of engineering away, so can we use the crowd to help out?</p>
<p>What if we created an add-on that would track responsiveness information and send it back (anonymously) to the cloud (say, to Weave). We could use math to work out probable culprits and could even ship that information back to the people using the add-on. Thus, you would then find out that FooAddOn seems to be a culprit that slows down the browser. Maybe it could be called <em>Vacinate-addon</em>.</p>
<p>What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/using-the-crowd-to-tell-us-about-browser-responsiveness/feed</wfw:commentRss>
		</item>
		<item>
		<title>Learning from Tech Luminaries</title>
		<link>http://almaer.com/blog/learning-from-tech-luminaries</link>
		<comments>http://almaer.com/blog/learning-from-tech-luminaries#comments</comments>
		<pubDate>Tue, 16 Dec 2008 18:27:44 +0000</pubDate>
		<dc:creator>dion</dc:creator>
		
		<category><![CDATA[Tech]]></category>

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

		<guid isPermaLink="false">http://almaer.com/blog/?p=2215</guid>
		<description><![CDATA[
Chatting to smart people at conferences, and in meetings, got Ben and I thinking about doing an interview show that would allow us to take some time to learn from luminaries in our industry.
We have many shows that talk about technical issues, but what about getting to know the people a little more, what makes [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://almaer.com/blog/uploads/techlum.png" alt="techlum" title="techlum" width="500" height="235" class="alignnone size-full wp-image-2216" /></p>
<p>Chatting to smart people at conferences, and in meetings, got Ben and I thinking about doing an interview show that would allow us to take some time to learn from luminaries in our industry.</p>
<p>We have many shows that talk about technical issues, but what about getting to know the people a little more, what makes them tick, and what brought them to this point?</p>
<p>There is an interviewer named <a href="http://en.wikipedia.org/wiki/Michael_Parkinson">Michael Parkinson</a> who is the best in the business. In the US when Brad Pitt comes on Leno, you learn that he has a new movie, and Leno cracks some jokes.</p>
<p>In the UK when Brad Pitt comes on Parky, you actually get to know the guy, and some fun stories. Parky lets the interviewer talk. He makes them at home and they actually talk to you.</p>
<p>This is what I want to see come out of Tech Luminaries. There are a lot of interesting characters in tech, so let&#8217;s listen to their stories.</p>
<p><a href="http://techluminaries.com/2008/12/15/episode-1-brendan-eich/">First up is Brendan Eich</a>. We did this interview back in 2007 before we had any idea that we would be joining Mozilla, which gives the interview an interesting lens.</p>
<p>Brendan is incredibly sharp and is a fun guy to let ramble on about many topics. We have a couple more old ones in the can, and will start doing some new ones, including in video form.</p>
<p><a href="http://galbraiths.org/techluminaries/TLE1-BrendanEich.mp3">Download the MP3 directly</a>, and <a href="http://tr.im/itunestechluminary">you can subscribe via iTunes</a>.</p>
<p>Who would you like to see interviewed?</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/learning-from-tech-luminaries/feed</wfw:commentRss>
<enclosure url="http://galbraiths.org/techluminaries/TLE1-BrendanEich.mp3" length="42995136" type="audio/mpeg" />
		</item>
		<item>
		<title>Still sexist in the valley? Marissa shows that to be true</title>
		<link>http://almaer.com/blog/still-sexist-in-the-valley-marissa-shows-that-to-be-true</link>
		<comments>http://almaer.com/blog/still-sexist-in-the-valley-marissa-shows-that-to-be-true#comments</comments>
		<pubDate>Mon, 15 Dec 2008 17:58:23 +0000</pubDate>
		<dc:creator>dion</dc:creator>
		
		<category><![CDATA[Tech]]></category>

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

		<guid isPermaLink="false">http://almaer.com/blog/?p=2211</guid>
		<description><![CDATA[
Marissa Mayer reportedly got engaged in Paris (I know, a touch cliche). Do we come out with a &#8220;congrats!&#8221; or at the very least &#8220;why should we care?&#8221;
The &#8220;kinda glad that they have less reporters now&#8221; Valleywag writes about how she &#8220;married down&#8221;.
Why is that? They claim that he &#8220;buys and manages apartments for rich [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://cache.gawker.com/assets/images/2008/12/custom_1229110672505_2202074795_2fb9aae67b.jpg" style="float: right; padding: 8px; /></p>
<p>Marissa Mayer reportedly got engaged in Paris (I know, a touch cliche). Do we come out with a &#8220;congrats!&#8221; or at the very least &#8220;why should we care?&#8221;</p>
<p>The &#8220;kinda glad that they have less reporters now&#8221; <a href="http://valleywag.com/5108696/google-exec-marissa-mayer-engaged">Valleywag writes about how she &#8220;married down&#8221;</a>.</p>
<p>Why is that? They claim that he &#8220;buys and manages apartments for rich people, a business he somewhat brazenly dubs &#8220;private equity.&#8221; His business is called &#8220;Montara Capital Partners,&#8221; which makes him sound like a venture capitalist. He is also a lawyer, sort of, which is definitely several rungs down Silicon Valley&#8217;s social ladder.&#8221;</p>
<p>Doesn&#8217;t that sound so terrible? Mothers are known not to be proud of a child becoming a lawyer :/</p>
<p>This is so obviously sexist. If you turn it around, have you even seen the press talking about how <em>Businessman X</em> has married down because his fiance isn&#8217;t as successful as him. No. We never see that. No one expects that a mate do the same thing, or match themselves in the amount of money they make.</p>
<p>It is hard enough to find someone to spend your life with. If Marissa found someone flipping burgers at McDonalds, and they loved each other, congrats. Let along this chap who seems pretty successful to me too.</p>
<p>All this being said, you have to say that he has done quite well. Attractive, rich, powerful. Good luck to them!</p>
<p>And, it is much nicer to read <a href="http://www.businessweek.com/technology/content/dec2008/tc20081214_636046.htm">these kind of articles on Marissa</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/still-sexist-in-the-valley-marissa-shows-that-to-be-true/feed</wfw:commentRss>
		</item>
		<item>
		<title>Deja vu: Still wary of Facebook</title>
		<link>http://almaer.com/blog/wary-of-facebook</link>
		<comments>http://almaer.com/blog/wary-of-facebook#comments</comments>
		<pubDate>Sun, 14 Dec 2008 22:36:53 +0000</pubDate>
		<dc:creator>dion</dc:creator>
		
		<category><![CDATA[Facebook]]></category>

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

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

		<guid isPermaLink="false">http://almaer.com/blog/?p=2207</guid>
		<description><![CDATA[
Facebook Uploads
Sorry, we cannot support uploads sent via email. Upload photos from your iPhone with our free application, Facebook for iPhone:
http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284882215&#038;mt=8

This is the message that I now get when I try to use the Facebook feature of emailing photos to my account. For a long time, I have emailed an alias on my domain which [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>
<b>Facebook Uploads</b></p>
<p>Sorry, we cannot support uploads sent via email. Upload photos from your iPhone with our free application, Facebook for iPhone:</p>
<p>http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284882215&#038;mt=8
</p></blockquote>
<p>This is the message that I now get when I try to use the Facebook feature of emailing photos to my account. For a long time, I have emailed an alias on my domain which forwards on to both Flickr and Facebook, get to get photo into both places at once.</p>
<p>My blog brings in these photos from Facebook using Fotobook. Now I can longer use this workflow. Instead, Facebook wants me to stop using the &#8220;open&#8221; import mechanism of SMTP, and instead wants to force me into the mobile walled garden of the Facebook app on the iPhone. Now, don&#8217;t get me wrong, the Facebook iPhone app is fantastically produced by Joe Hewitt, and I have no beef with it at all. I just don&#8217;t like being forced into one workflow which will then only work with that one provider. Facebook, by taking away a feature, changed the entire game.</p>
<p>Open protocols give us the ability to develop our own patterns, and tweak the implementation over time. When blogger (and others) allowed us to abstract the implementation behind DNS records, it felt better (as well as being able to export the data out).</p>
<p><b>Facebook Connect</b></p>
<p>There are advantages to the walled garden though. I have been really worried about seeing Facebook Connect buttons shown up around the Web. The UX for FB Connect is very nice indeed, which is why I was so worried. The majority of people won&#8217;t choose the Open platform purely because &#8220;they should&#8221;. Open needs to compete on its own rite.</p>
<p>This is why I was so pleased to see Open Connect:</p>
<p><a href="http://pixelsebi.com/2008-12-14/open-connect-a-ux-proposal-for-the-openstack/"><img src="http://farm4.static.flickr.com/3156/3107923896_81e4e879bd.jpg?v=0" /></a></p>
<p>We need to do this quickly, as people will only put &#8220;one&#8221; of these on, and it should be the open meta platform.</p>
<p>I think that there is a place for the browser to help out here too, as I have mentioned before. If you login to the browser once, and we agree on the protocols, the browser can do the handshake for us. A great UI&#8230;.. none at all.</p>
<p>Time to &#8220;make the Web better&#8221; instead of how Facebook tries to &#8220;make a better Web&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/wary-of-facebook/feed</wfw:commentRss>
		</item>
		<item>
		<title>App Discover: An add-on that shows me when apps or user scripts are available for a site</title>
		<link>http://almaer.com/blog/appdiscover</link>
		<comments>http://almaer.com/blog/appdiscover#comments</comments>
		<pubDate>Tue, 09 Dec 2008 12:00:06 +0000</pubDate>
		<dc:creator>dion</dc:creator>
		
		<category><![CDATA[Mozila]]></category>

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

		<category><![CDATA[Web Browsing]]></category>

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

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

		<guid isPermaLink="false">http://almaer.com/blog/appdiscover</guid>
		<description><![CDATA[Greasemonkey and Fluid userscripts. AIR and the new Titanium apps. Browser add-ons. When you go to a website do you know if you are getting the best experience for you? You could search for script on userscripts, or Google for apps, but what if the developers of the sites had a way of pointing out [...]]]></description>
			<content:encoded><![CDATA[<p>Greasemonkey and Fluid userscripts. AIR <a href="http://ajaxian.com/archives/appcelerator-t…r-the-open-web">and the new</a> <a href="http://titaniumapp.com/">Titanium</a> apps. Browser add-ons. When you go to a website do you know if you are getting the best experience for you? You could search for script on userscripts, or Google for apps, but what if the developers of the sites had a way of pointing out that there were enhanced experiences for you?</p>
<p>This is where <a href="http://almaer.com/firefox/appdiscover/">App Discover</a> comes in. It is a Firefox add-on that notifies you of these very items. All the developer has to do is add a simple link tag to their page, and the add-on will find it for you.</p>
<p>For example, if Twitter added the following tag, you would be notified of TweetDeck:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;link rel=&quot;application&quot; 
  type=&quot;application/vnd.adobe.air-application-installer-package+zip&quot; 
  title=&quot;TweetDeck Adobe AIR Twitter App&quot; 
  href=&quot;http://www.tweetdeck.com/beta/TweetDeck_0_20.air&quot; /&gt;</pre></div></div>

<p>That line would mean you would see this in the browser:</p>
<p><img src='http://almaer.com/blog/uploads/twitterappdiscover.png' alt='Twitter App Discover Example' width="530" border='0'/></p>
<p>The type is a mime-type of course, and these are mapped into custom verbiage, but if you come up with something new&#8230; as long as the href is good, you should be golden.</p>
<p>I just added support for Appcelerator Titanium for example:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;link rel=&quot;application&quot; 
  type=&quot;application/vnd.appcelerator-titanium-app-package+zip&quot; 
  title=&quot;Tweetanium Appcelerator Titanium Twitter App&quot; 
  href=&quot;http://tweetanium.com/tweetanium.zip&quot; /&gt;</pre></div></div>

<p>This is just a simple beginning of course. Where would we really want to go from here?</p>
<ul>
<li>The current limitation is that it only really works well with one link tag (items get replaced)</li>
<li>I want to add preferences so the user can let the add-on know what they want to be alerted about (e.g. yes to Titanium apps and Greasemonkey scripts only!)</li>
<li>Be smart based on installation: E.g. if you don&#8217;t have Fluid (and especially if not on a Mac), don&#8217;t show it</li>
<li>Get social: &#8220;You have three friends who have installed TweetDeck&#8221;. This requires the browser being smarter about your social graph, which <a href="http://almaer.com/blog/gears-future-apis-openid-and-oauth">I think is a natural progression</a>.</li>
<li>It should be smarter and not bug you when you go back to the same page. That can be fixed via the <a href="https://developer.mozilla.org/En/NsIAnnotationService">AnnotationService</a>.</li>
</ul>
<p>That leads me to XUL. I tweeted how it can feel a little strange to look up XUL docs and see dates in the lower 2000s. You have this nagging feeling of &#8220;has something really not changed since them? Is there an new better way of doing this?&#8221;  As @mfinkle pointed out, &#8220;XUL is stable.&#8221;</p>
<p>I have to say thanks to the <a href="http://labs.mozilla.com/projects/ubiquity/">Ubiquity team</a> who had <a href="http://hg.toolness.com/ubiquity-firefox/file/95f3d1e7afc4/ubiquity/modules/linkrel_codesvc.js">done the lifting for me</a>, which meant that this add-on took an hour to write!</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/appdiscover/feed</wfw:commentRss>
		</item>
		<item>
		<title>Frustration with online games for kids</title>
		<link>http://almaer.com/blog/frustration-with-online-games-for-kids</link>
		<comments>http://almaer.com/blog/frustration-with-online-games-for-kids#comments</comments>
		<pubDate>Mon, 08 Dec 2008 15:35:13 +0000</pubDate>
		<dc:creator>dion</dc:creator>
		
		<category><![CDATA[Games]]></category>

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

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

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

		<guid isPermaLink="false">http://almaer.com/blog/frustration-with-online-games-for-kids</guid>
		<description><![CDATA[Sorry, you must have a Windows PC and Internet Explorer 5.5 or greater to play this game
Excuse me? This is exactly why I joined Mozilla with Ben. I don&#8217;t want to access my bank in 2010 and see &#8220;You must be running Silverlight on Windows with IE 9&#8243;. It sounds crazy, but think back a [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Sorry, you must have a Windows PC and Internet Explorer 5.5 or greater to play this game</p></blockquote>
<p>Excuse me? This is exactly why I joined Mozilla with Ben. I don&#8217;t want to access my bank in 2010 and see &#8220;You must be running Silverlight on Windows with IE 9&#8243;. It sounds crazy, but think back a few years and we were there. And, this message from a Dora the Explorer game reminded me that we still even have that problem today!</p>
<p><img src='http://almaer.com/blog/uploads/doragame.png' alt='Dora Game' border='0'/></p>
<p>This brings me to online games. There are so many (mainly Flash) games for kids online. It is fantastic. I play <a href="http://pbskids.org/">PBS Kids</a> games such as Curious George with Sam for hours.</p>
<p>The problem I run into is that because they are simple little games, they don&#8217;t have the notion of saving a game, or going to a level. I can see why the creators wouldn&#8217;t put this in. It is more work, and they probably think &#8220;these are quick little games, who needs that?&#8221;</p>
<p>The problem is that kids tend to get addicted to a game and want to play it again and again and again. Sam will want to go back to play, and it is so annoying to play the same first level once again! Let me skip!</p>
<p>And then there is losing the game. Kids get so attached, that I dread the following interaction (which has happened):</p>
<ul>
<li>Daddy, let&#8217;s play the Curious George game with the boats</li>
<li>Ok, *opens it up on the computer*</li>
<li>Um, it looks like that game isn&#8217;t there, let&#8217;s try the new one</li>
<li>NOOOOO I WANT THE BOATS</li>
</ul>
<p>Kids really care, so game sites, please add rather than deleting if you can. There is a kid out there that loves the game, and you break his heart when you nuke it. The good news is that 5 minutes later he is onto the next thing&#8230;. but still.</p>
<p>Any other parents run into this? Any favourite games?</p>
]]></content:encoded>
			<wfw:commentRss>http://almaer.com/blog/frustration-with-online-games-for-kids/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
