<?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>Beyond the Misty Mountains &#187; UTOSP</title>
	<atom:link href="http://dexterthedragon.com/tag/utosp/feed/" rel="self" type="application/rss+xml" />
	<link>http://dexterthedragon.com</link>
	<description></description>
	<lastBuildDate>Fri, 21 May 2010 17:10:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Stepping into the future</title>
		<link>http://dexterthedragon.com/2010/05/stepping-into-the-future/</link>
		<comments>http://dexterthedragon.com/2010/05/stepping-into-the-future/#comments</comments>
		<pubDate>Fri, 21 May 2010 17:10:02 +0000</pubDate>
		<dc:creator>Dexter</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[UTOSP]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://dexterthedragon.com/?p=170</guid>
		<description><![CDATA[A little while back a friend of mine was telling me about a project he was working on. One of the things he mentioned was how he was using some of the new styles CSS3 offers. Around the same time I discovered a script that would enable some of those CSS3 feature in Internet Explorer. [...]]]></description>
			<content:encoded><![CDATA[<p>A little while back a <a href="http://brokenresolve.com" target="_blank">friend</a> of mine was telling me about a <a href="http://www.brokenresolve.com/2010/05/slither-game/" target="_blank">project</a> he was working on. One of the things he mentioned was how he was using some of the new styles CSS3 offers. Around the same time I discovered a script that would enable some of those CSS3 feature in Internet Explorer. That got me thinking about things and one day I was looking at this site and decided to overhaul things.</p>
<p>Initially my plan was to to replace the complex use of images to do the rounded corners and drop shadow effects. But once I got going I ended up changing large chunks of the CSS, converting to HTML5, and radically altering IE support.</p>
<h3>CSS3</h3>
<p>I started out only intending to use the CSS3 styles border-radius and box-shadow to replace the way it was currently done. Previously in order to achieve the rounded corner effects, it required the use of some complex html, several images, and a large chunk of CSS. I decided with all current browsers but IE supporting border-radius (either border-radius directly or by extensions like -webkit-border-radius and -moz-border-radius) that I would use that. So I set out and deleted the complex html and replaced large amounts of CSS with just a handful of new properties. The results were great. Side by side the old way and new one looked identical. I then did the same thing using the box-shadow property. Doing this removed about 900 lines of CSS, 100k worth of images, and reduced the page size about 10k.</p>
<div id="attachment_224" class="wp-caption alignleft" style="width: 160px"><a href="http://dexterthedragon.com/wp-content/uploads/2010/05/old_look.png"><img class="size-thumbnail wp-image-224" title="old_look" src="http://dexterthedragon.com/wp-content/uploads/2010/05/old_look-150x130.png" alt="" width="150" height="130" /></a><p class="wp-caption-text">The old way</p></div>
<div id="attachment_223" class="wp-caption alignleft" style="width: 160px"><a href="http://dexterthedragon.com/wp-content/uploads/2010/05/new_look.png"><img class="size-thumbnail wp-image-223" title="new_look" src="http://dexterthedragon.com/wp-content/uploads/2010/05/new_look-150x126.png" alt="" width="150" height="126" /></a><p class="wp-caption-text">The new way</p></div>
<p style="clear: both;">Now this had the site looking the same in all browsers but IE. The solution for this is a <a href="http://www.fetchak.com/ie-css3/" target="_blank">behavior file</a> for IE that adds support for border-radius and box-shadow. After a short time fighting to get it to work I figured it out and had the site looking the same in IE&#8230;. Well mostly. The behavior file only supports border-radius so all 4 corners are rounded. The boxes in the right side bar only have the top corners rounded and the script didn&#8217;t work for those. After exploring possibly using something like <a href="http://www.dillerdesign.com/experiment/DD_roundies/" target="_blank">DD_roundies</a> to support this I decided that I was ok with that little bit of the site looking square in IE.</p>
<h3>HTML5</h3>
<p>After that I started wondering about other new browser technologies out there. With HTML5 being the main one. I started testing out the water by replacing the doctype with &lt;!DOCTYPE html&gt;. Ah simplicity. Then I reduced the html tag to &lt;html lang=&#8221;en-US&#8221;&gt;. Liking it so far. But there&#8217;s a lot more to HTML5 than just shortening a few tags.</p>
<p>One of the more notable changes is new input types. Types like email, url address, search, date, color picker. Now being a blog the only input box on my site is a search box to search the archives. So I changed it to be type=&#8217;search&#8217;. Now what does this do? In most browsers, nothing. It just acts like a plain old text input. But in Safari and Chrome when you enter something into the box a little x appears on the right that you can click to clear the box. I know right, it&#8217;s awesome. Another new input feature of HTML5 is the placeholer attribute. This attribute allows you to define text that will show up in the input when no text has been entered. So in browsers that support it (currently just Safari and Chrome) you&#8217;ll see &#8216;Search Archives&#8217; show up as place holder text in the search box.</p>
<p>HTML5 comes with a new set of <a href="http://diveintohtml5.org/semantics.html#new-elements" target="_blank">semantic tags</a>. Those tags are: &lt;section&gt;, &lt;nav&gt;, &lt;article&gt;, &lt;aside&gt;, &lt;hgroup&gt;, &lt;header&gt;, &lt;footer&gt;, &lt;time&gt;, &lt;mark&gt;. Now when I first saw those tags I think I reacted like everyone else did. &#8220;Well those are stupid. Why not just use div&#8217;s.&#8221; But then I got to thinking about it and what HTML is really for. HTML is the Hyper Text Markup Language. It&#8217;s meant to mark up text on the web in some meaningful way. We&#8217;ve just been using div&#8217;s cause we needed a way to style things. So then it made sense to use specific tags to markup the different bits of content.</p>
<p>As a result I&#8217;ve taken to using the header, footer, nav, article, aside, and time tags in their respective places. Now this brings up the question of how browsers handle these unknown tags. It comes down to 2 issues, how are unknown tags styled and how are they placed in the DOM tree in relation to the other tags. Most browsers just don&#8217;t style unknown elemets but allow you to with CSS. Also most browsers place the nodes in the DOM tree how they are defined. The exception here is IE. It doesn&#8217;t allow styling of unknown elements and it places them as empty nodes in the DOM tree, thereby breaking the structure. There&#8217;s a fix for this though. By using JavaScript to create dummy elements, IE will then recognize them and do the expected thing. So we add basically the following code.</p>
<pre class="brush: jscript;">
&lt;!--[if lt IE 9]&gt;
&lt;script&gt;
  var e = (&quot;abbr,article,aside,audio,canvas,datalist,details,&quot; +
    &quot;figure,footer,header,hgroup,mark,menu,meter,nav,output,&quot; +
    &quot;progress,section,time,video&quot;).split(',');
  for (var i = 0; i &lt; e.length; i++) {
    document.createElement(e[i]);
  }
&lt;/script&gt;
&lt;![endif]--&gt;
</pre>
<p>This code creates all the new HTML5 elements in IE so that they will work. I am using the <a href="http://code.google.com/p/html5shiv/" target="_blank">html5shiv script</a> to do this. Another thing to add is this bit of CSS that will give these new elements a sensible default.</p>
<pre class="brush: css;">
header, footer, article, section, hgroup, nav, figure {
    display:block;
}
</pre>
<p>With all that in place we can use the new HTML5 tags like we want.</p>
<p>The final stop on the HTML5 tour is video. I&#8217;m not really a fan of Flash and have never really gotten it to work for playing videos on the site. So I was excited about having the browser be able to handle the video. I decided that I wanted to make use of the <a href="http://camendesign.com/code/video_for_everybody" target="_blank">Video 4 Everyone</a> code that would make it so HTML5 video would work using H.264 or Theora depending on the browser, but also drop down to using a Flash player if HTML5 video wasn&#8217;t supported.</p>
<p>I searched for a WordPress plugin that would do this and found a couple, but upon trying them out found that they had problems and just didn&#8217;t quite do what I wanted. One of them had a feature that allowed you to upload any video and it would convert it to the H.264 and Theora versions for you. This was something that I thought was nice so I started with that as a base and started writing my own plugin to handle HTML5 video. Pretty quickly I started running into hurdles.</p>
<p>Time for a side rant. Currently the HTML5 spec doesn&#8217;t define what codecs are to be used for video. As a result it&#8217;s currently split between the proprietary H.264 codec and the open source Theora codec. Whatever I thought because I can provide support for both with ffmpeg encoding to both formats and the broswer can use the one it supports. Problem came when I tried to do this and found out my ubuntu server doesn&#8217;t support encoding to H.264 due to its licensing restrictions. From a technical standpoint I like the H.264 codec and the results it gives, but the patents and legalities that surround it are very scary. End rant.</p>
<p>So side stepping the encoding problem and converting to H.264 on a different machine and uploading it later, I got my plugin functional. Now all current and future videos on the site use HTML5 video and dropdown to Flash if that&#8217;s not supported. I hope to clean up the plugin code and add a couple features so that I can release it sometime soon.</p>
<h3>Internet Explorer Support</h3>
<p>Previously I maintained IE6 support using a separate IE6 only CSS file. This stylesheet file was 679 lines long of tweaks for just IE6. After having changed so much HTML and CSS and seeing how poorly IE6 supported a lot of it, I decided it was time to end support of that browser. I&#8217;m <a href="http://arstechnica.com/microsoft/news/2010/02/youtube-to-kill-ie6-support-on-march-13.ars" target="_blank">not</a> <a href="http://37signals.blogs.com/products/2008/07/basecamp-phasin.html" target="_blank">alone</a> <a href="http://www.guardian.co.uk/technology/blog/2010/feb/01/google-docs-dropping-ie6-support" target="_blank">on</a> <a href="http://37signals.com/svn/posts/1072-apples-mobileme-drops-support-for-ie-6" target="_blank">this</a>. I searched around a bit and found a script I liked that would alert an IE6 user that their browser is old and unsupported. One of the requirements I had for this script was that even though it alerted them that the browser was old and unsupported, it would still allow them to use the site if they chose even though the experience was going to be a little ugly and maybe even a little broken. The <a href="http://code.google.com/p/sevenup/" target="_blank">sevenup script</a> did just that.</p>
<div id="attachment_222" class="wp-caption alignnone" style="width: 160px"><a href="http://dexterthedragon.com/wp-content/uploads/2010/05/ie6.png"><img class="size-thumbnail wp-image-222" title="ie6" src="http://dexterthedragon.com/wp-content/uploads/2010/05/ie6-150x133.png" alt="" width="150" height="133" /></a><p class="wp-caption-text">Upgrade IE6</p></div>
<p>Wanting people to still be able to use the site in IE6 if they chose to meant I still needed a small amount of fixes to make it bearable. I added in the <a href="http://www.dillerdesign.com/experiment/DD_belatedPNG/" target="_blank">DD_BelatedPNG</a> script to add in transperancy support for images in IE6. I replaced the IE6 stylesheet with just a handful of rules so things don&#8217;t look too terrible. All in all I hope anybody using IE6 would upgrade but if they choose not to at least it&#8217;s mostly usable for them.</p>
<p>As far as support in IE 7 and 8 goes, using the scripts mentioned above for HTML5 and CSS3 support they pretty much look the same as other browsers. There&#8217;s a few styles that don&#8217;t look as I intend, but I&#8217;m ok with the look deteriorating slightly in a browser with lackluster support.</p>
<h3>Simplifying WordPress</h3>
<p>After having changed all this HTML and CSS I began wondering if I could simplify the code used as part of my WordPress theme. Previously in order to add the complex HTML for the rounded corners into things like comments and the sidebar widgets required some equally complex and hacky code around the WordPress functions. I began removing this code and found that for the most part I could go back to using the default HTML produced by the WordPress functions and style them to look the same using just CSS. In the end I&#8217;ve ended up removing 168 lines of php code, and 100KB of images.</p>
<p>In the end I had a lot of fun with the changes I did to the site. Hopefully things like better video support get me posting more often. I have a few plans for things in the future. Stay tuned.</p>
<p>-Dexter-</p>
]]></content:encoded>
			<wfw:commentRss>http://dexterthedragon.com/2010/05/stepping-into-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Discovering LaTeX</title>
		<link>http://dexterthedragon.com/2009/10/discovering-latex/</link>
		<comments>http://dexterthedragon.com/2009/10/discovering-latex/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 16:42:58 +0000</pubDate>
		<dc:creator>Dexter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[UTOSP]]></category>

		<guid isPermaLink="false">http://dexterthedragon.com/?p=79</guid>
		<description><![CDATA[So back when I was still in college I went hunting around the internet for a OpenOffice.org resume template. I eventually found one that I liked and started using it for my resume. Fast forward 4 years and I was still using this same template. Now I liked the look of this template but I [...]]]></description>
			<content:encoded><![CDATA[<p>So back when I was still in college I went hunting around the internet for a OpenOffice.org resume template. I eventually found one that I liked and started using it for my resume. Fast forward 4 years and I was still using this same template. Now I liked the look of this template but I always hated editing it. It was full of tables and different formatting, the template was originally for OpenOffice 1 and 3 is the current version. Needless to say I never really updated it unless I had to and even then only like a word here and there.</p>
<p>That&#8217;s when I discovered LaTeX. Well not really discovered, I&#8217;ve known about LaTeX for awhile, just have never looked at doing anything with it. But one day I was surfing the internet and came across a <a href="http://www.eecs.harvard.edu/~cduan/misc/resume-ref.shtml" target="_blank">LaTeX resume class file</a>. I loved the look of it and figured if I could get it to work it would be so much nicer than the OpenOffice file.</p>
<p>Lets take a step back for a sec so I can explain what LaTeX is for those who don&#8217;t know. LaTeX is an extension of the TeX document markup and typesetting program. Basically you write up a document in plain text with some extra LaTeX markup that describes the documents look. This allows you to focus more on the content of your document while LaTeX handles the typesetting. You can then generate the final look using that plain text. Usually creating a PDF. LaTeX is used most by mathematicians and scientists for writing formulas and by book writers. Here&#8217;s an example taken from wikipedia.</p>
<p>Here&#8217;s the LaTeX markup:</p>
<pre class="brush: latex;">
\documentclass[12pt]{article}
\usepackage{amsmath}
\title{\LaTeX}
\date{}
\begin{document}
  \maketitle
  \LaTeX{} is a document preparation system for the \TeX{}
  typesetting program. It offers programmable desktop publishing
  features and extensive facilities for automating most aspects of
  typesetting and desktop publishing, including numbering and
  cross-referencing, tables and figures, page layout, bibliographies,
  and much more. \LaTeX{} was originally written in 1984 by Leslie
  Lamport and has become the dominant method for using \TeX; few
  people write in plain \TeX{} anymore. The current version is
  \LaTeXe.

  % This is a comment, it is not shown in the final output.
  % The following shows a little of the typesetting power of LaTeX
  \begin{align}
    E &amp;= mc^2                              \\
    m &amp;= \frac{m_0}{\sqrt{1-\frac{v^2}{c^2}}}
  \end{align}
\end{document}
</pre>
<p>This generates to look like this:</p>
<p><img class="alignnone size-full wp-image-112" title="425px-LaTeX_Output" src="http://dexterthedragon.com/wp-content/uploads/2009/10/425px-LaTeX_Output.png" alt="425px-LaTeX_Output" width="425" height="296" /></p>
<p>Pretty sweet. That&#8217;s something I can get on board with, writing the document in plain text and then generating the final look. So much easier than fighting a word processor to attempt to get what I want. So I downloaded the class file and set out trying to figure out the LaTeX markup. Now as you can see from the example above the markup can be a little confusing at first. Starting out I mostly just copied the markup from the example from the class file, using the <a href="http://en.wikibooks.org/wiki/LaTeX" target="_blank">LaTeX book on wikibooks</a> to look thing up as I came to them. After this I found <a href="http://dexterthedragon.com/wp-content/uploads/2009/10/lshort.pdf">The Not So Short Introduction To LaTeX</a>, a relatively short (about 125 page) free ebook. Highly recommended.</p>
<p>So now I have my resume as a plain text file, that is under version control using git. This makes it much easier to go in and make changes whenever I want without having to worry. If I change something that I later don&#8217;t like I can just look at the history. Then after I&#8217;m done making my changes all I have to do is a &#8220;pdflatex resume.tex&#8221; to generate a pdf copy to look at. Also because LaTeX is a typesetting system the final output looks amazing.</p>
<p>So there you have it, my conversion to LaTex. Unfortionately the only thing I&#8217;ve used it for so far is my resume. It&#8217;s too bad I wasn&#8217;t enlightened when I was still in college, I would have written every paper in it. So now I keep thinking about what I could use it for. I recently discovered <a href="http://latex-beamer.sourceforge.net/" target="_blank">Beamer</a>, a LaTeX class for creating presentations. Tho I don&#8217;t usually create slides for my presentations. Maybe I should write a book&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://dexterthedragon.com/2009/10/discovering-latex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JoliCloud Review</title>
		<link>http://dexterthedragon.com/2009/10/jolicloud-review/</link>
		<comments>http://dexterthedragon.com/2009/10/jolicloud-review/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 00:27:22 +0000</pubDate>
		<dc:creator>Dexter</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[UTOSP]]></category>

		<guid isPermaLink="false">http://dexterthedragon.com/?p=119</guid>
		<description><![CDATA[Probably about a year ago was when I first heard of JoliCloud. At that time it was this mysterious thing, an operating system for netbooks that was supposedly leaps and bounds better than what was currently available to run on netbooks. This sounded really interesting to me so I entered my email on their site [...]]]></description>
			<content:encoded><![CDATA[<p>Probably about a year ago was when I first heard of <a href="http://www.jolicloud.com/">JoliCloud</a>. At that time it was this mysterious thing, an operating system for netbooks that was supposedly leaps and bounds better than what was currently available to run on netbooks. This sounded really interesting to me so I entered my email on their site to get an invite when they released it. Jump to a couple months ago and I get an email to download the alpha version of JoliCloud. Excited, I hurriedly downloaded it and installed in on my Eee pc. Here&#8217;s some of my thoughts on it.</p>
<p>I popped it in and started it up and was greeted to a startup screen and boot screen that looked a lot like Ubuntu&#8217;s.</p>
<p><a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud1.png"> </a><a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud1.png"><img class="alignnone size-thumbnail wp-image-127" title="jolicloud1" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud1-150x112.png" alt="jolicloud1" width="150" height="112" /></a> <a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud2.png"><img class="alignnone size-thumbnail wp-image-128" title="jolicloud2" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud2-150x112.png" alt="jolicloud2" width="150" height="112" /></a></p>
<p>I walked through the installer all the while thinking it looked like Ubuntu. I let the installer finish and the system reboot and I&#8217;m greeted with the <a href="http://www.canonical.com/projects/ubuntu/unr">Ubuntu Netbook Remix</a> interface.</p>
<p><a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud3.png"><img class="alignnone size-thumbnail wp-image-129" title="jolicloud3" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud3-150x112.png" alt="jolicloud3" width="150" height="112" /></a></p>
<p>And thats exactly what it is, Ubuntu Netbook Remix. The JoliCloud part is an application that is launched when you click that cloud icon. This is where the invitation part comes in as you login to JoliCloud here.</p>
<p><a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud4.png"><img class="alignnone size-thumbnail wp-image-131" title="jolicloud4" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud4-150x112.png" alt="jolicloud4" width="150" height="112" /></a></p>
<p>After you login you end up on the dashboard that basically shows what system updates there are and maybe some notification things.</p>
<p><a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud5.png"><img class="alignnone size-thumbnail wp-image-132" title="jolicloud5" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud5-150x112.png" alt="jolicloud5" width="150" height="112" /></a></p>
<p>The other tabs are the App Directory (which I&#8217;ll come back to) and the Settings tab. JoliCloud is like a social network that allows you to follow people kinda like Twitter.</p>
<p><a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud7.png"><img class="alignnone size-thumbnail wp-image-133" title="jolicloud7" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud7-150x112.png" alt="jolicloud7" width="150" height="112" /></a> <a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud6.png"><img class="alignnone size-thumbnail wp-image-134" title="jolicloud6" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud6-150x112.png" alt="jolicloud6" width="150" height="112" /></a></p>
<p>The App Directory is the main thing of JoliCloud. From it you can install any application with one click. As you can see in the picture above of the App Directory there are normal applications like Skype and VLC, then there are webapps like Gmail and Facebook. You can install any of these apps with a click of a button.</p>
<p><a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud8.png"><img class="alignnone size-thumbnail wp-image-136" title="jolicloud8" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud8-150x112.png" alt="jolicloud8" width="150" height="112" /></a> <a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud9.png"><img class="alignnone size-thumbnail wp-image-137" title="jolicloud9" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud9-150x112.png" alt="jolicloud9" width="150" height="112" /></a></p>
<p>After you&#8217;ve got something installed you go back to the Ubuntu NBR interface (by clicking the home icon in the upper left) to launch it. For the webapps they open in a full screen window.</p>
<p><a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud11.png"><img class="alignnone size-thumbnail wp-image-138" title="jolicloud11" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud11-150x112.png" alt="jolicloud11" width="150" height="112" /></a> <a href="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud12.png"><img class="alignnone size-thumbnail wp-image-139" title="jolicloud12" src="http://dexterthedragon.com/wp-content/uploads/2009/10/jolicloud12-150x112.png" alt="jolicloud12" width="150" height="112" /></a></p>
<p>So I was curious how it was doing this, mainly the JoliCloud app and running the webapps. So I went hunting around the system and found that all its basically doing is using <a href="http://prism.mozilla.com/">Mozilla Prism</a>. Prism is a browser like Firefox, but it places an icon on your desktop and ties that site to a single browser window. This makes it seem like the webapp is a normal desktop app. As far as the JoliCloud program, it&#8217;s just another site running in Prism that hooks into Ubuntu&#8217;s apt system to install programs.</p>
<p>So there you have it, it&#8217;s Ubuntu NBR using Mozilla Prism. Not as revolutionary as you would hope. Sure its optimized some for netbooks, but so is something like Eeebuntu. I don&#8217;t care much for Ubuntu NBR, mainly Maximus, the thing that runs every program as maximized, and the way it shows items on the taskbar. I think it also comes down to the fact that I can install programs from the command line just as easy as clicking an icon. And if I want to run a webapp in a single window I can just install Prism and set it up myself. When it comes to my netbook usage, I&#8217;m usually pretty minimal. Firefox and a terminal are the apps I use most. With the ocassional pdf or movie viewing. So for now I&#8217;ll keep looking for a setup I like on my netbook. I&#8217;m really hopeful for <a href="http://arstechnica.com/open-source/reviews/2009/07/kdes-new-plasma-netbook-interface-shines-in-small-places.ars">KDE&#8217;s plasma netbook shell</a> that they are developing.</p>
<p>-Dexter-</p>
]]></content:encoded>
			<wfw:commentRss>http://dexterthedragon.com/2009/10/jolicloud-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Living on the moon</title>
		<link>http://dexterthedragon.com/2009/07/living-on-the-moon/</link>
		<comments>http://dexterthedragon.com/2009/07/living-on-the-moon/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 04:20:52 +0000</pubDate>
		<dc:creator>Dexter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[nasa]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[UTOSP]]></category>

		<guid isPermaLink="false">http://dexterthedragon.com/?p=81</guid>
		<description><![CDATA[Between the launch of Endeavour on STS-127, LRO sending back pictures of the Apollo landing sites, and the 40th anniversary of landing on the moon, I&#8217;ve been thinking about space a lot. The other day I was discussing NASA&#8217;s future plans with a friend, about the design of the Ares I and Ares V and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-thumbnail wp-image-85" title="Entering_a_Lunar_Outpost" src="http://dexterthedragon.com/wp-content/uploads/2009/07/Entering_a_Lunar_Outpost-150x150.jpg" alt="Entering_a_Lunar_Outpost" width="150" height="150" />Between the launch of Endeavour on <a href="http://www.nasa.gov/mission_pages/shuttle/shuttlemissions/sts127/index.html" target="_blank">STS-127</a>, LRO sending back <a href="http://www.nasa.gov/mission_pages/LRO/multimedia/lroimages/apollosites.html" target="_blank">pictures of the Apollo landing sites</a>, and the <a href="http://www.nasa.gov/mission_pages/apollo/40th/" target="_blank">40th anniversary of landing on the moon</a>, I&#8217;ve been thinking about space a lot. The other day I was discussing NASA&#8217;s future plans with a friend, about the design of the <a href="http://www.nasa.gov/mission_pages/constellation/ares/index.html" target="_blank">Ares I and Ares V</a> and NASA&#8217;s plan to return to the moon. The conversation then went into the establishment of a base on the moon. And saying that struck me as something that&#8217;s only in science fiction, a &#8220;moon base&#8221;. At the time it just seemed terribly absurd.</p>
<p>But then I thought about it and it doesn&#8217;t seem so crazy. There have been people living in space stations orbiting the earth since about 1971. First in the <a href="http://en.wikipedia.org/wiki/Salyut_program" target="_blank">Russion Salyut</a> stations and later <a href="http://en.wikipedia.org/wiki/Mir" target="_blank">Mir</a>, then the <a href="http://www.nasa.gov/mission_pages/skylab/index.html" target="_blank">US Skylab</a>, and now in the <a href="http://www.nasa.gov/mission_pages/station/main/index.html" target="_blank">International Space Station</a>, which has had a perminant crew since November 2000. A crew that went from 3 people to 6 this past May. At this point I would say we&#8217;re pretty experienced with things like building habitations in space and dealing with the effects of micro-gravity on the human body.</p>
<p>So living on the moon really wouldn&#8217;t be that much different. In some ways I think it would be easier. The moon has 1/6th the gravity of earth, making tasks like eating and getting around simpler. Also being on the moon would give you places to go. You could put on your suit, step outside the outpost, and go for a ride in your dune buggy, play a round of golf, or watch the earth come up.</p>
<p>The idea is to send up an outpost piece by piece. Basically like single rooms that you could link together to build the place. By now I&#8217;m thinking this is totally possible. And not only that, but possible within the next several years. If I ever get a chance to vacation on the moon, I&#8217;m taking it! Science fiction is becoming reality.</p>
<p>-Dexter-</p>
]]></content:encoded>
			<wfw:commentRss>http://dexterthedragon.com/2009/07/living-on-the-moon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Design</title>
		<link>http://dexterthedragon.com/2009/07/new-design/</link>
		<comments>http://dexterthedragon.com/2009/07/new-design/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 02:01:23 +0000</pubDate>
		<dc:creator>Dexter</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[UTOSP]]></category>

		<guid isPermaLink="false">http://dexterthedragon.com/?p=72</guid>
		<description><![CDATA[So I&#8217;ve been working on this for about a month and finally decided I needed to get it up now or I was never going to. So after a few days of fighting with the method I was using to install WordPress and a couple plugins, here it is. This is my second design of [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been working on this for about a month and finally decided I needed to get it up now or I was never going to. So after a few days of fighting with the method I was using to install WordPress and a couple plugins, here it is. This is my second design of the site. It incorporates things from my first design, mainly the colors, but unlike that first version, this one isn&#8217;t ugly. At least I don&#8217;t think so, I&#8217;m really liking this design.</p>
<p>I have a lot of plans for things I want to add to the site and I&#8217;ll be working on that in the near future. I also hope that now that I have a design I like that I&#8217;ll be more inclined to use it. I already have a couple of new posts in mind so keep on the lookout for that.</p>
<p>Let me know what you think of the new look in the comments.</p>
<p>-Dexter-</p>
]]></content:encoded>
			<wfw:commentRss>http://dexterthedragon.com/2009/07/new-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My New Project</title>
		<link>http://dexterthedragon.com/2008/12/my-new-project/</link>
		<comments>http://dexterthedragon.com/2008/12/my-new-project/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 05:35:10 +0000</pubDate>
		<dc:creator>Dexter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[UTOSP]]></category>

		<guid isPermaLink="false">http://dexterthedragon.com/?p=59</guid>
		<description><![CDATA[Being the geek that I am I have more projects that I am working on than I can ever hope to finish. Recently I decided to add another one to the list.
For the past couple of weeks I&#8217;ve had the itch to get back into 3D Animation. Its been a few years, since college, that [...]]]></description>
			<content:encoded><![CDATA[<p>Being the geek that I am I have more projects that I am working on than I can ever hope to finish. Recently I decided to add another one to the list.</p>
<p>For the past couple of weeks I&#8217;ve had the itch to get back into 3D Animation. Its been a few years, since college, that I&#8217;ve done any animation. So I decided to download <a href="http://blender.org" target="_blank">Blender</a> and go through some of the tutorials I have. One of the things I have is a <a href="http://gryllus.net/Blender/3D.html" target="_blank">Blender 3D Design Course</a>. I was happy when I fired Blender up and I still remembered some of the keyboard shortcuts. I also like some of the new features that have been added since I last used it.</p>
<p>To start off the course it went through a tutorial to model and animate a little submarine.<br />
<!-- "Video For Everybody" v0.3.3
    =================================================================================================================== -->
<!-- first try HTML5 playback. if serving as XML, expand `controls` to `controls="controls"` and autoplay likewise -->
<video width="320" height="256" poster="http://dexterthedragon.com/wp-content/video/original/0001_0100.jpg" controls>
    <!-- MP4 must be first for iPad! you must use `</source>` to avoid a closure bug in Firefox 3.0 / Camino 2.0! -->
    <source src="http://dexterthedragon.com/wp-content/video/original/0001_0100.mp4" type="video/mp4"><!-- Safari / iPhone video    --></source>
    <source src="http://dexterthedragon.com/wp-content/video/original/0001_0100.ogg" type="video/ogg"><!-- Firefox native OGG video --></source>
    <!-- fallback to Flash -->
    <object id="flowpayer229" width="320" height="256" type="application/x-shockwave-flash"
    data="http://dexterthedragon.com/wp-content/plugins/univers/players/v4e/player.swf?image=http://dexterthedragon.com/wp-content/video/original/0001_0100.jpg&amp;file=http://dexterthedragon.com/wp-content/video/original/0001_0100.mp4">
        <!-- Firefox uses the `data` attribute above, IE/Safari uses the param below -->
        <param name="movie" value="http://dexterthedragon.com/wp-content/plugins/univers/players/v4e/player.swf?image=http://dexterthedragon.com/wp-content/video/original/0001_0100.jpg&amp;file=http://dexterthedragon.com/wp-content/video/original/0001_0100.mp4" />
        <!-- fallback image. download links are below the video. warning: putting anything more than
            the fallback image in the fallback may trigger an iPhone OS3+ bug where the video will not play -->
        <img src="http://dexterthedragon.com/wp-content/video/original/0001_0100.jpg" width="320" height="256" alt=""
            title="No video playback capabilities"
        />
    </object>
</video>
</p>
<p>The next lesson was about basic modeling skills. The first tutorial from this lesson was modeling a sofa.<br />
<a href="http://dexterthedragon.com/wp-content/uploads/2008/12/sofa.jpg"><img class="alignnone size-thumbnail wp-image-163" title="sofa" src="http://dexterthedragon.com/wp-content/uploads/2008/12/sofa-150x112.jpg" alt="" width="150" height="112" /></a><br />
Then it had you apply a texture to it.<br />
<a href="http://dexterthedragon.com/wp-content/uploads/2008/12/sofa_Zebrajpg.jpg"><img class="alignnone size-thumbnail wp-image-164" title="sofa_Zebrajpg" src="http://dexterthedragon.com/wp-content/uploads/2008/12/sofa_Zebrajpg-150x112.jpg" alt="" width="150" height="112" /></a></p>
<p>The 2nd tutorial was modeling a simple hand.<br />
<a href="http://dexterthedragon.com/wp-content/uploads/2008/12/hand.jpg"><img class="alignnone size-thumbnail wp-image-165" title="hand" src="http://dexterthedragon.com/wp-content/uploads/2008/12/hand-150x120.jpg" alt="" width="150" height="120" /></a><br />
Then adding an odd texture to it.<br />
<a href="http://dexterthedragon.com/wp-content/uploads/2008/12/handStraw.jpg"><img class="alignnone size-thumbnail wp-image-166" title="handStraw" src="http://dexterthedragon.com/wp-content/uploads/2008/12/handStraw-150x120.jpg" alt="" width="150" height="120" /></a></p>
<p>The 3rd tutorial in the lesson was modeling a snowman scene. I went a little further than the tutorial did. First this is how they wanted it to look.<br />
<a href="http://dexterthedragon.com/wp-content/uploads/2008/12/theirSnowman.jpg"><img class="alignnone size-thumbnail wp-image-167" title="theirSnowman" src="http://dexterthedragon.com/wp-content/uploads/2008/12/theirSnowman-150x120.jpg" alt="" width="150" height="120" /></a><br />
I decided the straight black arms, black nose, and circle mouth all looked kinda stupid, so I made mine better.<br />
<a href="http://dexterthedragon.com/wp-content/uploads/2008/12/snowman.jpg"><img class="alignnone size-thumbnail wp-image-168" title="snowman" src="http://dexterthedragon.com/wp-content/uploads/2008/12/snowman-150x112.jpg" alt="" width="150" height="112" /></a></p>
<p>The next lesson has you animating the snowman scene and I&#8217;ve already been thinking about how I&#8217;ll make it better than what they show.</p>
<p>All in all I&#8217;m having a lot of fun and look forward to learning more about Blender than I have known in the past. I&#8217;ll have to dig up my stuff from school and post it.</p>
<p>-Dexter-</p>
]]></content:encoded>
			<wfw:commentRss>http://dexterthedragon.com/2008/12/my-new-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello Planet</title>
		<link>http://dexterthedragon.com/2008/11/hello-planet/</link>
		<comments>http://dexterthedragon.com/2008/11/hello-planet/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 03:23:22 +0000</pubDate>
		<dc:creator>Dexter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[UTOSP]]></category>

		<guid isPermaLink="false">http://dexterthedragon.com/?p=51</guid>
		<description><![CDATA[Hello Planet!
So today Herlo noticed that my blog wasn&#8217;t on the Utah Open Source Planet and decided to add me. I&#8217;ve been meaning to get myself added but thought that I should wait until I started writing more tech-ish content. Well looking at the past things I&#8217;ve written most are pretty tech-ish in nature. Guess [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Planet!</p>
<p>So today <a href="http://sexysexypenguins.com/" target="_blank">Herlo</a> noticed that my blog wasn&#8217;t on the <a href="http://planet.utos.org/">Utah Open Source Planet</a> and decided to add me. I&#8217;ve been meaning to get myself added but thought that I should wait until I started writing more tech-ish content. Well looking at the past things I&#8217;ve written most are pretty tech-ish in nature. Guess I&#8217;m more of a geek than I thought. So I guess its good that I finally got added to the planet. Except now I might have to get rid of my &#8220;nobody reads my blog&#8221; shirt&#8230;. hmmm. Anyway hope you enjoy it.</p>
<p>-Dexter-</p>
]]></content:encoded>
			<wfw:commentRss>http://dexterthedragon.com/2008/11/hello-planet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Utah Open Source Conference Report</title>
		<link>http://dexterthedragon.com/2008/09/utah-open-source-conference-report/</link>
		<comments>http://dexterthedragon.com/2008/09/utah-open-source-conference-report/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 22:43:51 +0000</pubDate>
		<dc:creator>Dexter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Utah]]></category>
		<category><![CDATA[UTOSC]]></category>
		<category><![CDATA[UTOSP]]></category>

		<guid isPermaLink="false">http://dexterthedragon.com/?p=15</guid>
		<description><![CDATA[So here we are at the 2008 Utah Open Source Conference. I&#8217;ve been excited for this over the past few weeks. Got some really nice swag. Got a nice new messenger bag, several t-shirts, a cool little penguin, and other small things. Presentations were been good. Hit up a python one to begin with. Learned [...]]]></description>
			<content:encoded><![CDATA[<p>So here we are at the <a href="http://2008.utosc.com" target="_blank">2008 Utah Open Source Conference</a>. I&#8217;ve been excited for this over the past few weeks. Got some really nice swag. Got a nice new messenger bag, several t-shirts, a cool little penguin, and other small things. Presentations were been good. Hit up a python one to begin with. Learned some nice beginner python stuff. Then went to a wordpress performance one. <a href="http://joseph.randomnetworks.com/" target="_blank">Joseph Scott</a> did a good job presenting ideas to speed up a wordpress site. I then went to a SSH Tips and Tricks presentation. Learned some cool stuff about secure tunnels. After that I got roped into the <a href="http://www.gurulabs.com/" target="_blank">Guru Labs</a> Trouble Shooting Challenge. Only managed to figure out 2 of the 6 questions. Still glad I didn&#8217;t go down the sysadmin route. The first day ended with keynotes by Mac Newbold of <a href="http://codegreene.com/" target="_blank">Code Greene</a> and Paul Frields of Fedora. Mac talked about the benefits of using open source in a business. Paul talked about the Fedora community.</p>
<p>Day 2 started with <a href="http://ctevisions.com/" target="_blank">Chad</a> and I missing the first round of presentations, cause neither of us can get up that early. The first presentation I made it to was Linux Media, Security and Automation which was an interesting talk about setting up your house with security cameras and motion sensors and light dimmers, all controlled by Linux. Unfortunately I thought he spent too much time talking about the costs and the interoperability of the different items, than talking about the hardware and how to set it up and stuff. Next I went to HOWTO: Start an open-source radio station presented by Michael Place of <a href="http://www.utahfm.org/" target="_blank">utah.fm</a>. This was a cool talk about what it takes to create an online radio station. It was a surprisingly relatively inexpensive project.</p>
<p>There was then a lunch break followed by that days keynotes. Friday&#8217;s keynotes were by Michael Place and Joe Brockmeier. Michael Place is the author of <a href="http://www.schlockmercenary.com/" target="_blank">Schlock Mercenary</a> and talked about how he&#8217;s making money off of a free comic. He was a great presenter and I&#8217;m going to have to add Schlock Mercenary to my reading list. Joe Brockmeier is the project manager for openSUSE and talked about where openSUSE is today and where its going.</p>
<p>Things at the conference got a little out of whack after the keynotes and presentations ended up getting pushed back or something so I spent the next presentation slot hanging out in the exhibiters hall talking to people like mindjuju, <a href="http://lonnieolson.com" target="_blank">fungus</a>, and John Taber. Next I went to the Vim and Python presentation which the presenter didn&#8217;t show up for so Kevin Kubasik tried to fill in and was able to talk a little bit about vim but unfortunately I didn&#8217;t learn anything new.</p>
<p>After the presentation there was a geek dinner over at Tucanos in The Gateway. There were like 50 some odd geeks and geekettes there. The food was great and the conversations with all the other geeks were interesting. UTOS payed for Brazilian Lemonades for everyone, which were delicious. After the dinner Erik and I managed to catch the last train of the night.</p>
<p>Saturday I started off the day with an Ubuntu keynote. <a href="http://ubuntu-tutorials.com/" target="_blank">Christer Edwards</a> talked about using Ubuntu in the enterprise. Next up I went to a presentation by <a href="http://kubasik.net/blog/" target="_blank">Kevin Kubasik</a> on Writing Web Crawlers. The way he was doing web crawlers was quite advanced and way better than the way I used to do it. Then I went to Tools for Video and Images which talked about the various programs for dealing with images and video on Linux. After this we had lunch provided by The Smokehouse.</p>
<p>After lunch there wasn&#8217;t any particular presentation that I was intent on going to see and I was quite tired so I called it quits. I went home and promptly crashed on the couch for about 3 hours.</p>
<p>Overall I had a great time at UTOSC this year. Got some nice swag. Learned some new things. I&#8217;m looking forward to next years.</p>
]]></content:encoded>
			<wfw:commentRss>http://dexterthedragon.com/2008/09/utah-open-source-conference-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Purchasing on iTunes is a terrible experience</title>
		<link>http://dexterthedragon.com/2008/07/purchasing-on-itunes-is-a-terrible-experience/</link>
		<comments>http://dexterthedragon.com/2008/07/purchasing-on-itunes-is-a-terrible-experience/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 02:53:01 +0000</pubDate>
		<dc:creator>Dexter</dc:creator>
				<category><![CDATA[rant]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[UTOSP]]></category>

		<guid isPermaLink="false">http://dexterthedragon.com/2008/07/21/purchasing-on-itunes-is-a-terrible-experience/</guid>
		<description><![CDATA[So after watching the amazing Dr. Horrible for free more times than I can count over the weekend, I decided I would support their efforts and pay for the downloaded version. That and I really just want to watch it more.
So I goto their site and click the link to get it from iTunes. This [...]]]></description>
			<content:encoded><![CDATA[<p>So after watching the amazing <a href="http://www.drhorrible.com/">Dr. Horrible</a> for free more times than I can count over the weekend, I decided I would support their efforts and pay for the downloaded version. That and I really just want to watch it more.</p>
<p>So I goto their site and click the link to get it from iTunes. This takes me to a browser page asking me if I have iTunes installed. For some reason it pops up the confirm box twice for me to click yes I have it.</p>
<p>iTunes pops up and takes me to the page for Dr Horrible. So I click the &#8216;Buy Season Pass&#8217; button. This pops up a box asking for my account name and password. Now I have an iTunes account but I only ever used it way back in the day with those free pepsi songs. So I enter in my password and iTunes thinks for a second then realizes it will need my credit card details. Expected. So it pops up the account login box <em>again</em> before it takes me to the credit card page.</p>
<p>I enter in my credit card details and billing address info and click done and I&#8217;m taken to my account page. I&#8217;m sitting here wondering &#8216;am I done?&#8217;. Is it purchased? Is it downloading? A few clicks around iTunes and a trip to the &#8216;purchased&#8217; section reveals that I have nothing downloading. It didn&#8217;t purchase anything.</p>
<p>So now I have to go start over. Which for some odd reason a trip to the my account loses your iTunes back button. I have to go back to the website and click the iTunes link again to get back to the page I was in in iTunes. Click the &#8216;Buy Season Pass&#8217; button. And it asks for my password <em><strong>again</strong></em>. This box has no remember password feature.</p>
<p>This time I come out successful and a downloads section appears with 3 files downloading. Finally.</p>
<p>If this same user experience existed in online shops no one would ever use them. Seriously, can you imagine having to add something to your shopping cart. <strong>Login</strong> to proceed. <strong>Login</strong> to enter you billing info. Have to <strong>start over</strong> with adding it back to your cart. <strong>Login</strong> again to purchase.</p>
<p>So much for Apple usability.</p>
<p>update: To add to this, downloading through iTunes is painfully slow. Then when I went to watch them I popped them into the best media player around, <a href="http://www.videolan.org/vlc/">vlc</a>, and all I got was black. Turns out they are DRM protected m4v files. So the only option is to watch them in either iTunes or quicktime. Both of which chug barely able to play them. So after searching the web for something to strip the drm from the videos, like I did the few audio files I got from iTunes, and not finding anything usefull I turned to the amazing bittorrent and found a high quality rip to download. So now I have the unwatchable DRM laden ones I payed for and the watchable bittorrent ones.</p>
]]></content:encoded>
			<wfw:commentRss>http://dexterthedragon.com/2008/07/purchasing-on-itunes-is-a-terrible-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello Firefox 3&#8230;&#8230; Goodbye Firefox 3</title>
		<link>http://dexterthedragon.com/2008/06/hello-firefox-3-goodbye-firefox-3/</link>
		<comments>http://dexterthedragon.com/2008/06/hello-firefox-3-goodbye-firefox-3/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 05:45:51 +0000</pubDate>
		<dc:creator>Dexter</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[UTOSP]]></category>

		<guid isPermaLink="false">http://dexterthedragon.com/2008/06/18/hello-firefox-3-goodbye-firefox-3/</guid>
		<description><![CDATA[Welcome back Firefox 2.
That was how my Firefox Download Day went. I installed FF3, played with it for awhile, then reinstalled FF2. I was a little unimpressed. I wish I could like it, it&#8217;s got some really great features, but for now I think I&#8217;ll stick with 2. The couple things I don&#8217;t like are [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome back Firefox 2.</p>
<p>That was how my <a href="http://www.spreadfirefox.com/en-US/worldrecord" target="_blank">Firefox Download Day</a> went. I installed FF3, played with it for awhile, then reinstalled FF2. I was a little unimpressed. I wish I could like it, it&#8217;s got some really great features, but for now I think I&#8217;ll stick with 2. The couple things I don&#8217;t like are just too big for me to want to cope with.</p>
<p>The first and big one is the &#8220;AwesomeBar&#8221;. That thing is really not that awesome. Over the years of using the internet I&#8217;ve become very attached to the model of I type into the urlbar and it shows me url&#8217;s that start with those letters that are in my history. I don&#8217;t need my urlbar searching in my bookmarks. If I wanted to find something I had bookmarked I would go look for it in my bookmarks. I want my url bar to look in my url history.</p>
<p>Another thing is that when I click the dropdown arrow on the urlbar I expect to see a list of urls that I have <em>typed</em> into the bar. In firefox 2 you can open that dropdown and see the list of urls and arrow through them and hit the delete key on ones you don&#8217;t want in there. I would do that and basically keep a list of recently visted url&#8217;s that I could quickly jump to. Firefox 3 shows like the last few pages I have visited. That&#8217;s what the history menu up in the menu bar is for.</p>
<p>Also I miss the &#8216;go&#8217; button on the urlbar.</p>
<p>The other big thing I was less than pleased with was the new behavior when you visit a site with a semi invalid ssl certificate. In firefox 2 it would popup a message telling you why the ssl cert was bad and ask if you wanted to continue to the site or leave. In FF3 it blocks you outright and you have to go through this mess of setting up the site as an &#8216;exception&#8217;. Call me lazy but I like to just hit the OK button to get to the site.</p>
<p>The reason this bugs me more than it probably should is that being a web developer I have development machines that have self signed certificates. Which is ok cause they are just used for testing https so they don&#8217;t need to be signed by a CA. Also my firewall uses https for the web interface to it. The ssl is completely valid and encrypts my traffic. Firefox 3 just doesn&#8217;t like it cause it&#8217;s not signed by a special CA. Yeah I could setup these 3-4 machines to just be exceptions but I come across sites that use self-signed certs on a fairly frequent basis and I just think it would get annoying to have to go through the steps you have to in FF3 just to get to them. Especially on the ones I only want to allow the &#8216;bad cert&#8217; temporarily.</p>
<p>Lastly are my extensions. I had like 12 extensions that it said weren&#8217;t compatible with firefox 3. I&#8217;m sure in time these will get updated to work with it, but in the meantime being without them is like having pizza without the cheese.</p>
<p>There are a lot of new features in FF3 that I did like. Things like the new download manager. Being able to tag bookmarks. The new theme looks quite nice. Speed and memory improvements. The new way the remember password thing works. I really think if I could just get the urlbar to work the way it did before I would switch immediately. I&#8217;m sure in time I&#8217;ll switch and probably be forced to get used to the &#8216;AwesomeBar&#8217;, but until then I&#8217;m happy with FF2.</p>
<p>-Dexter-</p>
]]></content:encoded>
			<wfw:commentRss>http://dexterthedragon.com/2008/06/hello-firefox-3-goodbye-firefox-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
