From 8ae94ec21dbf15dd3192de7ce6417ca7a82cd15a Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Wed, 2 Jul 2025 00:26:49 +0100 Subject: initial commit --- assets/lovely.svg | 3 ++ index.html | 153 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 96 ++++++++++++++++++++++++++++++++++ 3 files changed, 252 insertions(+) create mode 100644 assets/lovely.svg create mode 100644 index.html create mode 100644 style.css diff --git a/assets/lovely.svg b/assets/lovely.svg new file mode 100644 index 0000000..789b98d --- /dev/null +++ b/assets/lovely.svg @@ -0,0 +1,3 @@ + + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..110553b --- /dev/null +++ b/index.html @@ -0,0 +1,153 @@ + + + + + + + + lovely computer + + + + + +
+
+
+ +

+ + computer manifesto     + + + --    on spiritual computing + +

+
+
+ +
+
+
    +
  1. +

    IDEAS:

    +
      +
    1. +

      the act of love

      +

      one must truly love computing to do good computing.

      +
    2. +
    +
      +
    1. +

      computing is art

      +

      Mierle Laderman Ukeles: "Everything I say is Art is Art. Everything I do is Art is Art." + further: + "We have no Art, we try to do everything well. (Balinese saying)."

      +
    2. +
    +
      +
    1. +

      grounded approach

      +

      computing is not an isolated act. one must keep in touch with humanities: art, history, culture, etc. + one + cannot build something good for the world, not knowing the world.

      +
    2. +
    +
      +
    1. +

      the living document

      +

      times change. people change. code changes. information is living. information should be allowed to die + and fade away. information comes from from everyone. + it's a + developing story.

      +
    2. +
    +
      +
    1. +

      camp in computing

      +

      there must be space for fun and quirkyness. for doing something that is superfluous. not everything + needs + to + have an end goal. the superfluous elevates the mundane and makes it joyous.

      +
    2. +
    +
      +
    1. +

      actualisation of humanist values

      +

      computing is for people. people use computers. people use computers to make more art. people use + computers + to + talk to one another. people use computers to cope. people use computers to write. people use computers + to + write + software. people use computers to design hardware. computing is for people.

      +
    2. +
    + +
  2. +
  3. +

    BALANCES:

    +
      +
    1. +

      getting things done/having fun

      +

      it is important to account for the scale of time. to do things well, but to also complete. there is + time + for + development (actualisation), and there is time for maintenance and repair (care). it is too easy to + discard + things, to move on to the next thing, but it is also bad to be stuck on one problem.

      +
    2. +
    +
      +
    1. +

      gift-giving/self-care

      +

      the only way to improve the world is by giving gifts with no strings attached. however, to be able to + give + gifts, one must take care of themselves and avoid burnout. social support and proper compensation is + paramount, + while still protecting oneself from greed.

      +
    2. +
    +
      +
    1. +

      doing/doing nothing

      +

      sometimes one has to do nothing to do something. truly nothing.

      +
    2. +
    +
      +
    1. +

      openness/resilience

      +

      open cultures and spaces/clubs and friend networks. the bazaar/the cathedral. in extending love to + others + outside, but still protecting and cultivating the microcultures, the small-scale social bonds.

      +
    2. +
    +
      +
    1. +

      the new/the old

      +

      architectures that are old are new again. architectures which are new become old. things which have + stuck + around may have stuck around for a reason. things that are new are not automatically good. things that + are + old + are not automatically good. things that are new may stick around for a reason.

      +
    2. +
    +
  4. +
+

--

+

required reading:

+
    +
  • manifesto! maintenance art -- proposal for an exhibition "CARE" - Mierle Laderman Ukeles
  • +
  • notes on "camp" - Susan Sontag
  • +
  • (an overview on) an overview on phenomenal nature - Cassandra Jenkins
  • +
  • how to do nothing - Jenny Odell
  • +
  • all about love - bell hooks
  • +
  • the telekommunist manifesto - Dmytri Kleiner
  • +
+ +
+
+ + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..ab42486 --- /dev/null +++ b/style.css @@ -0,0 +1,96 @@ +* { + word-break: break-word; + overflow-wrap: break-word; +} + +html { + background: #e3dfcd; + color: #44392e; + font-family: monospace; + padding: 0; + font-size: 20px; +} + +main { + padding: 0 calc(2.5vw + 2px); +} + +body { + max-width: 1000px; + margin: auto; +} + +header { + display: flex; + flex-direction: column; + align-items: center; +} + +header p { + display: flex; + justify-content: center; + flex-wrap: wrap; + text-align: center +} + +#computer-manifesto { + max-width: 100vw; + overflow: clip; +} + +#on-spiritual-computing { + display: flex; + justify-content: center; + flex-wrap: wrap; +} + +header br { + margin-top: 10vh; +} + +hr { + margin-left: 2.5vw; + margin-right: 2.5vw; + border-width: 1.5px; + border-style: solid; + border-color: #44392e; +} + +a { + color: #DCDCDC; + text-decoration: underline; + font-weight: 700; +} + +img { + max-width: 80vw; +} + +ol { + list-style-type: upper-alpha; +} + +.parts { + list-style-type: upper-roman; +} + +#lovely { + /* fill: #DCDCDC; */ + filter: brightness(0) saturate(100%) invert(19%) sepia(8%) saturate(1660%) hue-rotate(349deg) brightness(91%) contrast(84%); + height: 150px; + position: relative; + top: 3px; + left: 2px; +} + +h1 { + font-size: 64px; +} + +h2 { + font-size: 48px; +} + +h3 { + font-size: 32px; +} -- cgit