Tuesday 30 August 2011

Facebook like Autosuggestion with jQuery, Ajax and PHP.

I love facebook API it's neat, so I had developed Facebook like Autosuggestion user search with jQuery, Ajax and PHP. It's simple and clean just you have to change the database details.

 
Facebook like Autosuggestion with jQuery, Ajax and PHP.


Take a look at live demo, search word " sri "

Download Script     Live Demo

Download the Script. Edit Config.php change the database details.

Database
create database table with name "test_user_data"
CREATE TABLE test_user_data
(
uid INT AUTO_INCREMENT PRIMARY KEY,
fname VARCHAR(25),
lname VARCHAR(25),
country VARCHAR(25),
img VARCHAR(50)
);



Auto.html
contains jquery(javascript) and HTML Code. Take a look at input field class values search
<script type="text/javascript" src="jquery.js"></script>
</script>
$(document).ready(function(){
$(".search").keyup(function()
{
var searchbox = $(this).val();
var dataString = 'searchword='+ searchbox;
if(searchbox=='')
{}
else
{
$.ajax({
type: "POST",
url: "search.php",
data: dataString,
cache: false,
success: function(html)
{
$("#display").html(html).show();
}
});
}return false;
});
});
</script>
<input type="text"color: blue;">search" id="searchbox" />

<div id="display">
</div>


search.php
Contains PHP code. Display search results

<?php
include('config.php');
if($_POST)
{
$q=$_POST['searchword'];
$sql_res=
mysql_query("select * from test_user_data where fname like '%$q%' or lname like '%$q%' order by uid LIMIT 5");
while($row=mysql_fetch_array($sql_res))
{
$fname=$row['fname'];
$lname=$row['lname'];
$img=$row['img'];
$country=$row['country'];
$re_fname='<b>'.$q.'</b>';
$re_lname='<b>'.$q.'</b>';
$final_fname = str_ireplace($q, $re_fname, $fname);
$final_lname = str_ireplace($q, $re_lname, $lname);

?>
<divcolor: blue;">display_box" align="left">
<img src="user_img/
<?php echo $img; ?>" />
<?php echo $final_fname; ?>&nbsp;
<?php echo $final_lname; ?><br/>
<?php echo $country; ?>
</div>
<?php
}
}
else
{}
?>

Using Watermark Input plugin
To show information about the contents of a text field.

<script type="text/javascript" src="jquery.watermarkinput.js"></script>
</script>
jQuery(function($){
$("#searchbox").Watermark("Search");
});
</script>

CSS
id #diplay overflow : hidden
*{margin:0px}
#searchbox

{
width:250px;
border:solid 1px #000;
padding:3px;
}
#display

{
width:250px;
display:none;
float:right; margin-right:30px;
border-left:solid 1px #dedede;
border-right:solid 1px #dedede;
border-bottom:solid 1px #dedede;
overflow:hidden;
}
.display_box

{
padding:4px;
border-top:solid 1px #dedede;
font-size:12px;
height:30px;
}
.display_box:hover

{
background:#3b5998;
color:#FFFFFF;
}

if any queries just post a comment.

Facebook Style CSS JQuery drop down menus



Now a days drop down menus are becoming more and more popular. They arebeing used in  most modern websites like facebook, gmail, gplus, orkut, gmail, yahoo...

There is no secret that they are using JQuery and HTML to implement the above feature.

Even you can do this by writing some very simple code.

 

       

 

 

 

 

Step-1:

Lets write our HTML code.
<div style="height:300px;">
            <div style="width:162px;">
                <dl style="">
                   <dt>
                   <a class="" id="linkglobal"
                   style="cursor: pointer;"></a></dt>
                    <dd>
                        <ul style="display: none;" id="ulglobal">
                            <li><a href="#">Everyone</a></li>
                            <li><a href="#">Friends</a></li>
                            <li><a href="#">Only Me</a></li>
                            <li><a href="#">Customize</a></li>
                      </ul>
                   </dd>
                </dl>
            </div>
        </div>

Step-2:
The next step is to add some CSS which will further stylize the menu
which is going to look just like facebook.
<style type="text/css">

    *{
        padding:0;
        margin:0;
    }

    body{
        color: #333333;
        direction: ltr;
        font-family:
        "lucida grande",tahoma,verdana,arial,sans-serif;
        font-size: 11px;
        text-align: left;
    }

/* Grey Small Dropdown */

/* General dropdown styles */
.dropdown dl{ margin-left:5px; }
.dropdown dd, .dropdown dt, .dropdown ul
{ margin:0px; padding:0px; }
.dropdown dd { position:relative; }

/* DT styles for sliding doors */
.dropdown dt a {background:#EEEEEE
url(privacyOff.png) no-repeat scroll right center;
    display:block; width:40px; height:22px; cursor:pointer;}

.dropdown dt a.selected{
    background:#EEEEEE url(privacyOn.png)
    no-repeat scroll right center;
}
.dropdown dt a span {
cursor:pointer; display:block; padding:5px;}

/* UL styles */
.dropdown dd ul {
background:#EEEEEE none repeat scroll 0 0; display:none;
    list-style:none; padding:3px 0; position:absolute;
    left:0px; width:160px; left:auto; right:0;
    border:1px solid #656565; cursor:pointer;
    }
.dropdown dd ul li{
background-color:#EEEEEE; margin:0; width:160px;
}
.dropdown span.value { display:none;}
.dropdown dd ul li a {
display:block; font-weight:normal; width:137px;
text-align:left; overflow:hidden; padding:2px 4px 3px 19px;
color:#111111; text-decoration:none;
}
.dropdown dd ul li a:hover{
background:#656565; color:white; text-decoration:none;
}
.dropdown dd ul li a:visited{
text-decoration:none;
}
</style>

Step-3 :

Now lets include the JQuery into our webpage and start writing the necessary JQuery function calls.
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".dropdown dt a").click(function() {

// Change the behaviour of onclick states for links within the menu.
var toggleId = "#" + this.id.replace(/^link/,"ul");

// Hides all other menus depending on JQuery id assigned to them
$(".dropdown dd ul").not(toggleId).hide();

//Only toggles the menu we want since the menu could be showing and we want to hide it.
$(toggleId).toggle();

//Change the css class on the menu header to show the selected class.
if($(toggleId).css("display") == "none"){
$(this).removeClass("selected");
}else{
$(this).addClass("selected");
}

});

$(".dropdown dd ul li a").click(function() {

// This is the default behaviour for all links within the menus
var text = $(this).html();
$(".dropdown dt a span").html(text);
$(".dropdown dd ul").hide();
});

$(document).bind('click', function(e) {

// Lets hide the menu when the page is clicked anywhere but the menu.
var $clicked = $(e.target);
if (! $clicked.parents().hasClass("dropdown")){
$(".dropdown dd ul").hide();
$(".dropdown dt a").removeClass("selected");
}});
});
</script>

Thursday 25 August 2011

Difference between Jan Lokpal Bill and Draft Lokpal Bill




























Jan Lokpal Bill (Citizen's Ombudsman Bill)Draft Lokpal Bill (2010)
Lokpal will have powers to initiate suo moto action or receive complaints of corruption from the general public.Lokpal will have no power to initiate suo motu action or receive complaints of corruption from the general public. It can only probe complaints forwarded by the Speaker of the Lok Sabha or the Chairman of the Rajya Sabha.
Lokpal will have the power to initiate prosecution of anyone found guilty.Lokpal will only be an Advisory Body with a role limited to forwarding reports to a "Competent Authority".
Lokpal will have police powers as well as the ability to register FIRs.Lokpal will have no police powers and no ability to register an FIR or proceed with criminal investigations.
Lokpal and the anti corruption wing of the CBI will be one independent body.The CBI and Lokpal will be unconnected.
Punishments will be a minimum of 10 years and a maximum of up to life imprisonment.Punishment for corruption will be a minimum of 6 months and a maximum of up to 7 years.

Detailed

The following table details differences between the Government and activist backed versions














































































IssueThe Jan Lokpal BillGovernment's Lokpal Bill
Prime MinisterCan be investigated with permission of seven member Lokpal bench.PM can be investigated by Lokpal after s/he vacates office.
JudiciaryCan be investigated, though high level members may be investigated only with permission of a seven member Lokpal bench.Judiciary is exempt and will be covered by a separate "judicial accountability bill".
MPsCan be investigated with permission of seven member Lokpal bench.Can be investigated, but their conduct within Parliament, such as voting, cannot be investigated.
Lower bureaucracyAll public servants would be included.Only Group A officers will be covered.
Central Bureau of Investigation (CBI)The CBI will be merged into the Lokpal.The CBI will remain a separate agency.
Removal of Lokpal members and ChairAny person can bring a complaint to the Supreme Court, who can then recommend removal of any member to the President.Any "aggrieved party" can raise a complaint to the President, who will refer the matter to the CJI.
Removal of Lokpal staff and officersComplaints against Lokpal staff will be handled by independent boards set-up in each state, composed of retired bureaucrats, judges, and civil society members.Lokpal will conduct inquiries into its own behavior.
LokayuktaLokakyukta and other local/state anti-corruption agency would remain in place.All state anti-corruption agencies would be closed and responsibilities taken over by centralized Lokpal.
Whistleblower protectionWhistleblowers are protected law.No protection granted to whistleblowers.
Punishment for corruptionLokpal can either directly impose penalties, or refer the matter to the courts. Penalties can include removal from office, imprisonment, and recovery of assets from those who benefited from the corruption.Lokpal can only refer matters to the courts, not take any direct punitive actions. Penalties remain equivalent to those in current law.
Investigatory powersLokpal can obtain wiretaps, issue rogatory letters, and recruit investigating officers. Cannot issue contempt orders.Lokpal can issue contempt orders, and has the ability to punish those in contempt. No authority to obtain wiretaps, issue rogatory letters, or recruit investigating officers.
False, frivolous and vexatious complaintsLokpal can issue fines for frivolous complaints (including frivolous complaints against Lokpal itself), with a maximum penalty of 1 lakh.Court system will handle matters of frivolous complaints. Courts can issue fines of Rs25,000 to 2 lakh.
NGOsNGOs not within the scope due to their role in exposing corruption.NGOs are within the scope and can be investigated.
ScopeAll corruption can be investigated.Only high-level corruption can be investigated.

Courtesy: Wikipedia

Singapore - An example of lokpal

In 1982, In Singapore, LOKPAL BILL was implemented and 142 Corrupt ministers & Officers were arrested in one single day..

Today Singapore has only 1% poor people
no taxes are paid by the people to the government
92% Literacy Rate
Better Medical Facilities
Cheaper Prices
90% Money is white & Only 1% Unemployment exists..-
its now or never frnds
support ANNA...

See how Lokpal Bill can curb the politicians, Circulate it to create awareness

Summary of All scams of India : Rs. 910603234300000/-

See how Lokpal Bill can curb the politicians, Circulate it to create awareness












































      Existing System



System Proposed by civil society


No politician or senior officer ever goes to jail despite huge evidence because Anti Corruption Branch (ACB) and CBI directly come under the government. Before starting investigation or prosecution in any case, they have to take permission from the same bosses, against whom the case has to be investigated.Lokpal at centre and Lokayukta at state level will be independent bodies. ACB and CBI will be merged into these bodies. They will have power to initiate investigations and prosecution against any officer or politician without needing anyone’s permission. Investigation should be completed within 1 year and trial to get over in next 1 year. Within two years, the corrupt should go to jail.
No corrupt officer is dismissed from the job because Central Vigilance Commission, which is supposed to dismiss corrupt officers, is only an advisory body. Whenever it advises government to dismiss any senior corrupt officer, its advice is never implemented.Lokpal and Lokayukta will have complete powers to order dismissal of a corrupt officer. CVC and all departmental vigilance will be merged into Lokpal and state vigilance will be merged into Lokayukta.
No action is taken against corrupt judges because permission is required from the Chief Justice of India to even register an FIR against corrupt judges.Lokpal & Lokayukta shall have powers to investigate and prosecute any judge without needing anyone’s permission.
Nowhere to go - People expose corruption but no action is taken on their complaints.Lokpal & Lokayukta will have to enquire into and hear every complaint.
There is so much corruption within CBI and vigilance departments. Their functioning is so secret that it encourages corruption within these agencies.All investigations in Lokpal & Lokayukta shall be transparent. After completion of investigation, all case records shall be open to public.  Complaint against any staff of Lokpal & Lokayukta shall be enquired and punishment announced within two months.
Weak and corrupt people are appointed as heads of anti-corruption agencies.Politicians will have absolutely no say in selections of Chairperson and members of Lokpal & Lokayukta. Selections will take place through a transparent and public participatory process.
Citizens face harassment in government offices. Sometimes they are forced to pay bribes. One can only complaint to senior officers. No action is taken on complaints because senior officers also get their cut.Lokpal & Lokayukta will get public grievances resolved in time bound manner, impose a penalty of Rs 250 per day of delay to be deducted from the salary of guilty officer and award that amount as compensation to the aggrieved citizen.
Nothing in law to recover ill gotten wealth. A corrupt person can come out of jail and enjoy that money.Loss caused to the government due to corruption will be recovered from all accused.
Small punishment for corruption- Punishment for corruption is minimum 6 months and maximum 7 years.Enhanced punishment - The punishment would be minimum 5 years and maximum of life imprisonment.

Dear All,   Please go through the details carefully & try to be part of this mission against corruption. Things to know about Anna Hazare and Lok pal Bill-:     1.Who is Anna Hazare?                                                                               An ex-army man(Unmarried). Fought 1965 Indo-Pak War.                                                                                                                                                             2.What's so special about him?                                                                       He built a village Ralegaon Siddhi in Ahamad Nagar district, Maharashtra                                                                                                                                 3.This village is a self-sustained model village. Energy is produced in the village itself from     solar power, biofuel and wind mills. In 1975, it used to be a poverty clad village. Now it is one   of the richest village in India. It has become a model for self-sustained, eco-friendly &           harmonic village.                                                                                                                                                                                       4.This guy, Anna Hazare was awarded Padma Bhushan and is a known figure for his social               activities.                                                                                           5.He is supporting a cause, the amendment of a law to curb corruption in India.                                                                                                                         6. How that can be possible?                                                                         He is advocating for a Bill, The Lok Pal Bill (The Citizen Ombudsman Bill), that will form an       autonomous authority who will make politicians (ministers), bureaucrats (IAS/IPS) accountable for   their deeds.                                                                                          7. It's an entirely new thing right..?                                                               In 1972, the bill was proposed by then Law minister Mr. Shanti Bhushan. Since then it has been       neglected by the politicians and some are trying to change the bill to suit their theft             (corruption).                                                                                       8. Oh.. He is going on a hunger strike for that whole thing of passing a Bill ! How can that be     possible in such a short span of time?                                                               The first thing he is asking for is: the govt should come forward and announce that the bill is     going to be passed.                                                                                 Next, they make a joint committee to DRAFT the LOK PAL BILL. 50% government participation and 50%   public participation. Bcoz u can't trust the govt entirely for making such a bill which does not       suit them.                                                                                           9.What will happen when this bill is passed?                                                         A LokPal will be appointed at the centre. He will have an autonomous charge, say like the Election   Commission of India. In each and every state, Lokayukta will be appointed. The job is to bring all     alleged party to trial in case of corruptions within 1 year. Within 2 years, the guilty will be     punished.                                                                                           Pass this on n show ur support..                                                                   Spread it like   fire; Our Nation needs us... Please Contribute...

Wednesday 10 August 2011

Install Skype standalone offline installer

Some Software installers which download data from servers to complete installation are an irritating, albeit upcoming trend. Yahoo Messenger, Skype, Google Chrome etc. are some of the programs which require you to be online while installing the program.

They typically have an installer file under 1 MB, which then download files to complete installation. While this might not be a problem for broadband users, dialup users and others with poor connectivity would benefit from an offline installer that you could get from a nearby web browsing center (in your USB drive, for example).

Skype standalone offline installer


Skype has a standalone installer (which works even if you are offline).

Download Skype offline installer and double click it to begin setup. You will be prompted with a UAC warning, click Accept.

The next few steps would involve simply clicking ‘Next’ a few times – there is nothing to tweak (unless you want to install your programs in a partition other than C:\).

Free full offline Skype setup file

In the second step, make sure you leave the checkbox empty for “Yes, I want to install Browser Highlighter”. You would not even find it interesting unless you’re a power user.

Skype offline installer file

Get Skype full standalone install files

Skype should now be installed and ready to use thanks to our standalone installer. This was tested on a Windows Vista system, although It should work on Windows XP and Windows 7 too – leave a comment if you find any problems while using the offline installer. Using this also allows you to install Skype on multiple computers without having to download the online Skype setup file multiple times – saving bandwidth.

Friday 5 August 2011

19 year old gets $1M to launch a social app. Watch out, Zuckerberg

He has $1 million in the bank, a promising new company and a rolodex that makes Silicon Valley swoon.

“Hang on, I’ve got to take this,” says 19 year-old Cory Levy. “Hi, Mom.”



I’m interviewing Levy in our office when he takes the call. As I wait, I cannot shake his eerie resemblance to Mark Zuckerberg. It’s not just his curly hair, the hoodie, the strangely similar necks and chins. It’s the fact that this teenager is wicked smart with serious ambition. He wants to change the world.

“Worried parents,” he sighs as he hangs up the phone. “They live in Houston. They always like to know where I am and what I am doing.”

What he’s doing is remarkable for someone his age. He is co-founding a startup called One, which has created a mobile app that notifies you when people around you share your interests. You create a profile, and when someone with similar interests is right next to you, you get a notification. Levy and his co-founder, 28 year old Michael Callahan, have the ambitious goal of making missed connections history.

“How do we meet the important people in our lives?” asks Levy. “It’s all about situations. I like tennis, and met my best friend because he was carrying a racket. We started talking because of that racket. What if he hadn’t been carrying it that day? We want to prevent people from walking past each other and missing a chance to know each other.”

The app makes its initial debut at the end of this month at UC Berkeley, when students get back to school. He’s timed the launch carefully, so it will be available after the noise of signing up for classes and extracurricular activities has quieted.

“You need a large number of users in a small geographic area, so we’re focusing on college campuses,” explains Levy. “We’re going from campus to campus. We are emulating what Facebook did. Why did Color launch to everyone? Why are all of these companies trying to build a network by launching publicly? Exclusivity is key.”

Color is a good analogy. Like One, the startup is focused on making connections between people based on physical proximity. The fuse was lit when Color raised $41 million earlier this year. The result was more of a fizzle than a ka-boom. Early reviews indicated users weren’t as excited as a $41 million company should make them. It still hasn’t taken off. One will also face competition from apps like WhosHere and Skout.

After Berkeley, One will launch at University of Texas and University of Illinois. One tracked invite requests on its site to see which schools got picked.

The company raised $1 million from SV Angel, True Ventures, Charles River Ventures, General Catalyst, Square COO Keith Rabois, wine guru and marketing consultant Gary Vaynerchuk, serial entrepreneur Naval Ravikant and Harrison Metal founder Michael Dearing.

Dearing doesn’t talk to the press very often. A current Stanford professor and former senior vice president at eBay, Dearing has quietly backed innovative and successful startups. His greatest hits include AdMob (Google acquired for $750 million), Xoopit (Yahoo bought for $20 million), Mixer Labs (Twitter acquired) along with other startups like Widgetbox, CafePress, Polyvore and BloomSpot. You’ll be hard-pressed to find him talk publically about himself or these companies.

In this case, he was happy to talk.

“Three people in the same week told me to meet him,” says Dearing with a chuckle, recalling how he met Levy. “He’s got charisma and the courage to use it. He reaches out to people and is self confident in the best way. He finds interesting people and interesting things to talk about. He can connect with people and that deep desire is reflected in his product.”

I ask if he can find something negative to say about Levy.

“He’s the real thing,” says Dearing. This validation from Dearing is one of the best you can get in Silicon Valley. “You can’t do what he’s done at his age without intense focus and discipline. The reason you haven’t been able to find red flags is he hasn’t had much time to accumulate them.”

Levy spent one year at University of Illinois studying computer science, where the university had recruited him for his entrepreneur talents, he says, “just like an athlete.” But what he was really studying was how to sell himself and his ideas. He did an independent study with Paul Magelli, the senior director of the Academy for Entrepreneurial Leadership at U of I. Magelli is also scholar in residence at Kauffman Foundation, advising on entrepreneurship initiatives.

“Cory is ‘the’ mythical example we use in class, except he’s for real,” says Magelli, as he puts down his Chicago-style hot dog to do an interview. He’s just landed in Chicago, and called as soon as this interview was requested. “I’ve been teaching for 57 years and you wonder when in your career you’ll get a Cory. He makes you rethink the proposition as to whether entrepreneurs are born or made. He’s so young. How did he absorb it in 19 years? He’s an enigma.”

Levy says he’s taking a break from school to work on One. He’s not sure how long that break will last.

Tuesday 2 August 2011

Converting Word Documents to Excel

One item I've learned from using computers is that there is usually more than one way to solve a problem. This week two people approached me with a similar problem. They were trying to get a simple, but long address list from Microsoft Word into Microsoft Excel. One tried to use macros and the other resorted to cut and paste. In each case, I thought a simpler solution involved Word's Search and Replace feature. Here's Part 1 of a two part tutorial.

Each user was starting with a list of names and addresses that were in Microsoft Word. I suspect they were some sort of address directory or contact list. For various reasons, they needed to get the data into Microsoft Excel. They wanted one row for each record. The address record looked similar to the records below.

James Madison
124 Main St
Anytown, NY 12345

Paula Harris
356 Longtree View
Harper, MA 01073

Before starting, review your list and look for common denominators and possible exceptions. In these cases, the records were uniform with each one consisting of three lines with a blank line in between.

Creating the Record Delimiter


The first step in this process is to add a record delimiter. This is the item Excel will look for to separate each row.

1. Copy the text you wish to convert and paste it to a new document.

2. Turn on Paragraph marks using the Standard toolbar button or Ctrl+Shift+*

Notice how two paragraph marks exist between each record. If your last record doesn't show tow, you might want to add a line at the end. We'll substitute a unique character as a record delimiter. I like to use the tilde ~ sign, but you can use any uncommon character. Be careful not to use a character that appears in your list.

3. Go to the top of your document. (Ctrl+Home)

4. From the Edit menu, select Find

5. Click the Replace tab

6. Click the More button at the bottom. Your dialog will now show additional options.

7. Click the Special button.

8. Select Paragraph Mark from the pop up menu. Repeat this step.

9. Enter in the symbol you wish to use for your record delimiter such as a tilde.

Your Find and Replace dialog should look similar to the one below.

Word Find and Replace dialog

10. Click Replace All.

11. Click Close.

Microsoft Word will give you a count of how many replacements it made. Don't worry that your formatting looks off and various lines look combined.

Defining the Fields


The next part is to define our fields which will be placed in Excel columns. Each record had 3 lines which represented: Name, Address and City, ST and Zip. In this example, we're going use a comma to separate these fields. We can parse the names and state in Excel later.

1. Go to the top of your document.

2. From the Edit menu, select Replace.

3. Your Find and Replace dialog will have your previous values. Remove one of the paragraph marks sets in the Find what: textbox.

4. In the Replace with: textbox, clear out the tilde and enter a comma.

5. Click Replace All

6. Click Close.

Breaking Apart the Records


Your document probably looks worse, but don't worry as to create you often need to destroy. Part of this may be word wrap and part of it is our formatting. The next steps will put it into perspective.

1. Go to the top of your document

2. From the Edit menu, select Replace.

3. Your Find and Replace dialog will have your previous values. Remove the paragraph mark in the Find what: textbox and type in a tilde.

4. In the Replace with: textbox, clear out the tilde

5. Click Special

6. Select Paragraph Marks from the pop up menu

7. Click Replace All

8. Click Close.

If you have extra commas or paragraph marks on the last line, you can delete them. If you're really fastidious and don't like the space before the State, you can do another search and replace. Personally, I would do this in Excel with ASAP Utilities which is a free add on.

Saving the File


Your document should now have 1 record per line with the fields separated by a comma and ending with a paragraph mark. There will not be a comma between state and zip code.

1. From the File menu, select Save As

2. In the Save As dialog, enter your file name

3. In the Save as type: drop down menu, select Plain Text.

4. Word may display a File Conversion dialog with a warning that all formatting will be lost. Don't worry and click OK to accept the default values.

Pulling the File into Excel


The last part is to import our Microsoft Word text file into Excel.

1. Open Excel

2. From the File menu, select Open

3. In the Open dialog, change the Files of Type: entry to Text Files

4. Point to your .txt file.

5. Click Open

6. The Text Import Wizard should start. Keep the default values and click Next.

7. In Step 2, change your Delimiter from Tab to Comma. The screen should adjust to show the fields in columns.

8. In Step 3, you can change the data format for each column or click Finish to accept General format.

Final Tweaks


Chances are you will want to do some minor tweaking. As example, you probably want to add column labels. Also, if you have US addresses, you may want to split the last column that has the State and Zip code combined. You may also want to split the name column into first and last names. In our example, this is easy as a space separates the first and last name or the state and zip code.

To parse a column into multiple columns,

1. Highlight your column

2. From the Data menu, select Text to Columns…

3. Click the Next button on the Convert Text to Columns Wizard

4. In the Delimiters box for Step 2, select Space

5. Click Next

6. Define your data format.

(Note: For zip codes, you may want to change the data format to Text if you have zip codes starting with “0”.)

While these steps may not work exactly for your list, they should provide the basis for creating the records in Microsoft Word. Your list may be slightly different or include additional items such as email addresses. Either way, you could use similar steps to create a document that Microsoft Excel can interpret. In Part 2, we will use tables to accomplish a similar result.

Monday 1 August 2011

Find Your Lost Mobiles

Got a chain mail from my friend today on getting the lost handset back. Its really amazing. Now a days there is every chance of losing a cell phone, and never getting it back. There are various reasons for it. The most important reason is, till we lose we never think of losing and getting it back. Each mobile carries a unique IMEI i.e. International Mobile Equipment Identity No which can be used to track your mobile anywhere in the world. If you have this number sent to the Cyber Crime Division of Police, most likely it will be tracked and phone returned to you?

This is how it works


1. Dial *#06# from your mobile.

2. Your mobile shows a unique 15 digit. This is IMEI No. of your hand set.

3. Note down this no anywhere but except your mobile as this is the no. which will help to trace your mobile in case of a theft.

4. Once stolen you just have to mail this 15 digit IMEI no. to: cop@vsnl.net

5. No need to go to police.

6. Your Mobile will be traced within next 24 hrs via a complex system of GPRS and internet.

7. You will find where your hand set is being operated even in case your no is being changed.

 
If u lost your mobile, send an e-mail to cop@vsnl.net with the following info.

Your name:
Address:
Phone model:
Make:
Last used No.:
E-mail for communication:
Missed date:
IMEI No:

Please Note : This information is valid only for India. For other countries procedure should be similar but the reporting email will differ.