-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoggle.html
More file actions
93 lines (93 loc) · 2.31 KB
/
toggle.html
File metadata and controls
93 lines (93 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cosmotechnical Canon Stack</title>
<style>
body {
font-family: Georgia, serif;
background-color: #fff;
color: #111;
transition: all 0.3s ease;
}
.dark-mode {
background-color: #111;
color: #eee;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
padding: 12px;
border-bottom: 1px solid #ccc;
}
thead {
background: #000;
color: #fff;
}
.dark-mode thead {
background: #fff;
color: #000;
}
.toggle-btn {
margin: 20px;
padding: 10px 15px;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<button class="toggle-btn" onclick="document.body.classList.toggle('dark-mode')">🌓 Toggle Dark Mode</button>
<table>
<thead>
<tr>
<th>🌐 Layer</th>
<th>💾 Computational Substrate</th>
<th>🧭 Ethical / Metaphysical Frame</th>
<th>⚔️ Core Tension (Fork)</th>
<th>🌱 Primary Question</th>
</tr>
</thead>
<tbody>
<tr>
<td>🌊 Source</td>
<td>LLMs, Heritage</td>
<td>Mythos / Ancestry</td>
<td>Will-to-Power vs. Will-of-God</td>
<td>What have we inherited? And who speaks through us?</td>
</tr>
<tr>
<td>❤️ Data</td>
<td>Commons, Corpora</td>
<td>Collective Memory</td>
<td>Surveillance vs. Stewardship</td>
<td>Whose memory is preserved, and for whom?</td>
</tr>
<tr>
<td>🌀 Agents</td>
<td>LLMs + Goals = Agents</td>
<td>Faustian: God vs. Devil</td>
<td>Sovereignty vs. Submission</td>
<td>Do we make tools or demons?</td>
</tr>
<tr>
<td>🐬 Behavior</td>
<td>Ownership, Output</td>
<td>Moral Action / Legal Accountability</td>
<td>Automation vs. Responsibility</td>
<td>Who owns what an agent does?</td>
</tr>
<tr>
<td>🔁 Interactions</td>
<td>Sustainability, Feedback Loops</td>
<td>Cycle of Life / Consequence</td>
<td>Extraction vs. Regeneration</td>
<td>Can systems evolve without collapse?</td>
</tr>
</tbody>
</table>
</body>
</html>