Stoicism is a philosophy that values rational thought and excellence in judgment. A "maxim" is a short truth. While these are quotes and not maxims, many people who employ Stoic values carry a set of maxims that have personal significance to them. This pen was created a project for freecodecamp.org.
Created
July 17, 2018 15:42
-
-
Save hughbagan/9e7e17c7b56248b9ec9526d064a9eafe to your computer and use it in GitHub Desktop.
stoic maxims
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| @import url('https://fonts.googleapis.com/css?family=Roboto+Slab'); | |
| body { | |
| margin:30px 0 30px 0; | |
| background-color: rgb(250,250,250); | |
| } | |
| h1 { | |
| font-family: 'Roboto Slab',serif; | |
| } | |
| a { | |
| color: rgb(139,0,139); | |
| } | |
| a:hover { | |
| color: rgb(153,50,204); | |
| text-decoration: none; | |
| } | |
| .center-portrait { | |
| border-radius:60%; | |
| display:block; | |
| max-width:25%; | |
| height:auto; | |
| box-shadow: 0px 10px 5px grey; | |
| } | |
| .center-portrait:hover { | |
| box-shadow: 0px 10px 20px grey; | |
| } | |
| #quotes { | |
| padding:30px; | |
| background-color: rgb(211,211,211); | |
| border-radius:5px; | |
| } | |
| #quotes p { | |
| font-size:1.1em; | |
| font-family: serif; | |
| } | |
| </style> | |
| <div class="container-fluid"> | |
| <img class="center-portrait mx-auto" src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/54/Marcus_Aurelius_Louvre_MR561_n01.jpg/682px-Marcus_Aurelius_Louvre_MR561_n01.jpg" alt="A bust of Marcus Aurelius, Emperor of Rome 161-180AD"> | |
| <br> | |
| <h1 class="text-center">a stoic's maxims</h1> | |
| <br> | |
| <div class="row"> | |
| <div class="col-md-3"> </div> | |
| <div class="col-md-6"> | |
| <div id="quotes" class="container"> | |
| <p class="text-center">This too will pass.</p> | |
| <p class="text-center">I ask not for a lighter burden, but for broader shoulders.</p> | |
| <p class="text-center">First say to yourself what you would be, and then do what you have to do. <small><em>Epictetus</em></small></p> | |
| <p class="text-center">A man cannot lose either the past or the future; for he has neither of them, and a man cannot lose what he doesn't have. <small><em>Marcus Aurelius</em></small></p> | |
| <p class="text-center">No man is free who is not master of himself.</p> | |
| <p class="text-center">At dawn, when you have trouble getting out of bed, tell yourself: “I am rising to do the work of a human being. What do I have to complain about, if I’m going to do what I was born for—the things I was brought into the world to do? Or is this what I was created for? To huddle under the blankets and stay warm?” <small><em>Marcus Aurelius, Med.5.1</em></small></p> | |
| <p class="text-center">Two elements must therefore be rooted out once and for all: The fear of future suffering, and the recollection of past suffering. Since the latter no longer concerns me, and the former concerns me not yet. <small><em>Seneca</em></small></p> | |
| <p class="text-center">The cucumber is bitter? Then throw it out. There are brambles in the path? Then go around. That's all you need to know. <small><em>Marcus Aurelius</em></small></p> | |
| <p class="text-center">If you accomplish something good with hard work, the labor passes quickly, but the good endures; if you do something shameful in pursuit of pleasure, the pleasure passes quickly, but the shame endures. <small><em>Gaius Musonius Rufus, Fragment 51</em></small></p> | |
| <p class="text-center">Frodo: I wish the ring had never come to me... I wish none of this had happened.<br> | |
| Gandalf: So do all who live to see such times, but that is not for them to decide. All we have to decide is what to do with the time that is given us.<br><small><em>Tolkien, Fellowship of the Ring</em></small></p> | |
| <p class="text-center"> | |
| I have often wondered how it is that every man loves himself more than all the rest of men, but yet sets less value on his own opinion of himself than on the opinion of others. <small><em>Marcus Aurelius, Med.12.5</em></small></p> | |
| <p class="text-center">I have to die. If it is now, well then I die now; if later, then now I will take my lunch, since the hour for lunch has arrived - and dying I will tend to later. <small><em>Epictetus</em></small></p> | |
| </div> | |
| </div> | |
| <div class="col-md-3"></div> | |
| </div> | |
| <br> | |
| <h1 class="text-center"><a href="https://www.reddit.com/r/Stoicism/">Virtue is the sole good.</a></h1> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta.2/css/bootstrap.css" rel="stylesheet" /> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment