MGR songs quiz 1
Here is the first interlude and the first line from some MGR songs. Can you guess which movie they are from?
Don’t worry about the spelling. Just spell it like it sounds, and the box will turn green.
Here is the first interlude and the first line from some MGR songs. Can you guess which movie they are from?
Don’t worry about the spelling. Just spell it like it sounds, and the box will turn green.
Some gadgets I’ve bought / got over the last few years.
While hunting for a VoIP service to call India, I found a fair variety of services that I’m sharing below.
FreeCall appears the cheapest when calling India, at 2.5¢ per minute to a land line. I’m listing the rate from London to Chennai below. I’m not sure of the difference in voice quality between these. The only one I’ve tried is VoIPDiscount, which is not too bad. As a benchmark, remember that Reliance offers a calling card at around 7.3¢ per minute.
(Incidentally, if you wanted to call the US/UK, there’s no reason why you should use your phone. Calls to the US, the UK and parts of Europe are free with most of these services.)
2.5¢/min | freecall |
3.3¢/min | calleasy |
3.3¢/min | webcalldirect |
3.9¢/min | net2phone |
4.2¢/min | smsdiscount |
5.0¢/min | internetcalls |
5.0¢/min | nonoh |
5.0¢/min | voipdiscount |
5.0¢/min | voipwise |
5.5¢/min | freshtel.net |
5.9¢/min | pc-telephone |
6.0¢/min | mywebcalls |
6.7¢/min | 12voip |
6.7¢/min | justvoip |
6.7¢/min | poivy |
6.7¢/min | sparvoip |
6.8¢/min | gtalk2voip |
7.1¢/min | vbuzzer |
7.5¢/min | webphone |
7.9¢/min | yahoo |
8.0¢/min | click4 |
8.0¢/min | callserve |
8.0¢/min | hotfoon |
8.2¢/min | blasterphone.net |
8.4¢/min | netappel |
8.4¢/min | sipdiscount |
8.4¢/min | voipbuster |
9.1¢/min | voipstunt |
9.9¢/min | iconnecthere |
9.9¢/min | lowratevoip |
10.0¢/min | phoneopia |
10.6¢/min | skype |
11.4¢/min | sipnet |
11.6¢/min | voipcheap |
13.8¢/min | wengophone |
14.6¢/min | gizmo5 |
16.1¢/min | peneo |
19.9¢/min | voipbusterpro |
Here is the background music from some songs from 2008. Can you guess which movie they are from?
Don’t worry about the spelling. Just spell it like it sounds, and the box will turn green. (One spelling is tricky. Try M instead of N at the end.)
This is a series on what Google Spreadsheets can do that Excel can’t.
SPLIT(string, delimiter) splits a string using a delimiter. So if you have "one,two,three,four" in cell A1, you could split that into 4 cells using =SPLIT(A1,",")
That’s similar to Data > Text to Columns, except that if the original data changed, Text to Columns does not revise the output. SPLIT can give you dynamic text-to-columns. This is pretty useful when processing text data, in three ways:
Since SPLIT returns an array, you can do a bunch of useful things with it.
=COUNTA(SPLIT(A1," "))
gives you the number of words in a string
=SUM(SPLIT(A1,","))
sums up a comma separated list. "1,2,3,4" is added up to 10.
=ARRAYFORMULA(SUM(LEN(SPLIT(A1,","))))
sums up the word lengths. So "one,two,three,four" splits into 4 words of length 3,3,5,4 each, which adds up to 15.
The ability to join and split also lets you sort by multiple keys. For example, say you had income by country and product. You want to show it sorted by Country & Product. You also want to show it by Product & Country.
So first take the data sorted by Country and Product.
Now, in column E, create a key that’s sorted by Product and then by Income. Type
=SORT(ARRAYFORMULA(B2:B10&":"&A2:A10&":"&C2:C10))
… in cell E2. That will give you all the data in one cell, sorted by Product and then by Country. Now, just split the data, as shown here.
Note: You could have done the whole thing using one formula:
=ARRAYFORMULA(SPLIT(SORT(ARRAYFORMULA(B2:B10&":"&A2:A10&":"&C2:C10)),":"))
But for some reason, this doesn’t seem to show the first row properly. No idea why.
Can I do that in Excel?
Well, not really. You’re best off creating a user-defined function to duplicate the SPLIT function.
This is a series on what Google Spreadsheets can do that Excel can’t.
To sort data, use the SORT function.
For example, if you have a list of products, their revenues and profits in A2:C9. Type SORT(A2:C9, 2, FALSE) in cell E2 to get the products sorted by the second column, revenues.
This is a dynamic list. If you change the revenues, the products are reordered automatically.
The first parameter to the SORT function is the data range you want to sort. The remaining parameters are optional. The second parameter is the column to sort by. By default, the data is sorted by the first column, in ascending order. In this example, we sorted by the 2nd column. The third parameter is FALSE for descending order, and TRUE for ascending order.
You can specify additional columns to sort by. Just add the second column number and the order, third column number and order, and so on.
For example, this formula sorts by the 2nd column (ascending), 4th column (descending) and 1st column (ascending):
=SORT(A1:D100, 2, TRUE, 4, FALSE, 1, TRUE)
You can create a dashboard with multiple views. Say you wanted to show the above data, and also summarise the top 3 products by revenue and profitability. Go to cell E2, and type
=NOEXPAND(SORT(A1:A9, B2:B9, TRUE))
This sorts the products (A1:A9) using the revenues (B2:B9) in ascending order (TRUE or 1). This would show all 8 products. If you want to keep only the top 3, you need to put the NOEXPAND around the formula. Otherwise, even if you delete the 4th product, Google will put it back.
Now, delete all but the top 3 products. Similarly, in cell E7, type
=NOEXPAND(SORT(A1:A9, C2:C9, TRUE))
This sorts by profitability instead. That’s it! You have a dynamic list of the top 3 products by revenue and profitability.
Can I do that in Excel?
Excel doesn’t have a function to sort. You can sort a list in-place. That changes the order permanently. There’s no way of retaining the original order.
You could make a copy of the list and sort it. But the copy will not change when the original list changes.
If the length of the list is fixed, and the values you want to sort by are unique, you could use the LARGE/SMALL, INDEX and MATCH functions to simulate this effect. First, type the numbers 1-8 in column D. Then type this formula in F2:
=LARGE(B$2:B$9,D2)
This will give you the largest revenue figure. Copy this down the column. This will show the largest revenue figures in descending order. Now, fill cells E2 downwards with the formula:
=INDEX(A$2:A$9,MATCH(F2,B$2:B$9,0))
The MATCH function finds the revenue in the first table, and the INDEX function looks up the corresponding product. You can use the same principle to get the profitability. However, this will not work if two products have the same revenue figure.
Andre’s mentions dumping Google Chrome because of lack of extension support, especially Ubiquity, and lists 15 useful Ubiquity commands.
If you haven’t seen Ubiquity, you should. It’s a great extension that transforms your browser into an Internet command prompt. It is modelled on the Enso Launcher, which is a great piece of work by itself.
I wasn’t quite prepared to let go of Chrome that easily. On Task Manager, seeing 10 Chrome processes, the largest of which takes up 60MB, is a lot more comforting, psychologically, than 1 Firefox process taking up 300MB. (I rarely hit my 1GB RAM limit, so it shouldn’t matter either way. Yet, the spendthrift in me keeps watching.)
So the question is, can I do all the items on his list without using Ubiquity?
Let’s pick the easiest. Google search. If you typed "g some words" on Ubiquity, you get the Google search results for "some words". But you already have that. If you have Firefox, typing any words on the address bar automatically does a Google search for you. On Internet Explorer, it search live.com, but you can easily change that by installing the Google Toolbar.
But the great thing is that this can be customised. On Firefox, click on the down arrow icon next to the search box and select "Manage Search Engines…" to see a list of your search engines. Select the one you want to use, click on "Edit Keyword…" and select the keyword you want. For instance, I’ve typed "google".
So when I type "google some words" on the address bar (not the search bar, the address bar) I get search results for "some words". These are called keyword searches.
On Firefox, you add your own search engines, but you do that using bookmarks. Press Ctrl-Shift-B (Organize Bookmarks) and create a New Bookmark. You can type in any URL in the location field. If you type "%s" as part of the URL, that will be replaced by the search string. So for instance, using a location http://en.wikipedia.org/wiki/Special:Search?search=%s
and the keyword "wiki" will do a Wikipedia search for "Harry Potter" if you type "wiki Harry Potter" on the address bar.
It works on Internet Explorer as well, even with version 6. The easiest way is to download TweakUI. Go to Internet Explorer – Search. Click on the Create button. Type in a keyword (called Prefix) and a URL. If you type "%s" as part of the URL, that will be replaced by the search string.
On Google Chrome, get to the Options (what, no shortcut key?) and in the Basics tab, click the Manage button. Here, you can click on "Add" to add a search engine.
So that takes care of all the basic searches: Google, Amazon, IMDB, Wikipedia, etc.
Can we go further? Item 8 on the list caught my attention:
Twit. As much as I love full-featured Twitter clients like TweetDeck, nothing beats the simplicity of hitting Ctrl-Space and typing twit [message] to so_and_so, or sending a selection of text using twit this to so_and_so. At the moment, there’s no way to receive tweets or ping Twitter for new messages.
I don’t use Twitter, but I do use Identi.ca, and I would like something like this. Right now, I’m using Google Talk to update identi.ca. Two problems. I don’t like chatting, and logging on exposes me to a lot of distraction. Secondly, I’d rather not have to open an application just for this. Something in the browser would be perfect. But is it possible?
Identi.ca (and Twitter, and most micro-blogging services) let you update via e-mail. So if I could write a program that would mail identi.ca, I should be done. So I did that with a Perl script.
my $q = new CGI; open OUT, "|/usr/sbin/sendmail -t"; print OUT join "\n", "From: my.authenticated.id@gmail.com", "To: 1234567890abcdef@identica.com", "Subject: \n\n", $q->param('q'); |
So if I placed this at www.s-anand.net/identica (no, I haven’t placed it there), I just need to create a keyword search with a prefix Tidentica" that points to www.s-anand.net/identica?q=%s
. Then I can type "identica Here is a message that I want to post" on the address bar, and it gets posted.
Actually, if you can write your own programs, the possibilities are endless. If you’re looking for someone to host this sort of thing for free, Google’s AppEngine may be a reasonable point to start.
But the real power of this comes with Javascript. Those URLs that you saw for keyword searches? Those can be Javascript URLs. So item 9 on the list…
Word count. As a student of copywriting, I’m frequently curious about an article’s word length. Highlighting the desired text and entering word count into Ubiquity will give you just that.
… might just be possible.
It’s easy to get the selection. The following snippet gives you the current selection. (Tested in IE 5.5 – 8, Firefox 3 and Google Chrome. Should work for Opera, Safari.)
document.selection ? document.selection.createRange().text : window.getSelection ? window.getSelection().toString() : "" |
To get the word count, just split by white space, and count the results:
s = document.selection ? document.selection.createRange().text : window.getSelection ? window.getSelection().toString() : ""; alert(s.split(/\s+/).length + " words") |
Now, this whole thing can be made into a keyword search. Let’s call it count. If I go to the address bar and type "count it", I want to use count the words in the selection. If I typed "count some set of words here", I want to count the words in "some set of words here". Here’s how to do that.
javascript:var s = "%s"; if (s == "it") { s = document.selection ? document.selection.createRange().text : window.getSelection ? window.getSelection().toString() : ""; } alert(s.split(/\s+/).length + " words"); |
Now, put all of this in one line and add it as your keyword search. Try it!
(Note: You need to replace { curly braces } with %7B and %7D in Google Chrome. It interprets curly braces as a special command. Also, Chrome replaces spaces with a +, so the word count will always return 1 if you search for "count some set of words here".)
You could use selections to search as well. If you wanted to Google your selection, just use:
javascript:var s = "%s"; if (s == "it") { s = document.selection ? document.selection.createRange().text : window.getSelection ? window.getSelection().toString() : ""; } location.replace("http://www.google.com/search?q=" + s) |
Typing "google it" will search for your selected words on Google. "google some words" will search for "some words" on Google.
I’ve configured these keyword searches on my browser to:
You could actually take any bookmarklet and convert it into a keyword search. Which means that practically anything you can do on Javascript can be convert into a command-line-like syntax on the address bar.
So there it is! You can pretty much have a web command line. I wonder if we could add UNIX-pipes-like functionality.
This is a series on what Google Spreadsheets can do that Excel can’t
To get a list of unique values from a list, use the UNIQUE function on Google Spreadsheets.
For example, if you have a list of browsers in column A, type =UNIQUE(A1:A17)
at cell B1 to get a unique list of browsers. This is a dynamic list. If you change the list of browsers, the unique list gets updated automatically.
You can use UNIQUE to create a dynamic pivot table. Quite often, you end up creating a pivot table simply to summarise by one column. The main purpose the pivot table serves is in getting a list of unique values on that column. Plus, it’s a bit heavy on the UI. And every time the data changes, you need to refresh the pivot. But with the UNIQUE function, you can get a dynamic list of unique values, and you can use the COUNTIF and SUMIF function next to each value. Here is an example showing the frequency table of the browsers shown earlier. Column C does a COUNTIF of the unique values on the original list.
You can also use UNIQUE as the input to another formula:
=COUNT(UNIQUE(LIST))
counts the number of unique values
=COUNT(LIST)-COUNT(UNIQUE(LIST))
gives the number of duplicates
=INDEX(UNIQUE(LIST),3)
gives you the third unique value
=LARGE(UNIQUE(LIST),3)
gives you the third largest unique value
… and so on.
Can I do that in Excel?
You can, but not easily. There are two approaches, but each has its limitations.
A. Use Advanced Filters: easy but static
But the list of unique values that you get here is static. If you changed one of the values, the list of unique values does not change.
B. Use a complex formulae that are dynamic
First, blank out the duplicates by typing this formula:
=IF(COUNTIF(A$1:A1,A1)=1,A1,"")
adjacent to the first cell (into B1), and dragging it all the way down (to B17).
Now, create a named range (Alt-I-N-D) for these cells (B1:B17) called WithBlanks and another named range called NoBlanks for the cells one column to the right (C1:C17).
On the first cell of NoBlanks (C1), type this formula:
=IF(ROW()-ROW(NoBlanks)+1>ROWS(WithBlanks)-COUNTBLANK(WithBlanks),"", INDIRECT(ADDRESS(SMALL((IF(WithBlanks<>"",ROW(WithBlanks),ROW()+ ROWS(WithBlanks))),ROW()-ROW(NoBlanks)+1),COLUMN(WithBlanks),4)))
Press Ctrl-Shift-Enter rather than Enter, because it’s an array formula. Now drag this all the way down (to C17).
The list in column C is dynamic. If you change a cell in column A, column C is updated. But the formula can only handle one column. Google Spreadsheets’ UNIQUE function works with any number of columns. If you had data in the range A1:D100 and wanted the unique rows, UNIQUE(A1:D100) gets that for you.
Note: I’m staying away from user defined functions. You could, of course, create a UNIQUE function in Excel using Visual Basic. In fact, you should!
When I analysed my HTTP log last week, I had another motive: are there enough people accessing my site on a mobile device? Or is it too small at this stage for me to care about?
Well, have a look at the numbers.
Windows | 98.4% |
Mobile | 0.6% |
Linux | 0.5% |
OS X | 0.5% |
Yes, there are more people accessing my site through a mobile device than there are using Linux or OS X. That’s shocking!
Now, I’m not saying that this is representative of the rest of the world or anything, but at least it tells me a couple of things.
Firstly, the whole mobile browsing thing is bigger than I thought it was. I started worrying about this a couple of months ago and got myself a HTC s620 phone and a BlackBerry (for free, through some innovative social engineering and smooth talking). It really does get pretty useful on the move… which is frankly anywhere outside of the home and the office, and sometimes even within. (It’s handier to read recipes off the HTC than a laptop.) Google had caught on to the whole mobile browsing trend a very long time ago, and are rather well positioned to make use of it.
Secondly, it means that rather than worrying about my site working on Linux or OS X (i.e. worrying about what plugins to use), I should worry more about it working on mobile devices (i.e. small screen, no Javascript / CSS).
That’s a fairly big shift in my thinking. Earlier, I had been all for shifting all the processing to client-side Javascript. Now it appears I need to design more towards plain HTML pages generated by Perl / PHP.
I went to the Google Chrome site.
Clicking on the “Accept and Install” button…
… automatically launched the downloader in Firefox…
… and (after a fairly short while) started installing the application directly. This may be the most painless install I’ve done in a while.
I clicked on “Customise the settings”
This is what it looks like.
And that’s it! It installs, and launches in just a few seconds. First impressions: the startup and rendering are really fast.
The address bar doubles up as a search bar. Very sensible.
Several nice features: incognito mode, application shortcuts, and developer tools.
The Javascript console has Javascript autocompletion! Watch out, Firebug.
The “Use DNS pre-fetching” looks interesting. My browsing certainly seems faster. Might be faster than Opera, even.
The “Show suggestions for navigation errors” feature.
There’s a task manager…
… that shows how much memory each site uses.
But not all is good. This jQuery animation on my site leaves trails behind.
And the text box resizing is good, but feels a bit… wrong, somehow.
Plus: I can re-import history, bookmarks, etc. from Firefox at any point, so I don’t have to worry about using this as a secondary browser.
Update (8am UK, 3rd Sep): Chrome.exe isn’t installed in your “Program Files” folder. It’s in your “Documents and Settings” folder, under “Local Settings\Application Data\Google\Chrome\Application”. (That’s on Windows XP. Not sure about Vista.)
There’s a Themes folder, so I imagine more themes should be on their way.
There doesn’t seem to be an about:config option. But there are a whole lot of others:
I’m not entirely sure if the last two work. Based on comments at John Resig’s blog. Go through the code to see if you can find more.