Web Development Tips and Tricks

Web Development Tips and Tricks

Sunday, December 25, 2011

Happy Christmas

I wish to my friends so many good things -
for this Christmas time to come,
knowing that in my heart,
all the good for me you all have done.
keep smiling and shining :)

Thursday, December 15, 2011

What does Alt+F4 do?

This is one of those jokes people play on each other -- it's in the same category with squirting flowers and exploding cigars. This joke works on machines running the Windows operating system because Windows happens to define certain keystrokes that work the same way in all applications. Just about everyone knows that Alt+Ctrl+Del interrupts the operating system, but most people don't know that Alt+F4 closes the current window. So if you had pressed Alt+F4 while playing a game, the game window would have closed.

Wednesday, December 14, 2011

how can I delete my account in Linkedin?

LinkedIn is providing a simple procedure for you to close your account:

Login to the account you want to close
See your name on the upper right hand - drop down box - "settings"
Under Personal Info, hit Close your account
Specify a reason and hit Continue.

Once you delete your account you can’t have it back so really think about it before doing

Sunday, December 11, 2011

How to create a Facebook Page

Step1)

Go to facebook.com/pages and click “Create Page” in the upper right hand corner.

The next screen asks you to select a category from the following list:

  • Local Business or Place
  • Company, Organization or Institution
  • Brand or Product
  • Artist, Band or Public Figure
  • Entertainment
  • Cause or Community

2. Fill In Information

Once you select the category for your business, you can fill in the name, address and phone number. Check the box next to “I agree to Facebook Pages Terms” and click “Get Started.”

3. Add a Image

Upload a picture for your page. It can be a logo— whatever makes the most sense .

4. Suggest Page to Friends

Get your Page started off with some “likes” by recruiting your own friends. Start typing in names and when you drag the cursor over someone’s name, it will highlight in blue. Click once to check the person and add them to your invite. Click “Selected” to see who’s on your invite list. When you’re ready to invite, click “Send Recommendations.”

5. Import Contacts

Click on “Import Contacts” to reach out to your email contacts about your new Page.

6. Start Writing Content

7. Get URL

8. Use the Tools

8. Assign Other Admins

Wednesday, December 7, 2011

Re-Install or format HTC mobile

If you want to format ur imate go to

start --> settings --> system --> clear storage

this will hard reset your imate and format and reinstall windows

This really format my imate jamin start ---- settings-- system ---clear storage
And installed new operating system. The push button near charger jack just refresh the mobile it cant format . so Only start ---- settings-- system ---clear storage formats your mobile.

Monday, December 5, 2011

Generate a random alphanumeric number with php

Copy and paste it between php tag in your php file

$unique_key = substr(md5(rand(0, 1000000)), 0, 10 );
//Print that string
echo $unique_key;