Showing posts with label 101. Show all posts
Showing posts with label 101. Show all posts

Sunday, October 5, 2008

Hindi Song | Ubiquity Tutorial: How to Write a Simple BSE Sensex Tracker

Ubiquity is a new Firefox plugin that can be used as a command line for creating simple Web mashups. What follows is a simple tutorial on how to write a new Ubiquity command (let’s call our command ’sensex’) that displays the current BSE Sensex chart inside any website in Firefox.

To get started, install Ubiquity, press CTRL+Space, and enter the command "command-editor".

ubiquity-command

Then copy and paste this code in the text editor – the command is automatically saved as you type and you may start using the command with restarting Firefox.

CmdUtils.CreateCommand({
// The name of the Ubiquity command - this is what you would type to invoke the command.
name: "sensex",

// The description of the command.
description: "BSE Sensex charts.",

// The preview display - since we only need to view the graph (and nothing else).
preview: function (html) {
// Take the graph from the bseindia.com site, and insert it into the Ubiquity preview window.
html.innerHTML = '
';
}
});

Press Ctrl+Space again and type "sensex" – There you have the live sensex chart accessible from just about any other website.

bbc command

Monday, September 29, 2008

Hindi Song | Web Search 101 for Dummies - New Common Craft Video

You probably know about all the web search tricks mentioned in this latest screencast video from Common Craft but it’s still a worthwhile watch because of their ‘very’ creative approach:

Tip excerpted from the video transcript:

Words often have multiple meanings. Consider the word MULLET which is both a fish and a hairstyle. A search for MULLET may give you a number of results about the hairstyle, but fewer about the fish.

To remove the results about hair, place a hyphen or minus sign just before the word you want to exclude, which means “show me the pages about mullet, but take away results relating to hair.”

related articles

· Social Media Explained in Simple English - From Common Craft
· Common Craft Video: LinkedIn in Simple English