Web Development Tips and Tricks

Web Development Tips and Tricks

Thursday, August 9, 2012

Five best Mobile Applications For Job Seekers


Five best Mobile Applications For Job Seekers

Now days 60 percent of job seekers have used mobile applications in their search. These mobile apps allow them to keep track of their resume, prepare for interviews, store files
About 36 percent of job seekers use these apps to react to new job postings and about 24 percent want to be able to job search anytime and anywhere. The competition is tough so it’s more important now than ever before to be prepared and responsive. There are a lot of apps out there and  I listed below some useful and diverse application.


1. Monster.com

Monster.com’s iPhone and iPad applications allow you to search for jobs and give you tools to help you ace interviews. You can save your job searches and have new jobs emailed to you and access your Monster account. There are also interview preparation tips, tools and coaching features. For more information on how to get iPads on contract so you can use the Monster app, follow this link.


2. LunchMeet

LunchMeet helps you take your online contacts and meet them offline to further the relationship.
LunchMeet is a mobile networking app that uses your LinkedIn account to find contacts near you who are open to networking. The app creates a casual situation where you can just grab lunch or coffee and discuss career opportunities.

3. PocketResume

You can tailor your resume for specific positions and change the heads on the resume very easily
 With PocketResume and it gives you access to your LinkedIn profile and the ability to export your resume to a PDF file or Dropbox.

http://pocketresume.net/

4. iPQ Career Planner

iPQ Career Planner identifies your skills and then matches them to the right jobs. It also has career resources and questionnaires to give you more information on certain career paths.iPQ Career Planner can help you develop your career skills. It has an assessment which will help you determine the most relevant and best jobs for you.

5. JobJuice

JobJuice gives you the tools to build your personal brand, research and target companies, and connect with hiring managers. They offer multiple applications: Strategy & Consulting, Marketing, Finance & Investment Banking, Salary Negotiation, and Social Media Job Search.

Tuesday, July 17, 2012

Tips And tricks PHP



see oen mobile number

you can see own mobile number using following code


Monday, July 2, 2012

How can i change the taskbar position?

Right click the task bar,click "Properties",make sure "Lock the taskbar" is unchecked,click Apply. Now drag the taskbar by mouse wherever you want ,again lock the taskbar by checking that option in Properties.

Tuesday, June 19, 2012

Deleting Skype names on login

How delete Skype names on login



Hello friends today i am going to tell you how delete Skype names on login.

1. Make sure that Skype is not running. If the Skype icon is visible , right-click
and click Exit/Quit.

2. Browse to C:\Documents and Settings\<Your XP Username>\Application Data\Skype

There you will find a separate folder for each Skype user who has previously logged in on this computer.

3. Delete the entire folder for each username you want to get rid of.

Thursday, May 31, 2012

Why use Free Open Source software


Why use Free Open Source software

Why beg, borrow or steal when you can own??? Use open source software
Firstly I would like to tell you what is open source software mean
Generically, open source refers to a program in which the source code is available to the general public for use and/or modification from its original design free of charge, i.e., open.
Open source code is typically created as a collaborative effort in which programmers improve upon the code and share the changes within the community. Open source sprouted in the technological community as a response to proprietary software owned by corporations.
Why use Free Open Source
1.    Access to the robust, professional and latest technologies
Open Source gives everyone the power of a professional, rapidly growing and changing tool set to manipulate digital media. Open Source is developed by developers across the world and incorporates the newest technologies.
2.    Technology advances based on user demand
Open source solutions ensure that the next digital technology will be determined  and created ‘by the people’ and not by a few select corporations.
3.    Free and accessible to all
Everyone has free access to open source tools. Technology is available to all and not just to the select few who can afford expensive software.
4.    Price: the initial cost of free and open source software (FOSS) is much less, Money saved (not stolen) is money earned.
5.    Third, open source applications can be even more secure than their commercial equivalents. Open source communities fixed security vulnerabilities twice as quickly as commercial software vendors did, according to a recent study by Veracode
6.    Informal support structures: A hallmark of good FOSS projects is an incredible community of informal, freely available support centered around email lists, wikis, irc chat channels, open documentation and bug trackers. These may take a bit more digging, a bit more patience, and a bit more respect than demanding (and paying for) commercial level support.

Use legally, why beg, borrow or steal when you can own?!??
When an Open Source solution does not exist, Freeware (free versions or starter versions of non open source software) is recommended

Wednesday, May 30, 2012

Connect to 2 databases at the same time in PHP

if your database user has access to both databases and they are on the same server, you can use one connection and just specify the database you want to work with before the table name. Example:

SELECT column
FROM database.table

Depending on what you need to do, you might be able to do an INSERT INTO and save a bunch of processing time.

INSERT INTO database1.table (column)
SELECT database2.table.column
FROM database2.table
select and insert at same time
fetch from one table and insert in single query