Tuesday, December 9, 2008

Firefox - 'Private Browsing'

Private Browsing is already a part of most of web browser like IE8, Google Chrome etc, The new beta for Firfox 3.1 Beta 2 has a feature for the private Browsing. it's a really good news for the Firfox lover.

A Private Browsing Mode allows you to browse without browser storing any traces of what and where you have Broswe!

Today(9-Dec-2008) i got a alert and saw this news that Firefox 3.1 Beta 2 is ready for download then i just open this given link http://www.mozilla.com/en-US/firefox/all-beta.html then i see it available for donload for the Windows, Mac OS, Linux, and i just download Firfox 3.1 Beta to for windows and Install on my windows machine. after Installing the browser i open the broswser and start searchig how i can make 'Private Browsing' i clicked the Tool tab an see the follwing




and then click on the 'Private Browsing' and the the tab open like this..

and then i started 'Private Browsing'.



The program title bar does state that you're using Private Browsing, but there's no blatant icon like other Browser. see below that only the title bar state that 'Private Browsing' there is no any icon on blatant icon.

Once you click on the Tool->Private browsing then my default browsing go to the 'Private Browsing'.
If you want to browse simple then you have to again go to the Tool->Private browsing and uncheck this then you will find the simple browser.

I am very happy to find 'Private Browsing' in Firefox .


You should also enjoy with Firefox -'Private Browsing' doing the simple excercise like download it from the above link and then Install it on your machine and then start browsing.

Happy Private Browsing with Firefox......!

Saturday, October 18, 2008

Map your world with Google Map Maker.

Google Map Maker is a free service provided by Google team that allows you to add or edit features about your city, street, collage ,park , company etc and map it with Google Map.
After submitting the information, it will be available at the Map Maker sites for other users to edit it and you can see it live in Google Maps when Google team decides there's enough information about the map things.

Let's see how to use Google Map Maker to Map your place.

1.To access Google Map Maker, visit   http://mapmaker.google.com use your Google login and password to sign in. If you do not have a Google account, you can create account.

once you login you will see this page















2. Search your location where you want to Map if your location is already map then you can edit your location clicking on the flag and then pop window comes up and edit , see in this picture i seaced and find the My district Gonda and add flag and save it
(to see clear picture click o below image)













it's two step task you can map your worl with the Map Maker.
All d best.

Friday, August 29, 2008

Microsoft Launched IE8 Beta.

  Microsoft Launched IE8 Beta.


Microsoft lanched IE8 beta for user it's contain the many more new feature than previous IE the Major New features In IE8 is:-
accelerators:
Now you can get more done, more quickly on the Web. Accelerators provide instant access to information like maps, Web search, translation, email, blogging, and more. Simply highlight a word or phrase on a page to harness the power of the Web like never before .

automatic crash recovery:
which prevents a single page's failures from taking down your entire browser.
and browser browser privacy.

Web Slices
Web Slices puts you in control of the information you care about most. Now you can subscribe to specific content within a page and monitor things like auction items, sports scores, entertainment columns, weather reports, and more. Internet Explorer 8 automatically delivers updated information directly to a Web Slice in your Favorites Bar, all without leaving the page you're on

Visual Search
Search is one of the most frequent and important things you do online. The new Internet Explorer 8 Search Box takes results to a whole new level by adding graphics and images, helping you find exactly what you're looking for, quickly and easily

New Tab Features
Enhanced for Internet Explorer 8, the Tab page is more useful than ever. From it you can engage a host of Web services as well as open previously closed tabs or begin an InPrivate session.

there are so many other feature, few of them i find and wrote.

for more: http://www.microsoft.com/windows/ie/ie8/welcome/us-en/tour.html

let me play with IE8 then i ll write somthing else..

.........


Tuesday, August 19, 2008

MySQL Partitions.

MySQL Partitions is a New Feature of MySQL 5.1, This is the most awaited feature of MySQL.
I am very happy to find this feature in MySQL. because Partitioning is a way of pre-organizing table storage.

Benifits: Partitioning can be useful in speeding up selects on large tables.

Creating Partitioned Tables:
The way creating partitioned tables is the PARTITION clause
of CREATE TABLE.

Here's the rule which we have to remember at time of partitioning tables.

1.> If a table has a primary key, then any columns used in the partitioning expression must be part of the primary key.

2.>If a table has no primary key, but does have one or more unique keys, then any columns used in the partitioning expression must be part of the (first) unique key.

3.>Regular indexes have no effect on what columns may or may not be used in a partitioning expression. This means that if you need an index on the id column (or any other column) to speed up searches, you can define one without getting into trouble.

4. >Partitioned tables do not support FULLTEXT indexes, including tables that use the MYISAM storage engine.

There are four type of partitioning,Let me Explain with an Example.......

1. Range: Rows with column or expression values falling within a specified range are assigned to a given partition.
See following example it's non-partitioned table

CREATE TABLE employee (

id INT AUTO_INCREMENT PRIMARY KEY,
emp_name VARCHAR(30),
emp_designation varchar(45),
joining_date DATE
) ENGINE = MYISAM;

Here's the Range partitioning for this table.

CREATE TABLE employee (
id INT AUTO_INCREMENT PRIMARY KEY,
emp_name VARCHAR(30),
emp_designation varchar(45),
joining_date DATE
) ENGINE = MYISAM
PARTITION BY RANGE(id) (
PARTITION p0 VALUES LESS THAN(2000),
PARTITION p1 VALUES LESS THAN(3000),
PARTITION p2 VALUES LESS THAN(4000),
PARTITION p3 VALUES LESS THAN(5000)

);

Any row having an id whose value is less than 2000 is stored in partition p0. The next partition is named p1, and stores rows whose id column values are less than 2000 and p2 stores values less than 3000 and so on.

Note: I try to insert a row having order ID number 5000 or higher?" The answer is that such an insert fails:

ERROR : Table has no partition for value 5000

To overcome this error, there's a more general way to accomplish this, as you can see here:

CREATE TABLE employee (
id INT AUTO_INCREMENT PRIMARY KEY,
emp_name VARCHAR(30),
emp_designation varchar(45),
joining_date DATE )
ENGINE = MYISAM
PARTITION BY RANGE(id)
( PARTITION p0 VALUES LESS THAN(2000),
PARTITION p1 VALUES LESS THAN(3000),
PARTITION p2 VALUES LESS THAN(4000),
PARTITION p3 VALUES LESS THAN(5000),
PARTITION p5 VALUES LESS THAN(MAXVALUE)
);


so in this case partition p5 can conatin "the greatest possible value .

Monday, August 11, 2008

FREE Hardware and Software Information extracting tool - Belarc Adviser

How do I get a list of all installed Software and Hardware informatin on my machine? information is all confusing.

I think there is no central repository of information about what is on your machine. other day i was very confused how to make Inventry of my computer. I had just start searching and find a free Belerc Software. which builds a detailed Inventry of Installed software and hardware.

I did the following simple step to run this tool on my Machine..


1. Free download it from http://www.belarc.com/free_download.html.

2. Simple Installed it on my Machine, after completion of installation it shows shortcut on
my desktop

3. I run Belarc Advisor on desktop.

4. It's open a IE browser and dispaly all my computer software and hardware information.

I do'nt want to share my computer infomation that's why i am not putting here screen shot of browser which contain the deatiled Computer Profile.

One of the best features of the Belarc Advisor is its report showing all the Microsoft Windows Critical updates that are installed on the computer and a list of any that are missing.

There are many tool to find a such a inforamtion about computer , but this is the tool which i have used and it is very easy and efficent!

Sunday, August 10, 2008

It is my first Post

I just start writing post on blog with my less writing skill once i came to know about blogging.

So first of all i would like to thanks a person who help me a lot to know about blogging, he is
Shekhar Govindarajan.

In this computer technology era.. i think blogging is a best way to share my thinking and experience globally, so that's a reason i start blogging.


Let me think for my next post....

cheers..!