-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcharacter-development.html
More file actions
780 lines (632 loc) · 39.4 KB
/
character-development.html
File metadata and controls
780 lines (632 loc) · 39.4 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Character Development Model - Harmonic Alignment</title>
<link rel="stylesheet" href="styles.css">
<!-- MathJax for LaTeX math rendering -->
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']],
displayMath: [['$$', '$$'], ['\\[', '\\]']],
processEscapes: true,
processEnvironments: true
},
options: {
skipHtmlTags: ['script', 'noscript', 'style', 'textarea', 'pre']
}
};
</script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js" id="MathJax-script" async></script>
<style>
.model-content {
max-width: 900px;
margin: 0 auto;
line-height: 1.8;
}
.model-content ul {
margin-left: 2rem;
padding-left: 0;
list-style-position: outside;
}
.model-content ul li {
margin-bottom: 0.5rem;
}
.model-content ol {
margin-left: 2rem;
padding-left: 0;
}
.model-content ol li {
margin-bottom: 0.5rem;
}
.model-content h2 {
color: var(--primary);
margin-top: 2rem;
margin-bottom: 1rem;
border-bottom: 2px solid var(--border);
padding-bottom: 0.5rem;
}
.model-content h3 {
color: var(--secondary);
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}
.endpoint-card {
background: var(--bg);
padding: 1.5rem;
margin: 1.5rem 0;
border-radius: 8px;
border-left: 4px solid var(--secondary);
}
.endpoint-card h4 {
color: var(--primary);
margin-bottom: 0.5rem;
}
.endpoint-meta {
font-family: 'Courier New', monospace;
background: white;
padding: 0.75rem;
border-radius: 4px;
margin: 0.5rem 0;
font-size: 0.9rem;
color: var(--text);
}
.practice-box {
background: white;
padding: 1rem;
margin: 0.75rem 0;
border-radius: 4px;
border-left: 3px solid var(--success);
}
.footnote-ref {
color: var(--secondary);
text-decoration: none;
font-size: 0.85em;
vertical-align: super;
}
.footnote-ref:hover {
text-decoration: underline;
}
.footnotes {
margin-top: 3rem;
padding-top: 2rem;
border-top: 2px solid var(--border);
font-size: 0.9rem;
}
.footnote-item {
margin-bottom: 1rem;
padding-left: 1.5rem;
text-indent: -1.5rem;
}
.comparison-table {
width: 100%;
margin: 1.5rem 0;
border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
padding: 0.75rem;
text-align: left;
border-bottom: 1px solid var(--border);
}
.comparison-table th {
background: var(--primary);
color: white;
font-weight: 600;
}
.comparison-table tr:hover {
background: var(--bg);
}
.highlight-box {
background: #fff3cd;
border: 1px solid #ffc107;
padding: 1rem;
border-radius: 4px;
margin: 1rem 0;
}
.highlight-box ul {
margin-left: 2rem;
padding-left: 0;
}
.highlight-box ul li {
margin-bottom: 0.5rem;
}
.code-box {
background: #f8f9fa;
border-left: 3px solid var(--primary);
padding: 1rem;
margin: 1rem 0;
font-family: 'Courier New', monospace;
font-size: 0.9rem;
}
.back-link {
display: inline-block;
margin-bottom: 1rem;
color: var(--secondary);
text-decoration: none;
}
.back-link:hover {
text-decoration: underline;
}
/* Language Toggle */
.language-toggle {
display: flex;
gap: 0;
background: rgba(255, 255, 255, 0.1);
border-radius: 5px;
padding: 2px;
}
.toggle-btn {
background: transparent;
color: white;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
transition: all 0.3s;
border-radius: 4px;
font-size: 0.9rem;
}
.toggle-btn:hover {
background: rgba(255, 255, 255, 0.15);
}
.toggle-btn.active {
background: rgba(255, 255, 255, 0.3);
font-weight: 600;
}
/* Content visibility toggles */
.technical-content {
display: block;
}
.contemplative-content {
display: none;
}
body.contemplative-mode .technical-content {
display: none;
}
body.contemplative-mode .contemplative-content {
display: block;
}
/* Dual content styling */
.content-both {
margin: 1rem 0;
}
/* System Architecture SVG Styles */
.architecture-container {
margin: 2rem 0;
padding: 2rem;
background: var(--bg);
border-radius: 8px;
}
.architecture-svg {
width: 100%;
max-width: 700px;
margin: 0 auto;
display: block;
}
.architecture-svg .node rect,
.architecture-svg .node ellipse,
.architecture-svg .node circle {
transition: all 0.3s ease;
}
.architecture-svg .node:hover rect,
.architecture-svg .node:hover ellipse,
.architecture-svg .node:hover circle {
filter: brightness(1.1);
stroke-width: 3;
}
.architecture-svg .arrow line {
transition: stroke-width 0.2s;
}
.iit-box {
background: #e8f4f8;
border-left: 4px solid var(--secondary);
padding: 1.5rem;
margin: 1.5rem 0;
border-radius: 4px;
}
.iit-box h4 {
color: var(--primary);
margin-top: 0;
margin-bottom: 1rem;
}
.iit-box ul {
margin-left: 2rem;
padding-left: 0;
}
.iit-box li {
margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
.architecture-svg {
font-size: 12px;
}
/* Tighter line spacing for narrow viewports */
.model-content {
line-height: 1.65;
}
/* Reduce card padding so content isn't double-gutter'd
inside .section's mobile padding */
.endpoint-card,
.iit-box {
padding: 1rem;
margin: 1rem 0;
}
.highlight-box {
padding: 0.875rem;
}
.practice-box,
.code-box {
padding: 0.75rem;
}
.architecture-container {
padding: 1rem;
margin: 1rem 0;
}
/* Cap list indentation so deeply-nested lists still fit */
.model-content ul,
.model-content ol,
.highlight-box ul,
.iit-box ul {
margin-left: 1.25rem;
}
/* Make the wide endpoint-selection table scrollable
instead of squashing 5 columns into 360px */
.comparison-table {
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
white-space: nowrap;
font-size: 0.85rem;
}
.comparison-table th,
.comparison-table td {
padding: 0.5rem 0.6rem;
}
/* Defensive: long words / URLs shouldn't blow out the layout */
.code-box,
.endpoint-meta {
overflow-wrap: anywhere;
}
}
</style>
</head>
<body>
<header>
<h1 id="pageTitle">Character Development as Policy Optimization</h1>
<p id="pageSubtitle">A computational model for virtue development</p>
<nav style="display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;">
<a href="index.html" style="color: white; text-decoration: none;">← Back to Main Site</a>
<div class="language-toggle">
<button id="toggleTechnical" class="toggle-btn active">Technical</button>
<button id="toggleContemplative" class="toggle-btn">Contemplative</button>
</div>
</nav>
</header>
<main>
<div class="section active">
<div class="model-content">
<p class="back-link"><a href="index.html">← Back to Harmonic Alignment Project</a></p>
<div class="highlight-box" style="background: #fff3cd; border-color: #ffc107;">
<strong>⚠️ Draft Document:</strong> This is a working draft. References have not been fully verified for accuracy and may contain errors. Use as conceptual framework, not authoritative source. Contributions and corrections welcome via <a href="https://github.com/justinshenk/harmonic-alignment">GitHub</a>.
</div>
<h2>Core Framework</h2>
<div class="technical-content">
<p><strong>Character</strong> = Policy (behavioral tendencies shaped by virtues)<br>
<strong>Virtue</strong> = Learned parameters that bias action selection<br>
<strong>Growth</strong> = Policy improvement through experience</p>
<p>This model synthesizes reinforcement learning (RL) concepts with contemplative practice traditions, treating character development as a learnable optimization problem.<a href="#fn1" class="footnote-ref">[1]</a></p>
<p><strong>Key Reinforcement Learning Mappings:</strong></p>
<ul>
<li><strong>Value function</strong> - How you evaluate states/situations based on virtue weights</li>
<li><strong>Policy gradient</strong> - Evening reflection updates your behavioral tendencies</li>
<li><strong>Temporal difference (TD) error</strong> - Gratitude recalibrates undervalued present moments</li>
<li><strong>Exploration/exploitation</strong> - Balancing familiar virtuous patterns vs. trying virtue in new contexts</li>
<li><strong>Reward</strong> - Gratitude endpoints calibrate what you implicitly value</li>
</ul>
</div>
<div class="contemplative-content">
<p><strong>Character</strong> = The patterns of choice you've cultivated through practice<br>
<strong>Virtue</strong> = Inner qualities that guide your actions (generosity, humility, equanimity)<br>
<strong>Growth</strong> = The gradual refinement of your character through lived experience</p>
<p>This path integrates ancient contemplative wisdom with modern understanding of how humans learn and change. Character development is a practice you engage in daily, with structured moments for reflection and recalibration.</p>
<div class="practice-box">
<strong>Core Insight:</strong> Character isn't fixed—it's shaped by repeated choices. By creating intentional pause points throughout your day (waking, eating, encountering beauty), you train yourself to notice, appreciate, and choose wisely. Each moment of gratitude is a chance to realign with your deepest values.
</div>
</div>
<div class="technical-content">
<div class="highlight-box" style="background: #e8f4f8; border-color: #3498db;">
<h4 style="margin-top: 0; color: var(--primary);">Credit Assignment</h4>
<p>Machine learning is "the science of credit assignment: finding patterns in observations that predict the consequences of actions."<a href="#fn40" class="footnote-ref">[40]</a> Spirituality and gratitude practices work the same way—tracing outcomes back to their causes. In RL, credit assignment determines which actions led to rewards. In gratitude, you trace: this meal ← farmer ← sun ← physics. This breath ← lungs ← ancestors ← evolution. By repeatedly practicing causal tracing, you recalibrate what you value and update your model of interdependence.</p>
</div>
</div>
<h2>System Architecture</h2>
<div class="architecture-container">
<svg class="architecture-svg" viewBox="0 0 600 800" xmlns="http://www.w3.org/2000/svg">
<!-- Define arrow marker -->
<defs>
<marker id="arrowhead" markerWidth="10" markerHeight="10" refX="9" refY="3" orient="auto">
<polygon points="0 0, 10 3, 0 6" fill="#3498db" />
</marker>
</defs>
<!-- Character Layer -->
<g class="node">
<rect x="50" y="30" width="500" height="80" rx="8" fill="#5d6d7e" stroke="#34495e" stroke-width="2"/>
<text x="300" y="62" text-anchor="middle" fill="#ffffff" font-size="18" font-weight="bold">CHARACTER (Policy)</text>
<text x="300" y="88" text-anchor="middle" fill="#ffffff" font-size="14">Stable behavioral patterns</text>
</g>
<!-- Arrow 1 -->
<g class="arrow">
<line x1="300" y1="110" x2="300" y2="150" stroke="#3498db" stroke-width="3" marker-end="url(#arrowhead)"/>
<text x="310" y="135" fill="#3498db" font-size="13" font-weight="600">gradient descent</text>
</g>
<!-- Virtues Layer -->
<g class="node">
<rect x="50" y="150" width="500" height="80" rx="8" fill="#16a085" stroke="#1abc9c" stroke-width="2"/>
<text x="300" y="182" text-anchor="middle" fill="white" font-size="18" font-weight="bold">VIRTUES (Parameters)</text>
<text x="300" y="208" text-anchor="middle" fill="white" font-size="14">Generosity, humility, equanimity, courage...</text>
</g>
<!-- Arrow 2 -->
<g class="arrow">
<line x1="300" y1="230" x2="300" y2="270" stroke="#3498db" stroke-width="3" marker-end="url(#arrowhead)"/>
<text x="310" y="255" fill="#3498db" font-size="13" font-weight="600">bias selection</text>
</g>
<!-- Value Function Layer -->
<g class="node">
<rect x="50" y="270" width="500" height="80" rx="8" fill="#2980b9" stroke="#3498db" stroke-width="2"/>
<text x="300" y="302" text-anchor="middle" fill="white" font-size="18" font-weight="bold">VALUE FUNCTION</text>
<text x="300" y="328" text-anchor="middle" fill="white" font-size="14">How you evaluate situations</text>
</g>
<!-- Arrow 3 -->
<g class="arrow">
<line x1="300" y1="350" x2="300" y2="390" stroke="#3498db" stroke-width="3" marker-end="url(#arrowhead)"/>
<text x="310" y="375" fill="#3498db" font-size="13" font-weight="600">guides attention</text>
</g>
<!-- Attention Layer -->
<g class="node">
<rect x="50" y="390" width="500" height="80" rx="8" fill="#8e44ad" stroke="#9b59b6" stroke-width="2"/>
<text x="300" y="422" text-anchor="middle" fill="white" font-size="18" font-weight="bold">ATTENTION PATTERNS</text>
<text x="300" y="448" text-anchor="middle" fill="white" font-size="14">What you notice, what you miss</text>
</g>
<!-- Arrow 4 -->
<g class="arrow">
<line x1="300" y1="470" x2="300" y2="510" stroke="#3498db" stroke-width="3" marker-end="url(#arrowhead)"/>
<text x="310" y="495" fill="#3498db" font-size="13" font-weight="600">shapes actions</text>
</g>
<!-- Actions Layer -->
<g class="node">
<rect x="50" y="510" width="500" height="80" rx="8" fill="#e67e22" stroke="#f39c12" stroke-width="2"/>
<text x="300" y="542" text-anchor="middle" fill="white" font-size="18" font-weight="bold">ACTIONS (Behavior)</text>
<text x="300" y="568" text-anchor="middle" fill="white" font-size="14">Moment-to-moment choices</text>
</g>
<!-- Arrow 5 -->
<g class="arrow">
<line x1="300" y1="590" x2="300" y2="640" stroke="#3498db" stroke-width="3" marker-end="url(#arrowhead)"/>
<text x="310" y="620" fill="#3498db" font-size="13" font-weight="600">generate</text>
</g>
<!-- Gratitude Endpoints Layer -->
<g class="node">
<ellipse cx="300" cy="700" rx="250" ry="55" fill="#27ae60" stroke="#2ecc71" stroke-width="2"/>
<text x="300" y="692" text-anchor="middle" fill="white" font-size="18" font-weight="bold">GRATITUDE ENDPOINTS</text>
<text x="300" y="713" text-anchor="middle" fill="white" font-size="13" opacity="0.9">Wake | Eat | Drink | Novel | Sleep | Loving Kindness...</text>
</g>
<!-- Feedback arrow (from endpoints back to virtues) -->
<path d="M 50 700 Q 15 430 50 190" stroke="#e74c3c" stroke-width="3" fill="none" marker-end="url(#arrowhead)" stroke-dasharray="5,5"/>
<text x="20" y="440" fill="#e74c3c" font-size="12" font-weight="bold">feedback</text>
</svg>
</div>
<h3>Why This Works</h3>
<p>Gratitude endpoints leverage habit formation<a href="#fn2" class="footnote-ref">[2]</a>, attention training<a href="#fn3" class="footnote-ref">[3]</a>, and metacognitive awareness<a href="#fn5" class="footnote-ref">[5]</a> to build automatic patterns that strengthen character development.</p>
<h2>Core Gratitude Endpoints</h2>
<div class="endpoint-card">
<h4>1. Wake Transition</h4>
<div class="endpoint-meta">
Frequency: 1x/day | Growth leverage: High
</div>
<div class="practice-box">
Before checking devices, name three functional capacities (breath, movement, cognition). Acknowledge these aren't guaranteed.
</div>
</div>
<div class="endpoint-card">
<h4>2. Eating</h4>
<div class="endpoint-meta">
Frequency: 3-5x/day | Growth leverage: Medium
</div>
<div class="practice-box">
Pause before first bite. Mentally trace: sun → photosynthesis → farmer → transport → preparation. Feel interdependence.
</div>
</div>
<div class="endpoint-card">
<h4>3. Drinking</h4>
<div class="endpoint-meta">
Frequency: 10+x/day | Growth leverage: Low-Medium
</div>
<div class="practice-box">
Micro-pause at water contact. Acknowledge infrastructure (pipes, watersheds, workers). Feel embodied dependence.
</div>
</div>
<div class="endpoint-card">
<h4>4. New Experiences</h4>
<div class="endpoint-meta">
Frequency: Variable | Growth leverage: High
</div>
<div class="practice-box">
When encountering something unexpected, pause: "What made this moment possible?" Trace causal preconditions.
</div>
</div>
<div class="endpoint-card">
<h4>5. Sleep Transition</h4>
<div class="endpoint-meta">
Frequency: 1x/day | Growth leverage: Very High
</div>
<div class="practice-box">
Before unconsciousness, review: (1) Where did I act from virtue? (2) Where did I miss alignment? (3) What did others teach me? Release self-judgment.
</div>
</div>
<h2>Extended Endpoints</h2>
<div class="highlight-box">
<strong>Note:</strong> Don't attempt all endpoints at once. Start with core 5, then add 2-3 extended endpoints based on your specific growth needs after 3-6 months of practice.
</div>
<p><strong>Extended Endpoints:</strong> Threshold Crossings, Bathroom Use, Seeing Beauty, Hearing Suffering, Receiving Correction, Weekly Reset, Difficult Conversations, Witnessing Death, Receiving Gifts, Teaching Moments, Acts of Loving Kindness. See table below for details.</p>
<h2>Implementation Protocol</h2>
<h3>Weeks 1-4: Core Foundation</h3>
<div class="code-box">
Morning (30 sec): Name 3 functional capacities<br>
Meals (10 sec): Trace one causal link<br>
Evening (3 min): Virtue alignment review<br>
<br>
Track: Consistency, mood trends
</div>
<h3>Weeks 5-12: Add High-Frequency Endpoints</h3>
<div class="code-box">
+ Drinking pauses (5 sec)<br>
+ Threshold crossings (2 sec)<br>
<br>
Track: Automaticity, context-bleed reduction
</div>
<h3>Months 4-6: Strategic Extensions</h3>
<div class="code-box">
+ Weekly reset (30 min on weekends)<br>
+ 2-3 personalized endpoints based on growth edge<br>
<br>
Track: Virtue consistency scores, strategic alignment
</div>
<h3>Endpoint Selection Table</h3>
<table class="comparison-table">
<thead>
<tr>
<th>Endpoint</th>
<th>Frequency</th>
<th>Cognitive Load</th>
<th>Growth Leverage</th>
<th>Best For</th>
</tr>
</thead>
<tbody>
<tr><td>Wake</td><td>1x/day</td><td>Low</td><td>High</td><td>Everyone (core)</td></tr>
<tr><td>Eating</td><td>3-5x/day</td><td>Low</td><td>Medium</td><td>Everyone (core)</td></tr>
<tr><td>Drinking</td><td>10+x/day</td><td>Very Low</td><td>Low-Med</td><td>Building automaticity</td></tr>
<tr><td>New Experience</td><td>Variable</td><td>Medium</td><td>High</td><td>Everyone (core)</td></tr>
<tr><td>Sleep</td><td>1x/day</td><td>Medium</td><td>Very High</td><td>Everyone (core)</td></tr>
<tr><td>Threshold</td><td>10+x/day</td><td>Very Low</td><td>Medium</td><td>Context-bleed issues</td></tr>
<tr><td>Bathroom</td><td>5-8x/day</td><td>Very Low</td><td>Low</td><td>Entitlement patterns</td></tr>
<tr><td>Beauty</td><td>Variable</td><td>Low</td><td>High</td><td>Meaning deficits</td></tr>
<tr><td>Suffering</td><td>Variable</td><td>High</td><td>Very High</td><td>Empathy calibration</td></tr>
<tr><td>Correction</td><td>Rare</td><td>Very High</td><td>Extreme</td><td>Defensiveness</td></tr>
<tr><td>Weekly Reset</td><td>1x/week</td><td>High</td><td>Very High</td><td>Strategic misalignment</td></tr>
<tr><td>Conflict</td><td>Rare</td><td>Very High</td><td>Extreme</td><td>Stress testing virtue</td></tr>
<tr><td>Mortality</td><td>Rare</td><td>Very High</td><td>Extreme</td><td>Priority clarification</td></tr>
<tr><td>Gifts</td><td>Variable</td><td>Medium</td><td>High</td><td>Privilege blindness</td></tr>
<tr><td>Teaching</td><td>Variable</td><td>Medium</td><td>High</td><td>Knowledge work</td></tr>
<tr><td>Loving Kindness</td><td>Variable</td><td>Low</td><td>High</td><td>Compassion cultivation</td></tr>
</tbody>
</table>
<h2>Measurement</h2>
<p>Track consistency (% endpoints completed), depth (causal tracing), spontaneity (gratitude outside endpoints), and emotional baseline. Expect gradual improvements in relational awareness, emotional regulation, and virtue consistency over 3-12 months.</p>
<h2>Key Principles</h2>
<div class="highlight-box">
<ul style="margin: 0;">
<li><strong>Start minimal:</strong> Core 5 endpoints only for first 3 months</li>
<li><strong>Build automaticity:</strong> High-frequency, low-load practices first</li>
<li><strong>Personalize strategically:</strong> Add extensions based on specific weaknesses</li>
<li><strong>Measure outcomes:</strong> Data-driven adjustment, not obligation</li>
<li><strong>Practice self-compassion:</strong> Errors are training data, not identity</li>
<li><strong>Treat as experiment:</strong> Test, iterate, optimize</li>
</ul>
</div>
<h2>References</h2>
<div class="highlight-box" style="background: #fff3cd; border-color: #ffc107; margin-bottom: 1.5rem;">
<strong>Note:</strong> These references are provided as indicative of relevant research areas but have not been verified for complete accuracy. Some citations may be incomplete, incorrectly attributed, or misrepresent the original findings. Please verify independently before citing in academic work.
</div>
<div class="footnotes">
<div class="footnote-item" id="fn1">[1] Sutton, R. S., & Barto, A. G. (2018). <em>Reinforcement learning: An introduction</em> (2nd ed.). MIT Press.</div>
<div class="footnote-item" id="fn2">[2] Gollwitzer, P. M., & Sheeran, P. (2006). Implementation intentions and goal achievement: A meta-analysis of effects and processes. <em>Advances in Experimental Social Psychology, 38</em>, 69-119.</div>
<div class="footnote-item" id="fn3">[3] Brewer, J. A., et al. (2011). Meditation experience is associated with differences in default mode network activity and connectivity. <em>Proceedings of the National Academy of Sciences, 108</em>(50), 20254-20259.</div>
<div class="footnote-item" id="fn4">[4] Emmons, R. A., & McCullough, M. E. (2003). Counting blessings versus burdens: An experimental investigation of gratitude and subjective well-being in daily life. <em>Journal of Personality and Social Psychology, 84</em>(2), 377-389.</div>
<div class="footnote-item" id="fn5">[5] Teasdale, J. D., et al. (2002). Metacognitive awareness and prevention of relapse in depression: Empirical evidence. <em>Journal of Consulting and Clinical Psychology, 70</em>(2), 275-287.</div>
<div class="footnote-item" id="fn6">[6] Roediger, H. L., & Karpicke, J. D. (2006). Test-enhanced learning: Taking memory tests improves long-term retention. <em>Psychological Science, 17</em>(3), 249-255.</div>
<div class="footnote-item" id="fn7">[7] Wood, W., Quinn, J. M., & Kashy, D. A. (2002). Habits in everyday life: Thought, emotion, and action. <em>Journal of Personality and Social Psychology, 83</em>(6), 1281-1297.</div>
<div class="footnote-item" id="fn8">[8] Kahneman, D., & Tversky, A. (1979). Prospect theory: An analysis of decision under risk. <em>Econometrica, 47</em>(2), 263-291.</div>
<div class="footnote-item" id="fn9">[9] Robinson, E., et al. (2013). Eating attentively: A systematic review and meta-analysis of the effect of food intake memory and awareness on eating. <em>American Journal of Clinical Nutrition, 97</em>(4), 728-742.</div>
<div class="footnote-item" id="fn10">[10] Batson, C. D., et al. (1997). Empathy and attitudes: Can feeling for a member of a stigmatized group improve feelings toward the group? <em>Journal of Personality and Social Psychology, 72</em>(1), 105-118.</div>
<div class="footnote-item" id="fn11">[11] Lally, P., et al. (2010). How are habits formed: Modelling habit formation in the real world. <em>European Journal of Social Psychology, 40</em>(6), 998-1009.</div>
<div class="footnote-item" id="fn12">[12] Frederick, S., & Loewenstein, G. (1999). Hedonic adaptation. In D. Kahneman, E. Diener, & N. Schwarz (Eds.), <em>Well-being: The foundations of hedonic psychology</em> (pp. 302-329). Russell Sage Foundation.</div>
<div class="footnote-item" id="fn13">[13] Kashdan, T. B., & Silvia, P. J. (2009). Curiosity and interest: The benefits of thriving on novelty and challenge. In S. J. Lopez & C. R. Snyder (Eds.), <em>Oxford handbook of positive psychology</em> (2nd ed., pp. 367-374). Oxford University Press.</div>
<div class="footnote-item" id="fn14">[14] Dweck, C. S. (2006). <em>Mindset: The new psychology of success</em>. Random House.</div>
<div class="footnote-item" id="fn15">[15] Walker, M. P., & van der Helm, E. (2009). Overnight therapy? The role of sleep in emotional brain processing. <em>Psychological Bulletin, 135</em>(5), 731-748.</div>
<div class="footnote-item" id="fn16">[16] Neff, K. D., & Germer, C. K. (2013). A pilot study and randomized controlled trial of the mindful self-compassion program. <em>Journal of Clinical Psychology, 69</em>(1), 28-44.</div>
<div class="footnote-item" id="fn17">[17] Stickgold, R. (2005). Sleep-dependent memory consolidation. <em>Nature, 437</em>(7063), 1272-1278.</div>
<div class="footnote-item" id="fn18">[18] Monsell, S. (2003). Task switching. <em>Trends in Cognitive Sciences, 7</em>(3), 134-140.</div>
<div class="footnote-item" id="fn19">[19] Bayer, U. C., Achtziger, A., Gollwitzer, P. M., & Moskowitz, G. B. (2009). Responding to subliminal cues: Do if-then plans facilitate action preparation and initiation without conscious intent? <em>Social Cognition, 27</em>(2), 183-201.</div>
<div class="footnote-item" id="fn20">[20] Mehling, W. E., et al. (2012). Body awareness: A phenomenological inquiry into the common ground of mind-body therapies. <em>Philosophy, Ethics, and Humanities in Medicine, 7</em>(1), 6.</div>
<div class="footnote-item" id="fn21">[21] Gilbert, P. (2009). Introducing compassion-focused therapy. <em>Advances in Psychiatric Treatment, 15</em>(3), 199-208.</div>
<div class="footnote-item" id="fn22">[22] Diessner, R., Solom, R. D., Frost, N. K., Parsons, L., & Davidson, J. (2008). Engagement with beauty: Appreciating natural, artistic, and moral beauty. <em>The Journal of Psychology, 142</em>(3), 303-329.</div>
<div class="footnote-item" id="fn23">[23] Bryant, F. B., & Veroff, J. (2007). <em>Savoring: A new model of positive experience</em>. Psychology Press.</div>
<div class="footnote-item" id="fn24">[24] Klimecki, O. M., Leiberg, S., Ricard, M., & Singer, T. (2014). Differential pattern of functional brain plasticity after compassion and empathy training. <em>Social Cognitive and Affective Neuroscience, 9</em>(6), 873-879.</div>
<div class="footnote-item" id="fn25">[25] Figley, C. R. (2002). Compassion fatigue: Psychotherapists' chronic lack of self care. <em>Journal of Clinical Psychology, 58</em>(11), 1433-1441.</div>
<div class="footnote-item" id="fn26">[26] Dweck, C. S. (2008). Mindset: The new psychology of success. <em>Random House Digital, Inc.</em></div>
<div class="footnote-item" id="fn27">[27] Kluger, A. N., & DeNisi, A. (1996). The effects of feedback interventions on performance: A historical review, a meta-analysis, and a preliminary feedback intervention theory. <em>Psychological Bulletin, 119</em>(2), 254-284.</div>
<div class="footnote-item" id="fn28">[28] Sonnentag, S., & Fritz, C. (2007). The Recovery Experience Questionnaire: Development and validation of a measure for assessing recuperation and unwinding from work. <em>Journal of Occupational Health Psychology, 12</em>(3), 204-221.</div>
<div class="footnote-item" id="fn29">[29] Schraw, G., Crippen, K. J., & Hartley, K. (2006). Promoting self-regulation in science education: Metacognition as part of a broader perspective on learning. <em>Research in Science Education, 36</em>(1), 111-139.</div>
<div class="footnote-item" id="fn30">[30] Vallacher, R. R., & Wegner, D. M. (1987). What do people think they're doing? Action identification and human behavior. <em>Psychological Review, 94</em>(1), 3-15.</div>
<div class="footnote-item" id="fn31">[31] Gross, J. J., & John, O. P. (2003). Individual differences in two emotion regulation processes: Implications for affect, relationships, and well-being. <em>Journal of Personality and Social Psychology, 85</em>(2), 348-362.</div>
<div class="footnote-item" id="fn32">[32] Muraven, M., & Baumeister, R. F. (2000). Self-regulation and depletion of limited resources: Does self-control resemble a muscle? <em>Psychological Bulletin, 126</em>(2), 247-259.</div>
<div class="footnote-item" id="fn33">[33] Baumeister, R. F., Stillwell, A. M., & Heatherton, T. F. (1994). Guilt: An interpersonal approach. <em>Psychological Bulletin, 115</em>(2), 243-267.</div>
<div class="footnote-item" id="fn34">[34] Vail, K. E., et al. (2012). A terror management analysis of the psychological functions of religion. <em>Personality and Social Psychology Review, 16</em>(4), 318-348.</div>
<div class="footnote-item" id="fn35">[35] Pyszczynski, T., Solomon, S., & Greenberg, J. (2015). Thirty years of terror management theory: From genesis to revelation. <em>Advances in Experimental Social Psychology, 52</em>, 1-70.</div>
<div class="footnote-item" id="fn36">[36] Powell, A. A., Branscombe, N. R., & Schmitt, M. T. (2005). Inequality as ingroup privilege or outgroup disadvantage: The impact of group focus on collective guilt and interracial attitudes. <em>Personality and Social Psychology Bulletin, 31</em>(4), 508-521.</div>
<div class="footnote-item" id="fn37">[37] Piff, P. K., et al. (2015). Awe, the small self, and prosocial behavior. <em>Journal of Personality and Social Psychology, 108</em>(6), 883-899.</div>
<div class="footnote-item" id="fn38">[38] Karpicke, J. D., & Blunt, J. R. (2011). Retrieval practice produces more learning than elaborative studying with concept mapping. <em>Science, 331</em>(6018), 772-775.</div>
<div class="footnote-item" id="fn39">[39] Kruger, J., & Dunning, D. (1999). Unskilled and unaware of it: How difficulties in recognizing one's own incompetence lead to inflated self-assessments. <em>Journal of Personality and Social Psychology, 77</em>(6), 1121-1134.</div>
<div class="footnote-item" id="fn40">[40] Schmidhuber, J. (2022). Annotated history of modern AI and deep learning. <em>arXiv preprint arXiv:2212.11279</em>.</div>
</div>
<p style="margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--border);">
<a href="index.html" class="back-link">← Back to Harmonic Alignment Project</a>
</p>
</div>
</div>
</main>
<footer>
<p>Harmonic Alignment Project | MIT License | <a href="https://github.com/justinshenk/harmonic-alignment">GitHub</a></p>
</footer>
<script>
// Language toggle functionality
const toggleTechnical = document.getElementById('toggleTechnical');
const toggleContemplative = document.getElementById('toggleContemplative');
const pageTitle = document.getElementById('pageTitle');
const pageSubtitle = document.getElementById('pageSubtitle');
const titles = {
technical: {
title: 'Character Development as Policy Optimization',
subtitle: 'A computational model for virtue development'
},
contemplative: {
title: 'Character Development as Spiritual Practice',
subtitle: 'A contemplative path for virtue cultivation'
}
};
toggleTechnical.addEventListener('click', () => {
document.body.classList.remove('contemplative-mode');
toggleTechnical.classList.add('active');
toggleContemplative.classList.remove('active');
pageTitle.textContent = titles.technical.title;
pageSubtitle.textContent = titles.technical.subtitle;
localStorage.setItem('languageMode', 'technical');
});
toggleContemplative.addEventListener('click', () => {
document.body.classList.add('contemplative-mode');
toggleContemplative.classList.add('active');
toggleTechnical.classList.remove('active');
pageTitle.textContent = titles.contemplative.title;
pageSubtitle.textContent = titles.contemplative.subtitle;
localStorage.setItem('languageMode', 'contemplative');
});
// Restore saved preference
const savedMode = localStorage.getItem('languageMode');
if (savedMode === 'contemplative') {
toggleContemplative.click();
}
</script>
</body>
</html>