Computer Tips From A Computer Guy

Computer Tips From A Computer Guy

Create a desktop shortcut to open Google Chrome in Incognito Mode

Posted: 06 Dec 2008 02:19 AM PST

The Google Chrome developers release 10 new versions of Google Chrome a day, each with some kind of minor enhancement. Earlier I wrote about how to export Google Chrome bookmarks, a process made drastically simpler with the newer releases.

If you download the latest release from the nightly builds, you'll now be happy to know that you can add a command line switch to open the Chrome browser in Incognito Mode. This is nice because to open the browser in Incognito Mode right now, you have to open the normal browser window, click on the Tools icon and then choose New Incognito Mode window, which is a pain.

First, copy the Google Chrome shortcut that you have on your desktop so that there are two icons.

new chrome window

Now right-click on the copy and choose Properties. In the Target box, go all the way to the end and add the following text to the end:

–incognito

incognito mode

Note that there is a space after the end quotation mark and before the two dashes. Now click OK and double-click on your new icon. And viola! An Incognito window pops up!

secret window

You can now rename the shortcut to something more appropriate and use Chrome in Incognito Mode directly. Basically, the browser in the mode will not store your browsing history, IP addresses, cached page text, snapshots of the pages you visited, or records of anything downloaded. Enjoy!


Copyright © 2007
Online Tech Tips.
Aseem Kishore (digitalfingerprint: a59a56dce36427d83e23b501579944fcakmk1980 (209.85.138.136) )

Post from:

Create a desktop shortcut to open Google Chrome in Incognito Mode

How to use summary formulas (average, median, mode) in Excel

Posted: 06 Dec 2008 02:12 AM PST

Microsoft Excel is an excellent number crunching software.  If we needed tabulated data and statistics, it is one of the popular choices since it is a part of the MS Office package.  In this tutorial I will introduce you to it's built in capability to handle aggregated or summarized information using the formula toolbar. 

When we say aggregated data, we mean grouped or calculated data coming from a set of data.  The usual examples of aggregated data are average, median and mode while the more complicated are standard deviation and Poisson distribution.

To demonstrate how to use these formulas, I have created a dummy spread sheet with 10 items:

image

Note: those are arbitrary numbers for demonstration purposes only, you can use the steps that I will discuss on any set of numeric numbers you have on your sheet.

Let's begin with calculating the average of these 10 numbers. 

Step 1: Click on any part of the sheet where you want the average to appear

Step 2: Type the equal sign "=" then the word "average" followed by an opening parentheses "(". You should see the "AVERAGE (number1, number 2…" tool tip appear if you have followed the steps correctly:

image

NOTE: The formula toolbar is the toolbar labeled with "fx" as shown above.

Step 3: Choose all the cells to be the range of data to be summarized.  In this case I have cells A1 to cell A10.  Close the parentheses to complete the parameter syntax:

image

Step 4: Hit ENTER key to see the output:

image

The formula toolbar will show you the formula used for that cell if you have your cursor pointed to that cell.  You can see above that the average output of the 10 cells is 92.1.  If you edit any of the 10 cells, the average value will automatically adjust. 

Now for other formulas, follow the same step as above except the word "average".  So for median, it will be "=median(A1:A10)" while for mode it is "=mode(A1:A10)":

image 

Using the methods shown below, you will be able to easily create statistical reports and analysis using Excel.  Excel can handle simple statistics that measure a central tendency like average, median and mode and it can also be used for more complex calculations using the same method done above. 

Ben Carigtan shows you how it's done.


Copyright © 2007
Online Tech Tips.
Aseem Kishore (digitalfingerprint: a59a56dce36427d83e23b501579944fcakmk1980 (209.85.138.136) )

Post from:

How to use summary formulas (average, median, mode) in Excel