-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPosts.htm
More file actions
6318 lines (6109 loc) · 149 KB
/
Copy pathPosts.htm
File metadata and controls
6318 lines (6109 loc) · 149 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>
<head>
<title> Darius 'The Theorist' G. </title>
<link rel="stylesheet" href="stylee.css">
<link rel="icon" type="image/jpg" href="files/SketchDGPFP.png"/>
</head>
<body>
<h1 class="name"> Darius 'The Theorist' G. </h1>
<a href="https://dariusg.substack.com/subscribe"><img src="files/Wordmark.png" id="mark"></a>
<div class="TopButtons">
<a href="index.htm">
<button>
<img src="files/BackArrow.png" alt="Go back" width="55px" height="55px">
</button>
</a>
<a href="Quotes.htm">
<button>
Quotes
</button>
</a>
<a href="Posts.htm">
<button>
Posts
</button>
</a>
<a href="Articles.htm">
<button>
Articles
</button>
</a>
</div>
<hr>
<span>
<div class="Posts">
<p> The most important lesson that I have ever been taught is the following:
<br>
<br>
"A man that lacks purpose distracts himself with pleasure."
<br>
<br>
Don't give in to the temptations that modern society offers you.
<br>
<br>
Find your purpose. Stay focused. </p>
<img src="Posts/Post1.jpg" alt="Post 1" width="400px" height="400px">
</div>
<div class="Posts">
<p> Power is what drives men to do great things.
<br>
<br>
Yet power is becoming a scarcity.
<br>
<br>
People are weak.
<br>
<br>
They think in groups.
<br>
<br>
I recently finished reading The 48 Laws Of Power by Robert Greene.
<br>
<br>
One thing I've learnt is:
<br>
<br>
Envy and resentment will eat you alive if you let them spread.
<br>
<br>
Envy and resentment come from weak-minded friends.
<br>
<br>
Why are you surrounding yourself with losers?
<br>
<br>
Choose acquaintances with utmost cautiousness. </p>
<img src="Posts/Post2.jpg" alt="Post 2" width="400px" height="400px">
</div>
<div class="Posts">
<p> You are mediocre because that's all you deserve.
<br>
<br>
It means that you're content.
<br>
<br>
Your situation won't improve by ignoring it.
<br>
<br>
Only hard work elevates your existence.
<br>
<br>
Calculations are required.
<br>
<br>
Rockets don't just end up on the moon.
<br>
<br>
Think Bigger. Do better. </p>
<img src="Posts/Post3.jpg" alt="Post 3" width="400px" height="400px">
</div>
<div class="Posts">
<p> Knowledge runs the world.
<br>
<br>
Those at the top are the definition of wit.
<br>
<br>
Therefore, they mask real intelligence with the nonsense taught in schools.
<br>
<br>
I say that as a student with exceptional grades and a responsible attitude towards school.
<br>
<br>
It is all a lie. Books hold the power. </p>
<img src="Posts/Post4.jpg" alt="Post 4" width="400px" height="400px">
</div>
</span>
<span>
<div class="Posts">
<p> Effortlessness should radiate around you.
<br>
<br>
The one that tries too hard is despised.
<br>
<br>
You know he could easily surpass you because of his determination.
<br>
<br>
That makes him a threat.
<br>
<br>
Threats need to be neutralized.
<br>
<br>
Don't become a threat to someone.
<br>
<br>
Play the game from every team. </p>
<img src="Posts/Post5.jpg" alt="Post 5" width="400px" height="400px">
</div>
<div class="Posts">
<p> Your mind is your most powerful asset.
<br>
<br>
Don't waste it by believing garbage that doesn't help you.
<br>
<br>
Control your mind.
<br>
<br>
Use it to your advantage,
<br>
<br>
for it is the only thing you can control.
<br>
<br>
For those reasons: depression is irrational. </p>
<img src="Posts/Post6.jpg" alt="Post 6" width="400px" height="400px">
</div>
<div class="Posts">
<p> Recent and future inventions have been and will be made with the soul purpose of promoting weakness.
<br>
<br>
The light bulb was invented in 1879.
<br>
<br>
It was invented to improve our life. It's great.
<br>
<br>
Some might argue that even the smartphone is relatively useful, even with its downsides.
<br>
<br>
With that said, you can see that inventions are going from:
<br>
<br>
"We need this." to "We want this."
<br>
<br>
Which is not good, for multiple reasons.
<br>
<br>
It makes life too simple.
<br>
<br>
You need to suffer.
<br>
<br>
I'm an advocate for efficiency.
<br>
<br>
But this is not the way. It is a lie. </p>
<img src="Posts/Post7.jpg" alt="Post 7" width="400px" height="400px">
</div>
<div class="Posts">
<p> You keep hearing the same clichès for good reasons.
<br>
<br>
They are true.
<br>
<br>
Example: "Failure is necessary."
<br>
<br>
Your biggest idols are bigger failures than you.
<br>
<br>
Because they actually try.
<br>
<br>
Don't just sit there. Pursue your goals.
<br>
<br>
Failure teaches lessons.
<br>
<br>
Success comes from failure. </p>
<img src="Posts/Post8.jpg" alt="Post 8" width="400px" height="400px">
</div>
</span>
<span>
<div class="Posts">
<p> Self improvement can be challenging sometimes.
<br>
<br>
Here are 3 thoughts to remember when you're struggling:
<br>
<br>
1. God is always watching.
<br>
<br>
2. What will your future kids think of you if you don't succeed?
<br>
<br>
3. It's your duty as a man to do the hard work, regardless of how you feel. </p>
<img src="Posts/Post9.jpg" alt="Post 9" width="400px" height="400px">
</div>
<div class="Posts">
<p> Discipline is the most masculine trait.
<br>
<br>
Disciplined men go into the world and work as hard as possible,
<br>
<br>
even when they don't "feel like it".
<br>
<br>
That's what you should strive for.
<br>
<br>
Motivation is for your dreams.
<br>
<br>
Discipline is for your goals.
<br>
<br>
Discipline is what keeps you going. </p>
<img src="Posts/Post10.jpg" alt="Post 10" width="400px" height="400px">
</div>
<div class="Posts">
<p> Congratulations to Hamza for hitting 2M subscribers!
<br>
<br>
He is my biggest idol in the present moment.
<br>
<br>
His advice is so transparent and unapologetically real.
<br>
<br>
We need more free-thinking men.
<br>
<br>
Strive to be like Adonis.
<br>
<br>
Do the hard work, especially when you don't feel like it.
<br>
<br>
In a world where it is very rare to find real idols,
<br>
<br>
Hamza has been a glimmer of hope.
<br>
<br>
Between so many celebrities who sell their souls,
<br>
<br>
Hamza has evolved throughout the years,
<br>
<br>
Never backing down and improving his craft.
<br>
<br>
Thanks to him, I've had my biggest realizations.
<br>
<br>
You must have this connection to your roots.
<br>
<br>
I went from watching his dopamine-filled videos while procrastinating and daydreaming,
<br>
<br>
To watching a two hour long full guide on willpower while working out.
<br>
<br>
I understood my purpose thanks to him,
<br>
<br>
And now I'm on track to succeed. </p>
<img src="Posts/Post11.jpg" alt="Post 11" width="400px" height="400px">
</div>
<div class="Posts">
<p> People talk about how Andrew Tate spreads misogyny.
<br>
<br>
If you are an independent thinker, you can easily see through the lies.
<br>
<br>
I watch the Tate brothers.
<br>
<br>
Am I a misogynist?
<br>
<br>
Absolutely not.
<br>
<br>
I respect women MORE since I've started watching the Tates.
<br>
<br>
Counter that.
<br>
<br>
In situations like this,
<br>
<br>
When men are rising up to inspire others,
<br>
<br>
It's not mainly about the person who is leading,
<br>
<br>
But what they stand for.
<br>
<br>
Every man is just a walking advertisement for his beliefs.
<br>
<br>
You can choose to believe whatever you want from every man you see.
<br>
<br>
Ideally, the thoughts you pick from these idols are useful ones.
<br>
<br>
If someone improves your life through words:
<br>
<br>
1. He is a great speaker and someone worth listening to.
<br>
<br>
2. He is a stepping stone for you to use in order to start that cycle of improvement.
<br>
<br>
Become a free thinker. </p>
<img src="Posts/Post12.jpg" alt="Post 12" width="400px" height="400px">
</div>
</span>
<span>
<div class="Posts">
<p> Has your mind ever been free?
<br>
<br>
I don't think so.
<br>
<br>
Your brain is clouded by unnecessary thoughts, urges and desires.
<br>
<br>
You need to open your mind in order to focus, and be fully present in your life.
<br>
<br>
Meditation is the key to that.
<br>
<br>
Just focus on your breath, relax, and enjoy. </p>
<img src="Posts/Post13.jpg" alt="Post 13" width="400px" height="400px">
</div>
<div class="Posts">
<p> Do you stand for something?
<br>
<br>
Do you have opinions that are your own?
<br>
<br>
Ask yourself those two questions and the answers will reveal themselves.
<br>
<br>
In this Godless and brainless society that we live in,
<br>
<br>
It's crucial to think for ourselves and not let the media indoctrinate us.
<br>
<br>
Ideology is the curse of our society,
<br>
<br>
Because it just makes everyone identical.
<br>
<br>
You don't need a community full of brainless ideologues - Individualism is the way.
<br>
<br>
Be a critical and independent thinker.
<br>
<br>
Either way, the concepts that ideology presents make you miserable. </p>
<img src="Posts/Post14.jpg" alt="Post 14" width="400px" height="400px">
</div>
<div class="Posts">
<p> The most dangerous trait a young man can possess is being articulate.
<br>
<br>
By being well-spoken, you can intimidate your enemies with powerful arguments.
<br>
<br>
Being defeated by words is humiliating.
<br>
<br>
It shows that you're incapable of holding your own ground.
<br>
<br>
Craft your words carefully.
<br>
<br>
And after all, what's your alternative?
<br>
<br>
Do you want to be inarticulate, and be unable to express your thoughts?
<br>
<br>
How is anyone going to take your ideas seriously if you can't communicate them?
<br>
<br>
Being articulate and cautious about your words is how you excite people. </p>
<img src="Posts/Post15.jpg" alt="Post 15" width="400px" height="400px">
</div>
<div class="Posts">
<p> Never beg, and don't accept handouts.
<br>
<br>
They come with the responsibility to give back.
<br>
<br>
You don't want that, you don't want to be in debt to anyone.
<br>
<br>
It sets boundaries on your progress,
<br>
<br>
And it makes you inferior to the other person.
<br>
<br>
As a man, you have to be capable on your own. </p>
<img src="Posts/Post16.jpg" alt="Post 16" width="400px" height="400px">
</div>
</span>
<span>
<div class="Posts">
<p> Your perception of the world is powerful.
<br>
<br>
If you perceive a problem of utmost importance as irrelevant,
<br>
<br>
It will slowly eat away at you until it takes over your life.
<br>
<br>
On the other hand, if you perceive the small things as crucial,
<br>
<br>
You will eat yourself alive attempting peace. </p>
<img src="Posts/Post17.jpg" alt="Post 17" width="400px" height="400px">
</div>
<div class="Posts">
<p> Do you ever lack the creativity to keep working?
<br>
<br>
Just take a step back.
<br>
<br>
Don't force your mind into compliance.
<br>
<br>
It'll begin to hate you,
<br>
<br>
And your mind is your most valuable asset,
<br>
<br>
So, go relax, meditate, journal, and come back more prepared.
<br>
<br>
That's how you fix a creative block. </p>
<img src="Posts/Post18.jpg" alt="Post 18" width="400px" height="400px">
</div>
<div class="Posts">
<p> Formlessness is essential.
<br>
<br>
The definition of formlessness is:
<br>
<br>
Having no regular form/lacking arrangement.
<br>
<br>
Don't tie yourself down to anything or anyone.
<br>
<br>
Don't create limits for your progress.
<br>
<br>
Play from everyone's side, and never commit.
<br>
<br>
It will truly give you freedom. </p>
<img src="Posts/Post19.jpg" alt="Post 19" width="400px" height="400px">
</div>
<div class="Posts">
<p> You must help other men around you.
<br>
<br>
Accomplishing your goals gives you the duty to help other men around you.
<br>
<br>
You're the average of the 5 people that you spend time with,
<br>
<br>
So why wouldn't to want your friends to achieve excellence?
<br>
<br>
Your tribe must keep improving permanently.
<br>
<br>
Although, many people don't know that you cannot force someone to improve.
<br>
<br>
Focus primarily on yourself, and make your results visible,
<br>
<br>
Then they will come to you asking for help and guidance.
<br>
<br>
Your job then is to be a good mentor and a leader.
<br>
<br>
Always help those who ask for it. </p>
<img src="Posts/Post20.jpg" alt="Post 20" width="400px" height="400px">
</div>
</span>
<span>
<div class="Posts">
<p> You have to remain on the path to greatness.
<br>
<br>
The modern world will set traps for you:
<br>
<br>
Drugs, pornography, social media, video games.
<br>
<br>
Those are all distractions.
<br>
<br>
Ignore them, and work relentlessly towards your goals.
<br>
<br>
You're at war with hedonism.
<br>
<br>
You must fight fiercely.
<br>
<br>
Likewise, hedonism is a paradoxical philosophy.
<br>
<br>
By definition, hedonism is the pursuit of happiness,
<br>
<br>
But focusing on present pleasure will not bring you happiness.
<br>
<br>
The more that you strive to be "happy" the less it pays off.
<br>
<br>
Fulfillment from nobler causes is true happiness. </p>
<img src="Posts/Post21.jpg" alt="Post 21" width="400px" height="400px">
</div>
<div class="Posts">
<p> Do you know what the best productivity hack is?
<br>
<br>
Scheduling your day. Planning everything.
<br>
<br>
Don't give yourself time to wander off into meaningless activities.
<br>
<br>
Set up a productive schedule and stick to it.
<br>
<br>
Consistency is all that matters.
<br>
<br>
Read, exercise, meditate and journal.
<br>
<br>
Additionally, I have come to understand how to build a good schedule.
<br>
<br>
Think of it as a building, with a soil that it's being built on, a foundation and a structure.
<br>
<br>
You already have either good habits or bad ones in your day,
<br>
<br>
So you can start building upon this foundation.
<br>
<br>
You can associate your already existing habits with ones you would like to implement.
<br>
<br>
This creates connection, and dependency,
<br>
<br>
Which will make it easier to stick to habits.
<br>
<br>
A good schedule should also be adaptable to unexpected situations.
<br>
<br>
Make it work regardless of anything. </p>
<img src="Posts/Post22.jpg" alt="Post 22" width="400px" height="400px">
</div>
<div class="Posts">
<p> Hard times are coming.
<br>
<br>
Your seemingly peaceful life will contain tragedy.
<br>
<br>
Someone dear to you will pass away, or you will lose financially.
<br>
<br>
So why are you not taking full advantage of the good times.
<br>
<br>
It's easy to lose track of how beautiful life truly is.
<br>
<br>
Never forget that. </p>
<img src="Posts/Post23.jpg" alt="Post 23" width="400px" height="400px">
</div>
<div class="Posts">
<p> I recently finished reading 12 Rules For Life by Jordan B. Peterson,
<br>
<br>
And it's been an enlightening experience.
<br>
<br>
Rule 8: Tell the truth – or, at least, don't lie.
<br>
<br>
When in doubt, create no doubt with your sentences.
<br>
<br>
It's relieving to remain truthful during earnest situations.
<br>
<br>
The truth is very sustainable, because it's true.
<br>
<br>
Never be scared of what is true.
<br>
<br>
Be the pillar of reason and honesty.
<br>
<br>
And remember:
<br>
<br>
When cornered, never dig a hole in the wall.
<br>
<br>
This book is a hopeful one at that, it's truly your antidote to chaos.
<br>
<br>
Rule 1 says it all: Stand up straight with your shoulders back.
<br>
<br>
Confidence is needed when you want to become an advocate for honesty and honor.
<br>
<br>
Organize your life diligently and become a virtuous person. </p>
<img src="Posts/Post24.jpg" alt="Post 24" width="400px" height="400px">
</div>
</span>
<span>
<div class="Posts">
<p> You need more personal accountability.
<br>
<br>
Stop blaming other people and start blaming yourself.
<br>
<br>
You can't grow from other people's mistakes,
<br>
<br>
So stop shifting the blame.
<br>
<br>
You don't want to end up like that whiny loser that complains constantly.
<br>
<br>
I absolutely despise those people. </p>
<img src="Posts/Post25.jpg" alt="Post 25" width="400px" height="400px">
</div>
<div class="Posts">
<p> Bro, cyber bullying doesn't exist.
<br>
<br>
You give it power by believing in it.
<br>
<br>
It literally can't affect you,
<br>
<br>
So why would you care about it?
<br>
<br>
The media promotes it in order to make you victimize yourself.
<br>
<br>
Stop being a wimp and man up.
<br>
<br>
You can't let such trivial things affect you. </p>
<img src="Posts/Post26.jpg" alt="Post 26" width="400px" height="400px">
</div>
<div class="Posts">
<p> You've probably heard of Stoicism. It's preached everywhere.
<br>
<br>
For good reason. It is a very important philosophy.
<br>
<br>
Stoicism means, in simple terms, Indifference to pleasure or pain.
<br>
<br>
That's an interesting way to live in my opinion.
<br>
<br>
Your feelings shouldn't dictate your actions.
<br>
<br>
Remaining unfazed in complicated situations gives you immense power.
<br>
<br>
Men have to be the head of reason and logic.
<br>
<br>
Leave the emotions to the weaklings.
<br>
<br>
Live your life without the boundaries set by feelings.
<br>
<br>
Learn to move on,
<br>
<br>
And learn to ignore what you can't change. </p>
<img src="Posts/Post27.jpg" alt="Post 27" width="400px" height="400px">
</div>
<div class="Posts">
<p> The definition of a good life is subjective.
<br>
<br>
Money? So be it. Mindfulness? So be it.
<br>
<br>
Fulfillment is what you should strive for.
<br>
<br>
Don't chase happiness, but fulfillment.
<br>
<br>
Dedicate your life to your purpose and mission,
<br>
<br>
Whatever that might be.
<br>
<br>
Never give up on your values. </p>
<img src="Posts/Post28.jpg" alt="Post 28" width="400px" height="400px">
</div>
</span>
<span>
<div class="Posts">
<p> You want to be rich, don't you?
<br>
<br>
Well, you probably want it for the wrong reasons.
<br>
<br>
You are materialistic,
<br>
<br>
And you just want to waste it all on garbage.
<br>
<br>
What about retiring your parents early?
<br>
<br>
You should be motivated by what matters:
<br>
<br>
Bettering the life of your close ones. </p>
<img src="Posts/Post29.jpg" alt="Post 29" width="400px" height="400px">
</div>
<div class="Posts">
<p> Why wouldn't you share the knowledge you posses?
<br>
<br>
You probably know a lot more about the good habits than the average person.
<br>
<br>
Do something with that knowledge:
<br>
<br>
Write a book, post on YouTube, anything.
<br>
<br>
Help everyone achieve greatness,
<br>
<br>
And you'll have a better world to live in. </p>
<img src="Posts/Post30.jpg" alt="Post 30" width="400px" height="400px">
</div>
<div class="Posts">
<p> You should always be happy, no matter what.
<br>
<br>
I guarantee that any current hardship in your life is fleeting.
<br>
<br>
What's stopping you from identifying as happy?
<br>
<br>
You want to escape sadness so bad,
<br>
<br>
But you still choose to believe that it affects you.
<br>
<br>
Nature is lovely, go enjoy that. </p>
<img src="Posts/Post31.jpg" alt="Post 31" width="400px" height="400px">
</div>
<div class="Posts">
<p> Never criticize people who aren't in your circle.
<br>
<br>
It will create a need for them to justify their actions,
<br>
<br>
And then the criticism falls on you.
<br>
<br>
In the same way, you should be more inclined to praising,
<br>
<br>
Rather than shaming, because it creates a positive association with you. </p>
<img src="Posts/Post32.jpg" alt="Post 32" width="400px" height="400px">
</div>
</span>
<span>
<div class="Posts">
<p> Success is not a destination, it's a journey.
<br>
<br>
In the same way, success is a habit, not an act.
<br>
<br>
If you want to achieve success,
<br>
<br>
Keep moving forward, stay focused, and never give up.
<br>
<br>
Too cliché? Well, too bad, because that's all true.
<br>
<br>
I wish you all success in life! </p>
<img src="Posts/Post33.jpg" alt="Post 33" width="400px" height="400px">
</div>
<div class="Posts">
<p> One of the most significant abilities needed for success is:
<br>
<br>
Being able to arouse an eager want in other people.
<br>
<br>
That's achievable by alluding to their wants and needs.
<br>
<br>
People only care about what they want,
<br>
<br>
So why not give them exactly that, while also benefiting yourself? </p>
<img src="Posts/Post34.jpg" alt="Post 34" width="400px" height="400px">
</div>
<div class="Posts">
<p> Vaping is incontestably the worst vice of our modern society.
<br>
<br>
I have no respect for people who use that death trap.
<br>
<br>
It doesn't help you quit traditional smoking,
<br>
<br>
And it surely isn't healthy for you, but more importantly
<br>
<br>
It's not fit for anything or anyone around you.
<br>
<br>
Do better. Stop being clowns.
<br>
<br>
I literally couldn't care less if someone died because of vaping,
<br>
<br>
You deserve everything that happens to you, filthy addict,
<br>
<br>
But don't you dare have the audacity to say 1 word when I tell you to put that shit away. </p>
<img src="Posts/Post35.jpg" alt="Post 35" width="400px" height="400px">
</div>
<div class="Posts">
<p> Always Interact with people in a professional way,
<br>
<br>
But never forgive and never forget.
<br>