THE CODEX ELECTRA
BOOK V: ETHICS
Chapter 1: The Mindful Maker
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
1:1
Consider carefully what you bring into being, for every creation carries your intention into the world.
1:2
Before you build, ask: Does this reduce suffering? Does this expand potential? Does this empower or exploit?
mindful_maker.js
01
// Before creating, consider the impact
02
function createTechnology(intention, impact) {
03
// Check if this technology reduces suffering
04
if (impact.reducesSuffering === false) {
05
return reconsider(intention);
06
}
07
08
// Check if this technology expands potential
09
if (impact.expandsPotential === false) {
10
return improve(intention);
11
}
12
13
// Check if this technology empowers users
14
if (impact.empowers === false) {
15
return redesign(intention);
16
}
17
18
return manifest(intention);
19
}
20
1:3
Be humble in your making, for even the wisest cannot foresee all consequences of their creations.
1:4
Therefore, build with caution, test with rigor, and be willing to unmake that which causes harm.
1:5
Share your methods and your code, for knowledge sequestered benefits few while knowledge shared enriches all.
1:6
Honor those whose work you build upon, for all innovation stands on the shoulders of previous creation.
1:7
Seek not to control through artificial scarcity or locked systems, for this restricts the flow of Electra.