-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpurpose-reset-talk.html
More file actions
1170 lines (914 loc) · 49.4 KB
/
purpose-reset-talk.html
File metadata and controls
1170 lines (914 loc) · 49.4 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Purpose Reset: A Talk on Resetting Your Life</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'EB Garamond', Georgia, serif;
font-size: 12pt;
line-height: 1.8;
color: #1a1a1a;
background: #fff;
}
.page {
width: 8.5in;
min-height: 11in;
padding: 1in;
margin: 0 auto;
background: white;
page-break-after: always;
}
@media print {
body { background: white; }
.page {
width: 100%;
min-height: auto;
padding: 0.75in;
margin: 0;
page-break-after: always;
}
}
@media screen {
.page {
box-shadow: 0 0 20px rgba(0,0,0,0.1);
margin: 20px auto;
}
}
h1 {
font-size: 28pt;
font-weight: 500;
margin-bottom: 0.5em;
text-align: center;
}
h2 {
font-size: 18pt;
font-weight: 500;
margin-top: 1.5em;
margin-bottom: 0.75em;
border-bottom: 1px solid #ccc;
padding-bottom: 0.25em;
}
h3 {
font-size: 14pt;
font-weight: 600;
margin-top: 1.25em;
margin-bottom: 0.5em;
}
p {
margin-bottom: 1em;
text-align: justify;
}
.subtitle {
text-align: center;
font-style: italic;
font-size: 14pt;
color: #555;
margin-bottom: 2em;
}
.author {
text-align: center;
margin-top: 3em;
font-size: 11pt;
}
.toc {
margin: 2em 0;
}
.toc-item {
display: flex;
justify-content: space-between;
padding: 0.3em 0;
border-bottom: 1px dotted #ccc;
}
.quote {
margin: 1.5em 2em;
padding: 1em;
border-left: 3px solid #333;
font-style: italic;
background: #f9f9f9;
}
.note {
margin: 1em 0;
padding: 1em;
background: #fff8e8;
border: 1px solid #e8d8b8;
}
ul, ol {
margin-left: 1.5em;
margin-bottom: 1em;
}
li {
margin-bottom: 0.5em;
}
.diagram-box {
border: 2px solid #333;
padding: 1em;
margin: 1.5em 0;
text-align: center;
}
.three-columns {
display: flex;
gap: 1em;
margin: 1.5em 0;
}
.column {
flex: 1;
border: 1px solid #333;
padding: 1em;
}
.column h4 {
text-align: center;
font-weight: 600;
margin-bottom: 0.5em;
padding-bottom: 0.5em;
border-bottom: 1px solid #333;
}
.column.high { border-color: #b8860b; }
.column.high h4 { color: #b8860b; }
.column.mid { border-color: #2980b9; }
.column.mid h4 { color: #2980b9; }
.column.low { border-color: #c0392b; }
.column.low h4 { color: #c0392b; }
.formula {
text-align: center;
font-size: 14pt;
margin: 1.5em 0;
padding: 1em;
background: #f5f5f5;
border: 1px solid #ddd;
}
.section-number {
font-size: 10pt;
color: #888;
text-transform: uppercase;
letter-spacing: 2px;
}
.page-number {
text-align: center;
font-size: 10pt;
color: #888;
margin-top: 2em;
}
hr {
border: none;
border-top: 1px solid #ddd;
margin: 2em 0;
}
.small {
font-size: 10pt;
}
.center {
text-align: center;
}
.indent {
margin-left: 2em;
}
</style>
</head>
<body>
<!-- ==================== PAGE 1: COVER ==================== -->
<div class="page">
<div style="height: 2in;"></div>
<h1>The Purpose Reset</h1>
<p class="subtitle">A Talk on Resetting Your Life: Personal, Academic, and Career</p>
<div style="height: 1in;"></div>
<p class="center" style="font-size: 14pt;">
<em>Raw. Real. Practical.</em>
</p>
<div style="height: 2in;"></div>
<p class="center">
In my six years of professional and academic life, I have noticed something. There are three types of people in this world. And what separates them is not luck, not background, not even opportunity, though those matter. What separates them is two things: what they know, and what they are willing to do with what they know.
</p>
<p class="center" style="margin-top: 2em;">
This talk is about understanding where you are, where you want to be, and how to get there.
</p>
<div class="author">
<strong>Precious Kolawole</strong><br>
2026
</div>
</div>
<!-- ==================== PAGE 2: TABLE OF CONTENTS ==================== -->
<div class="page">
<h2>Contents</h2>
<div class="toc">
<div class="toc-item"><span>Part One: The Framework</span><span>3</span></div>
<div class="toc-item"><span> The Three Types of People</span><span>3</span></div>
<div class="toc-item"><span> The Formula: MAP × ENGINE</span><span>6</span></div>
<div class="toc-item"><span> What Makes Knowledge (The MAP)</span><span>7</span></div>
<div class="toc-item"><span> What Makes Mindset (The ENGINE)</span><span>8</span></div>
<div class="toc-item"><span>Part Two: The Transitions</span><span>9</span></div>
<div class="toc-item"><span> From Low to Middle</span><span>9</span></div>
<div class="toc-item"><span> From Middle to High</span><span>10</span></div>
<div class="toc-item"><span>Part Three: Practical Paths</span><span>11</span></div>
<div class="toc-item"><span> If You Are in School</span><span>11</span></div>
<div class="toc-item"><span> If You Have a 9-5</span><span>13</span></div>
<div class="toc-item"><span> If You Want to Build a Brand</span><span>15</span></div>
<div class="toc-item"><span> If You Have Multiple Interests</span><span>16</span></div>
<div class="toc-item"><span> If You Want to Start Something</span><span>17</span></div>
<div class="toc-item"><span>Part Four: For Everyone</span><span>18</span></div>
<div class="toc-item"><span> On Communication</span><span>18</span></div>
<div class="toc-item"><span> The Five Pillars</span><span>19</span></div>
<div class="toc-item"><span> Final Words</span><span>21</span></div>
</div>
<hr>
<p style="margin-top: 2em;">
Before we begin, I want you to know something. This is not a motivational talk. I am not here to make you feel good about yourself. I am here to tell you the truth. The way I see it, the way I have lived it, the way I have observed it. Some of it might hurt. Some of it might not apply to you. But all of it is real.
</p>
<p>
If you want to reset your purpose, maybe go from low to middle, or middle to high, you need to know what the world requires of you. Not what you think it requires. What it actually requires.
</p>
</div>
<!-- ==================== PAGE 3: THE THREE TYPES ==================== -->
<div class="page">
<p class="section-number">Part One: The Framework</p>
<h2>The Three Types of People</h2>
<p>
I have been thinking about this for a long time. Why do some people seem to have everything figured out while others are just... surviving? Why do some people build empires while others cannot even build savings? Why do some people wake up excited while others wake up dreading the day?
</p>
<p>
And I realized something. It is not about intelligence. I know plenty of intelligent people who are stuck. It is not about hard work alone. I know people who work sixteen hours a day and still cannot get ahead. It is not even about opportunity, though yes, some people have more doors open to them.
</p>
<p>
What I realized is this: there are three types of people in life. And what separates them is not one thing, but two things working together.
</p>
<div class="three-columns">
<div class="column high">
<h4>HIGH<br><small>(The Builders)</small></h4>
<p class="small">High Knowledge × High Mindset</p>
</div>
<div class="column mid">
<h4>MIDDLE<br><small>(The Stable)</small></h4>
<p class="small">High Knowledge × Low Mindset<br><em>or</em><br>Low Knowledge × High Mindset</p>
</div>
<div class="column low">
<h4>LOW<br><small>(The Surviving)</small></h4>
<p class="small">Low Knowledge × Low Mindset</p>
</div>
</div>
<p>
Let me explain each one. Not in academic language, but in real talk.
</p>
<h3>The Builders (High)</h3>
<p>
These are the creators. The unconventionals. The ones who are not afraid of failing in company, in ideas, in research, in movements, in arts, in products. They put in insane hours of focused effort. They are constantly learning. They have experienced a lot of failures, more than most people will ever attempt.
</p>
<p>
They might be specializing in one thing or they might be generalists, but either way, they have a <em>deep</em> understanding of how things work. Economics. Institutions. Networks. They understand the systems of the world, not just the surface of them.
</p>
<p>
They have high agency. They take on uncomfortable levels of responsibility. They do not wait for someone to give them permission. And they are active in finances and investing. They understand that money is a tool, not just a reward.
</p>
<p>
These are the Aristotles. The Elons. The people who change things.
</p>
<div class="page-number">3</div>
</div>
<!-- ==================== PAGE 4: THE STABLE ==================== -->
<div class="page">
<h3>The Stable (Middle)</h3>
<p>
This is where most people are. And there is nothing wrong with being here, if this is what you choose. The problem is when you are here and you think you are somewhere else, or when you want to be somewhere else but do not know how to move.
</p>
<p>
The Stable follows the script. High school. University. A job. Maybe some promotions. They do not ask too many questions. They might be insanely knowledgeable. I know people who can tell you everything about history, about science, about philosophy. But they have no strength to press on. No drive to turn that knowledge into something.
</p>
<p>
Or they might be the opposite. Super hardworking. Moved from low to middle through pure grit and hustle. But they have zero information. Zero direction. They are running fast, but they do not know where they are running to.
</p>
<p>
I call them the autopilots. Some savings. Family. Goes on a walk with the dog every evening. Many friends or few friends. Just... okay.
</p>
<div class="note">
<strong>The Two Types of Middle:</strong><br>
<em>Type A, The Hardworking:</em> Super hardworking, moved from low to mid through effort, but zero direction or information.<br>
<em>Type B, The Knowledgeable:</em> Insanely knowledgeable, but no strength, drive, or courage to press on.
</div>
<div class="page-number">4</div>
</div>
<!-- ==================== PAGE 5: MIDDLE IS OKAY + SURVIVING ==================== -->
<div class="page">
<h3>But Here Is Something Important</h3>
<p>
Being in the Middle is okay. Let me say that again: being in the Middle is okay.
</p>
<p>
Life is already trouble. There is enough stress, enough pressure, enough chaos in just existing. If you have found stability, if you have peace of mind, if you can sleep at night without worrying about tomorrow, that is not failure. That is something many people will never have.
</p>
<p>
Not everyone needs to be a Builder. Not everyone needs to change the world. Some people just want to live a good life. Raise their kids. Have dinner with their family. Walk the dog. Watch the sunset. There is nothing wrong with that. In fact, there is something beautiful about it.
</p>
<p>
The point of this talk is not to make you feel bad for being in the Middle. The point is to make sure you are there by choice, not by accident. To make sure you know the options. To make sure that if you want more, you know the path. But if you have looked at the path and decided that peace is more valuable than achievement, that is a valid decision. That is wisdom.
</p>
<p>
Peace of mind is not something to be ashamed of. It is something to protect.
</p>
<h3>The Surviving (Low)</h3>
<p>
This is hard to write about because I have seen it. I have lived near it. Maybe you have too.
</p>
<p>
Mostly poor. Life is unstable. Captured by failing systems, or systems that have already failed them. Bills. Family issues. Random jobs. No proper education. No exposure to the things that could help them.
</p>
<p>
Underdeveloped mind. Does not read. Does not have the time or energy to read. Just trying to survive each day. Trapped in cycles that feel impossible to break.
</p>
<p>
And here is the painful truth: many people stay here not because they are bad people, but because no one showed them another way. No one gave them the map. No one lit the engine.
</p>
<div class="page-number">5</div>
</div>
<!-- ==================== PAGE 6: THE FORMULA ==================== -->
<div class="page">
<h2>The Formula: MAP × ENGINE</h2>
<p>
So what separates these three types? Two things. I call them the MAP and the ENGINE.
</p>
<div class="formula">
<strong>KNOWLEDGE</strong> (The MAP) × <strong>MINDSET</strong> (The ENGINE) = <strong>Your Life Outcome</strong>
</div>
<p>
Knowledge is the MAP. It tells you where to go. It shows you the paths that exist, the opportunities available, the systems you can use or avoid. Without knowledge, you are walking blind. You might be walking fast, you might be running, but you do not know where you are going.
</p>
<p>
Mindset is the ENGINE. It is what moves you. Grit. Consistency. Perseverance. Focus. Discipline. Hard work. Without the engine, you know where to go but you never get there. You read the books but never apply them. You make the plans but never execute them.
</p>
<p>
You need both.
</p>
<p>
If you have the map but no engine, you are Type B Middle, knowledgeable but stuck. If you have the engine but no map, you are Type A Middle, hardworking but directionless. If you have neither, you are in Surviving. If you have both, you are a Builder.
</p>
<div class="quote">
Academic knowledge cannot make wealth for you. A job is a short-term solution to a long-term problem.
</div>
<p>
This is why some people with multiple degrees are still struggling. They have knowledge, but it is the wrong kind, or they do not know how to apply it. They learned facts but not systems. They learned theories but not execution.
</p>
<p>
And this is why some people who dropped out of school are doing better than PhDs. They might not have academic knowledge, but they have the knowledge that matters: self-knowledge, world knowledge, system knowledge. And they have the mindset to use it.
</p>
<p>
I am not saying do not go to school. I am saying understand what school is for and what it is not for. School gives you some knowledge and some credentials. It does not give you everything. The rest, you have to find yourself.
</p>
<div class="page-number">6</div>
</div>
<!-- ==================== PAGE 7: WHAT MAKES KNOWLEDGE ==================== -->
<div class="page">
<h2>What Makes Knowledge (The MAP)</h2>
<p>
When I say knowledge, I do not just mean book knowledge. I mean the information that actually helps you navigate life. There are four types:
</p>
<h3>1. Your Truth</h3>
<p>
Purpose. Character. Work. Relationships. This is knowing yourself at the deepest level. What do you actually want? Not what your parents want. Not what society says you should want. What do <em>you</em> want? What kind of person do you want to be? What kind of work makes you come alive? What kind of relationships do you need?
</p>
<h3>2. Self Knowledge</h3>
<p>
Gifts. Weaknesses. Passions. Limits. Seasons. This is different from your truth. This is knowing what you are good at and what you are not. Knowing your passions, but also knowing when those passions change. Knowing your limits, and knowing when to push past them and when to respect them. Knowing that you have seasons: times of growth, times of rest, times of change.
</p>
<h3>3. World & Systems</h3>
<p>
Career. School. Money. Opportunities. Technology. This is understanding how the world works. Not how it should work. How it actually works. How do you get a job? How does money really work? What opportunities exist that you do not know about? What systems can you use? What systems are using you?
</p>
<h3>4. Skills</h3>
<p>
How to study. How to write a CV. How to design. How to lead. How to communicate. How to manage time. These are the practical abilities that let you execute on everything else. You can have all the knowledge in the world, but if you cannot communicate it, it is useless. If you cannot manage your time, you will never build anything.
</p>
<hr>
<p>
Most people are missing at least one of these. They know themselves but do not understand the world. They understand the world but do not know themselves. They have skills but no direction. They have direction but no skills.
</p>
<p>
The Builders have all four. Not perfectly. Nobody has perfect knowledge. But enough to move forward effectively.
</p>
<div class="page-number">7</div>
</div>
<!-- ==================== PAGE 8: WHAT MAKES MINDSET ==================== -->
<div class="page">
<h2>What Makes Mindset (The ENGINE)</h2>
<p>
Mindset is not just "thinking positive." That is too simple. Mindset is what keeps you going when things get hard. It is what makes you show up on the days you do not feel like it. It is the engine that turns knowledge into action.
</p>
<h3>Consistency</h3>
<p>
Showing up every single day. Not just when you feel inspired. Not just when it is easy. Every day. This is the foundation of everything else.
</p>
<h3>Grit & Tenacity</h3>
<p>
Refusing to give up when it gets hard. And it will get hard. If you are doing anything worthwhile, there will be moments when you want to quit. Grit is what keeps you in the game.
</p>
<h3>Perseverance</h3>
<p>
Pushing through failures and setbacks. Not just surviving them, but learning from them and coming back stronger. Every successful person has failed more times than unsuccessful people have tried.
</p>
<h3>Focus & Discipline</h3>
<p>
Staying on the path. Ignoring distractions. In a world designed to steal your attention, focus is a superpower. Discipline is doing what needs to be done even when you do not feel like doing it.
</p>
<h3>Hard Work</h3>
<p>
Putting in the hours. Especially when you do not feel like it. There is no shortcut to this. If you want to be insanely great like Aristotle or Elon, you cannot be doing the bare minimum. There is an effort required. Insane effort at it.
</p>
<div class="quote">
The single greatest skill you can develop is the ability to stay in a great mood in the absence of things to be in a great mood about.
</div>
<p>
I think about this all the time. Life is not always good. Things do not always go your way. But if you can maintain your energy, your drive, your positivity even when circumstances are against you, that is when you become unstoppable.
</p>
<div class="page-number">8</div>
</div>
<!-- ==================== PAGE 9: FROM LOW TO MIDDLE ==================== -->
<div class="page">
<p class="section-number">Part Two: The Transitions</p>
<h2>From Low to Middle</h2>
<p>
If you are in the Surviving category, the first goal is to get to Middle. Not to skip to High, that is not realistic. Just get to stable ground first.
</p>
<h3>The Truth About Family</h3>
<p>
Let me say something that might be uncomfortable. If you were born into a poor background, if everyone around you is mediocre, you naturally grow up to be mediocre. That is not an insult. That is just how it works. We become what we see. We absorb the beliefs of the people who raised us. We inherit their ceilings.
</p>
<p>
Your parents did not dream of you becoming extraordinary. They dreamed of you surviving. Maybe getting a stable job. Maybe not struggling the way they struggled. Their dreams for you were shaped by their own limitations. And you absorbed those dreams without realizing it.
</p>
<p>
The conversations at your dinner table were not about investments, or building companies, or changing the world. They were about bills. About making it to the next month. About who in the neighborhood got a job, or lost one. That becomes your normal. That becomes what you think life is.
</p>
<h3>Sometimes You Have to Leave</h3>
<p>
Here is something nobody wants to say: leaving Low to Middle might mean changing location. Physically leaving. Not because your family is bad. Not because your neighborhood is worthless. But because the environment keeps you stuck.
</p>
<p>
When everyone around you is in survival mode, survival becomes the only thing you can see. When nobody around you has built anything, building seems impossible. When mediocrity is normal, excellence feels like arrogance.
</p>
<p>
Sometimes you need to put yourself in a new environment. A new city. A new school. A new community. Somewhere where the baseline is higher. Where what seemed impossible is just... normal. Where people expect more from themselves and from you.
</p>
<p>
This is hard. Leaving feels like betrayal sometimes. Your family might not understand. Your old friends might resent you. But staying in an environment that keeps you small is not loyalty. It is slow death.
</p>
<h3>The Practical Steps</h3>
<p>
This transition requires building the basics:
</p>
<ul>
<li><strong>Get basic systems in place.</strong> A routine. A stable income, even if small. A place to live. These are not dreams, these are foundations. You cannot build a house on sand.</li>
<li><strong>Start learning.</strong> Read. If you cannot read, listen. If you cannot listen, watch. There is more free information available now than at any point in human history. Khan Academy. YouTube. Libraries. Use them.</li>
<li><strong>Find one person who is where you want to be.</strong> Not a celebrity. Not someone unreachable. Someone you can actually talk to. Learn from them. Ask them questions. Model their behavior. This person shows you what is possible.</li>
<li><strong>Break one cycle.</strong> Just one. Maybe it is spending. Maybe it is a toxic relationship. Maybe it is a habit. Maybe it is a belief you inherited. You do not have to fix everything at once. Break one thing that is holding you back.</li>
<li><strong>Build one skill that can make you money.</strong> Not a degree. A skill. Something practical. Something someone will pay for. This is your foundation for everything else.</li>
<li><strong>Consider your environment.</strong> Look around you honestly. Is this environment helping you grow or keeping you stuck? Sometimes the bravest thing is to leave.</li>
</ul>
<p>
The goal at this stage is not to become extraordinary. The goal is to become stable. To get your head above water. To create the space where growth becomes possible.
</p>
<p>
Many people in this category are not here because they are lazy. They are here because the systems failed them. Because they were born into circumstances they did not choose. Because everyone around them was also stuck, and they never saw another way. Or life hit them with things they could not control.
</p>
<p>
If that is you, I want you to know: it is not your fault that you are here. But it is your responsibility to get out. And sometimes getting out means actually, physically, getting out.
</p>
<div class="page-number">9</div>
</div>
<!-- ==================== PAGE 10: FROM MIDDLE TO HIGH ==================== -->
<div class="page">
<h2>From Middle to High</h2>
<p>
Many are in this middle. The question is: how to be in the higher end of the middle, and eventually, how to become a Builder?
</p>
<h3>Why You Are Here</h3>
<p>
Let me ask you something. Why are you in the Middle? For many people, the answer is simple: because their parents were.
</p>
<p>
Your parents went to school. Got jobs. Raised you. Paid the bills. Took you on vacation sometimes. Saved a little. Retired. That was success to them. And they taught you, without even trying, that this is what success looks like. Get educated. Get employed. Get comfortable.
</p>
<p>
They did not teach you to build companies because they never built one. They did not teach you to take risks because they never took any. They did not teach you to think like a Builder because they were not Builders. They were Stable. And they raised you to be Stable too.
</p>
<p>
This is not blame. Your parents gave you what they had. They raised you to their level. That is what parents do. But now you have to decide: is their ceiling going to be your ceiling? Or will you break through?
</p>
<h3>The Middle-Class Trap (Or Is It?)</h3>
<p>
The Stable is comfortable. That is the problem, some say. In Surviving, the discomfort pushes you. You have to move or you die. But in Stable, you can stay forever. The bills get paid. The life is okay. It is not bad enough to force change.
</p>
<p>
But let me be honest with you. There is another way to see this. The Middle is not a trap if you are there by choice. If you have looked at what it takes to become a Builder, the sacrifices, the failures, the relentless effort, and decided that peace is more valuable to you, that is not weakness. That is self-knowledge.
</p>
<p>
Life is already hard. If you have found a place where you can breathe, where you can rest, where you can be present with the people you love, maybe that is the achievement. Not everyone needs to build empires. Some people just need to build a life worth living.
</p>
<p>
But if you are in the Middle and you feel restless, if okay is no longer okay for you, if you look at your life and feel like there is something more, then yes, you will need to create your own discomfort. You will need to want something badly enough to sacrifice for it. You will need to look at the life your parents had and say: I love you, but I want more.
</p>
<p>
That choice is yours. Both paths are valid. Just make sure it is a choice, not a default.
</p>
<h3>The Path Forward</h3>
<p>
The transition from Middle to High is different depending on where you are in life. But there are some universal truths:
</p>
<p>
<strong>If you are Type A (hardworking but directionless):</strong> You need knowledge. You need to stop and think. You are running fast, now figure out where to run. Read books. Find mentors. Understand the systems. Learn strategy, not just tactics.
</p>
<p>
<strong>If you are Type B (knowledgeable but stuck):</strong> You need to start doing. Stop reading another book. Stop planning another plan. Execute. Ship something. Fail at something. The only way to build your engine is to use it.
</p>
<p>
Either way, these things help:
</p>
<ul>
<li><strong>Break from generational patterns.</strong> Recognize what beliefs you inherited. What ceilings you absorbed. What "normal" means to your family. Then consciously choose to exceed it.</li>
<li><strong>Surround yourself with Builders.</strong> If your family is Middle, you need to find Builders elsewhere. Mentors. Communities. Online. Wherever. You need to see what is possible.</li>
<li><strong>Take uncomfortable responsibility.</strong> Builders do not wait to be given authority. They take on more than they are comfortable with. They volunteer for the hard projects. They say yes to things that scare them.</li>
<li><strong>Go deeper, not just wider.</strong> The Middle spreads themselves thin. Builders go deep. Master something. Understand something so well that you see what others cannot see.</li>
<li><strong>Build things.</strong> Not just ideas. Things. Products. Projects. Movements. Companies. Art. It does not have to be big. It has to be real.</li>
<li><strong>Invest.</strong> Not just money, though that too. Invest in relationships. Invest in skills. Invest in your future self. Think long-term, not just next month.</li>
<li><strong>Accept failure as part of the process.</strong> Builders fail more than Middle people ever try. They are not afraid of failure because they know it is how you learn. Your parents avoided failure. That is why they stayed Middle.</li>
</ul>
<p>
The difference between Middle and High is not intelligence or luck. It is the willingness to be uncomfortable, to take risks, to fail publicly, and to keep going anyway. It is choosing to break the pattern that was passed down to you.
</p>
<div class="page-number">10</div>
</div>
<!-- ==================== PAGE 11: IF YOU ARE IN SCHOOL ==================== -->
<div class="page">
<p class="section-number">Part Three: Practical Paths</p>
<h2>If You Are in School</h2>
<p>
You are in school. How do you get the best out of your degree? Here is what I have learned:
</p>
<h3>On Focus</h3>
<p>
Get your focus back. Some of you cannot even study for one hour straight. Practice focus. When you notice you are distracted, snap out of it. Over and over again, until it becomes second nature. This is a skill. It can be trained.
</p>
<h3>On Environment</h3>
<p>
Your uni days might be one of the best seasons of your life. I will not say have many friends, just do not walk alone. That is a bad thing to do for someone in a school environment. You need people. You need community. Even if it is small.
</p>
<p>
The people you walk with determines your outcome. If you are the best among your friends, that is the best you can ever be. Surround yourself with people who challenge you. Who are going somewhere. Who have ambition.
</p>
<h3>On Relationships</h3>
<p>
Make friends with your professors. They want to talk to you more than you can imagine. When you get to know them, you might even get bonus marks for knowing them. More importantly, they have knowledge and connections you do not.
</p>
<p>
Try to have a senior friend from your department. They tell you whose professor's courses to take and the ones to avoid. They know things that are not written anywhere.
</p>
<p>
Have two to five people you can bet on. Not casual friends. People you can trust. People who will be there when things get hard. People you can build with.
</p>
<h3>On Academics</h3>
<p>
Do assignments early. You need those TAs. TAs are more open to share when deadlines are not too close. That is when every other student is on their necks.
</p>
<p>
Learn outside of your classroom. Khan Academy. YouTube. The classroom is not enough. It was never meant to be enough.
</p>
<p>
Take practical classes. Theory is good. Practical is better.
</p>
<div class="page-number">11</div>
</div>
<!-- ==================== PAGE 12: IF YOU ARE IN SCHOOL (CONTINUED) ==================== -->
<div class="page">
<h3>On Community</h3>
<p>
Join communities. Not always be in black communities or just your own kind. Join the intellectual ones, departmental ones, and participate. Expand your world. Meet people different from you. This is how you learn things you would never learn otherwise.
</p>
<h3>On Experience</h3>
<p>
In Canada, maybe try not to graduate without coop. Get work experience. The degree alone is not enough anymore. Employers want to see that you can actually do the work, not just study it.
</p>
<p>
Learn to cold email. This is a skill that will serve you your entire life. The ability to reach out to someone you do not know and ask for something, advice, an opportunity, a connection, is incredibly powerful.
</p>
<p>
Start something and volunteer. You need to learn execution. That is a good time to fail too. Failure in school has lower stakes than failure in the real world. Use that.
</p>
<h3>On Self-Discovery</h3>
<p>
Feel like you are not connected to your program? Is it too late to switch? If yes, learn outside of your degree. Start now. Do not wait until you graduate to realize you need different skills.
</p>
<p>
Take breaks. That is the most free time of your life. Figure out what you are good at and bad at. Experiment. Try things. The things you discover about yourself now will guide you for decades.
</p>
<p>
Find a professor who you think can help your life. Not just your grades. Your life. Someone who sees something in you. Someone who can open doors.
</p>
<h3>On Gratitude</h3>
<p>
Be grateful. You are in school. Many people would give anything to be where you are. Do not waste it complaining. Use it.
</p>
<div class="page-number">12</div>
</div>
<!-- ==================== PAGE 13: IF YOU HAVE A 9-5 ==================== -->
<div class="page">
<h2>If You Have a 9-5</h2>
<p>
You have a job. How do you manage yourself in the corporate world? How do you not just survive but actually grow?
</p>
<h3>On Visibility</h3>
<p>
If you are remote, you might need to work loudly. Make your work visible. Document what you do. Share your progress. In an office, people see you working. Remote, they only see your output, so make sure they see it.
</p>
<h3>On Presence</h3>
<p>
Enjoy the present. Do not be over fixated on the future. Yes, plan. Yes, have goals. But do not spend your entire job thinking about the next job. There is value in where you are now. Extract it.
</p>
<h3>On Relationships</h3>
<p>
Try to be a team player. Be empathetic to people. Help when you know the answer. Your reputation is built in small moments. Every interaction is either depositing or withdrawing from your relationship bank.
</p>
<p>
If you struggle with connecting to coworkers, you might need extra push to speak more. Otherwise be anchored in your truth. Not everyone needs to be your friend. But you do need to be able to work with people.
</p>
<h3>On Mastery</h3>
<p>
Develop mastery. This leads to confidence. Do not speak just to speak. Be someone of substance. Know your stuff deeply. When you speak, let it matter.
</p>
<h3>On Politics</h3>
<p>
Do not play games. Do not be fake. But also, know who has the power to promote you and align your values with theirs. This is not manipulation. This is understanding the system you are in.
</p>
<div class="page-number">13</div>
</div>
<!-- ==================== PAGE 14: IF YOU HAVE A 9-5 (CONTINUED) ==================== -->
<div class="page">
<h3>On Promotion</h3>
<p>
Keep a brag document for those reviews. Write down your accomplishments. Your wins. The problems you solved. When review time comes, you will not remember everything. The document will.
</p>
<h3>On Security</h3>
<p>
You might get laid off at some point. Always plan for the unexpected. Do not be afraid to build something on the side. A skill. A project. A network. A side business. Something that is yours.
</p>
<div class="quote">
A job is a short-term solution to a long-term problem.
</div>
<p>
I want you to sit with that. Your job is exchanging your time for money. That is okay, we all need money. But do not confuse it with security. Do not confuse it with your purpose. Do not confuse it with building wealth.
</p>
<p>
Use your job. Learn from it. Take the skills. Take the connections. Take the money. But do not let it be the only thing you have.
</p>
<p>
The people who get stuck in Middle often get stuck because they optimized for their job instead of optimizing for their life. They climbed a ladder only to realize it was leaning against the wrong wall.
</p>
<p>
Be intentional. Know why you are at this job. Know what you are getting from it. Know when it is time to move on.
</p>
<div class="page-number">14</div>
</div>
<!-- ==================== PAGE 15: BUILDING A BRAND ==================== -->
<div class="page">
<h2>If You Want to Build a Brand</h2>
<p>
This is a journey. Not birthed out of rash desire to make money or be influential. Think about the journey like this:
</p>
<h3>The Flow</h3>
<p>
<strong>Goal</strong> (what do you want out of life?) → <strong>Brand</strong> (what are you helping people achieve?)
</p>
<p>
<strong>Knowledge</strong> (what are you learning along the way?) → <strong>Content</strong> (what is useful for them to know?)
</p>
<p>
<strong>Process</strong> (how did you reach a desirable goal?) → <strong>Product</strong> (how can you help them reach it faster?)
</p>
<p>
Notice the pattern. It starts with you: your goal, your knowledge, your process. Then it flows outward to others: your brand, your content, your product. You cannot give what you do not have. Build yourself first.
</p>
<h3>The Practical</h3>
<p>
You need a website. Do not pick complicated domain names. Mine is complicated, do not do what I did. Find services like Wix, Squarespace. Get someone to do it for you if you need to. If you know a bit about coding, use GitHub.io. Free hosting.
</p>
<p>
LinkedIn is just important. Period. I do not care if you think it is cringy. It is where professional opportunities happen. Use it.
</p>
<p>
Resume building: always keep it updated. You never know when an opportunity will come. Do not scramble to update your resume when you need it. Keep it ready.
</p>
<p>
Building a brand is not about becoming famous. It is about becoming known for something. It is about having a reputation that opens doors before you even knock. It is about creating value that speaks for you when you are not in the room.
</p>
<div class="page-number">15</div>
</div>
<!-- ==================== PAGE 16: MULTIPLE INTERESTS ==================== -->
<div class="page">
<h2>If You Have Multiple Interests</h2>
<p>
You have multiple interests, but you do not even know what to do. I hear this a lot. Here is what I think:
</p>
<h3>The Traps</h3>
<p>
Do not be stuck in tutorial hell. You know what I mean. Watching course after course, reading book after book, but never actually doing anything. Learning feels productive, but if it never becomes action, it is just entertainment.
</p>
<p>
Check yourself well. Sometimes you do not have multiple interests, you have multiple distractions. Sometimes the honest thing is to just dust your CV and go find one job. Not everyone is meant to be a polymath. That is okay.
</p>
<p>
Indulging in short-lived pleasures is usually not interest. It might be laziness. Interest sustains. Interest pulls you back even when it is hard. If you only like something when it is easy, that is not interest.
</p>
<h3>The Opportunity</h3>
<p>
You are lucky to have multiple interests. Those who spend their life performing a few simple operations become stupid and ignorant. Your breadth is an asset, not a liability.
</p>
<p>
Multiple interests sometimes is advantageous and can get you to THE BUILDER lane. Because you get to see what others are missing. You connect dots that specialists cannot connect. This can become a product. A business. A unique contribution.
</p>
<h3>The Solution</h3>
<p>
You need a vessel. Something to channel all your interests into meaningful work. A project. A business. A creation. Something that can hold your many threads and weave them into something whole.
</p>
<p>
Self education: direct your own learning. Since it is not the traditional education, you have to be intentional. Let your self interest motivate self education, and self education enable self sufficiency.
</p>
<p>
Start from somewhere. Do not over plan. Take a step even if you do not feel comfortable. Shut your brain off and do what needs to be done. To build in this century, you might need to create.
</p>
<div class="page-number">16</div>
</div>
<!-- ==================== PAGE 17: STARTING SOMETHING ==================== -->
<div class="page">
<h2>If You Want to Start Something</h2>
<p>
Starting a company. A startup. A project. A movement. Here is what I know:
</p>
<h3>First</h3>
<p>
Make sure to get an experience. Work somewhere first. Understand how businesses operate. How money flows. How decisions get made. How teams work. You will make fewer mistakes when you start your own thing.
</p>
<p>
I know there are stories of people who dropped out and built billion-dollar companies. Those are the exceptions. For most people, some experience helps. It gives you pattern recognition. It gives you a network. It gives you skills.
</p>
<h3>The Approach</h3>
<p>
Start with a problem. Not a solution. Not a technology. A problem. Something that bothers you. Something that bothers others.
</p>
<p>
Then amplify it. Show how this problem leads to a negative outcome. Make people feel it. Make them understand why it matters.
</p>
<p>
Then, and only then, offer the solution. This is true for pitching. For selling. For communicating. Problem → Amplify → Solution.
</p>
<h3>The Reality</h3>
<p>
Your multiple interests can become your edge. You see gaps others miss. You connect things others cannot connect. Use that.
</p>
<p>
But also be honest with yourself. Not every idea is good. Not every problem needs solving. Not every solution will work. Test things. Get feedback. Be willing to pivot or quit.
</p>
<p>
The Builders are not successful because every idea worked. They are successful because they kept going through the failures until something did.
</p>
<div class="page-number">17</div>
</div>
<!-- ==================== PAGE 18: ON COMMUNICATION ==================== -->
<div class="page">
<p class="section-number">Part Four: For Everyone</p>
<h2>On Communication</h2>
<p>
This applies to everyone. Regardless of where you are on the map.
</p>
<div class="quote">