<?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>Oremj's Blog &#187; Mozilla</title>
	<atom:link href="http://blog.mozilla.com/oremj/category/mozilla/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mozilla.com/oremj</link>
	<description>Just another Blog.mozilla.com weblog</description>
	<lastBuildDate>Mon, 23 Nov 2009 20:14:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>AssignToMe Bookmarklet</title>
		<link>http://blog.mozilla.com/oremj/2009/11/23/assigntome-bookmarklet/</link>
		<comments>http://blog.mozilla.com/oremj/2009/11/23/assigntome-bookmarklet/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 20:14:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://blog.mozilla.com/oremj/?p=63</guid>
		<description><![CDATA[I&#8217;ve been trying to cut down on the number of addons I run. Previously I blogged about my Bugzilla &#8220;assigntome&#8221; ubiquity command. Turns out it is really easy to turn it in to a bookmarklet. Just drag AssignToMe to your bookmarks toolbar. Code: javascript:(function() { var logout_re = /[\s\S]*Log.*out.*[\s]\s*(.*)\s/m; var links = document.getElementById('footer').getElementsByClassName('links')[0].getElementsByTagName('li'); var user_name [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to cut down on the number of addons I run. Previously I <a href="http://blog.mozilla.com/oremj/2008/09/12/my-life-is-a-little-bit-easier-now/">blogged</a> about my Bugzilla &#8220;assigntome&#8221; ubiquity command. Turns out it is really easy to turn it in to a bookmarklet. Just drag <a href="javascript:(function(){var logout_re=/[\s\S]*Log.*out.*[\s]\s*(.*)\s/m;var links=document.getElementById('footer').getElementsByClassName('links')[0].getElementsByTagName('li');var user_name=links[links.length-1].textContent.replace(logout_re,'$1');var evt=document.createEvent('MouseEvents');evt.initMouseEvent('click',true,true,window,0,0,0,0,0,false,false,false,false,0,null);document.getElementById('bz_assignee_edit_action').dispatchEvent(evt);document.getElementById('assigned_to').value=user_name;document.getElementById('commit_top').click()})();">AssignToMe</a> to your bookmarks toolbar.</p>
<p>Code:</p>
<pre>
javascript:(function() {
    var logout_re = /[\s\S]*Log.*out.*[\s]\s*(.*)\s/m;
    var links = document.getElementById('footer').getElementsByClassName('links')[0].getElementsByTagName('li');
    var user_name = links[links.length - 1].textContent.replace(logout_re, '$1');
    var evt = document.createEvent('MouseEvents');
    evt.initMouseEvent('click', true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
    document.getElementById('bz_assignee_edit_action').dispatchEvent(evt);
    document.getElementById('assigned_to').value = user_name;
    document.getElementById('commit_top').click();
})();
</pre>]]></content:encoded>
			<wfw:commentRss>http://blog.mozilla.com/oremj/2009/11/23/assigntome-bookmarklet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Operations Status Dashboard</title>
		<link>http://blog.mozilla.com/oremj/2009/09/21/operations-status-dashboard/</link>
		<comments>http://blog.mozilla.com/oremj/2009/09/21/operations-status-dashboard/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 17:37:05 +0000</pubDate>
		<dc:creator>oremj</dc:creator>
				<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://blog.mozilla.com/oremj/?p=38</guid>
		<description><![CDATA[Often when we have an operational issue or outage confusion occurs. We are taking a step to resolve this confusion by creating a status dashboard similar to Google and Twitter. It is mostly a prototype at this point. How can we make this service more useful? Feedback is greatly appreciated.]]></description>
			<content:encoded><![CDATA[<p>Often when we have an operational issue or outage confusion occurs. We are taking a step to resolve this confusion by creating a <a href="http://appstatus.mozilla.com/">status dashboard</a> similar to <a href="http://www.google.com/appsstatus" class="extlink">Google</a> and <a href="http://status.twitter.com/" class="extlink">Twitter</a>. It is mostly a prototype at this point. How can we make this service more useful? Feedback is greatly appreciated.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.mozilla.com/oremj/2009/09/21/operations-status-dashboard/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Speedup Firefox with VACUUM</title>
		<link>http://blog.mozilla.com/oremj/2009/08/20/speedup-firefox-with-vacuum/</link>
		<comments>http://blog.mozilla.com/oremj/2009/08/20/speedup-firefox-with-vacuum/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 20:34:30 +0000</pubDate>
		<dc:creator>oremj</dc:creator>
				<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://blog.mozilla.com/oremj/?p=34</guid>
		<description><![CDATA[I&#8217;ve seen a few posts about VACUUMing Firefox&#8217;s sqlite database for better performance, but each requires Firefox to be shut down. Here is a way to VACUUM your places database from within the browser. Go to Tools -&#62; Error Console Paste the following in the &#8220;Code:&#8221; text-box: Components.classes["@mozilla.org/browser/nav-history-service;1"].getService(Components.interfaces.nsPIPlacesDatabase).DBConnection.executeSimpleSQL("VACUUM"); Press Enter Your UI will freeze for [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen a <a href="http://www.gettingclever.com/2008/06/vacuum-your-firefox-3.html" class="extlink">few</a> <a href="http://petervk.wordpress.com/2009/01/17/use-firefox-3-youll-need-to-vacuum-the-database-once-in-a-while/" class="extlink">posts</a> about VACUUMing Firefox&#8217;s sqlite database for better performance, but each requires Firefox to be shut down.</p>
<p>Here is a way to VACUUM your places database from within the browser.</p>
<ol>
<li>Go to Tools -&gt; Error Console</li>
<li>Paste the following in the &#8220;Code:&#8221; text-box: <code>Components.classes["@mozilla.org/browser/nav-history-service;1"].getService(Components.interfaces.nsPIPlacesDatabase).DBConnection.executeSimpleSQL("VACUUM");</code></li>
<li>Press Enter</li>
</ol>
<p>Your UI will freeze for a bit while the vacuum runs.</p>
<p>Resources:</p>
<ul>
<li><a href="https://developer.mozilla.org/En/Updating_extensions_for_Firefox_3.5#Accessing_the_Places_database" rel="nofollow" class="extlink">https://developer.mozilla.org/En/Updating_extensions_for_Firefox_3.5#Accessing_the_Places_database</a></li>
<li><a href="https://developer.mozilla.org/en/Storage" rel="nofollow" class="extlink">https://developer.mozilla.org/en/Storage</a></li>
</ul>
<p>Cross post from <a href="http://blog.oremj.com/2009/08/20/speedup-firefox-with-vacuum/" class="extlink">my personal blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.mozilla.com/oremj/2009/08/20/speedup-firefox-with-vacuum/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>My Life is a Little Bit Easier Now</title>
		<link>http://blog.mozilla.com/oremj/2008/09/12/my-life-is-a-little-bit-easier-now/</link>
		<comments>http://blog.mozilla.com/oremj/2008/09/12/my-life-is-a-little-bit-easier-now/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 21:56:17 +0000</pubDate>
		<dc:creator>oremj</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://blog.mozilla.com/oremj/?p=21</guid>
		<description><![CDATA[Lately, I&#8217;ve found the process of assigning a bug to myself slightly cumbersome and wanted to speed up the process. I happen to be a fan of Ubiquity, so I decided to write a command. The command assigntome, by default, changes the assigned to field to your user. The whole process can be automated by [...]]]></description>
			<content:encoded><![CDATA[<p>Lately, I&#8217;ve found the process of assigning a bug to myself slightly cumbersome and wanted to speed up the process.  I happen to be a fan of <a href="http://labs.mozilla.com/projects/ubiquity/">Ubiquity</a>, so I decided to write a command.</p>
<p>The command assigntome, by default, changes the assigned to field to your user.  The whole process can be automated by tacking on the submit noun, which will simulate clicking the &#8220;Commit&#8221; button.</p>
<p>To install assigntome <a href="http://dev.oremj.com/ubiquity.html" class="extlink">subscribe to my Ubiquity feed</a>.</p>
<p>Cross-post from <a href="http://blog.oremj.com/2008/09/12/my-life-is-a-little-bit-easier-now/" class="extlink">blog.oremj.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.mozilla.com/oremj/2008/09/12/my-life-is-a-little-bit-easier-now/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

