-
Notifications
You must be signed in to change notification settings - Fork 4
/
howtogetanyjobyouwantUPDATED.tex
5214 lines (4414 loc) · 208 KB
/
howtogetanyjobyouwantUPDATED.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{dirtytalk}
\usepackage{hyperref}
\usepackage{pifont}
\usepackage{amssymb}
\usepackage{lscape}
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{lipsum}
\usepackage{pdflscape}
\usepackage{tabu}
\usepackage{pdflscape}
\usepackage{pdfpages}
\title{Book}
\author{b.skerritt }
\date{October 2019}
\addtolength{\parskip}{\baselineskip}
\usepackage[margin=1.5in]{geometry}
\begin{document}
\pagenumbering{gobble}
\raggedright
\includepdf{howtoget.pdf}
\begin{flushleft}
\clearpage
\pagenumbering{roman}
Dedicated to everyone who said I couldn't achieve great things, for
making me push that little bit harder every single day.
\end{flushleft}
\newpage
\section*{Acknowledgments}
The process of writing this book repeatedly made me wish I was dead. But
once I was done, I felt great. I was fortunate enough to have a group of
people who worked with me to bring this book to life.
\bigbreak
Hannah Blair, one of my mentors, is one of the most amazing people I've
met. I want to thank her for writing the best blogpost on Facebook I
could find, which I've used here. Her support since I've met her has
been invaluable
\bigbreak
Ibrahim for editing this book, making it the best book it could possibly
be. Many, many thanks Ibrahim.
\bigbreak
Olivia, for supporting me throughout all of this and for always
believing in me.
\bigbreak
Ciaron, for many good memories on the high seas and being an overall
good friend.
\bigbreak
Katie for reading the book and supporting me. I couldn't have done it
without your support!
\bigbreak
Many thanks to all who contributed on GitHub. Janogarcia for the
chaptering issue.
\newpage
\section*{Copyright}
Copyright © 2018 by SeventyTwo Publishing Limited on behalf of Brandon
Skerritt
All rights reserved. This book or any portion thereof
may not be reproduced or used in any manner whatsoever
without the express written permission of the publisher
except for the use of brief quotations in a book review.
Printed in the United Kingdom
First Printing, 2019
Published by SeventyTwo Publishing Limited.
ISBN 978-1-9160463-1-3
www.skerritt.blog
\newpage
\newpage
\tableofcontents
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\section{Preface}
Professional skills, Just the mere murmur of the word makes me want to
fall asleep. It's such a boring topic, there's no getting around that.
So many people fall asleep in professional skills classes or never take
the time to learn these vital skills.
This makes a large difference between the people who took the boring
class and the people who didn't. So many people apply for graduate jobs
every single year, I'm willing to bet around 95\% of them have no
experience with professional skills. Because of this, there is a gap in
the market. If you have even basic professional skills, you're going to
look better than the 95\% of the candidates that have applied.
Professional skills are vital. Even if you do not wish to learn much
about it. To the nerds out there, like me, who have studied professional
skills we know this to be true. It is a boring subject, but if you study
this boring subject, you're going to look like the best thing since
sliced bread to employers.
Degrees don't matter. Unless you don't have one. If you have one, it
doesn't matter. 99\% of the people applying for graduate junior
positions have degrees. A degree will not make you stand out, no matter
how hard you work towards that degree. You need to differentiate
yourself, by showing that you are more than just a degree title. One of
the ways you could do this is by learning professional skills.
This book is written for everyone who understands that this is a vital
skill but does not have the knowledge or means to study it. This book is
written for everyone who desperately wants to learn these skills but
falls asleep in the lectures on them.
If you have no interest in getting an increase in salary before you
start, or no interest in being the best intern a company has ever had,
then put this book down. Do not read it. This is not for you.
One of the people who read the original draft on this got a promotion
before they started. Their CV was "the best thing we had ever seen"
and because of this, the person was deemed a god amongst everyone who
didn't have basic knowledge of constructing a CV.
Let me tell you a secret. For a select few who are obsessed with
professional skills, getting internships is a game. I am not joking. One
of my friends got 36 internships in his first year at the likes of Bank
of America, Barclays, Royal Bank of Scotland, Amazon, Apple, and many
more. I have more friends who have achieved similar feats.
For a select few, professional skills are a game. I've interviewed as
many of them as I could to learn the secrets to the game, how to get any
job you want. This book is a compilation of wisdom from that exclusive
group and much more.
\subsection{Career vs Job}
Let's get right into the business of the day. A job is something you do
for money. Your part time Tesco work is a job. A career is what your
life is, what you're doing with your life. This is anything that can
take over your life. A professor at University, for example.
With a job, you work a shift and that's it. You don't do anything else.
With a career, you work a shift, you go home, and you work some more.
You may go to conferences, you may network, you may learn some things in
order to improve yourself at your job. Here are the biggest differences:
\begin{center}
\begin{tabular}{||c|c||}
\hline
Career & Job \\ [0.5ex]
\hline\hline
Long term & Short Term \\
\hline
Lots of growth and opportunities & Low or no growth \\
\hline
Earning experience & Earning money \\
\hline
Go above and beyond & Doing the bare minimum \\
\hline
Happy that you get to work & Angry or frustrated that you're forced to
work \\
\hline
Aligned with the core values of the company & Uninterested or doesn't
care about the core values \\
\hline
Looking to move up the corporate ladder & Looking for a new job that
pays more \\
\hline
A career is a journey & A job is a grind \\
[1ex]
\hline
\end{tabular}
\end{center}
\subsection{The Job Cycle}
When you're in university, there's a certain cycle you normally have to
follow in order to get a good graduate job. The cycle is:
$$\hbox{Insight days} \rightarrow \hbox{Spring internships} \rightarrow \hbox{Summer internships} \rightarrow \hbox{Placement year} \rightarrow \hbox{Graduate job}$$
You don't need to do all of these things. The typical way most people go
around it is:
$$\hbox{Summer internships (or a placement year)} \rightarrow \hbox{Graduate job}$$
The lower you start on this cycle, the more likely you are to get a job.
This cycle doesn't matter that much, unless you're applying somewhere
exclusive. If you want to work somewhere like Bank of America, you'll
need to follow this cycle.
Bank of America would rather hire someone who went through the whole
cycle with them than someone who didn't. It matters here, since they are
such a big company even their insight days fill out quickly. They don't
need to bother with people who have only done an internship, if they
have hundreds who have done insight days or are even campus ambassadors
for them.
The lower levels (insight days, spring internships, sometimes summer
internships) carry over from other companies in the same industry.
If you did insight days and a spring internship at BlackRock, Bank of
America will think that's really good as you're in the industry. Of
course, they'll always pick someone who has worked for their company
over someone who's just worked at a competitor, but you can't expect to
do 20 insight days / 20 spring internships just to get a chance at a
company.
Most insight days / spring internships are just advertisements for a
company.
\subsection{Landing That Job}
It's better to blanket apply to as many companies as possible. And when you get an interview, focus intently on winning. Ideally, we'd want to apply to 100 companies with absolute precision, instead of the shotgun approach. But that's simply not possible.
If you have an internship, here's some good advice from a recruiter on
how to turn that internship into a graduate job.
This advice comes from Andrew Osayemi.
\begin{quote}
So, you are fortunate to have a spring or summer internship \& are
looking for 1 piece of unconventional advice, to help increase your
chances of being offered a full-time graduate job?
Well the advice is very simple. Ask everyone on your team if they
would like a tea or coffee every 2--3 hours each day
Do it with a warm smile.
If they say no still smile \& politely say "no problem, please let
me know if you need anything!"
And if they say yes, write down their order carefully so you don't mess
it up including any special requests (soya milk, 10 sugars etc)
When you return with their beverage of choice, again make sure you give
it to them with a warm smile
Now the next 10 seconds is crucial
You have an opening to ask how their day is going, if they have any work
for you to do, if you can book a convenient time to work shadow them,
did they watch the latest reality show etc.
Very soon your likeability factor will be increased which greatly
impacts your chances of being offered a full-time graduate offer!
I've given this advice to countless students whom I have coached via
Rare Recruitment \& the feedback is It works!
\end{quote}
As a small note, this actually depends on what you want to do. If you
want to work for the big 4 of tech, working really hard for those 4 make
sense. But there's another approach if you just want to get any job in
your field.
The approach is simple. You fire off as many CVs as possible to as many
companies as possible. While in this book, I'm under the assumption you
want a specific job at a specific company, this approach also works.
Ideally, you want to be able to perform intensive research on every
company. You want to customise everything for each company. You also
want to apply to as many as people while maintaining this work load.
Sadly, this isn't possible to achieve. Think of this as a dial between
two extremes. On the one extreme, you have the shotgun approach. Apply
to every single company you can without prior research or customisation.
On the other extreme, you have the sniper approach. You pick 3 or 4
companies and go in hard.
What you want to decide is where you sit on this dial. Where do you want
to sit between these two extremes? Here are some examples that will help
you, whichever one you choose:
\begin{itemize}
\item
Shotgun apply to 100s of companies. The companies that really interest
you, try the sniper approach.
\item
Pick 20 or 30 companies to apply to and learn about them in depth.
\end{itemize}
At the end of the day, the company doesn't care about you. Why should
you spend hours and hours researching a company that doesn't care? Maybe
you really want to work for that company. Don't read this book and think
"huh, this approach will work for me". Decide for yourself what will
and won't work.
\subsection{Your University's Careers Team}
Your university's careers team is an elite squad of experts whose entire
jobs are to get you great jobs. This book isn't meant to be a
replacement for them, it goes hand in hand with them. They can interview
you, look at your CV \& more to help you get prepared.
You can find out how to access your university's careers team by
Googling "[University name] careers team".
\subsubsection{My University's Careers Team Is Bad}
It happens. The good news is that you're already on your way to becoming
an expert in employability skills. By reaching out and reading this
book, you're already doing 90\% more than anyone else applying for that
job - learning more about employability skills.
For practice with interviews - go to as many as possible. Apply to
companies you'll likely never work at just to get interview experience.
The more you do, the better. When you're at an interview, make friends
with the other candidates and work together to achieve greatness. To get
great jobs. They'll likely be able to help you with your CV \& other
things.
\subsection{One Last Thing}
This book isn't a one size fits all book. The recruitment industry is
large. So large in fact, that it's impossible to cover every single
titbit. In some industries, a nicely designed CV is essential. In
others, anything other than black and white is seen as a monstrosity.
While I try my best in this book to guide you along this path, know that
you need to research yourself. I can't possibly cover every single
industry here.
\newpage
\section{Curriculum Vitae}
A Curriculum Vitae (CV) or a resume is one of the most vital parts of
job hunting. Put simply, it is a piece of paper you give to a recruiter.
This recruiter decides if you are worth the time to interview based on
this bit of paper.
Every job requires a CV. Sometimes, the job will force you to rewrite
your entire CV on their website. Even if it does, you'll still need a
CV.
As such, writing a good CV is the key to getting a good job.
The CV is a summary of your professional life so far. It features your
education, your work experience, skills and more.
Most times a person reads the CV, but sometimes machines can also read
it. Recently artificial intelligence is being used to read CVs. When a
human reads your CV, they don't exactly read it. Estimations say that
they spend 7 seconds on your CV, but this isn't true. If you were in the
position of looking at CVs and you saw something that looked spiritless,
would you bother reading it? I know you wouldn't. That's why your CV
needs to catch their eyes. It needs to make them curious and interested
in you within the first second or two. First impressions matter here, A
lot.
\subsection{Personalising Your CV}
Your CV will impress the person reading it if it's customised to them.
Everyone likes a customised birthday cake more than a regular Tesco own
brand birthday cake.
Make it look like you're perfect for the job because the employer only
wants the perfect candidate. The thing with applying for a very large
organisations is that they have no shortage of candidates. Why settle on
someone mediocre when 2 weeks later you'll have someone perfect for the
role? You need to act perfect and believe you are perfect for the role.
\subsubsection{Keywords Is the Keyword of This Section}
An AI looks for keywords. They do not have an average time of looking at
your CV.
A recruiter will insert a bunch of keywords into a computer program. The
program will scan each CV and give the CV a score on how many keywords
the CV has. This is why it is important to know what keywords to put
into your CV. But, having an A4 piece of paper with font size 2 to fill
it to the brim of keywords might not work. You don't know whether they
will use a human or a machine - or even both. Machines can rank your CV
depending on how `clean' it is too.
To insert keywords, you need to know what job you are applying for and
what company.
Let's say you apply to Barclays for a summer analyst position.
First you would Google around. Search for terms like "Barclays CV
keywords" and "Summer analyst keywords CV". If these do not return
anything then read the description.
A part of the description in 2018 states this:
\begin{quote}We are looking for bright, personable individuals who have the ambition to succeed and an impetus to learn and make the most of this
fantastic opportunity within a competitive environment.
\end{quote}
Barclays are looking for people who love learning. Who want to make a
difference to themselves and to the world and are above all, kind.
You should customise your CV to show that you love learning. You are
kind hearted (volunteering work can prove this, for example) and
understand that it is a competitive position. Try to use the keywords
themselves. Barclays say you need "an impetus to learn", you can write
in your CV profile that you have an impetus to learn. You should show
that you need this position.
To customise your CV, analyse the job description. Obsessively read it
and highlight keywords that come up. They say that they want someone
with strong self-motivation? Find something you've done that proves this
and put it on to your CV. Just like with the Barclays example earlier,
it's all about matching your CV up to the job description as much as
possible.
By inserting keywords into the CV you'll be able to pass the keyword
test performed by machines, as discussed earlier. But please do not puke
keywords onto your CV, it has to look natural.
Read the job description, the responsibilities, the specific
requirements, the location. If you see a word you don't know, Google it.
That word you don't know is likely a keyword. Remember the Barclays
example from earlier? It's like they've grabbed a thesaurus and randomly
inserted words into the job description. These words are keywords.
Some keywords come up and up again in many jobs such as:
\begin{itemize}
\item Teamwork
\item Time management
\item Microsoft Office
\item Leadership skills
\item Computer literacy
\end{itemize}
Let's say a job description has this sentence in it:
\begin{quote}
Required: Advance knowledge of Microsoft Applications (Word, Excel, PowerPoint
\end{quote}
Then instead of writing "Microsoft Office" on your CV you write:
\begin{quote}
Advance knowledge of Microsoft Software (Word, Excel, PowerPoint)
\end{quote}
If the machine reads your CV, you'll pass the keyword test. If a human
reads your CV, they may not remember the job description exactly, which
is good. When they read "Advance knowledge of Microsoft Software\ldots"
something will click in their head which makes you stand out. That
something is that their subconscious memory recalls the keywords used in
the job description.
\subsubsection{Making the CV Fit Around You, Not You Trying to Fit into a CV Template}
If you're applying for a job that requires programming, have a
languages section on your CV that talks about all the languages you
know. Or if you know other languages, include them. There isn't a one
size fits all CV that's perfect for you. You need to make the perfect CV
for you.
It's also best to rate your skills. If you're fluent in German, say
you're fluent. If you're not fluent but still quite good, write
intermediate. Be honest, don't lie that you're fluent in Mandarin as the
job might need that you are.
Most people fire off blankets of CV's to every single recruiter on their
LinkedIn or job recruiters like it's the last thing you'll ever do. Do
not do this. Customisation per job is vital.
\subsubsection{Lie about your Location}
Want to get a job in London? Then write "London" on your CV.
This won't work well if you write "London" and you live in Scotland
unless you plan to move.
If you get called up on it say you're going to relocate, or you enjoy
commuting.
You need the employer to think that if they hire you, they won't come
into any problems like you living an hour away.
\subsubsection{How to Research an Organisation}
You need to know about an organisation before you apply for a job there.
You can't apply to an organisation you know nothing about and expect to
get the job. In order to be the perfect candidate, you need to be an
expert on this organisation.
Some of the things you want to find out are:
\begin{itemize}
\item
The mission statement of the company
\item
Who founded it and why
\item
A brief history of the company
\item
Current CEO of company
\item
Where they are based
\item
Products and services
\item
Competitors
\item
Current issues
\item
Current news
\item
Ethics \& morals
\item
Culture
\item
The people you will be working with / the person interviewing you
\item
Career development
\item
Travel opportunities
\end{itemize}
Once you've researched about them, add the things you've found to a word
document and print it out. Go over this document on the way to the
interview. You do not need to memorise every company you apply for. Use
this information in your cover letter and learn the information the day
before your interview.
You could Google most of these. Just Google "[Companies name] [thing you want to find out]". When you research a company, the best website you should concentrate on is the company's own website. For history, you should look at the company's Wikipedia page. For current
news, you can Google search the company and click the "news" tab.
For most companies, Bloomberg contains a "snapshot" of the company.
This includes the key executives for the company, their age, their
annual compensation, a company overview, how many employees they have
and more. The key thing about these snapshots are the ""key developments" section whereby Bloomberg lists the most important news
and developments for a company.
To find a Bloomberg snapshot of a company, Google "[company name] Bloomberg snapshot".
If the company is especially big, chances are that the Economist has
written an article about them at some point. Find sources you like \&
trust, and search to see if that company has come up in these sources.
\subsection{Writing a CV}
Now we know about customising a CV, let's get into how to write a CV.
The first most important rule is that your CV should be 1 page. Not
double sided but one page. If you have 15+ years of experience then 2
pages is okay, but 1 page is always preferable.
\subsubsection{Choosing the Right CV Template}
Choosing the right CV template is always important. You could try to
create your own template, but I don't suggest you do this unless you're
good at design. The simplest and easiest way to find a good template is
to Google "CV Template" and pick one you like.
Make sure the template is well designed and it has to be visually
appealing. The template should be slightly sparse of information. A CV
with little information on it looks more appealing than a CV full of
information. The recruiter is used to CVs with paragraphs upon
paragraphs of information. If you have little information, it will catch
their eye. Try not to disclude stuff that's directly relevant to the
position, you want to be the best person for the job.
If you know a little tiny bit about computers, you can Google "LaTeX CV
templates" to get some nice templates for free. If it's on Overleaf or
ShareLaTeX then it's easier to use. LaTeX is like a programming language
but for writing.
A well-designed CV is more important than most people think. Well
designed does not have to equal "pretty colours and nice shapes".
In some industries, a well designed CV is a burden. Employers can hate
them with a burning rage. The recruitment industry is less "this one
tip works for everyone" and more "this one tip is really cool for a
specific part of the industry". Well designed CVs may be appreciated at
tech start-ups or design companies, but at other places like law firms
they can be hated. While in this book I advocate for colour CVs, know
that you need to perform your own research and find out if its
appropriate for your industry.
Another downside to using well designed CVs is that Applicant Tracking
Software can't read them. This is the software / AI used to determine
whether or not you are the right candidate.
Instead of reading these chapters and thinking "this is perfect for my
industry" I implore you to think "this is a good idea, but I wonder if
my industry likes this?"
If you believe the answer to be "yes, my industry likes this" then go
ahead.
But, the benefits for well designed CVs still exist. No one else will
have a CV like yours, so you'll stand out. Also, you can have a well
designed CV and have a plain black / white layout. Whitespace is your
friend here. Lots of space, sparse information.
You have to decide for yourself what is good and what is bad. All
industries are different.
My friend Chris has so many internships he's lost count. These include
places like Bank of America, Google, Facebook and many, many more. His
CV is black \& white and it worked pretty well for him. Try to find
people in the industry you're applying for like Chris who have a lot of
experience applying to jobs. Ask them what the industry is like. You can
use LinkedIn for this.
Your CV needs to be eye-catching, it needs to be designed well. It needs
to look good and have the correct information in it.
Personally speaking, I use NovoResume.com for all of my CV needs. I have
been using them for years, and they've never once let me down.
Your university careers team might also have templates for you to use,
but I would recommend at least modifying this template. Thousands of
people will use your universities careers template every year, try to
make it unique and make it your CV. If you've found 2 or more templates
you really like, and you don't know which one to use, just ask your
university careers team.
If your CV is visually stunning, the employer will love it. They read so
many of the same black \& white PDF documents filled with information
every day they're desperate to find something that has a hint of graphic
design.
Another thing to note is the use of progress bars as indicators of how
well you know something. Saying you're 4/5 for speaking Spanish, what
does that mean? You're not natively fluent in it, but you know some of
it.
Especially on things that constantly change. Say you graded your CSS
knowledge 75\% (it's a programming language). CSS then gets a huge
update. Do you now know 50\% of CSS?
Going hand in hand with a well-designed CV, don't crinkle your CV or put
folds in it if you print it out. It has to look like it just came out of
a printer. Never, ever hand over a CV with a crinkle or fold in it.
\subsubsection{Achievements \& Jobs on a CV}
When writing out your CV, list your achievements at a job. Don't list
the duties you had to do. Everyone has to do stuff at a job,
achievements are more impressive. Make sure the CV is visually appealing
and sparse of information. You want to tell a story in as few words as
possible. Put your jobs in reverse-chronological order so your most
recent work appears at the top of the CV.
If I was to say that I was the best Student Union officer that would
make me sound big headed. If I was to change that to "changed Student
Union approval rating from 30\% to 90\%" it would sound even more
impressive and not so egotistical.
Achievements are important too. Try to make your achievements in this
format:
\begin{quote}
I did X by doing Y as proved by Q
\end{quote}
As a general rule you need to have some sort of statistic related to the
achievement. It makes the achievement sound so much more impressive.
Mixing this achievement rule with statistics will go a long way for you.
Don't include jobs if it's not relevant. If you're applying to be an
investment banker and you worked at an ice cream shop for a week, it's
not really helpful for you to put that on. It'll just make your CV look
messy. If you have no experience, it will be more helpful to put your
education on it. You want to balance your education and work experience.
If you've never worked anywhere relevant before, you'll want to include
your A-levels and university modules with grades. If you've worked in
industry, as an internship or whatnot then you might not want to include
A-levels in order to write more about this experience.
Real world experience is always worth more than education, so try to
disclude as much information of your education as possible. But make
sure to put university on there. Don't include primary / secondary
school. The earliest you can go back to is A levels.
If you're applying for a job in academia, your education matters a lot
more than normal. If you have a perfect mix of work experience and
education, try to list your education shortly. Only include the modules
that are relevant to the job. If you're applying for a job in game
design and you've done modules on game design, include them.
The single most important thing you can do to make your CV stand out is
to customise your CV per job.
\subsubsection{How to Spell-Check Your CV}
You need to avoid spelling and grammar mistakes at all costs. It is the
difference between you getting a job and you not getting the job. The
simplest form of spell checking you can do is to run the Microsoft Word
spell checker. But, this isn't good enough. You actually need to read
your CV, and then get someone else to read it for you.
Your university's careers team is perfect for this. Almost every careers
team will have some form of session or drop in clinic for them to read
your CV and pick up on anything that's wrong. When in doubt, visit your
careers team.
Instead of Microsoft Word's spell checker, I use Grammarly.
\subsubsection{To PDF or Not to PDF}
Always send your CV as a PDF unless they absolutely specify it has to be
sent in a format they require.
The PDF is designed to be readable on any machine. The way the PDF looks
on your machine is the exact same way it'll look on any other machine.
Anyone can open a PDF. PDFs are supported in Internet Explorer or
Chrome. With Microsoft Word, if they have a different Word version to
you it may look different. It may actually look worse to them than it
does to you. Also, not everyone has Microsoft Word; but everyone has a
web browser like Firefox or Chrome.
If they need the CV in plaintext (copy and paste) you have to change the
formatting. You can make sections using " --- ---". Like so:
\begin{quote}
Achievements\\
-\/-\/-\/-\/-\/-\/-\/-\/-\/-\/-\/-\/-\/-\/-\/-\/-\/-\/-
* Changed Student Union approval rating from 30\% to 90\%
\end{quote}
You can use an asterisk as a bullet point, as seen above.
\subsubsection{References}
No references available on request. No one I know that gets jobs does
this. Make it as easy as possible for the recruiter. Contacting you to
ask for references is another step to them, which makes it harder. Cut
out the middleman and put the contact details for your reference on the
CV itself.
I know that some references will write you letters, and that's good. You
should hand these in when they ask for qualifications (if they do) or
letters of recommendation. Please do not copy and paste your references'
letters onto your CV or attach them to the other blank side. It's just
not good.
You'll usually want 2 references, 1 academic and 1 work related. If you
have never worked somewhere before, use another academic reference if
you can or someone you have volunteered with. Or the head of a society
you're active in.
When you put the reference on your CV, it should look like this:\\
Name\\
How they know you (ex-boss, ex-co-worker)\\
Contact details (email, phone)
That's it. No "I went drinking with him every Friday". No stories or
anything, short and sweet.
Make sure you ask the person if you can use them as a reference. Make
sure they will only say good things about you. If they want to "be
honest" about you, find someone else. Your references should gleam at
the opportunity to talk about how amazing you are.
In a warm Starbucks once I was talking to a recruiter. They talked about
how many people put references down without making sure the referencer
is okay with it. Or they'll put a reference down that isn't too keen on
the person. The recruiter would often call these references and get:
\begin{quote}
\emph{"They were alright, they did the job"}
\end{quote}
or even worse:
\begin{quote}
\emph{"Who are they again?"}
\end{quote}
It's important to make sure your references know you and love you. Be
very careful with what information you put down too.
If you put down the references personal phone number and your CV gets
shared around, you've shared personal information with people the
reference doesn't even know about. This is violating many Data
Protection Act Regulations.
In some countries, you don't even need to put references down on your
CV. References are sometimes the very last thing a recruiter asks for.
You could instead use that reference space for something more important.
Like with choosing a well designed CV or a plain CV, you need to decide
for yourself. While in the UK it is traditional to put references down,
you need to consider the benefits and downsides of it.
\textbf{Benefits}
\begin{itemize}
\item
Easy for the recruiter to find out more about you. Easier for the
recruiter is always better
\end{itemize}
\textbf{Downsides}
\begin{itemize}
\item
Takes up precious space on a CV. CVs are supposed to only be 1 page
long, you could use that space for something else.
\item
Not needed in most countries.
\item
You could accidentally violate Data Protection Regulations.
\end{itemize}
\subsubsection{Make It as Easy for Your Employer as Possible}
Referencing what I said earlier, make it as easy for your employer as
possible. Think about who you are applying to. If you're applying in the
tech industry, chances are that they are reading your CV on a computer,
so hyperlinks in CVs are cool. If not, don't include them as they don't
look good when printed out.
Are you applying to be a graphic designer? The design of your CV matters
the most. Are you applying to be a game developer? You could make your
CV as a game, like Robbie Leonardi did here:
\href{http://www.rleonardi.com/interactive-resume/}{{www.rleonardi.com/interactive-resume/}}
Really think about who you are applying for and how you can make your CV
better for them.
\subsubsection{Have a "Profile" Section}
This profile is a small section of your CV that includes a brief summary
of your skills, experiences and goals. It is your elevator pitch.
Imagine you are in an elevator with the recruiter of a large company.
You have 30 seconds to convince them to care about you enough to want to
interview you. This is the elevator pitch. A good profile makes people
interested in you. It gives them a reason to read on and pay attention
to your CV.
This is truly customised to you. I really cannot tell you what to write.
Your elevator pitch should talk about who you are, what you do, your
education, and your goals in life. A good profile will break these
rules. It's one thing to follow the rules, but in order to stand out you
need to break these rules. My profile is:
\begin{quote}
"Obsessive learner and problem solver, always looking for the next big problem to solve"
\end{quote}
Your elevator pitch talks about your education \& experience, your CV
profile talks about you as a person. If they want to know about your
education \& experience, they'll simply read on. Your principles and
goals in life are discovered, not invented.
My friend's profile says:
\begin{quote}
\emph{"I love what I do -- turning ideas into reality by coding. "}
\end{quote}
It's incredibly hard for me to describe this, since it has to be
personalised to you. No one can tell you what to write here, but keep in
mind that you'll discover what you love if you keep it in the back of
your head for long enough.
\subsubsection{Bullet Points, Paragraphs \& Action Verbs}
Bullet Points. Always try to have bullet points. You're allowed to
include paragraphs, but if everything in your CV is a paragraph it'll
look extremely dull. Bullet points are more readable.
Personally speaking, the only time I use paragraphs is for my
achievements, when I want to tell a story. Everything else is bullet
points. You should use action verbs in your bullet points to make it
sound powerful. Instead of saying:
\begin{quote}
\emph{"I led a project"}
\end{quote}
You can say:
\begin{quote}
\emph{"I orchestrated a project"}
\end{quote}
Here is a list of 185+ action verbs you can use, from the website The
Muse\footnote{\href{https://www.themuse.com/advice/185-powerful-verbs-that-will-make-your-resume-awesome}{{https://www.themuse.com/advice/185-powerful-verbs-that-will-make-your-resume-awesome}}
accessed at 07/08/2018.}
\begin{longtable}}
\toprule
\endhead
\begin{minipage}[t]{0.47\columnwidth}\raggedright
\hypertarget{you-increased-efficiency-sales-revenue-or-customer-satisfaction}{%
\paragraph{You increased efficiency, sales, revenue, or customer
satisfaction}\label{you-increased-efficiency-sales-revenue-or-customer-satisfaction}}
\begin{itemize}
\item
Accelerated
\item
Achieved
\item
Advanced
\item
Amplified
\item
Boosted
\item
Capitalized
\item
Delivered
\item
Enhanced
\item
Expanded
\item
Expedited
\item
Furthered
\item
Gained
\item
Generated
\item
Improved
\item
Lifted
\item
Maximized
\item
Outpaced
\item
Stimulated
\item
Sustained
\end{itemize}\strut
\end{minipage} & \begin{minipage}[t]{0.47\columnwidth}\raggedright
\hypertarget{you-thought-of-and-brought-a-project-to-life}{%
\paragraph{You thought of and brought a project to
life}\label{you-thought-of-and-brought-a-project-to-life}}
\begin{itemize}
\item
Administered
\item
Built
\item
Charted
\item
Created
\item
Designed
\item
Developed
\item
Devised
\item
Founded
\item
Engineered
\item
Established
\item
Formalized
\item
Formed
\item
Formulated
\item
Implemented
\item
Incorporated
\item
Initiated
\item
Instituted
\item
Introduced
\item
Launched
\item
Pioneered
\item
Spearheaded
\end{itemize}\strut
\end{minipage}\tabularnewline
\bottomrule
\end{longtable}
\begin{longtable}}
\toprule
\endhead
\begin{minipage}[t]{0.47\columnwidth}\raggedright
\hypertarget{you-saved-the-company-time-and-money}{%
\paragraph{You saved the company time and
money}\label{you-saved-the-company-time-and-money}}
\begin{itemize}
\item
Conserved
\item
Consolidated
\item
Decreased
\item
Deducted
\item
Diagnosed
\item
Lessened
\item
Reconciled
\item
Reduced
\item
Yielded
\end{itemize}\strut
\end{minipage} & \begin{minipage}[t]{0.47\columnwidth}\raggedright
\hypertarget{you-were-in-charge-of-a-project}{%
\paragraph{You were in charge of a
project}\label{you-were-in-charge-of-a-project}}
\begin{itemize}
\item
Chaired
\item
Controlled
\item
Coordinated
\item
Executed
\item
Headed
\item
Operated
\item
Orchestrated
\item