<?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>morgamic.com &#187; OSL</title>
	<atom:link href="http://morgamic.com/category/osl/feed/" rel="self" type="application/rss+xml" />
	<link>http://morgamic.com</link>
	<description>stuff and things, according to Mike Morgan</description>
	<lastBuildDate>Sat, 19 May 2012 17:59:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>My Rackathon Donation</title>
		<link>http://morgamic.com/2006/09/29/my-rackathon-donation/</link>
		<comments>http://morgamic.com/2006/09/29/my-rackathon-donation/#comments</comments>
		<pubDate>Fri, 29 Sep 2006 18:15:32 +0000</pubDate>
		<dc:creator>morgamic</dc:creator>
				<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[OSL]]></category>

		<guid isPermaLink="false">http://morgamic.com/2006/09/29/my-rackathon-donation/</guid>
		<description><![CDATA[The OSU Open Source Lab has been good for open source. In my time there I learned about what makes open source tick, and that it&#8217;s not some mysterious cloud of elitist developers, but rather a group of people just &#8230; <a href="http://morgamic.com/2006/09/29/my-rackathon-donation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://morgamic.com/img/rackathon.jpg" longdesc="My name on the rack I helped to support"/></p>
<p>The <a href="http://osuosl.org/">OSU Open Source Lab</a> has been good for open source.  In my time there I learned about what makes open source tick, and that it&#8217;s not some mysterious cloud of elitist developers, but rather a group of people just like you and me who work hard everyday to keep things going and end up doing extraordinary things.  Kind of reminds me of <a href="http://mozilla.com/">where I work now</a>&#8230; <img src='http://morgamic.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So it wasn&#8217;t hard to <a href="">join the Rackathon</a> and donate some bucks to help support all of the projects they host.  It&#8217;s the least I can do.  If you enjoy the <a href="http://osuosl.org/hosting/clients">projects they host</a>, send some money their way and help support them.</p>
<p><em>Every little bit counts.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://morgamic.com/2006/09/29/my-rackathon-donation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Testing Habits Are Your Friend</title>
		<link>http://morgamic.com/2006/09/01/testing-habits-are-your-friend/</link>
		<comments>http://morgamic.com/2006/09/01/testing-habits-are-your-friend/#comments</comments>
		<pubDate>Fri, 01 Sep 2006 11:51:37 +0000</pubDate>
		<dc:creator>morgamic</dc:creator>
				<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[OSL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://morgamic.com/2006/09/01/testing-habits-are-your-friend/</guid>
		<description><![CDATA[As I&#8217;ve gone farther down the road I&#8217;ve learned the value of testing. My first introduction to unit testing was through JUnit in a Java project I worked on last year. Now, there has been a recent push for testing &#8230; <a href="http://morgamic.com/2006/09/01/testing-habits-are-your-friend/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve gone farther down the road I&#8217;ve learned the value of testing.  My first introduction to unit testing was through JUnit in a Java project I worked on last year.  Now, there has been a recent push for testing in PHP web apps that used to be homegrown in the worst ways and need to extend past the typical &#8220;what, it works, shutup&#8221; approach to PHP testing.</p>
<p>Not testing is not healthy.  Sooner or later you&#8217;ll be wrong, which will make you a huge jackass.  And nobody likes being <i>that guy</i>.  I know I have been on occasion.  It sucks, and it can make people second guess you, which sucks even more down the road.</p>
<p>So cover your ass by making a paradigm shift when it comes to your development habits and approach:</p>
<ul>
<li>Create tests that you know would work if you wrote your scripts right &#8212; as best you can, don&#8217;t go for 100% coverage, just get something up there to mimic the typical &#8220;yeah okay it works at least, but not quite&#8221; once-overs you do</li>
<li>Assume what you&#8217;ve written is wrong</li>
<li>Run your tests, and see if they work</li>
</ul>
<p>I&#8217;ve been convinced that this approach to programming is much healthier (thanks <a href="http://shaver.off.net/diary/">Shaver</a>) because it forces people to think before writing the bulk of their code &#8212; possibly alleviating problems before they happen.  Duh, right?  Everybody knows that, right?  Well, not everybody does it, and there&#8217;s a big difference.</p>
<p>I think that ideally, everybody would create tests for just about everything possible, but I do have some reservations when it comes to that.</p>
<p>For one, sometimes you just don&#8217;t have time.  This is a terrible excuse, and I guess it depends somewhat on the scope and sensitivity of your project.  But, if your project is planned right you should have the time and resources to get in a fair amount of code coverage without jeopardizing your timeline.  And, arguably, if you&#8217;re already used to a test-oriented approach to development things might actually be faster.</p>
<p>Another thing I&#8217;ve tried to identify is when I&#8217;m overdoing it (this is more of a fear).  So, okay, you want to test your code as much as you can, but there&#8217;s a line I wouldn&#8217;t want to cross.  It&#8217;s the line between having a complete and working end product and having an incomplete product with complete and exhaustive tests.  In that case, I&#8217;d vote to let some of the testing slide, but not all the way, in favor of a more complete product.</p>
<p>The long tail of development can pick up the slack for more exhaustive tests and bug fixes that you ideally would only fix once &#8212; write a test for the bug, fix the bug, done.  Most of it would probably be doable during alpha or beta releases &#8212; it&#8217;s what they are for.  I&#8217;d argue that it&#8217;s also more productive during that time because you might have a better knowledge of your app and be in a better position to spot unforeseen problems and write proper tests.</p>
<p>I&#8217;ll be honest; for me it&#8217;s been a bit of a learning experience.  A welcome one, for sure, but frustrating at times because you&#8217;re always going to run into &#8220;oh shit, my bad&#8221; situations when you&#8217;re trying to change mindsets and unlearn bad habits.  In PHP, I think this is probably a bigger issue than in other languages because it already lacks a bit of structure by nature.  There&#8217;s also the programmer laziness hurdle to overcome.  It&#8217;s a big one.</p>
<p>There are some decent PHP testing tools out there that sometimes gather dust &#8212; especially in PHP.  But, if PHP is going to break more into enterprise development, I think they will gain in popularity.  Here are some PHP testing links for you:</p>
<ul>
<li><a href="http://www.phpunit.de/">PHPUnit</a></li>
<li><a href="http://www.lastcraft.com/simple_test.php">Simple Test</a></li>
<li><a href="http://search.cpan.org/dist/Apache-Test/lib/Apache/TestRunPHP.pm">Apache::Test</a> &#8211; also see <a href="http://shiflett.org/archive/80">Chris Shiflett&#8217;s blog</a> and his <a href="http://shiflett.org/apache-test.pdf#search=%22php%20testing%22">presentation on PHP testing</a>
</li>
</ul>
<p>So &#8212; PHP developers, it&#8217;s time to stop being lazy and take a serious look at this stuff.  If you get an irritated feeling because I said that, it&#8217;s because you&#8217;re wrong and you&#8217;ve just gotten used to being wrong.</p>
<p><em>Comfortable and easy doesn&#8217;t get you anywhere in the long run.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://morgamic.com/2006/09/01/testing-habits-are-your-friend/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Open Source Undefined</title>
		<link>http://morgamic.com/2006/05/19/open-source-undefined/</link>
		<comments>http://morgamic.com/2006/05/19/open-source-undefined/#comments</comments>
		<pubDate>Fri, 19 May 2006 17:51:41 +0000</pubDate>
		<dc:creator>morgamic</dc:creator>
				<category><![CDATA[OSL]]></category>
		<category><![CDATA[Society]]></category>

		<guid isPermaLink="false">http://morgamic.com/2006/05/19/open-source-undefined/</guid>
		<description><![CDATA[Most persons do not see the sun. At least they have a very superficial seeing. The sun illuminates only the eye of the man, but shines into the eye and heart of the child.- Nature, Emerson Open source can be &#8230; <a href="http://morgamic.com/2006/05/19/open-source-undefined/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="quoteright">Most persons do not see the sun. At least they have a very superficial seeing. The sun illuminates only the eye of the man, but shines into the eye and heart of the child.<br />- <em>Nature</em>, Emerson</div>
<p>Open source can be any number of things, depending on who you&#8217;re asking.  To the hacker it&#8217;s about teamwork, comradery, IRC, CVS or SVN and great flamewars.  To the CEO it&#8217;s risky, and often times very dependent on highly-skilled staff who may or may not be here tomorrow.  To Wall Street it&#8217;s a non-commodity with high risk and low returns.  To mom and dad it&#8217;s a mysterious concept you&#8217;ve asked about many times but never quite understood.  To my cats, it&#8217;s what makes me sit at the glowing rectangles for hours on end.</p>
<p>To all of us, though, it&#8217;s the future.  Most of us agree on that much.</p>
<p>In my time here at OSU in <a href="http://oregonstate.edu/cws/">Central Web Services</a> and the <a href="http://osuosl.org/">Open Source Lab</a> I&#8217;ve spent a lot of time thinking about open source, because I&#8217;ve been in the middle of it.  Working with the <a href="http://mozilla.org/">Mozilla</a> community has also taught me a lot about the masses and community development.  I learned over the past three years that it&#8217;s less about the masses and more about individuals who care a great deal about where we&#8217;re all going.  </p>
<p>So the #1 question people ask me is, &#8220;What is open source?&#8221;  To be honest, I&#8217;ve stopped worrying about defining open source.  Instead I&#8217;ve tried to appreciate it.</p>
<p>Does it really matter what open source is?  If it&#8217;s an ideal, a business model, communication style, natural progression, another step in our evolution &#8212; I&#8217;ve stopped caring about trying to outline it and present it in a bulleted list.</p>
<p>To me it&#8217;s just chaos, and it&#8217;s wondrous.  I&#8217;m so caught up in it.  It&#8217;s intoxicating and pulls me in some undefined direction.  Like riding in an airplane with an unknown destination.  You don&#8217;t know the pilots or where you&#8217;re going but you&#8217;re still excited about the possibilities.  Like stepping forward onto a stage, lights blinding, and having an act but still not being entirely sure about how the show is going to turn out.</p>
<p>Or maybe it&#8217;s an emotion.  You can&#8217;t quantify sadness or jubilation.  How do you explain the color yellow to a 5-year-old?  You can&#8217;t.   How do you explain happiness to a rock?  You can&#8217;t. </p>
<p>So I&#8217;m done trying to draw blueprints for the stage, or profiling the pilots and passengers.  I&#8217;ve given up and put down the pen.</p>
<p>Because no matter how many times I fill a whiteboard or flowchart, I leave the audience thirsty.  They are given a little sip of an idea &#8212; ephemeral and slight as something like the American Dream.  It&#8217;s something we all whisper about and pull for but can&#8217;t really define.  It&#8217;s something driving us that seems so strong and powerful yet at times, in its tiny fissures and failures, it all seems so fragile and brittle.</p>
<p>It is what it is &#8212; whitewash pitted with valleys and riddled with amazing plateaus.  It&#8217;s us reflected in code which is scary and unpredictable but it&#8217;s alright if we remember we&#8217;re in it together.</p>
<p>It&#8217;s life, and you can&#8217;t define life &#8212; you just live it.</p>
<p><em>Something doesn&#8217;t have to be intricately defined to have meaning.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://morgamic.com/2006/05/19/open-source-undefined/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Scalable PHP with APC, memcached and LVS (Part 2)</title>
		<link>http://morgamic.com/2006/04/14/scalable-php-with-phpa-apc-memcached-and-lvs-part-2/</link>
		<comments>http://morgamic.com/2006/04/14/scalable-php-with-phpa-apc-memcached-and-lvs-part-2/#comments</comments>
		<pubDate>Fri, 14 Apr 2006 21:28:29 +0000</pubDate>
		<dc:creator>morgamic</dc:creator>
				<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[OSL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://morgamic.com/2006/04/14/scalable-php-with-phpa-apc-memcached-and-lvs-part-2/</guid>
		<description><![CDATA[In part 1 of this post I talked about some of the challenges we encountered when trying to scale a LAMP application. It&#8217;s pretty much what you&#8217;d read on danga&#8217;s memcached site, just dumbed down. So after some discussion, caffeine &#8230; <a href="http://morgamic.com/2006/04/14/scalable-php-with-phpa-apc-memcached-and-lvs-part-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://morgamic.com/2006/03/19/scalable-php-with-phpa-memcached-and-lvs-part-1/">part 1 of this post</a> I talked about some of the challenges we encountered when trying to scale a LAMP application.  It&#8217;s pretty much what you&#8217;d read on <a href="http://danga.com/memcached/">danga&#8217;s memcached site</a>, just dumbed down.</p>
<p>So after some discussion, caffeine and Googling, you&#8217;ll probably end up knowing you&#8217;ll need:</p>
<ul>
<li>Memcached!</li>
<li>An internal cache to speed up and optimize PHP across requests.</li>
<li>To continue to find ways to slim down your application.</li>
<li>Get more caffeine.</li>
</ul>
<p>I had originally intended this post to be a summary of test results, but I am beginning to realize that what you get out of apache bench or httperf isn&#8217;t really as important as how much thought you put into your application.  If you think about it, all of these perf tests are just trying to quantify something qualitative, and the tests themselves are nowhere near as important as how you get there.</p>
<p>So instead of showing a lot of Excel or Omnigraffle graphs that won&#8217;t help you very much, I&#8217;d much rather spend this time talking about the process.  That way, you might be able to learn from our mistakes, and not make them yourself.</p>
<p>Together with the Mozilla infra team we worked together to put a lot of thought into this application, and that is what really made the biggest impact.  In the end, the big win is just snappy pages in production &#8212; and we&#8217;ve achieved that.  And since I&#8217;m a massive tool, I&#8217;ll draw a comparison between scalability and basketball.</p>
<p>For one, it takes teamwork and unselfishness to succeed.  You need the sysadmins to be involved with the application developers from an early point, because they always ask the right questions &#8212; and often times the obvious ones developers miss.  You need good coaches who know the game, and can direct on both sides of the coin.  And after all is said and done on the performance side of things, you need your fans &#8212; the community &#8212; to gauge your overall success.</p>
<p>You hope along the way that when the game&#8217;s over, the score is in your team&#8217;s favor and the fans are cheering.</p>
<p>So when you&#8217;re planning your app, the best thing you can do is minimize your code by not including massive libraries or classes.  Not to knock <a href="http://pear.php.net/">PEAR</a> or overgeneralize things, but anytime you include a PEAR class, you have to be very careful.  PEAR classes are often times bloated and written to &#8220;just make it work&#8221;.  They work well for your blog, or some weekend project, but if you need some serious performance, including a PEAR class is typically a bad decision.</p>
<p>Includes in PHP are a bit like interest rates &#8212; it may seem like a small sacrifice to just include something, but over time and over a lot of requests, it can amount to a huge loss.  Imagine if you had a 1% fee every time you hit the ATM.  Seems like a minor sacrifice, it&#8217;s just 1%, but everybody knows that you&#8217;d lose a lot over time.  So why would you give up 1% over millions of PHP transactions?  You should follow some simple rules when dealing with PHP includes in your application:</p>
<ul>
<li><strong>Make your includes modular.</strong>  You should allow yourself the ability to mix-and-match includes or class definitions.  Some may have dependencies, that&#8217;s fine, but you shouldn&#8217;t limit yourself by making everything dependent on your DBI, for example.  You should think about what you&#8217;d do if you had a page that didn&#8217;t pull from the DB, and how your app would serve it up.</li>
<li><strong>Use only what you need.</strong>  It&#8217;s easy to throw everything into one init script, but you should only include what your page actually needs to compile.  It&#8217;s like importing java.util.* instead of just java.util.List.  Doesn&#8217;t make sense.</li>
<li><strong>Make the most use of what PHP has to offer</strong> built-in, and when that fails, write your own wrappers if PECL doesn&#8217;t already have a solution.  If you&#8217;re adventurous and have C experience, you could write your own PHP extension to avoid run-time compilation of common functions.  We didn&#8217;t necessarily need to do this, but you might consider it if you have a specific need that isn&#8217;t addressed with any available PECL extension.</li>
<li><strong>Ask yourself if you really need DB layer abstraction.</strong>  DBI&#8217;s are great, but hey are also huge.  PEAR::DB is massive, and if your app isn&#8217;t going to be ported to other RDBMS&#8217;s, then you should really consider using your own wrapper for the mysql/mysqli functions built-in to PHP.  In my experience, people hardly ever switch their DB layer over, and even if they did, if you write a clear and concise DB class, it is easy to switch out anyway.  Abstraction here isn&#8217;t worth the overhead.</li>
<li><strong>Ask yourself if you really need a template language</strong> with more rules and more syntax to mess up.  PHP itself is a scripting language made to write web pages &#8212; so how much sense does <a href="http://smarty.php.net/">Smarty</a> make?  Having been down the Smarty path, I&#8217;ve given it a shot, and I don&#8217;t think it&#8217;s worth it to replicate everything PHP does.  If you&#8217;re doing it for design purposes, PHP syntax is already pretty simple, and most WYSIWYG editors have built-in escaping/tokenization for PHP&#8217;s syntax.  If you&#8217;re using Smarty for separation of your view component, you can do the same thing in just PHP using app logic.  And if you&#8217;re doing it so you can cache or precompile output, you&#8217;re just duplicating what memcached and APC would already offer you.  If we could do it again, Smarty would not be worth the performance loss.  So be wary of templating languages in such a high-level language.  It&#8217;s usually a lose-lose.</li>
</ul>
<p>At the app level, before you even get into server configuration or caching, you need to avoid violating the rules above.  In our journey with addons.mozilla.org (AMO) we made some interesting group decisions a year ago that we regretted later:</p>
<ul>
<li><a href="http://smarty.php.net/">Smarty</a></li>
<li><a href="http://pear.php.net/package/DB">PEAR::DB</a></li>
</ul>
<p>PEAR::DB was unnecessarily large, and Smarty is just not worth it &#8212; it confuses the issue and redoes things PHP is already good at using arbitrarily complicated syntax.  Any quick run through with something like the <a href="http://www.zend.com/products/zend_studio/feature_list#Profiler">Zend Profiler</a> or <a href="http://pecl.php.net/package/apd">APD</a> will tell you how much of a dog these things can be.  If you haven&#8217;t already, I highly recommend profiling your app to see where you&#8217;re losing performance &#8212; I bet it&#8217;s mostly in includes.</p>
<p>For caching, we looked at:</p>
<ul>
<li>Page/output caching
<ul>
<li><a href="http://smarty.php.net/">Smarty</a> (bad, bad, bad idea)</li>
<li><a href="http://pear.php.net/package/Cache_Lite">Cache_Lite</a> (slow)</li>
<li><a href="http://danga.com/memcached/">memcached</a> (w00t)</li>
</ul>
</li>
<li>Internal caching / optimization
<ul>
<li><a href="http://php-accelerator.co.uk/">phpa</a> (meh, and turning into a proprietary solution &#8212; double meh)</li>
<li><a href="http://pecl.php.net/package/APC">APC 3.0.10</a> (w00t)</li>
<li>A handful of other outdated and lesser internal PHP caches</li>
</ul>
</li>
</ul>
<p>For external caching, the clear choice was memcached.  Used and designed for LiveJournal.com, it is a pretty standard way to provide key-based caching of any serialized data.  It has <a href="http://danga.com/memcached/apis.bml">APIs for almost every language</a> used in web development, so it was an easy choice.  It gave the other caching methods an ass whooping.</p>
<p>Based on user comments in my previous post, we punted phpa and went for APC 3.0.x and we liked the results.  Initially, using the default settings in APC.ini, we faced some performance losses.  After some tweaking, though, APC showed about a 40% increase over the antiquated phpa.  Just make sure the read the INSTALL doc.  <img src='http://morgamic.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>AMO currently runs on a handful of memcached instances, feeding multiple <a href="http://www.linuxvirtualserver.org/">LVS</a> nodes configured to use APC 3.0.10.  We can now easily handle release traffic and during peak hours the web app doesn&#8217;t even break a sweat.  The database bottleneck is history.</p>
<p>So we are happy with the results, but they were achieved using methods that are still less than ideal.  There are so many more things we can do to improve performance:</p>
<ul>
<li>Remove SSL for non-sensitive pages</li>
<li>Remove PEAR::DB and Smarty so when pages are compiled and set in the cache it is less expensive</li>
<li>Move away from page-level caching and get into object-level caching to replace DB calls with queries against memached.</li>
<li>Improve the memache implementation in the app to be truly decentralized with fallback.  Currently it does not map a set key with a particular server.  We still need to add a key->server hash so the app knows which server to try first per key.  The trick there then becomes failover combined with the hash &#8212; so the app could learn which server to hit if the first choice wasn&#8217;t available and remember that choice.  That is an interesting challenge in a stateless environment.</li>
<li>Make certain high-load pages purely static and avoid PHP altogether.</li>
<li>Additional tweaks and Apache config changes to improve performance.</li>
</ul>
<p>Overall, I have to say it was a great ride and a good learning experience playing with these tools.  Working with everyone on this was an exercise in open source development, and it showed us that with the right open source tools you can make some pretty decent enterprise-level web apps performance-wise.  I hope that in reading this, you pick up a few things you can use in your next project.  If you have any comments or suggestions I&#8217;d like to hear them.</p>
<p><em>Don&#8217;t just learn as much as you can from what others have tried &#8212; write and talk about it too.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://morgamic.com/2006/04/14/scalable-php-with-phpa-apc-memcached-and-lvs-part-2/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>AMO v2</title>
		<link>http://morgamic.com/2006/04/04/amo-v2/</link>
		<comments>http://morgamic.com/2006/04/04/amo-v2/#comments</comments>
		<pubDate>Wed, 05 Apr 2006 05:49:11 +0000</pubDate>
		<dc:creator>morgamic</dc:creator>
				<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[OSL]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://morgamic.com/2006/04/04/amo-v2/</guid>
		<description><![CDATA[The public rewrite of AMO was released today. Fixed in this release: Stuff More stuff Scalability Other stuff No, but seriously, you might find that your bookmarks are a little off, or _____. If so, find us on irc in &#8230; <a href="http://morgamic.com/2006/04/04/amo-v2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://addons.mozilla.org/">The public rewrite of AMO</a> was released today.</p>
<p>Fixed in this release:</p>
<ul>
<li>Stuff</li>
<li>More stuff</li>
<li>Scalability</li>
<li>Other stuff</li>
</ul>
<p>No, but seriously, you might find that your bookmarks are a little off, or _____.  If so, find us on irc in #umo@irc.mozilla.org and let us know &#8212;  we aren&#8217;t at the &#8220;file a bug if it&#8217;s broke&#8221; stage yet.</p>
<p>Thanks to Wil Clouser, who worked on a large portion of the updates.  Thanks to everyone who pointed out bugs and helped us fix stuff, and thanks most importantly to the reviewers who help us keep this ship afloat.</p>
<p>Speaking of which, please take some time to review our <a href="http://wiki.mozilla.org/Update:Policy">draft policy</a> that we have been working on!</p>
<p><em>Better late than never, and better late than totally crappy.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://morgamic.com/2006/04/04/amo-v2/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>

