diff --git a/eight-forms-of-capital/img/community-loop.dot b/eight-forms-of-capital/img/community-loop.dot new file mode 100644 index 0000000..25bbba5 --- /dev/null +++ b/eight-forms-of-capital/img/community-loop.dot @@ -0,0 +1,96 @@ +digraph community { + bgcolor="transparent" + rankdir=TB + pad=0.5 + nodesep=0.8 + ranksep=1.0 + + node [ + fontname="Helvetica" + fontsize=13 + style="filled" + penwidth=2 + shape=box + width=2.0 + height=0.9 + ] + + edge [ + fontname="Helvetica" + fontsize=10 + penwidth=3 + ] + + social [ + label="SOCIAL\nrelationships · trust · favors" + fillcolor="#FF9800" + fontcolor="white" + color="#E65100" + ] + + spiritual [ + label="SPIRITUAL\npresence · awareness · depth" + fillcolor="#E91E63" + fontcolor="white" + color="#AD1457" + ] + + cultural [ + label="CULTURAL\nshared story · art · ceremony\n(emerges from community only)" + fillcolor="#9C27B0" + fontcolor="white" + color="#6A1B9A" + penwidth=3 + ] + + living [ + label="LIVING\nstewardship sustained\nacross generations" + fillcolor="#4CAF50" + fontcolor="white" + color="#2E7D32" + ] + + social -> cultural [ + label="relationships weave\ninto shared meaning" + color="#FF9800" + fontcolor="#E65100" + ] + + spiritual -> cultural [ + label="depth feeds\ncollective purpose" + color="#E91E63" + fontcolor="#AD1457" + ] + + cultural -> living [ + label="shared ethics sustain\necological care\nfor generations" + color="#9C27B0" + fontcolor="#6A1B9A" + ] + + living -> social [ + label="abundance creates\nspace for connection" + color="#4CAF50" + fontcolor="#2E7D32" + style=dashed + ] + + living -> spiritual [ + label="nature deepens\nawareness" + color="#4CAF50" + fontcolor="#2E7D32" + style=dashed + ] + + // Note + note [ + label="cultural capital\nis the only form that\ncan only be gathered\nby a community\nnever by individuals alone" + shape=note + fillcolor="#F3E5F5" + fontcolor="#4A148C" + color="#9C27B0" + fontsize=11 + ] + + cultural -> note [style=dotted color="#9C27B0" arrowhead=none] +} diff --git a/eight-forms-of-capital/img/community-loop.png b/eight-forms-of-capital/img/community-loop.png new file mode 100644 index 0000000..84c52ec Binary files /dev/null and b/eight-forms-of-capital/img/community-loop.png differ diff --git a/eight-forms-of-capital/img/community-loop.svg b/eight-forms-of-capital/img/community-loop.svg new file mode 100644 index 0000000..458ef76 --- /dev/null +++ b/eight-forms-of-capital/img/community-loop.svg @@ -0,0 +1,100 @@ + + + + + + +community + + +social + +SOCIAL +relationships · trust · favors + + + +cultural + +CULTURAL +shared story · art · ceremony +(emerges from community only) + + + +social->cultural + + +relationships weave +into shared meaning + + + +spiritual + +SPIRITUAL +presence · awareness · depth + + + +spiritual->cultural + + +depth feeds +collective purpose + + + +living + +LIVING +stewardship sustained +across generations + + + +cultural->living + + +shared ethics sustain +ecological care +for generations + + + +note + + + +cultural capital +is the only form that +can only be gathered +by a community +never by individuals alone + + + +cultural->note + + + + +living->social + + +abundance creates +space for connection + + + +living->spiritual + + +nature deepens +awareness + + + diff --git a/eight-forms-of-capital/img/extractive-flow.dot b/eight-forms-of-capital/img/extractive-flow.dot new file mode 100644 index 0000000..0c7f92f --- /dev/null +++ b/eight-forms-of-capital/img/extractive-flow.dot @@ -0,0 +1,75 @@ +digraph extractive { + bgcolor="transparent" + rankdir=LR + pad=0.5 + nodesep=0.8 + ranksep=1.2 + + node [ + fontname="Helvetica" + fontsize=12 + style="filled" + penwidth=2 + shape=box + width=1.6 + height=0.8 + ] + + edge [ + fontname="Helvetica" + fontsize=10 + ] + + // Title + title [ + label="THE EXTRACTIVE PATTERN\n(degenerative)" + shape=plaintext + fillcolor="transparent" + fontsize=16 + fontcolor="#C62828" + ] + + // The extraction chain + living [label="LIVING\ncapital" fillcolor="#4CAF50" fontcolor="white" color="#2E7D32"] + material [label="MATERIAL\ncapital" fillcolor="#795548" fontcolor="white" color="#4E342E"] + financial [label="FINANCIAL\ncapital" fillcolor="#607D8B" fontcolor="white" color="#37474F" penwidth=4] + + living -> material [ + label="extract\nresources" + penwidth=4 + color="#F44336" + fontcolor="#C62828" + ] + + material -> financial [ + label="sell\ngoods" + penwidth=4 + color="#F44336" + fontcolor="#C62828" + ] + + // Side extractions + social [label="SOCIAL\ncapital" fillcolor="#FF9800" fontcolor="white" color="#E65100"] + cultural [label="CULTURAL\ncapital" fillcolor="#9C27B0" fontcolor="white" color="#6A1B9A"] + spiritual [label="SPIRITUAL\ncapital" fillcolor="#E91E63" fontcolor="white" color="#AD1457"] + intellectual [label="INTELLECTUAL\ncapital" fillcolor="#2196F3" fontcolor="white" color="#0D47A1"] + experiential [label="EXPERIENTIAL\ncapital" fillcolor="#009688" fontcolor="white" color="#00695C"] + + social -> financial [label="leverage\nconnections" penwidth=2 color="#F44336" fontcolor="#C62828"] + cultural -> financial [label="commodify\nart & story" penwidth=2 color="#F44336" fontcolor="#C62828"] + spiritual -> financial [label="exploit\nfaith" penwidth=2 color="#F44336" fontcolor="#C62828"] + + intellectual -> material [label="facilitate" penwidth=1.5 color="#888888" style=dashed fontcolor="#666666"] + experiential -> material [label="facilitate" penwidth=1.5 color="#888888" style=dashed fontcolor="#666666"] + + // Financial grows exponentially + financial -> financial [ + label="exponential\ngrowth" + penwidth=4 + color="#F44336" + fontcolor="#C62828" + ] + + // Invisible edges for layout + title -> living [style=invis] +} diff --git a/eight-forms-of-capital/img/extractive-flow.png b/eight-forms-of-capital/img/extractive-flow.png new file mode 100644 index 0000000..b460fdb Binary files /dev/null and b/eight-forms-of-capital/img/extractive-flow.png differ diff --git a/eight-forms-of-capital/img/extractive-flow.svg b/eight-forms-of-capital/img/extractive-flow.svg new file mode 100644 index 0000000..aacc150 --- /dev/null +++ b/eight-forms-of-capital/img/extractive-flow.svg @@ -0,0 +1,138 @@ + + + + + + +extractive + + +title + +THE EXTRACTIVE PATTERN +(degenerative) + + + +living + +LIVING +capital + + + + +material + +MATERIAL +capital + + + +living->material + + +extract +resources + + + +financial + +FINANCIAL +capital + + + +material->financial + + +sell +goods + + + +financial->financial + + +exponential +growth + + + +social + +SOCIAL +capital + + + +social->financial + + +leverage +connections + + + +cultural + +CULTURAL +capital + + + +cultural->financial + + +commodify +art & story + + + +spiritual + +SPIRITUAL +capital + + + +spiritual->financial + + +exploit +faith + + + +intellectual + +INTELLECTUAL +capital + + + +intellectual->material + + +facilitate + + + +experiential + +EXPERIENTIAL +capital + + + +experiential->material + + +facilitate + + + diff --git a/eight-forms-of-capital/img/full-mesh.dot b/eight-forms-of-capital/img/full-mesh.dot new file mode 100644 index 0000000..3f96f07 --- /dev/null +++ b/eight-forms-of-capital/img/full-mesh.dot @@ -0,0 +1,117 @@ +graph mesh { + bgcolor="transparent" + layout=neato + pad=0.5 + overlap=false + sep="+20" + + node [ + fontname="Helvetica" + fontsize=11 + style="filled" + shape=circle + width=1.5 + fixedsize=true + penwidth=2 + ] + + edge [ + penwidth=1.2 + color="#BDBDBD" + len=2.5 + ] + + // Nurture capitals (warm colors, top) + living [ + label="LIVING\n\nsoil · water\nplants · animals" + fillcolor="#4CAF50" + fontcolor="white" + color="#2E7D32" + ] + + social [ + label="SOCIAL\n\nrelationships\ninfluence" + fillcolor="#FF9800" + fontcolor="white" + color="#E65100" + ] + + cultural [ + label="CULTURAL\n\nshared story\nart · myth" + fillcolor="#9C27B0" + fontcolor="white" + color="#6A1B9A" + ] + + spiritual [ + label="SPIRITUAL\n\nkarma · faith\npresence" + fillcolor="#E91E63" + fontcolor="white" + color="#AD1457" + ] + + // Transactional capitals (cool colors, bottom) + financial [ + label="FINANCIAL\n\nmoney\ncurrencies" + fillcolor="#607D8B" + fontcolor="white" + color="#37474F" + ] + + material [ + label="MATERIAL\n\ntools · buildings\ninfrastructure" + fillcolor="#795548" + fontcolor="white" + color="#4E342E" + ] + + intellectual [ + label="INTELLECTUAL\n\nideas\nknowledge" + fillcolor="#2196F3" + fontcolor="white" + color="#0D47A1" + ] + + experiential [ + label="EXPERIENTIAL\n\nknow-how\nskill" + fillcolor="#009688" + fontcolor="white" + color="#00695C" + ] + + // Full mesh — every node connects to every other + living -- social + living -- cultural + living -- spiritual + living -- financial + living -- material + living -- intellectual + living -- experiential + + social -- cultural + social -- spiritual + social -- financial + social -- material + social -- intellectual + social -- experiential + + cultural -- spiritual + cultural -- financial + cultural -- material + cultural -- intellectual + cultural -- experiential + + spiritual -- financial + spiritual -- material + spiritual -- intellectual + spiritual -- experiential + + financial -- material + financial -- intellectual + financial -- experiential + + material -- intellectual + material -- experiential + + intellectual -- experiential +} diff --git a/eight-forms-of-capital/img/full-mesh.png b/eight-forms-of-capital/img/full-mesh.png new file mode 100644 index 0000000..248f0ca Binary files /dev/null and b/eight-forms-of-capital/img/full-mesh.png differ diff --git a/eight-forms-of-capital/img/full-mesh.svg b/eight-forms-of-capital/img/full-mesh.svg new file mode 100644 index 0000000..c1cbf33 --- /dev/null +++ b/eight-forms-of-capital/img/full-mesh.svg @@ -0,0 +1,216 @@ + + + + + + +mesh + + +living + +LIVING +soil · water +plants · animals + + + +social + +SOCIAL +relationships +influence + + + +living--social + + + + +cultural + +CULTURAL +shared story +art · myth + + + +living--cultural + + + + +spiritual + +SPIRITUAL +karma · faith +presence + + + +living--spiritual + + + + +financial + +FINANCIAL +money +currencies + + + +living--financial + + + + +material + +MATERIAL +tools · buildings +infrastructure + + + +living--material + + + + +intellectual + +INTELLECTUAL +ideas +knowledge + + + +living--intellectual + + + + +experiential + +EXPERIENTIAL +know-how +skill + + + +living--experiential + + + + +social--cultural + + + + +social--spiritual + + + + +social--financial + + + + +social--material + + + + +social--intellectual + + + + +social--experiential + + + + +cultural--spiritual + + + + +cultural--financial + + + + +cultural--material + + + + +cultural--intellectual + + + + +cultural--experiential + + + + +spiritual--financial + + + + +spiritual--material + + + + +spiritual--intellectual + + + + +spiritual--experiential + + + + +financial--material + + + + +financial--intellectual + + + + +financial--experiential + + + + +material--intellectual + + + + +material--experiential + + + + +intellectual--experiential + + + + diff --git a/eight-forms-of-capital/img/individual-forms.dot b/eight-forms-of-capital/img/individual-forms.dot new file mode 100644 index 0000000..d902496 --- /dev/null +++ b/eight-forms-of-capital/img/individual-forms.dot @@ -0,0 +1,91 @@ +digraph individual { + bgcolor="transparent" + rankdir=TB + pad=0.3 + nodesep=0.3 + ranksep=0.6 + + node [ + fontname="Helvetica" + fontsize=10 + style="filled" + penwidth=2 + shape=box + width=2.4 + height=0.6 + ] + + edge [ + penwidth=1.5 + fontsize=9 + fontname="Helvetica" + color="#888888" + ] + + // Each form described + living [ + label="LIVING CAPITAL — the foundation\nsoil · water · plants · animals · health · ecosystems" + fillcolor="#4CAF50" + fontcolor="white" + color="#2E7D32" + ] + + social [ + label="SOCIAL CAPITAL — influence & connection\nrelationships · networks · trust · favors owed" + fillcolor="#FF9800" + fontcolor="white" + color="#E65100" + ] + + material [ + label="MATERIAL CAPITAL — physical things\ntools · buildings · infrastructure · raw resources" + fillcolor="#795548" + fontcolor="white" + color="#4E342E" + ] + + financial [ + label="FINANCIAL CAPITAL — the medium\nmoney · currencies · securities" + fillcolor="#607D8B" + fontcolor="white" + color="#37474F" + ] + + intellectual [ + label="INTELLECTUAL CAPITAL — ideas\nconcepts · knowledge · theory · truth" + fillcolor="#2196F3" + fontcolor="white" + color="#0D47A1" + ] + + experiential [ + label="EXPERIENTIAL CAPITAL — know-how\nembodied skill · practice · mastery" + fillcolor="#009688" + fontcolor="white" + color="#00695C" + ] + + spiritual [ + label="SPIRITUAL CAPITAL — inner depth\nkarma · faith · presence · awareness of the whole" + fillcolor="#E91E63" + fontcolor="white" + color="#AD1457" + ] + + cultural [ + label="CULTURAL CAPITAL — shared experience\nstory · myth · song · art · ceremony · shared ethics" + fillcolor="#9C27B0" + fontcolor="white" + color="#6A1B9A" + ] + + // Flow from foundation upward + living -> material [label="resources extracted" fontcolor="#666666"] + material -> financial [label="goods sold" fontcolor="#666666"] + financial -> intellectual [label="education funded" fontcolor="#666666"] + intellectual -> experiential [label="theory practiced" fontcolor="#666666"] + experiential -> social [label="skills shared" fontcolor="#666666"] + social -> cultural [label="community emerges" fontcolor="#666666"] + cultural -> spiritual [label="meaning deepens" fontcolor="#666666"] + spiritual -> living [label="reverence sustains life" fontcolor="#666666" style=dashed] +} diff --git a/eight-forms-of-capital/img/individual-forms.png b/eight-forms-of-capital/img/individual-forms.png new file mode 100644 index 0000000..1877817 Binary files /dev/null and b/eight-forms-of-capital/img/individual-forms.png differ diff --git a/eight-forms-of-capital/img/individual-forms.svg b/eight-forms-of-capital/img/individual-forms.svg new file mode 100644 index 0000000..2922740 --- /dev/null +++ b/eight-forms-of-capital/img/individual-forms.svg @@ -0,0 +1,124 @@ + + + + + + +individual + + +living + +LIVING CAPITAL — the foundation +soil · water · plants · animals · health · ecosystems + + + +material + +MATERIAL CAPITAL — physical things +tools · buildings · infrastructure · raw resources + + + +living->material + + +resources extracted + + + +social + +SOCIAL CAPITAL — influence & connection +relationships · networks · trust · favors owed + + + +cultural + +CULTURAL CAPITAL — shared experience +story · myth · song · art · ceremony · shared ethics + + + +social->cultural + + +community emerges + + + +financial + +FINANCIAL CAPITAL — the medium +money · currencies · securities + + + +material->financial + + +goods sold + + + +intellectual + +INTELLECTUAL CAPITAL — ideas +concepts · knowledge · theory · truth + + + +financial->intellectual + + +education funded + + + +experiential + +EXPERIENTIAL CAPITAL — know-how +embodied skill · practice · mastery + + + +intellectual->experiential + + +theory practiced + + + +experiential->social + + +skills shared + + + +spiritual + +SPIRITUAL CAPITAL — inner depth +karma · faith · presence · awareness of the whole + + + +spiritual->living + + +reverence sustains life + + + +cultural->spiritual + + +meaning deepens + + + diff --git a/eight-forms-of-capital/img/knowledge-loop.dot b/eight-forms-of-capital/img/knowledge-loop.dot new file mode 100644 index 0000000..f9c4bd4 --- /dev/null +++ b/eight-forms-of-capital/img/knowledge-loop.dot @@ -0,0 +1,62 @@ +digraph knowledge { + bgcolor="transparent" + rankdir=LR + pad=0.5 + nodesep=1.0 + ranksep=1.2 + + node [ + fontname="Helvetica" + fontsize=13 + style="filled" + penwidth=2 + shape=box + width=1.8 + height=1.0 + ] + + edge [ + fontname="Helvetica" + fontsize=10 + penwidth=3 + ] + + intellectual [ + label="INTELLECTUAL\n\nread · study\nunderstand theory" + fillcolor="#2196F3" + fontcolor="white" + color="#0D47A1" + ] + + experiential [ + label="EXPERIENTIAL\n\npractice · build\nfeel the dough" + fillcolor="#009688" + fontcolor="white" + color="#00695C" + ] + + living [ + label="LIVING\n\nobserve results\nharvest feedback" + fillcolor="#4CAF50" + fontcolor="white" + color="#2E7D32" + ] + + intellectual -> experiential [ + label="apply theory\nthrough practice" + color="#2196F3" + fontcolor="#0D47A1" + ] + + experiential -> living [ + label="skilled hands\ntransform the land" + color="#009688" + fontcolor="#00695C" + ] + + living -> intellectual [ + label="observation\ngenerates new\nunderstanding" + color="#4CAF50" + fontcolor="#2E7D32" + ] +} diff --git a/eight-forms-of-capital/img/knowledge-loop.png b/eight-forms-of-capital/img/knowledge-loop.png new file mode 100644 index 0000000..9bc6317 Binary files /dev/null and b/eight-forms-of-capital/img/knowledge-loop.png differ diff --git a/eight-forms-of-capital/img/knowledge-loop.svg b/eight-forms-of-capital/img/knowledge-loop.svg new file mode 100644 index 0000000..621155a --- /dev/null +++ b/eight-forms-of-capital/img/knowledge-loop.svg @@ -0,0 +1,61 @@ + + + + + + +knowledge + + +intellectual + +INTELLECTUAL +read · study +understand theory + + + +experiential + +EXPERIENTIAL +practice · build +feel the dough + + + +intellectual->experiential + + +apply theory +through practice + + + +living + +LIVING +observe results +harvest feedback + + + +experiential->living + + +skilled hands +transform the land + + + +living->intellectual + + +observation +generates new +understanding + + + diff --git a/eight-forms-of-capital/img/nurture-vs-transactional.dot b/eight-forms-of-capital/img/nurture-vs-transactional.dot new file mode 100644 index 0000000..6a70249 --- /dev/null +++ b/eight-forms-of-capital/img/nurture-vs-transactional.dot @@ -0,0 +1,86 @@ +digraph groups { + bgcolor="transparent" + rankdir=TB + pad=0.5 + nodesep=0.6 + ranksep=1.0 + + node [ + fontname="Helvetica" + fontsize=12 + style="filled" + penwidth=2 + shape=box + width=1.8 + height=0.8 + ] + + edge [ + penwidth=2 + arrowsize=0.8 + ] + + // Nurture capitals + subgraph cluster_nurture { + label="NURTURE CAPITALS\ngrow these · cultivate these · protect these" + labeljust=c + fontname="Helvetica" + fontsize=14 + fontcolor="#2E7D32" + style="rounded,filled" + color="#4CAF50" + fillcolor="#E8F5E9" + penwidth=3 + + living [label="LIVING\nsoil · water · life" fillcolor="#4CAF50" fontcolor="white" color="#2E7D32"] + social [label="SOCIAL\nrelationships · trust" fillcolor="#FF9800" fontcolor="white" color="#E65100"] + cultural [label="CULTURAL\nshared story · art" fillcolor="#9C27B0" fontcolor="white" color="#6A1B9A"] + spiritual [label="SPIRITUAL\nfaith · presence" fillcolor="#E91E63" fontcolor="white" color="#AD1457"] + } + + // Transactional capitals + subgraph cluster_transactional { + label="TRANSACTIONAL CAPITALS\nfacilitate exchange · instrumental · tools" + labeljust=c + fontname="Helvetica" + fontsize=14 + fontcolor="#37474F" + style="rounded,filled" + color="#607D8B" + fillcolor="#ECEFF1" + penwidth=3 + + financial [label="FINANCIAL\nmoney · currency" fillcolor="#607D8B" fontcolor="white" color="#37474F"] + material [label="MATERIAL\ntools · buildings" fillcolor="#795548" fontcolor="white" color="#4E342E"] + intellectual [label="INTELLECTUAL\nideas · knowledge" fillcolor="#2196F3" fontcolor="white" color="#0D47A1"] + experiential [label="EXPERIENTIAL\nskill · know-how" fillcolor="#009688" fontcolor="white" color="#00695C"] + } + + // The extractive arrow (current system) + living -> financial [ + label="current system\nextracts nurture\nto grow financial" + color="#F44336" + fontcolor="#C62828" + fontsize=10 + penwidth=3 + style=bold + ] + + social -> financial [color="#F44336" penwidth=3 style=bold] + cultural -> financial [color="#F44336" penwidth=3 style=bold] + spiritual -> financial [color="#F44336" penwidth=3 style=bold] + + // The regenerative arrow (the goal) + financial -> living [ + label="regenerative system\ninvests transactional\nback into nurture" + color="#4CAF50" + fontcolor="#2E7D32" + fontsize=10 + penwidth=3 + style=dashed + ] + + // Intellectual and experiential facilitate + intellectual -> living [color="#2196F3" style=dashed penwidth=1.5 label="understanding\nguides action" fontsize=9 fontcolor="#1565C0"] + experiential -> living [color="#009688" style=dashed penwidth=1.5 label="skilled hands\nheal land" fontsize=9 fontcolor="#00695C"] +} diff --git a/eight-forms-of-capital/img/nurture-vs-transactional.png b/eight-forms-of-capital/img/nurture-vs-transactional.png new file mode 100644 index 0000000..219032c Binary files /dev/null and b/eight-forms-of-capital/img/nurture-vs-transactional.png differ diff --git a/eight-forms-of-capital/img/nurture-vs-transactional.svg b/eight-forms-of-capital/img/nurture-vs-transactional.svg new file mode 100644 index 0000000..b454337 --- /dev/null +++ b/eight-forms-of-capital/img/nurture-vs-transactional.svg @@ -0,0 +1,132 @@ + + + + + + +groups + +cluster_nurture + +NURTURE CAPITALS +grow these · cultivate these · protect these + + +cluster_transactional + +TRANSACTIONAL CAPITALS +facilitate exchange · instrumental · tools + + + +living + +LIVING +soil · water · life + + + +financial + +FINANCIAL +money · currency + + + +living->financial + + +current system +extracts nurture +to grow financial + + + +social + +SOCIAL +relationships · trust + + + +social->financial + + + + + +cultural + +CULTURAL +shared story · art + + + +cultural->financial + + + + + +spiritual + +SPIRITUAL +faith · presence + + + +spiritual->financial + + + + + +financial->living + + +regenerative system +invests transactional +back into nurture + + + +material + +MATERIAL +tools · buildings + + + +intellectual + +INTELLECTUAL +ideas · knowledge + + + +intellectual->living + + +understanding +guides action + + + +experiential + +EXPERIENTIAL +skill · know-how + + + +experiential->living + + +skilled hands +heal land + + + diff --git a/eight-forms-of-capital/img/permacomputer-capital.dot b/eight-forms-of-capital/img/permacomputer-capital.dot new file mode 100644 index 0000000..7b436b0 --- /dev/null +++ b/eight-forms-of-capital/img/permacomputer-capital.dot @@ -0,0 +1,115 @@ +digraph permacomputer_capital { + bgcolor="transparent" + rankdir=TB + pad=0.5 + nodesep=0.5 + ranksep=0.9 + + node [ + fontname="Helvetica" + fontsize=11 + style="filled" + penwidth=2 + ] + + edge [ + fontname="Helvetica" + fontsize=9 + penwidth=2 + ] + + // The permacomputer at center + pc [ + label="PERMACOMPUTER\n\ntruth · freedom\nharmony · love" + shape=doublecircle + fillcolor="#263238" + fontcolor="#CDDC39" + color="#CDDC39" + fontsize=12 + width=2.2 + fixedsize=true + ] + + // How each form maps to permacomputer values + living [ + label="LIVING\n\nthe hardware lives\nrepair not replace\ndurable materials" + shape=box + fillcolor="#4CAF50" + fontcolor="white" + color="#2E7D32" + width=2.0 + ] + + intellectual [ + label="INTELLECTUAL\n\nopen source code\npublic domain\nseeds to sprout" + shape=box + fillcolor="#2196F3" + fontcolor="white" + color="#0D47A1" + width=2.0 + ] + + social [ + label="SOCIAL\n\nby the people\nfor the people\nvoluntary participation" + shape=box + fillcolor="#FF9800" + fontcolor="white" + color="#E65100" + width=2.0 + ] + + experiential [ + label="EXPERIENTIAL\n\nall layers accessible\nlearn by operating\nhuman operators" + shape=box + fillcolor="#009688" + fontcolor="white" + color="#00695C" + width=2.0 + ] + + cultural [ + label="CULTURAL\n\nutopia of the commons\nshared infrastructure\ncode outlasts authors" + shape=box + fillcolor="#9C27B0" + fontcolor="white" + color="#6A1B9A" + width=2.0 + ] + + financial [ + label="FINANCIAL\n\ncosts near zero\nno monopoly\nfree as water" + shape=box + fillcolor="#607D8B" + fontcolor="white" + color="#37474F" + width=2.0 + ] + + material [ + label="MATERIAL\n\nservers · networks\nIPv4 · IPv6\ncryptography" + shape=box + fillcolor="#795548" + fontcolor="white" + color="#4E342E" + width=2.0 + ] + + spiritual [ + label="SPIRITUAL\n\nlove as fuel\nwu wei · effortless\nhomeostasis" + shape=box + fillcolor="#E91E63" + fontcolor="white" + color="#AD1457" + width=2.0 + ] + + // Connections to permacomputer + living -> pc [label="HARMONY" color="#4CAF50" fontcolor="#2E7D32"] + intellectual -> pc [label="TRUTH" color="#2196F3" fontcolor="#0D47A1"] + social -> pc [label="FREEDOM" color="#FF9800" fontcolor="#E65100"] + experiential -> pc [label="TRUTH" color="#009688" fontcolor="#00695C"] + cultural -> pc [label="FREEDOM" color="#9C27B0" fontcolor="#6A1B9A"] + financial -> pc [label="FREEDOM" color="#607D8B" fontcolor="#37474F"] + material -> pc [label="HARMONY" color="#795548" fontcolor="#4E342E"] + spiritual -> pc [label="LOVE" color="#E91E63" fontcolor="#AD1457"] +} diff --git a/eight-forms-of-capital/img/permacomputer-capital.png b/eight-forms-of-capital/img/permacomputer-capital.png new file mode 100644 index 0000000..88cc855 Binary files /dev/null and b/eight-forms-of-capital/img/permacomputer-capital.png differ diff --git a/eight-forms-of-capital/img/permacomputer-capital.svg b/eight-forms-of-capital/img/permacomputer-capital.svg new file mode 100644 index 0000000..1cc9c19 --- /dev/null +++ b/eight-forms-of-capital/img/permacomputer-capital.svg @@ -0,0 +1,149 @@ + + + + + + +permacomputer_capital + + +pc + + +PERMACOMPUTER +truth · freedom +harmony · love + + + +living + +LIVING +the hardware lives +repair not replace +durable materials + + + +living->pc + + +HARMONY + + + +intellectual + +INTELLECTUAL +open source code +public domain +seeds to sprout + + + +intellectual->pc + + +TRUTH + + + +social + +SOCIAL +by the people +for the people +voluntary participation + + + +social->pc + + +FREEDOM + + + +experiential + +EXPERIENTIAL +all layers accessible +learn by operating +human operators + + + +experiential->pc + + +TRUTH + + + +cultural + +CULTURAL +utopia of the commons +shared infrastructure +code outlasts authors + + + +cultural->pc + + +FREEDOM + + + +financial + +FINANCIAL +costs near zero +no monopoly +free as water + + + +financial->pc + + +FREEDOM + + + +material + +MATERIAL +servers · networks +IPv4 · IPv6 +cryptography + + + +material->pc + + +HARMONY + + + +spiritual + +SPIRITUAL +love as fuel +wu wei · effortless +homeostasis + + + +spiritual->pc + + +LOVE + + + diff --git a/eight-forms-of-capital/img/pollution.dot b/eight-forms-of-capital/img/pollution.dot new file mode 100644 index 0000000..03f1cd8 --- /dev/null +++ b/eight-forms-of-capital/img/pollution.dot @@ -0,0 +1,116 @@ +digraph pollution { + bgcolor="transparent" + rankdir=TB + pad=0.5 + nodesep=0.4 + ranksep=0.8 + + node [ + fontname="Helvetica" + fontsize=11 + style="filled" + penwidth=2 + shape=box + width=2.0 + height=0.7 + ] + + edge [ + penwidth=2 + fontsize=9 + fontname="Helvetica" + ] + + label="WHEN CAPITAL ACCUMULATES WITHOUT FLOWING\nit becomes pollution" + labelloc=t + fontname="Helvetica" + fontsize=16 + fontcolor="#C62828" + + // Healthy flow + subgraph cluster_flow { + label="HEALTHY: capital flows" + fontsize=12 + fontcolor="#2E7D32" + style="rounded,dashed" + color="#4CAF50" + fillcolor="#E8F5E9" + + flow [ + label="pool → flow → pool\nexchange creates vitality" + shape=ellipse + fillcolor="#C8E6C9" + fontcolor="#1B5E20" + color="#4CAF50" + ] + } + + // Stagnation pollution for each form + subgraph cluster_pollution { + label="STAGNANT: capital hoarded" + fontsize=12 + fontcolor="#C62828" + style="rounded,dashed" + color="#F44336" + fillcolor="#FFEBEE" + + financial_p [ + label="FINANCIAL pollution\nparanoia · control · isolation" + fillcolor="#607D8B" + fontcolor="white" + color="#37474F" + ] + + material_p [ + label="MATERIAL pollution\nwaste · physical contamination" + fillcolor="#795548" + fontcolor="white" + color="#4E342E" + ] + + living_p [ + label="LIVING pollution\ninvasive species · ecosystem collapse" + fillcolor="#4CAF50" + fontcolor="white" + color="#2E7D32" + ] + + social_p [ + label="SOCIAL pollution\nparasitism · codependency" + fillcolor="#FF9800" + fontcolor="white" + color="#E65100" + ] + + intellectual_p [ + label="INTELLECTUAL pollution\nivory tower · detachment from reality" + fillcolor="#2196F3" + fontcolor="white" + color="#0D47A1" + ] + + experiential_p [ + label="EXPERIENTIAL pollution\naction addiction · no reflection" + fillcolor="#009688" + fontcolor="white" + color="#00695C" + ] + + cultural_p [ + label="CULTURAL pollution\ncolonization · disconnection" + fillcolor="#9C27B0" + fontcolor="white" + color="#6A1B9A" + ] + + spiritual_p [ + label="SPIRITUAL pollution\ncults · hollow institutions" + fillcolor="#E91E63" + fontcolor="white" + color="#AD1457" + ] + } + + flow -> financial_p [label="hoarding" color="#F44336" fontcolor="#C62828"] + flow -> living_p [label="imbalance" color="#F44336" fontcolor="#C62828" style=invis] +} diff --git a/eight-forms-of-capital/img/pollution.png b/eight-forms-of-capital/img/pollution.png new file mode 100644 index 0000000..4984d85 Binary files /dev/null and b/eight-forms-of-capital/img/pollution.png differ diff --git a/eight-forms-of-capital/img/pollution.svg b/eight-forms-of-capital/img/pollution.svg new file mode 100644 index 0000000..628806e --- /dev/null +++ b/eight-forms-of-capital/img/pollution.svg @@ -0,0 +1,95 @@ + + + + + + +pollution +WHEN CAPITAL ACCUMULATES WITHOUT FLOWING +it becomes pollution + +cluster_flow + +HEALTHY: capital flows + + +cluster_pollution + +STAGNANT: capital hoarded + + + +flow + +pool → flow → pool +exchange creates vitality + + + +financial_p + +FINANCIAL pollution +paranoia · control · isolation + + + +flow->financial_p + + +hoarding + + + +living_p + +LIVING pollution +invasive species · ecosystem collapse + + + + +material_p + +MATERIAL pollution +waste · physical contamination + + + +social_p + +SOCIAL pollution +parasitism · codependency + + + +intellectual_p + +INTELLECTUAL pollution +ivory tower · detachment from reality + + + +experiential_p + +EXPERIENTIAL pollution +action addiction · no reflection + + + +cultural_p + +CULTURAL pollution +colonization · disconnection + + + +spiritual_p + +SPIRITUAL pollution +cults · hollow institutions + + + diff --git a/eight-forms-of-capital/img/regenerative-flow.dot b/eight-forms-of-capital/img/regenerative-flow.dot new file mode 100644 index 0000000..b17e363 --- /dev/null +++ b/eight-forms-of-capital/img/regenerative-flow.dot @@ -0,0 +1,89 @@ +digraph regenerative { + bgcolor="transparent" + rankdir=TB + pad=0.5 + nodesep=0.7 + ranksep=1.0 + + node [ + fontname="Helvetica" + fontsize=12 + style="filled" + penwidth=2 + shape=box + width=1.6 + height=0.8 + ] + + edge [ + fontname="Helvetica" + fontsize=10 + ] + + // Title + title [ + label="THE REGENERATIVE PATTERN\n(grow what survives)" + shape=plaintext + fillcolor="transparent" + fontsize=16 + fontcolor="#2E7D32" + ] + + // Core regenerative loop + financial [label="FINANCIAL\ncapital" fillcolor="#607D8B" fontcolor="white" color="#37474F"] + living [label="LIVING\ncapital" fillcolor="#4CAF50" fontcolor="white" color="#2E7D32" penwidth=4] + material [label="MATERIAL\ncapital" fillcolor="#795548" fontcolor="white" color="#4E342E"] + + financial -> living [ + label="invest in\nregeneration" + penwidth=4 + color="#4CAF50" + fontcolor="#2E7D32" + ] + + living -> material [ + label="harvest only\nsurplus" + penwidth=3 + color="#4CAF50" + fontcolor="#2E7D32" + style=dashed + ] + + material -> financial [ + label="sustain\nthe cycle" + penwidth=2 + color="#4CAF50" + fontcolor="#2E7D32" + style=dashed + ] + + // Nurture growth + social [label="SOCIAL\ncapital" fillcolor="#FF9800" fontcolor="white" color="#E65100"] + cultural [label="CULTURAL\ncapital" fillcolor="#9C27B0" fontcolor="white" color="#6A1B9A"] + spiritual [label="SPIRITUAL\ncapital" fillcolor="#E91E63" fontcolor="white" color="#AD1457"] + intellectual [label="INTELLECTUAL\ncapital" fillcolor="#2196F3" fontcolor="white" color="#0D47A1"] + experiential [label="EXPERIENTIAL\ncapital" fillcolor="#009688" fontcolor="white" color="#00695C"] + + // Regenerative investments + financial -> social [label="fund\ncommunity" penwidth=2 color="#4CAF50" fontcolor="#2E7D32"] + financial -> intellectual [label="fund\neducation" penwidth=2 color="#4CAF50" fontcolor="#2E7D32"] + + // Knowledge cycle + intellectual -> experiential [label="learn by\ndoing" penwidth=2 color="#2196F3" fontcolor="#0D47A1"] + experiential -> living [label="skilled care\nheals land" penwidth=3 color="#009688" fontcolor="#00695C"] + + // Community cycle + social -> cultural [label="community\ncreates culture" penwidth=2 color="#FF9800" fontcolor="#E65100"] + cultural -> living [label="shared ethics\nsustain stewardship" penwidth=2 color="#9C27B0" fontcolor="#6A1B9A"] + spiritual -> cultural [label="depth feeds\nshared meaning" penwidth=2 color="#E91E63" fontcolor="#AD1457"] + + // Living capital grows + living -> living [ + label="self-renewing\nabundance" + penwidth=3 + color="#2E7D32" + fontcolor="#1B5E20" + ] + + title -> financial [style=invis] +} diff --git a/eight-forms-of-capital/img/regenerative-flow.png b/eight-forms-of-capital/img/regenerative-flow.png new file mode 100644 index 0000000..668fc2b Binary files /dev/null and b/eight-forms-of-capital/img/regenerative-flow.png differ diff --git a/eight-forms-of-capital/img/regenerative-flow.svg b/eight-forms-of-capital/img/regenerative-flow.svg new file mode 100644 index 0000000..b243108 --- /dev/null +++ b/eight-forms-of-capital/img/regenerative-flow.svg @@ -0,0 +1,164 @@ + + + + + + +regenerative + + +title + +THE REGENERATIVE PATTERN +(grow what survives) + + + +financial + +FINANCIAL +capital + + + + +living + +LIVING +capital + + + +financial->living + + +invest in +regeneration + + + +social + +SOCIAL +capital + + + +financial->social + + +fund +community + + + +intellectual + +INTELLECTUAL +capital + + + +financial->intellectual + + +fund +education + + + +living->living + + +self-renewing +abundance + + + +material + +MATERIAL +capital + + + +living->material + + +harvest only +surplus + + + +material->financial + + +sustain +the cycle + + + +cultural + +CULTURAL +capital + + + +social->cultural + + +community +creates culture + + + +cultural->living + + +shared ethics +sustain stewardship + + + +spiritual + +SPIRITUAL +capital + + + +spiritual->cultural + + +depth feeds +shared meaning + + + +experiential + +EXPERIENTIAL +capital + + + +intellectual->experiential + + +learn by +doing + + + +experiential->living + + +skilled care +heals land + + + diff --git a/eight-forms-of-capital/index.html b/eight-forms-of-capital/index.html new file mode 100644 index 0000000..2f4ea6d --- /dev/null +++ b/eight-forms-of-capital/index.html @@ -0,0 +1,333 @@ + + + + eight forms of capital — unturf. + + + + + + + + + + +
+ +

unturf.

+

grow food not lawn

+
manifesto · free software
+ +

Eight Forms of Capital

+ +

+We measure wealth in dollars. That measurement captures one form of capital out of eight. The other seven flow through every community, every ecosystem, every permacomputer. When we see all eight, we see the full mesh of abundance already present, waiting to circulate. +

+ +

+This framework comes from Ethan Roland and Gregory Landua, who noticed that permaculture courses exchanged far more than money. Knowledge, food, relationships, stories, spiritual growth, and physical labor all flowed between participants. They named what they observed: eight distinct forms of capital, each transformable into the others. +

+ + + + + +STEP 1 +

The Eight Forms

+ +

Each form of capital exists as a pool (stored amount) and participates in flows (exchanges with other pools). Here they stand, from foundation to emergence:

+ +
+ The eight forms of capital from foundation to emergence +
from living capital at the foundation to cultural capital as emergent community property
+
+ +
+

Living Capital

+

Soil, water, plants, animals, human health, genetic diversity, ecosystems. The foundation upon which all other forms depend. We cannot eat money. Measure wealth in ounces, acres, and hooves.

+
+ +
+

Material Capital

+

Non-living physical objects, both raw and processed. Stone, metal, timber complexed into buildings, bridges, tools, servers, networks. Essential for work and survival, derived ultimately from living capital.

+
+ +
+

Financial Capital

+

Money, currencies, securities. The dominant medium of exchange. A powerful tool for both oppression and liberation. The current global system grows financial capital exponentially at the expense of all other forms.

+
+ +
+

Intellectual Capital

+

Ideas, concepts, knowledge, truth. Held in the human neocortex. Going to university exchanges financial capital for intellectual capital. Open source code releases intellectual capital into the commons.

+
+ +
+

Experiential Capital

+

Embodied know-how built from lived experience. The difference between a novice and a master. Grandma's biscuit recipe, for which there exists no recipe, only the feel of the dough in the hands.

+
+ +
+

Social Capital

+

Influence, connections, relationships, trust, networks. Favors owed and given. Of primary importance in politics, business, and community organizing. Takes the form of equity (goodwill) or debt (obligation).

+
+ +
+

Cultural Capital

+

Shared internal and external experience of a group. Story, myth, song, art, ceremony, shared ethics. The only form that can only be gathered by a community, never by individuals alone. An emergent property of exchange.

+
+ +
+

Spiritual Capital

+

Karma, faith, presence, inner connection to and awareness of a greater whole. In some Mayan cultures, humans carry a spiritual debt to the beauty of existence, spending their lives creating beauty to service that debt.

+
+ + + + + +STEP 2 +

The Full Mesh

+ +

+Every form of capital can transform into every other form. Twenty-eight connections between eight nodes. This mesh already exists in every community, every marketplace, every ecosystem. Most people only see one connection: the financial one. +

+ +
+ Full mesh showing all 28 connections between eight forms of capital +
28 connections between 8 forms, every node reaches every other node
+
+ +

+The mesh resembles a network topology, and that resemblance carries meaning. Redundancy creates resilience. When one connection breaks, capital still flows through alternative paths. A community rich in all eight forms recovers from shocks that destroy communities dependent on one. +

+ + + + + +STEP 3 +

Two Groups: Nurture and Transactional

+ +

+The eight forms divide into two groups of four. This division reveals how the current system operates and how a regenerative system would differ. +

+ +
+ Nurture capitals versus transactional capitals +
the red arrows show extraction, the green arrows show regeneration
+
+ +

+Nurture capitals must be proactively grown and cultivated: living, social, cultural, spiritual. These form the foundation of abundance. They cannot be manufactured or purchased outright. They require time, attention, and relationship. +

+ +

+Transactional capitals facilitate exchange: financial, material, intellectual, experiential. These serve as tools and media. They carry value but do not generate lasting wealth on their own. +

+ +

+The current system extracts the four nurture capitals (social, cultural, spiritual, living) to create ever-growing amounts of financial and material capital, using intellectual and experiential capital to facilitate the transfer. +

+ + + + + +STEP 4 +

The Extractive Pattern

+ +

+The dominant pattern of the current system flows in one direction: extract living capital, process into material capital, sell for financial capital, grow financial capital exponentially. Everything else feeds the machine. +

+ +
+ The extractive degenerative flow pattern +
one-way extraction, every form feeds financial, financial feeds itself
+
+ +

+Social capital gets leveraged for business connections. Cultural capital gets commodified into content. Spiritual capital gets exploited through faith-based marketing. Intellectual and experiential capital facilitate the extraction. Financial capital compounds. The nurture capitals deplete. +

+ + + + + +STEP 5 +

The Regenerative Pattern

+ +

+A regenerative system reverses the dominant flow. Financial capital gets invested back into living capital. Surplus, not the base, gets harvested. The cycle sustains itself. Living capital grows, and everything else grows with it. +

+ +
+ The regenerative flow pattern +
invest in living capital, harvest only surplus, grow what survives
+
+ +

+This pattern maps directly to the permacomputer quadrivium. Truth demands that intellectual capital flow freely as open source. Freedom demands that social capital form through voluntary participation. Harmony demands that living capital self-renew with appropriate inputs for all outputs. Love demands that spiritual capital serve as the fuel. +

+ + + + + +STEP 6 +

The Knowledge Loop

+ +

+Three forms of capital create a self-reinforcing cycle of learning and application. Theory meets practice meets observation. The loop accelerates mastery. +

+ +
+ The knowledge loop: intellectual to experiential to living and back +
read, practice, observe, repeat. theory grounded in dirt.
+
+ +

+Intellectual capital (ideas, theory, open source documentation) gets applied through practice, building experiential capital (skill, know-how). Skilled hands transform living capital (land, systems, infrastructure). Observation of results generates new intellectual capital. The loop closes. Each revolution deepens understanding. +

+ +

+In permacomputer terms: open source code (intellectual) gets deployed and operated (experiential) on real infrastructure (living). The results teach us what works. We write better code. The seed improves with each planting. +

+ + + + + +STEP 7 +

The Community Loop

+ +

+Cultural capital can only emerge from community. No individual can create shared story, shared myth, shared ceremony alone. This loop shows how relationships and depth weave into something larger than any participant. +

+ +
+ The community loop: social and spiritual feeding into cultural, then into living +
relationships weave into shared meaning, shared meaning sustains the land for generations
+
+ +

+Social capital (relationships, trust) and spiritual capital (depth, presence) feed into cultural capital (shared story, art, ethics). Cultural capital sustains ecological stewardship across generations. The shared ethics of a community determine whether living capital gets extracted or regenerated. Culture carries the values that outlast individual lifetimes. +

+ +

+"Code outlasts authors." A permacomputer grows cultural capital by creating shared infrastructure, shared tools, shared language. The culture of open source, voluntary participation, and mutual care becomes the vessel that carries the mission forward. +

+ + + + + +STEP 8 +

When Capital Stagnates

+ +

+Capital must flow. When any form accumulates without circulating, it becomes pollution. Hoarded financial capital breeds paranoia. Accumulated material capital becomes waste. Stagnant intellectual capital produces ivory tower detachment. Every form has a shadow. +

+ +
+ Each form of capital and its pollution shadow when hoarded +
capital that stops flowing starts rotting
+
+ +

+A system in harmony has appropriate inputs for all of its outputs. Very little waste or pollution during operation. This principle from the permacomputer manifesto applies directly. The permacomputer keeps capital flowing: open source releases intellectual capital, voluntary participation circulates social capital, distributed infrastructure prevents material capital from concentrating. +

+ + + + + +STEP 9 +

The Permacomputer as Regenerative System

+ +

+Every design decision in a permacomputer maps to one or more forms of capital and one or more quadrivium values. The permacomputer functions as a regenerative enterprise: a venture that proactively grows the foundational pools of nurture capital by providing goods and services that create net positive gains for the whole system. +

+ +
+ How each form of capital maps to the permacomputer quadrivium values +
each form of capital maps to one or more quadrivium values: truth, freedom, harmony, love
+
+ + + + + + + + + + + + + + + +
CapitalPermacomputer ExpressionQuadrivium Value
LivingDurable hardware, repair not replaceHarmony
MaterialServers, networks, IPv4/IPv6, cryptographyHarmony
FinancialCosts near zero, no monopoly, free as waterFreedom
IntellectualOpen source, public domain, seeds to sproutTruth
ExperientialAll layers accessible, learn by operatingTruth
SocialBy the people, for the people, voluntaryFreedom
CulturalUtopia of the commons, code outlasts authorsFreedom
SpiritualLove as fuel, wu wei, homeostasisLove
+ +

+The permacomputer does not optimize for financial capital. It optimizes for all eight forms simultaneously, with living capital as the foundation and cultural capital as the emergent outcome. The quadrivium (truth, freedom, harmony, love) serves as the design constraint that ensures the system regenerates rather than extracts. +

+ +

+Grow food not lawn. Grow all eight, not just one. +

+ +
+ +

+Framework by Ethan Roland & Gregory Landua, +Regenerative Enterprise: Optimizing for Multi-Capital Abundance (2013). +Diagrams generated from DOT source files included in this repository. +

+ +

← back to the manifesto

+ +
+ + + + + + diff --git a/let-us-define-a-permacomputer/img/permacomputer-properties.dot b/let-us-define-a-permacomputer/img/permacomputer-properties.dot new file mode 100644 index 0000000..1a39d0f --- /dev/null +++ b/let-us-define-a-permacomputer/img/permacomputer-properties.dot @@ -0,0 +1,118 @@ +digraph properties { + bgcolor="transparent" + rankdir=TB + pad=0.5 + nodesep=0.5 + ranksep=0.7 + + node [ + fontname="Helvetica" + fontsize=11 + style="filled" + penwidth=2 + shape=box + ] + + edge [ + penwidth=1.5 + color="#888888" + arrowsize=0.7 + ] + + // Center + pc [ + label="PERMACOMPUTER\n\nalways on · durable\neasy to repair\nby the people\nfor the people" + shape=doublecircle + fillcolor="#263238" + fontcolor="#CDDC39" + color="#CDDC39" + fontsize=12 + width=2.4 + fixedsize=true + ] + + // Truth properties + subgraph cluster_truth { + label="TRUTH" + fontname="Helvetica" + fontsize=14 + fontcolor="#2E7D32" + style="rounded,filled" + color="#4CAF50" + fillcolor="#E8F5E9" + + t1 [label="open source" fillcolor="#C8E6C9" color="#4CAF50" fontcolor="#1B5E20"] + t2 [label="public domain" fillcolor="#C8E6C9" color="#4CAF50" fontcolor="#1B5E20"] + t3 [label="all layers\naccessible" fillcolor="#C8E6C9" color="#4CAF50" fontcolor="#1B5E20"] + t4 [label="math as\nnatural right" fillcolor="#C8E6C9" color="#4CAF50" fontcolor="#1B5E20"] + } + + // Freedom properties + subgraph cluster_freedom { + label="FREEDOM" + fontname="Helvetica" + fontsize=14 + fontcolor="#0D47A1" + style="rounded,filled" + color="#2196F3" + fillcolor="#E3F2FD" + + f1 [label="voluntary\nparticipation" fillcolor="#BBDEFB" color="#2196F3" fontcolor="#0D47A1"] + f2 [label="freedom FROM\ntyranny" fillcolor="#BBDEFB" color="#2196F3" fontcolor="#0D47A1"] + f3 [label="free to create\n& share" fillcolor="#BBDEFB" color="#2196F3" fontcolor="#0D47A1"] + f4 [label="utopia of\nthe commons" fillcolor="#BBDEFB" color="#2196F3" fontcolor="#0D47A1"] + } + + // Harmony properties + subgraph cluster_harmony { + label="HARMONY" + fontname="Helvetica" + fontsize=14 + fontcolor="#E65100" + style="rounded,filled" + color="#FF9800" + fillcolor="#FFF3E0" + + h1 [label="inputs match\noutputs" fillcolor="#FFE0B2" color="#FF9800" fontcolor="#E65100"] + h2 [label="self-renewing\nsystem" fillcolor="#FFE0B2" color="#FF9800" fontcolor="#E65100"] + h3 [label="low waste\nlow pollution" fillcolor="#FFE0B2" color="#FF9800" fontcolor="#E65100"] + h4 [label="diverse\nconnections" fillcolor="#FFE0B2" color="#FF9800" fontcolor="#E65100"] + } + + // Love properties + subgraph cluster_love { + label="LOVE" + fontname="Helvetica" + fontsize=14 + fontcolor="#880E4F" + style="rounded,filled" + color="#E91E63" + fillcolor="#FCE4EC" + + l1 [label="cooperation\nnot competition" fillcolor="#F8BBD0" color="#E91E63" fontcolor="#880E4F"] + l2 [label="wu wei\neffortless action" fillcolor="#F8BBD0" color="#E91E63" fontcolor="#880E4F"] + l3 [label="natural balance\nhomeostasis" fillcolor="#F8BBD0" color="#E91E63" fontcolor="#880E4F"] + l4 [label="be yourself\nwithout harm" fillcolor="#F8BBD0" color="#E91E63" fontcolor="#880E4F"] + } + + // Connect to center + t1 -> pc [color="#4CAF50"] + t2 -> pc [color="#4CAF50"] + t3 -> pc [color="#4CAF50"] + t4 -> pc [color="#4CAF50"] + + f1 -> pc [color="#2196F3"] + f2 -> pc [color="#2196F3"] + f3 -> pc [color="#2196F3"] + f4 -> pc [color="#2196F3"] + + h1 -> pc [color="#FF9800"] + h2 -> pc [color="#FF9800"] + h3 -> pc [color="#FF9800"] + h4 -> pc [color="#FF9800"] + + l1 -> pc [color="#E91E63"] + l2 -> pc [color="#E91E63"] + l3 -> pc [color="#E91E63"] + l4 -> pc [color="#E91E63"] +} diff --git a/let-us-define-a-permacomputer/img/permacomputer-properties.png b/let-us-define-a-permacomputer/img/permacomputer-properties.png new file mode 100644 index 0000000..8856524 Binary files /dev/null and b/let-us-define-a-permacomputer/img/permacomputer-properties.png differ diff --git a/let-us-define-a-permacomputer/img/permacomputer-properties.svg b/let-us-define-a-permacomputer/img/permacomputer-properties.svg new file mode 100644 index 0000000..e526d9e --- /dev/null +++ b/let-us-define-a-permacomputer/img/permacomputer-properties.svg @@ -0,0 +1,249 @@ + + + + + + +properties + +cluster_truth + +TRUTH + + +cluster_freedom + +FREEDOM + + +cluster_harmony + +HARMONY + + +cluster_love + +LOVE + + + +pc + + +PERMACOMPUTER +always on · durable +easy to repair +by the people +for the people + + + +t1 + +open source + + + +t1->pc + + + + + +t2 + +public domain + + + +t2->pc + + + + + +t3 + +all layers +accessible + + + +t3->pc + + + + + +t4 + +math as +natural right + + + +t4->pc + + + + + +f1 + +voluntary +participation + + + +f1->pc + + + + + +f2 + +freedom FROM +tyranny + + + +f2->pc + + + + + +f3 + +free to create +& share + + + +f3->pc + + + + + +f4 + +utopia of +the commons + + + +f4->pc + + + + + +h1 + +inputs match +outputs + + + +h1->pc + + + + + +h2 + +self-renewing +system + + + +h2->pc + + + + + +h3 + +low waste +low pollution + + + +h3->pc + + + + + +h4 + +diverse +connections + + + +h4->pc + + + + + +l1 + +cooperation +not competition + + + +l1->pc + + + + + +l2 + +wu wei +effortless action + + + +l2->pc + + + + + +l3 + +natural balance +homeostasis + + + +l3->pc + + + + + +l4 + +be yourself +without harm + + + +l4->pc + + + + + diff --git a/let-us-define-a-permacomputer/img/quadrivium.dot b/let-us-define-a-permacomputer/img/quadrivium.dot new file mode 100644 index 0000000..1fc0f42 --- /dev/null +++ b/let-us-define-a-permacomputer/img/quadrivium.dot @@ -0,0 +1,75 @@ +digraph quadrivium { + bgcolor="transparent" + rankdir=TB + pad=0.5 + nodesep=0.8 + ranksep=1.0 + + node [ + fontname="Helvetica" + fontsize=14 + style="filled" + shape=circle + width=1.8 + fixedsize=true + penwidth=2 + ] + + edge [ + penwidth=2 + color="#555555" + arrowsize=0.8 + ] + + // The four values + truth [ + label="TRUTH\n\nopen source\npublic domain" + fillcolor="#4CAF50" + fontcolor="white" + color="#388E3C" + ] + + freedom [ + label="FREEDOM\n\nvoluntary\naction" + fillcolor="#2196F3" + fontcolor="white" + color="#1565C0" + ] + + harmony [ + label="HARMONY\n\nself-renewing\nabundance" + fillcolor="#FF9800" + fontcolor="white" + color="#E65100" + ] + + love [ + label="LOVE\n\nwu wei\ncooperation" + fillcolor="#E91E63" + fontcolor="white" + color="#AD1457" + ] + + // Center node + permacomputer [ + label="PERMA\nCOMPUTER" + shape=doublecircle + fillcolor="#263238" + fontcolor="#CDDC39" + color="#CDDC39" + fontsize=13 + width=1.6 + ] + + // Connections — each value feeds the permacomputer + truth -> permacomputer [label="code as\nseeds" fontsize=10 fontcolor="#388E3C"] + freedom -> permacomputer [label="no force\nno coercion" fontsize=10 fontcolor="#1565C0"] + harmony -> permacomputer [label="inputs match\noutputs" fontsize=10 fontcolor="#E65100"] + love -> permacomputer [label="the fuel\nthat drives" fontsize=10 fontcolor="#AD1457"] + + // Inter-value relationships + truth -> freedom [style=dashed label="transparency\nenables choice" fontsize=9 fontcolor="#555555"] + freedom -> harmony [style=dashed label="voluntary action\ncreates balance" fontsize=9 fontcolor="#555555"] + harmony -> love [style=dashed label="balance nurtures\nconnection" fontsize=9 fontcolor="#555555"] + love -> truth [style=dashed label="love demands\nhonesty" fontsize=9 fontcolor="#555555"] +} diff --git a/let-us-define-a-permacomputer/img/quadrivium.png b/let-us-define-a-permacomputer/img/quadrivium.png new file mode 100644 index 0000000..27a1008 Binary files /dev/null and b/let-us-define-a-permacomputer/img/quadrivium.png differ diff --git a/let-us-define-a-permacomputer/img/quadrivium.svg b/let-us-define-a-permacomputer/img/quadrivium.svg new file mode 100644 index 0000000..5961e8f --- /dev/null +++ b/let-us-define-a-permacomputer/img/quadrivium.svg @@ -0,0 +1,116 @@ + + + + + + +quadrivium + + +truth + +TRUTH +open source +public domain + + + +freedom + +FREEDOM +voluntary +action + + + +truth->freedom + + +transparency +enables choice + + + +permacomputer + + +PERMA +COMPUTER + + + +truth->permacomputer + + +code as +seeds + + + +harmony + +HARMONY +self-renewing +abundance + + + +freedom->harmony + + +voluntary action +creates balance + + + +freedom->permacomputer + + +no force +no coercion + + + +love + +LOVE +wu wei +cooperation + + + +harmony->love + + +balance nurtures +connection + + + +harmony->permacomputer + + +inputs match +outputs + + + +love->truth + + +love demands +honesty + + + +love->permacomputer + + +the fuel +that drives + + + diff --git a/let-us-define-a-permacomputer/img/seeds-and-sprouts.dot b/let-us-define-a-permacomputer/img/seeds-and-sprouts.dot new file mode 100644 index 0000000..586de6c --- /dev/null +++ b/let-us-define-a-permacomputer/img/seeds-and-sprouts.dot @@ -0,0 +1,111 @@ +digraph seeds { + bgcolor="transparent" + rankdir=TB + pad=0.5 + nodesep=0.6 + ranksep=0.8 + + node [ + fontname="Helvetica" + fontsize=12 + style="filled" + penwidth=2 + ] + + edge [ + penwidth=2 + color="#666666" + arrowsize=0.8 + ] + + // Source code as seeds + subgraph cluster_seed { + label="CODE AS SEEDS" + labeljust=l + fontname="Helvetica" + fontsize=13 + fontcolor="#2E7D32" + style="dashed" + color="#81C784" + bgcolor="#E8F5E9" + + source [ + label="open source\ncode" + shape=folder + fillcolor="#C8E6C9" + fontcolor="#1B5E20" + color="#4CAF50" + ] + + public_domain [ + label="public domain\nno license" + shape=note + fillcolor="#C8E6C9" + fontcolor="#1B5E20" + color="#4CAF50" + ] + + reference [ + label="reference\nimplementation" + shape=component + fillcolor="#C8E6C9" + fontcolor="#1B5E20" + color="#4CAF50" + ] + } + + // Sprouting on abandoned technology + subgraph cluster_sprout { + label="SPROUT ON ANY ABANDONED TECHNOLOGY" + labeljust=l + fontname="Helvetica" + fontsize=13 + fontcolor="#E65100" + style="dashed" + color="#FFB74D" + bgcolor="#FFF3E0" + + python [label="Python" shape=box fillcolor="#FFE0B2" color="#FF9800" fontcolor="#E65100"] + go [label="Go" shape=box fillcolor="#FFE0B2" color="#FF9800" fontcolor="#E65100"] + rust [label="Rust" shape=box fillcolor="#FFE0B2" color="#FF9800" fontcolor="#E65100"] + elixir [label="Elixir" shape=box fillcolor="#FFE0B2" color="#FF9800" fontcolor="#E65100"] + js [label="JavaScript" shape=box fillcolor="#FFE0B2" color="#FF9800" fontcolor="#E65100"] + any [label="any\nlanguage" shape=box fillcolor="#FFE0B2" color="#FF9800" fontcolor="#E65100" style="filled,dashed"] + } + + // Distribution + subgraph cluster_distribute { + label="DISTRIBUTE FREELY" + labeljust=l + fontname="Helvetica" + fontsize=13 + fontcolor="#1565C0" + style="dashed" + color="#64B5F6" + bgcolor="#E3F2FD" + + bittorrent [label="BitTorrent\npeer-to-peer" shape=hexagon fillcolor="#BBDEFB" color="#2196F3" fontcolor="#0D47A1"] + cloud [label="cloud\nobject store" shape=cylinder fillcolor="#BBDEFB" color="#2196F3" fontcolor="#0D47A1"] + git [label="git\nrepositories" shape=octagon fillcolor="#BBDEFB" color="#2196F3" fontcolor="#0D47A1"] + } + + // Connections + source -> reference + public_domain -> reference + reference -> python + reference -> go + reference -> rust + reference -> elixir + reference -> js + reference -> any + + python -> bittorrent + go -> bittorrent + rust -> cloud + elixir -> cloud + js -> git + any -> git + + bittorrent -> cloud [style=dashed dir=both label="redundancy" fontsize=10 fontcolor="#666666"] + cloud -> git [style=dashed dir=both label="mirrors" fontsize=10 fontcolor="#666666"] +} diff --git a/let-us-define-a-permacomputer/img/seeds-and-sprouts.png b/let-us-define-a-permacomputer/img/seeds-and-sprouts.png new file mode 100644 index 0000000..3d77ee6 Binary files /dev/null and b/let-us-define-a-permacomputer/img/seeds-and-sprouts.png differ diff --git a/let-us-define-a-permacomputer/img/seeds-and-sprouts.svg b/let-us-define-a-permacomputer/img/seeds-and-sprouts.svg new file mode 100644 index 0000000..f4cba6a --- /dev/null +++ b/let-us-define-a-permacomputer/img/seeds-and-sprouts.svg @@ -0,0 +1,211 @@ + + + + + + +seeds + +cluster_seed + +CODE AS SEEDS + + +cluster_sprout + +SPROUT ON ANY ABANDONED TECHNOLOGY + + +cluster_distribute + +DISTRIBUTE FREELY + + + +source + +open source +code + + + +reference + + + +reference +implementation + + + +source->reference + + + + + +public_domain + + + +public domain +no license + + + +public_domain->reference + + + + + +python + +Python + + + +reference->python + + + + + +go + +Go + + + +reference->go + + + + + +rust + +Rust + + + +reference->rust + + + + + +elixir + +Elixir + + + +reference->elixir + + + + + +js + +JavaScript + + + +reference->js + + + + + +any + +any +language + + + +reference->any + + + + + +bittorrent + +BitTorrent +peer-to-peer + + + +python->bittorrent + + + + + +go->bittorrent + + + + + +cloud + + +cloud +object store + + + +rust->cloud + + + + + +elixir->cloud + + + + + +git + +git +repositories + + + +js->git + + + + + +any->git + + + + + +bittorrent->cloud + + + +redundancy + + + +cloud->git + + + +mirrors + + + diff --git a/let-us-define-a-permacomputer/img/trivium.dot b/let-us-define-a-permacomputer/img/trivium.dot new file mode 100644 index 0000000..d70cd91 --- /dev/null +++ b/let-us-define-a-permacomputer/img/trivium.dot @@ -0,0 +1,60 @@ +digraph trivium { + bgcolor="transparent" + rankdir=LR + pad=0.4 + nodesep=1.0 + + node [ + fontname="Helvetica" + fontsize=14 + style="filled" + shape=box + penwidth=2 + ] + + edge [ + penwidth=3 + fontsize=11 + ] + + // The universal logic + input [ + label="INPUTS\n\n0 · false · off\nraw · seed · question" + fillcolor="#37474F" + fontcolor="white" + color="#263238" + shape=box + width=2.2 + height=1.2 + ] + + process [ + label="PROCESS\n\nlogic · math\ntransformation" + fillcolor="#5C6BC0" + fontcolor="white" + color="#303F9F" + shape=diamond + width=2.4 + height=1.6 + ] + + output [ + label="OUTPUTS\n\n1 · true · on\nproduct · fruit · answer" + fillcolor="#43A047" + fontcolor="white" + color="#2E7D32" + shape=box + width=2.2 + height=1.2 + ] + + input -> process [label=" feed " color="#5C6BC0" fontcolor="#303F9F"] + process -> output [label=" yield " color="#43A047" fontcolor="#2E7D32"] + output -> input [ + label="feedback loop\noutput becomes input" + style=dashed + color="#FF9800" + fontcolor="#E65100" + constraint=false + ] +} diff --git a/let-us-define-a-permacomputer/img/trivium.png b/let-us-define-a-permacomputer/img/trivium.png new file mode 100644 index 0000000..7fab87d Binary files /dev/null and b/let-us-define-a-permacomputer/img/trivium.png differ diff --git a/let-us-define-a-permacomputer/img/trivium.svg b/let-us-define-a-permacomputer/img/trivium.svg new file mode 100644 index 0000000..4041e0e --- /dev/null +++ b/let-us-define-a-permacomputer/img/trivium.svg @@ -0,0 +1,58 @@ + + + + + + +trivium + + +input + +INPUTS +0 · false · off +raw · seed · question + + + +process + +PROCESS +logic · math +transformation + + + +input->process + + +  feed   + + + +output + +OUTPUTS +1 · true · on +product · fruit · answer + + + +process->output + + +  yield   + + + +output->input + + +feedback loop +output becomes input + + + diff --git a/let-us-define-a-permacomputer/index.html b/let-us-define-a-permacomputer/index.html index 783178b..f5c413b 100644 --- a/let-us-define-a-permacomputer/index.html +++ b/let-us-define-a-permacomputer/index.html @@ -69,6 +69,19 @@ The "head" tag holds "meta data" on how various clients should render or display :root { --primary: #43a047; } + .diagram { + margin: 1.5em 0; + text-align: center; + } + .diagram img { + max-width: 100%; + height: auto; + } + .diagram figcaption { + font-size: 0.85em; + color: #888; + margin-top: 0.5em; + } @@ -81,7 +94,7 @@ The "head" tag holds "meta data" on how various clients should render or display

unturf.

grow food not lawn

-
free software
+
free software · eight forms of capital
TRUTH @@ -135,7 +153,14 @@ The universe is logical & always follows a trivium of inputs > process > outputs This logic is of the 0 and 1 or True and False. +

+
+ The Trivium: inputs, process, outputs with feedback loop +
the universal logic: inputs, process, outputs
+
+ +

It is the separation between two, no edge or gradient. In regards to a Permacomputer, for Truth, the source code must be open source & freely distributed. @@ -148,6 +173,11 @@ In this way we may treat our code bases as seeds to sprout on any abandoned tech

+
+ Code as seeds: open source sprouting across languages and distribution networks +
seeds to sprout on any abandoned technology
+
+ FREEDOM @@ -178,6 +208,11 @@ Beings in harmony help others unfold peace within their own tiny universes. Finally Love, Freedom only works when we hold it with Love. Individual Freedoms are a NATURAL RIGHT. Be youself without hurting others. We know that the law of attraction manifests collaboration & cooperation from the smallest parts like our models of the atom, to a single cell, to a human's body, to the mind & the global subconscious. This law is love. Love is not always right but it's the fuel, it's what drives this whole mad universe and it's you and it's me and we are excellent! Can you imagine, your heart beating for you each and everyday, the bacteria in your gut digesting food for your cells to uptake and absorb. Everything in perfect balance and homeostasis! Sure we may fall ill, but our bodies repair even without our focus. In fact it's often better to sleep when feeling sick and turn down the conscious ego altogether and slip into lala land: to the place of archetypes, the shadow, the subconscious, and unconscious. Our bodies rescue us, we do nothing (wu wei) and only need to wait through the uncomfortable now. A new day will rise and after a short time we feel whole again. We have all experienced this. We know this because this is love. Our bodies love us and if we treat others inside this Permacomputer system with love, I don't see why Freedom cannot find a natural balance, especially if love were inherently part of the technological constraints and engineering decisions. You know what true love is, you might have forgotten, but you know it, and I love you.

+
+ Permacomputer properties mapped to the four quadrivium values +
technological properties organized by quadrivium value
+
+ Action Items

So in the comments below, perhaps we talk about existing technologies both centralized and distributed computing stacks. Let's talk about bittorrent. Let's talk about the game changing Cloudflare R2 (AWS S3 compatible object store). Let's talk about the "pirate" peer-to-peer distribution networks of the 1990's and 2000's. Let's talk cryptography. Let's talk crypto currencies. Let's talk about how to build a distributed and permanent computer owned and operated by the people. Let's keep costs down close to zero. Let's talk about IPv4 and IPv6. Let's think inside and outside the box. After a couple of weeks this thread will be moved to the forum and a new thread will be posed to help the group move forward with either more creative thought or creative action. Right now we are searching to understand each of our specialized knowledge as a group.