Presidential Design

Zach

September 25, 2008

9:32 pm

*Update* The below was written as is - crazy.

So I was interested in the fonts of the campaign promotional designs, and did some preliminary googling which led me to this January 2008 (when there was no clear leader in either party) Boston Globe article “If we were to predict the results based on typography and design, we would pick McCain and Obama.”
Granted, the author must have projected some personal political values onto the typeface, but this earlier analysis of the logos themselves by Salon.com predicted Hilary’s demise with unearthly precision,
“If Hillary Clinton’s bid for the White House fails, it will not be because her logo looks like a thousand other flag-wrapped identities, or because her typeface bears a strong resemblance to Kerry’s wimpy serif font. No, it will be because she couldn’t quite whittle down her message into a single forceful idea. Obama’s sunrise speaks eloquently of ‘change.’ McCain’s star and bar shout warrior. By contrast, Clinton’s stars and stripes are not that different from Mike Huckabee’s stars and stripes. Maybe they’re intended to speak of her ‘experience’ but they also send an unwanted message: ‘more of the same.’”
Thank God Obama paid for decent design. Four years of a libertarian applying depression-style economics to the current crisis would lead to a global catastrophe.


IBM Websphere Application Server 7.0 Release

Davanum Srinivas

September 22, 2008

6:59 pm

Just a few days more…September 26, 2008: Electronic software delivery
http://www-01.ibm.com/software/webservers/appserv/was/
http://www.ibm.com/common/ssi/rep_ca/6/897/ENUS208-266/ENUS208-266.PDF


Welcome. Again.

admin

September 20, 2008

5:25 am

Can you tell I was nuked?
I’m tweaking the theme/getting everything up again.

I’ll probably dedicate a page to Ubiquity themes, so be prepared.
Also: working in the WordPress HTML tab of the WSIWYG is so much easier.

Regards,

Yatrik S.


Mozilla Labs Meetup - Thursday, 9/25

rhian

September 17, 2008

10:20 am

It’s time for another Monthly Meetup. This month’s meetup will be next Thursday, September 25th, 6pm at Mozilla’s office - 1981 Landings Drive, bldg K in Mountain View, California.

Last month’s meetup in San Francisco was awesome! Turnout was great and discussion around Ubiquity was really exciting. Thanks to all who participated and thanks to our friends at Twitter for hosting. This month we want to hear from you! What is your big idea for the future of the Web? Do you have thoughts to add to the Concept Series? We are anxious to hear what inspires you! If you plan to join us and share, please take a moment to RSVP on this blog and let us know what to expect.

If you are in the Bay Area we’d love to see you next week!  Please RSVP in the comments so we can order enough pizza. Thanks!


[Ubiquity] map-directions using Google Maps

Davanum Srinivas

September 11, 2008

6:05 am

Since Ubiquity does not yet allow remote htmls for commands, you will need to place the directions.html in your plugins’s templates directory (mine is at “~/.mozilla/firefox/Profiles/vg9n6k0x.default/extensions/ubiquity@labs.mozilla.com/chrome/content/templates”). TODO: It would be nicer to use address nouns.

CmdUtils.CreateCommand({
name: "map-directions",
takes: {"address": noun_arb_text},
icon: "chrome://ubiquity/skin/icons/map.png",
execute: function( directObj ) {
var [...]


[Ubiquity] Shell - Launch an external process

Davanum Srinivas

September 10, 2008

8:51 am

Thanks to the greasemonkey folks. Pretty easy to launch an external process. One caveat, you need the full path of the executable.

CmdUtils.CreateCommand({
name: "shell",
takes: {"commandLine": noun_arb_text},
execute: function(commandLine) {
var process = Components.classes["@mozilla.org/process/util;1"]
[...]


On Commands, Designers and The Magic Editor

Abimanyu Raja

September 4, 2008

10:54 pm

Ubiquity has released and many people have written commands for it. If you look at the list, you’ll see that most of them are simply search commands (or bookmarklets rewritten as commands). Although these are essential, Ubiquity commands can do so much more. A few people have begun exploring some new ideas in this regard.

One command that I particularly like is the “share-on-delicious” command written by Leslie Orchard. Basically, it is a del.icio.us command where you can add notes and tag the bookmark simply by saying “share-on-delicious tagged cool ubiquity”. This functionality is not very remarkable. In fact, there’s another command that does the same things. But, the reason Leslie’s is better is because it is one of the few commands that uses previews extremely well. Here you go, compare the previews of two different commands:

As you can see, the preview makes a huge difference. It displays the information a lot more clearly. It shows the tight del.icio.us integration immediately. And, it also makes me want to use it more often.

Graphical keyboard user interface

Ubiquity is a graphical keyboard user interface. But a lot of people are missing the graphical aspect of it. And that is precisely what makes Ubiquity different from a command line. Command icons help but previews have to be more visual, not just the plain text that you would normally expect from the terminal. I can’t emphasize enough the fact that previews must be graphical because after all, Ubiquity is a GUI.

The current state of command previews is also partially my fault. Even some of the built-in commands don’t have appropriate previews. The digg command and the last-email command are perfect examples of forgetting that we are actually dealing with a graphical user interface. The functionality is awesome but just look at the way the information is displayed and contrast with other possible implementations.

.

Designers

The lack of graphical previews is, of course, not all the developer’s fault. Like many others, I am also only a programmer and I suck at design. So, we need to hook up designers with programmers. But sadly, we did not make it easy for designers to get involved in Ubiquity when we released it. The developer-facing side of Ubiquity is awesome (nice development environment with chrome access and yet, no browser restarts! Also, great command utilities and documentation). But, while we have lowered the barrier for entry for extending the browser, we have not given as much thought to collaboration. A few ideas to remedy the current situation and increase the amount of collaboration follow.

Better Herd

The Herd is a great way to find commands especially with the upcoming web of trust. But the Herd needs to be more like AMO and this is not as tough as it seems. Thanks to the brilliant idea of keeping metadata together with the code, auto documentation of commands is easy. With a bit of javascript, it is possible to generate detailed pages about each command.

And to promote discussion, all we need is a comment box for every single command. This simple textbox at the bottom of every command page will go a long way in bug reporting as well as in helping designers and command developers work together. Right now, even if a designer wants to help with a command, all he gets in many cases, is a blank page with a subscribe notification on the top of the page.

Magic Editor

After describing something simple for the Herd, here’s a grand idea - have a lightweight IDE built-in as the command editor. Besides having syntax highlighting and perhaps even Eclipse-like autocompletion for Utils and CmdUtils, collaboration related features must also be added.

Here’s how collaboration will work with the magic editor and The Herd. I first post on my Herd command page that I’m looking for a designer to help me with the preview for my new Twitter command. Say Yatrik wants to help, he just comments on my command page. Then, in my Magic Editor, I just invite him using his OpenID and immediately, a notification popups on his computer telling him I want to allow him to work on this command’s code. Now, both of us can edit the code simultaneously and it’ll be automatically synced. So, he can add in new images and modify the CSS while I write the Javascript. To improve debugging, there could be an embedded preview (so you don’t have to open Ubiquity everytime you want to test) which you examine with Firebug. After we are done with the command, I can just hit an Upload button at the top of the Magic Editor that will upload the new code and files to my server (possibly by integrating with FireFTP). Immediately, these changes including those in the metadata (I’d have added Yatrik as a contributor for the command) will be seen on the Herd page for this command.

In essence, Magic Editor + The Herd is the heaven for web-based collaboration. I don’t know if it’s worth anyone’s time to implement all this closely tied together awesomeness. But if it does happen, I am sure Ubiquity and the Web will be much better. We would have lowered the barriers for extending the web and the browser even futher. And we would have also gotten more designers involved with Ubiquity and open source, in general.