~robcee/ more than just sandwiches

Posted
28 November 2008 @ 12pm

Tagged
General, Mozilla

ABC Meme

I don’t usually do these meme things, but I saw this one on Planet via Ehsan’s blog (by way of Benjamin’s) and thought it’d be a fun use for my WikifyTabs add-on… an add-on in sore need of an update to produce HTML links instead of just MediaWiki. In any case, this was surprising. That’s a whole lotta Mozilla in there!

aFirefox Add-ons
bBuildbot – MozillaWiki
cRancilio Silvia
dDigg – All News, Videos, & Images
eExpedia.ca
fIssues – fbug – Google Code
gFirebug Releases
h~robcee/
iIs it friday?
jJust Us! Coffee Roasters Co-op
kFILM FREAK CENTRAL
lIPhone: Track Free and Price-Dropped iPhone Apps
mMercurial – MDC
nNewegg.ca – Computer Parts, PC Components, Laptop Computers, Digital Cameras and more!
oThe Onion – America’s Finest News Source
pMozilla Pastebin – collaborative debugging tool
qThe irc.mozilla.org QDB: Welcome
rReferencePlatforms – MozillaWiki
sThe Global Broadband Speed Test
tTwitter / Home
utinderbox: UnitTest
vVLC media player – Overview
wMain Page – MozillaWiki
xxkcd – A Webcomic – Ballmer Peak
yYammer
zZap Your PRAM Conference 2008

Update: Ed Lee (aka Mardak) has an excellent code snippet for producing these lists right from the Error Console in Firefox 3.1.

C=Components;d=C.classes['@mozilla.org/browser/nav-history-service;1'].getService(C.interfaces.nsPIPlacesDatabase).DBConnection;for(o=[],c=97;c<123;c++){h=String.fromCharCode(c);q=d.createStatement('SELECT title t, url u FROM moz_inputhistory JOIN moz_places ON id=place_id WHERE input LIKE \''+h+'%\' ORDER BY use_count DESC LIMIT 1');if(q.step())o.push(['<b>&#8216;,h,&#8217;</b>: <a href="',q.row.u,'">&#8216;,q.row.t,&#8217;</a>&#8216;].join(&#8221;))}open(&#8216;data:text/html,&#8217;+o.join(&#8216;<br/>\n&#8217;))