Tuesday, April 8, 2008

Great Resume Books (4 Ebooks)Great Resume Books (4 Ebooks).  

 Great Resume books (4 Ebooks)


I started a job hunt recently, and hadn't written a resume in the last 6 years or so. I had a good idea of how I wanted to present and market myself, but I didn't have all of the fine details filled in.


These books are extensive, but well labeled. Start reading at the beginning, and every subject points you to the chapter with more information on that subject. Kind of like hyperlinks. That way you can look through at the major headings and pick and choose what you don't already know.

I took a prioritized approach, because I was in a little bit of a hurry. I took the resume section, picked a format based on my experience, then wrote a draft. From there, I went back and picked through the writing sections to make sure that I was on the right track. If you've read the examples, and the "before and after" sections, you'll probably have a good idea already what the big picture is. From then I went on to the section on cover letters and online job searching.


There are sections on virtually every subject of resume and cover letter writing, gathering references, job searching and interview preparation. Everything that you really need to get started, or just touch up on what you already know is well organized and labeled so that you can use it immediately. It's just what I was looking for, so that I wouldn't have to waste time reading the "full story" on each subject.



After following the advice in this book and sending out about 20 copies of my resume online, I had about 10 replies in the first week, and about 6 requests for interviews already.

 




Date Added: March 15 2008

Download Great Resume Books (4 Ebooks) General, Ebooks Free !

Part 1

Part 2

Part 3

href="http://rapidshare.com/files/86679250/Expert_Resumes_For_Career_Changers.rar" target="_blank">Part 4

How can I check if a value is already in an array?

If you wish to check whether a value is already stored in an array or not, then use the in_array function.



This is useful when you don't want any duplicates in the array and therefore only want to add a value if it's not already there. The first argument is the string you are testing for and the second is the array you are checking against.



Here is an example of in_array in action:




<?php

$values 
= array("banana","apple","pear","banana");


$newvalue "pear";

if (
in_array($newvalue,$values)) { echo "$newvalue is already in the array!"; }


?>





The most common mistake made with in_array is to pass the arguments in the wrong order to the function, so take care!

Monday, April 7, 2008

Describe a typical work week?

Interviewers expect a candidate for employment to discuss what they do while they are working in detail. Before you answer, consider the position you are applying for and how your current or past positions relate to it. The more you can connect your past experience with the job opening, the more successful you will be at answering the questions.


It should be obvious that it's not a good idea talk about non-work related activities that you do on company time, but, I've had applicants tell me how they are often late because they have to drive a child to school or like to take a long lunch break to work at the gym.

Keep your answers focused on work and show the interviewer that you're organized ("The first thing I do on Monday morning is check my voicemail and email, then I prioritize my activities for the week.") and efficient.