Skip to content

Latest commit

 

History

History
225 lines (150 loc) · 6.8 KB

106.md

File metadata and controls

225 lines (150 loc) · 6.8 KB

title: taezujdc categories:

  • baz tags:
  • Klio
  • Frigga
  • Kalypso
  • Freia
  • Bellona date: 1983-7-4 18:24:11 updated: 2006-4-23 16:20:41

s46uebbq

  1. First ordered list item r83ksbqp
  2. Another item t4tq25mn
  • Unordered sub-list, 23eh8qyl.
  1. Actual numbers don't matter, just that it's a number, jt9htxmv

  2. Ordered sub-list, 9xrk72j8

  3. And another item. 9vc8gsco.

    kakbmstb dbipsc38

    blz52bs6
    44xymaau lmh27ugh

  • Unordered list can use asterisks, w6q2ea46
  • Or minuses, gncw1poq
  • Or pluses, ba4elcb6
  • Paragraph In unordered list, 2p2gz93x

    For example like this. 6v40gxab.

Common Paragraph with some text. And more text. qnr09iukf5as0pal.

e9drf8zx

d1yfe6cm


But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?


s2run2r9


4a34hb36

On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains

7gq00ue2

rb3a1kwi

nevlk2rp

khie9y47
djevdy3e

ylg13soq

mn5gy9lo

ng9qx2ob

l4vce9ev

Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?

comquwxq+kj2yj9dw+26k2j02rBut I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?

wdxiloqr Are 851r40o3
col 3 is right-aligned
col 2 is centered
zebra stripes are neat

{% blockquote %} v5qym44c {% endblockquote %}

{% raw %} zkz0itx8 {% endraw %}

{% blockquote %} 9i0xiczs {% endblockquote %}

{% raw %} hv03f6g6 {% endraw %}

{% youtube 9s2ifq4k %}

i2ut1xvi

<!DOCTYPE html>
<title>Title</title>

<style>body {width: 500px;}</style>

<script type="application/javascript">
  function $init() {return true;}
</script>

<body>
  <p checked class="title" id='title'>Title</p>
  <!-- here goes the rest of the page -->
</body>

qqblxcum

#include <iostream>

int main(int argc, char *argv[]) {

  /* An annoying "Hello World" example */
  for (auto i = 0; i < 0xFFFF; i++)
    cout << "Hello, World!" << endl;

  char c = '
';
  unordered_map <string, vector<string> > m;
  m["key"] = "\\"; // this is an error

  return -2e3 + 12l;
}

y94xgpfz

@font-face {
  font-family: Chunkfive; src: url('Chunkfive.otf');
}

body, .usertext {
  color: #F0F0F0; background: #600;
  font-family: Chunkfive, sans;
}

@import url(print.css);
@media print {
  a[href^=http]::after {
    content: attr(href)
  }
}

z3264xl7

# The Greeter class
class Greeter
  def initialize(name)
    @name = name.capitalize
  end

  def salute
    puts "Hello #{@name}!"
  end
end

g = Greeter.new("world")
g.salute

m9va3nuw

import Foundation

@objc class Person: Entity {
  var name: String!
  var age:  Int!

  init(name: String, age: Int) {
    /* /* ... */ */
  }

  // Return a descriptive string for this person
  func description(offset: Int = 0) -> String {
    return "(name) is (age + offset) years old"
  }
}

{{ 97 + 13 }}

{{ 13 + 78 }}

{{ 81 + 18 }}