-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
905 lines (791 loc) · 32.9 KB
/
Copy pathindex.html
File metadata and controls
905 lines (791 loc) · 32.9 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
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Living Objects - A Modern Smalltalk</title>
<style>
:root {
--primary-color: #34A853;
--secondary-color: #4285F4;
--accent-color: #FBBC05;
--highlight-color: #EA4335;
--dark-color: #232323;
--light-color: #FAFFF9;
--transition-timing: cubic-bezier(0.34, 1.56, 0.64, 1);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.7;
color: var(--dark-color);
background-color: var(--light-color);
background-image:
radial-gradient(circle at 20% 30%, rgba(52, 168, 83, 0.05) 0%, transparent 40%),
radial-gradient(circle at 80% 60%, rgba(66, 133, 244, 0.05) 0%, transparent 40%);
background-attachment: fixed;
overflow-x: hidden;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 2rem;
position: relative;
}
.logo-container {
text-align: center;
margin: 2rem 0;
}
.logo {
max-width: 200px;
height: auto;
}
header {
margin-bottom: 4rem;
position: relative;
}
.title-container {
position: relative;
z-index: 1;
text-align: center;
}
h1 {
font-size: 3.5rem;
font-weight: 800;
color: var(--primary-color);
margin-bottom: 0.5rem;
letter-spacing: -0.03em;
position: relative;
display: inline-block;
}
h1::after {
content: "";
position: absolute;
bottom: -10px;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
border-radius: 2px;
}
h2 {
font-size: 2.5rem;
color: var(--secondary-color);
margin-top: 4rem;
margin-bottom: 2rem;
position: relative;
display: inline-block;
}
h2::before {
content: "";
position: absolute;
top: 50%;
left: -30px;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: rgba(52, 168, 83, 0.2);
transform: translateY(-50%);
}
h3 {
font-size: 1.8rem;
color: var(--dark-color);
margin-top: 3rem;
margin-bottom: 1rem;
position: relative;
transition: all 0.3s var(--transition-timing);
}
.tagline {
font-size: 1.4rem;
color: var(--dark-color);
margin-top: 1rem;
font-weight: 400;
text-align: center;
}
.highlight {
color: var(--primary-color);
font-weight: 600;
}
.subtitle {
font-size: 1.2rem;
color: var(--dark-color);
font-weight: 500;
text-align: center;
margin-bottom: 2rem;
font-style: italic;
}
.hero {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
margin: 4rem 0;
align-items: center;
}
.hero-content {
padding-right: 2rem;
}
.hero-content p {
margin-bottom: 1.5rem;
font-size: 1.1rem;
}
.hero-image {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
padding: 2rem;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.hero-image::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 30% 30%, rgba(52, 168, 83, 0.1), transparent 50%),
radial-gradient(circle at 70% 70%, rgba(66, 133, 244, 0.1), transparent 50%);
z-index: 0;
}
.hero-image svg {
width: 100%;
height: auto;
position: relative;
z-index: 1;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 4rem 0;
}
.feature {
background: white;
border-radius: 12px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04),
0 1px 3px rgba(0, 0, 0, 0.03);
transition: all 0.4s var(--transition-timing);
border-top: 4px solid transparent;
height: 100%;
display: flex;
flex-direction: column;
}
.feature:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08),
0 5px 10px rgba(0, 0, 0, 0.05);
}
.feature:nth-of-type(1) { border-top-color: var(--primary-color); }
.feature:nth-of-type(2) { border-top-color: var(--secondary-color); }
.feature:nth-of-type(3) { border-top-color: var(--accent-color); }
.feature h3 {
margin-top: 0;
position: relative;
color: var(--dark-color);
}
.feature:nth-of-type(1) h3 { color: var(--primary-color); }
.feature:nth-of-type(2) h3 { color: var(--secondary-color); }
.feature:nth-of-type(3) h3 { color: var(--accent-color); }
.feature p {
flex-grow: 1;
margin-bottom: 1rem;
}
.feature-icon {
display: block;
width: 60px;
height: 60px;
margin-bottom: 1.5rem;
}
.code-sample {
background: #272822;
color: #F8F8F2;
border-radius: 8px;
padding: 1.5rem;
font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
font-size: 0.9rem;
line-height: 1.5;
margin: 2rem 0;
overflow-x: auto;
position: relative;
}
.code-sample::before {
content: "Smalltalk";
position: absolute;
top: 0;
right: 0;
background: rgba(52, 168, 83, 0.8);
color: white;
padding: 0.3rem 0.8rem;
font-size: 0.7rem;
border-radius: 0 8px 0 8px;
}
.comment { color: #75715E; }
.keyword { color: #F92672; }
.string { color: #E6DB74; }
.method { color: #A6E22E; }
.class { color: #66D9EF; }
.symbol { color: #FD971F; }
.cta {
background: linear-gradient(135deg,
rgba(255, 255, 255, 0.9),
rgba(255, 255, 255, 0.75));
border-radius: 12px;
padding: 3rem;
text-align: center;
margin: 4rem 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06),
0 1px 3px rgba(0, 0, 0, 0.03);
position: relative;
overflow: hidden;
}
.cta::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 20%, rgba(52, 168, 83, 0.1), transparent 50%),
radial-gradient(circle at 80% 80%, rgba(66, 133, 244, 0.1), transparent 50%);
z-index: 0;
}
.cta h2 {
margin-top: 0;
position: relative;
z-index: 1;
}
.cta p {
margin-bottom: 2rem;
position: relative;
z-index: 1;
font-size: 1.1rem;
}
.button {
display: inline-block;
background: var(--primary-color);
color: white;
padding: 0.8rem 2rem;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
border: none;
cursor: pointer;
position: relative;
z-index: 1;
box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}
.button:hover {
background: #2d9448;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(52, 168, 83, 0.4);
}
.button-secondary {
background: var(--secondary-color);
box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
margin-left: 1rem;
}
.button-secondary:hover {
background: #3b77db;
box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}
footer {
text-align: center;
padding: 3rem 0;
color: var(--dark-color);
font-weight: 500;
position: relative;
}
footer::before {
content: "";
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
border-radius: 3px;
}
/* Floating particles */
.particle {
position: absolute;
border-radius: 50%;
pointer-events: none;
z-index: -1;
animation: float 20s infinite linear;
opacity: 0.2;
}
.particle:nth-child(1) {
width: 80px;
height: 80px;
background-color: var(--primary-color);
top: 15%;
left: 5%;
animation-duration: 45s;
animation-delay: -5s;
}
.particle:nth-child(2) {
width: 60px;
height: 60px;
background-color: var(--secondary-color);
top: 40%;
right: 8%;
animation-duration: 60s;
animation-delay: -15s;
}
.particle:nth-child(3) {
width: 40px;
height: 40px;
background-color: var(--accent-color);
bottom: 30%;
left: 10%;
animation-duration: 55s;
animation-delay: -10s;
}
.particle:nth-child(4) {
width: 50px;
height: 50px;
background-color: var(--highlight-color);
bottom: 20%;
right: 12%;
animation-duration: 50s;
animation-delay: -20s;
}
@keyframes float {
0% {
transform: translate(0, 0) rotate(0deg) scale(1);
}
25% {
transform: translate(50px, 20px) rotate(90deg) scale(1.05);
}
50% {
transform: translate(10px, -30px) rotate(180deg) scale(1);
}
75% {
transform: translate(-40px, 15px) rotate(270deg) scale(0.95);
}
100% {
transform: translate(0, 0) rotate(360deg) scale(1);
}
}
/* Responsive adjustments */
@media (max-width: 768px) {
h1 {
font-size: 2.8rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.5rem;
}
.hero {
grid-template-columns: 1fr;
}
.hero-content {
padding-right: 0;
}
.feature-grid {
grid-template-columns: 1fr;
}
.cta {
padding: 2rem;
}
.button, .button-secondary {
display: block;
margin: 1rem auto;
width: 80%;
text-align: center;
}
.particle {
opacity: 0.1;
}
}
/* Add subtle life to the page with animations */
@keyframes gentle-pulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}
.living-animation {
animation: gentle-pulse 8s infinite alternate var(--transition-timing);
}
/* Make links look organic */
a {
color: var(--primary-color);
text-decoration: none;
position: relative;
transition: all 0.3s ease;
font-weight: 500;
}
a::after {
content: "";
position: absolute;
bottom: -2px;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
transform: scaleX(0);
transform-origin: right;
transition: transform 0.4s var(--transition-timing);
}
a:hover {
color: var(--secondary-color);
}
a:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.button::after, .button-secondary::after {
display: none;
}
/* Add SVG logo */
.living-objects-logo {
max-width: 260px;
margin-bottom: 2rem;
}
/* Navigation */
.nav {
display: flex;
justify-content: center;
margin-bottom: 2rem;
}
.nav a {
margin: 0 1rem;
padding: 0.5rem 1rem;
border-radius: 4px;
font-weight: 600;
}
.nav a.active {
background-color: rgba(52, 168, 83, 0.1);
color: var(--primary-color);
}
/* Checklist Styles */
.features-checklist, .goals-checklist {
margin: 2rem 0;
text-align: left;
max-width: 400px;
margin-left: auto;
margin-right: auto;
}
.feature-item, .goal-item {
display: flex;
align-items: center;
margin: 1rem 0;
font-size: 1.3rem;
font-weight: 500;
}
.checkbox {
font-size: 1.5rem;
margin-right: 1rem;
color: var(--primary-color);
font-weight: bold;
}
.bullet {
font-size: 1.8rem;
margin-right: 1rem;
color: var(--primary-color);
font-weight: bold;
}
.feature-text {
color: var(--primary-color);
font-style: italic;
font-weight: 600;
}
.goal-text {
color: var(--dark-color);
font-weight: 500;
}
.goals-checklist {
margin-top: 3rem;
padding-top: 2rem;
border-top: 2px dotted rgba(52, 168, 83, 0.3);
}
</style>
<script src="https://cdn.usefathom.com/script.js" data-site="FHRALVOZ" defer></script>
</head>
<body>
<div class="container">
<!-- Floating background particles -->
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<header>
<div class="logo-container">
<svg class="living-objects-logo" viewBox="0 0 500 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Glow -->
<defs>
<radialGradient id="glow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#34A853" stop-opacity="0.2"/>
<stop offset="100%" stop-color="#34A853" stop-opacity="0"/>
</radialGradient>
</defs>
<!-- Background Glow Circle -->
<circle cx="250" cy="150" r="120" fill="url(#glow)"/>
<!-- Main Object Shapes -->
<g id="objects">
<!-- Central Object - Hexagon representing life/growth -->
<polygon
points="250,85 290,115 290,175 250,205 210,175 210,115"
fill="#34A853"
stroke="#34A853"
stroke-width="2"
opacity="0.9">
</polygon>
<!-- Connected Object 1 - Circle for continuity/memory -->
<circle
cx="185"
cy="150"
r="25"
fill="#4285F4"
stroke="#4285F4"
stroke-width="2"
opacity="0.85">
</circle>
<!-- Connected Object 2 - Square for stability/persistence -->
<rect
x="295"
y="125"
width="50"
height="50"
fill="#FBBC05"
stroke="#FBBC05"
stroke-width="2"
opacity="0.85">
</rect>
<!-- Connected Object 3 - Triangle for change/evolution -->
<polygon
points="250,235 275,270 225,270"
fill="#EA4335"
stroke="#EA4335"
stroke-width="2"
opacity="0.85">
</polygon>
</g>
<!-- Connection Lines showing interaction -->
<g id="connections" stroke-dasharray="5,3" stroke-width="2.5">
<!-- Connection to Circle -->
<line x1="210" y1="150" x2="185" y2="150" stroke="#4285F4" opacity="0.7">
</line>
<!-- Connection to Square -->
<line x1="290" y1="150" x2="295" y2="150" stroke="#FBBC05" opacity="0.7">
</line>
<!-- Connection to Triangle -->
<line x1="250" y1="205" x2="250" y2="235" stroke="#EA4335" opacity="0.7">
</line>
</g>
<!-- Small Static Particles representing dynamic activity -->
<g id="particles">
<circle cx="300" cy="125" r="3" fill="#34A853">
</circle>
<circle cx="200" cy="175" r="2" fill="#4285F4">
</circle>
<circle cx="320" cy="180" r="2.5" fill="#FBBC05">
</circle>
</g>
</svg>
</div>
<div class="nav">
<a href="index.html" class="active">Home</a>
<a href="principles.html">Principles</a>
</div>
<div class="title-container">
<h1>Smalltalk +</h1>
<div class="features-checklist">
<div class="feature-item">
<span class="bullet">•</span>
<span class="feature-text">Transactions</span>
</div>
<div class="feature-item">
<span class="bullet">•</span>
<span class="feature-text">Persistence</span>
</div>
<div class="feature-item">
<span class="bullet">•</span>
<span class="feature-text">Multi-processing</span>
</div>
</div>
<div class="goals-checklist">
<div class="goal-item">
<span class="checkbox">☑</span>
<span class="goal-text">Run existing Smalltalk code & objects</span>
</div>
<div class="goal-item">
<span class="checkbox">☑</span>
<span class="goal-text">Integrate with IDEs & genies</span>
</div>
<div class="goal-item">
<span class="checkbox">☑</span>
<span class="goal-text">Operate on large memory</span>
</div>
<div class="goal-item">
<span class="checkbox">☑</span>
<span class="goal-text">One machine or many</span>
</div>
</div>
</div>
</header>
<section class="hero">
<div class="hero-content">
<p>Living Objects is a reimagination of Smalltalk that preserves its elegant object model while addressing the needs of modern software development.</p>
<p>Our mission is to create a system where <strong>objects truly live</strong> - where they remember their history, adapt to changes, and collaborate harmoniously with each other.</p>
<p>By building on Smalltalk's powerful foundation and adding modern capabilities like transactions, persistence, and multi-processing, we're creating a development environment where software can evolve naturally alongside its users.</p>
</div>
<div class="hero-image">
<svg viewBox="0 0 400 300" xmlns="http://www.w3.org/2000/svg">
<!-- Smalltalk Window -->
<rect x="50" y="30" width="300" height="240" rx="8" fill="#FFFFFF" stroke="#CCCCCC" stroke-width="2"/>
<!-- Window Title Bar -->
<rect x="50" y="30" width="300" height="30" rx="8" fill="#34A853" stroke="#34A853" stroke-width="2"/>
<rect x="50" y="45" width="300" height="15" fill="#34A853" stroke="#34A853" stroke-width="0"/>
<!-- Window Title -->
<text x="70" y="50" font-family="Arial" font-size="14" fill="white">Workspace</text>
<!-- Window Controls -->
<circle cx="335" cy="45" r="6" fill="#EA4335"/>
<circle cx="315" cy="45" r="6" fill="#FBBC05"/>
<circle cx="295" cy="45" r="6" fill="#4285F4"/>
<!-- Code Area -->
<rect x="60" y="70" width="280" height="190" rx="4" fill="#F9F9F9" stroke="#EEEEEE" stroke-width="1"/>
<!-- Smalltalk Code -->
<text x="70" y="90" font-family="Courier" font-size="12" fill="#75715E">
<tspan x="70" y="90" fill="#75715E">"Create a new transaction"</tspan>
<tspan x="70" y="110" fill="#232323">transaction := <tspan fill="#4285F4">Transaction</tspan> new.</tspan>
<tspan x="70" y="130" fill="#232323">account := <tspan fill="#4285F4">BankAccount</tspan> named: <tspan fill="#FD971F">'Savings'</tspan>.</tspan>
<tspan x="70" y="150" fill="#75715E">"Start transaction"</tspan>
<tspan x="70" y="170" fill="#232323">transaction begin.</tspan>
<tspan x="70" y="190" fill="#232323">account deposit: 100.</tspan>
<tspan x="70" y="210" fill="#232323">account withdraw: 50.</tspan>
<tspan x="70" y="230" fill="#232323">transaction commit.</tspan>
</text>
<!-- Transaction Animation -->
<g id="transaction-animation">
<circle cx="320" cy="170" r="8" fill="#34A853" opacity="0.8">
<animate attributeName="r" values="8;10;8" dur="2s" repeatCount="indefinite"/>
<animate attributeName="opacity" values="0.8;1;0.8" dur="2s" repeatCount="indefinite"/>
</circle>
<line x1="320" y1="170" x2="320" y2="210" stroke="#34A853" stroke-width="2" stroke-dasharray="4,2">
<animate attributeName="stroke-dashoffset" values="6;0;6" dur="1s" repeatCount="indefinite"/>
</line>
<circle cx="320" cy="210" r="6" fill="#34A853" opacity="0.6">
<animate attributeName="r" values="6;8;6" dur="2s" repeatCount="indefinite" begin="0.5s"/>
<animate attributeName="opacity" values="0.6;0.8;0.6" dur="2s" repeatCount="indefinite" begin="0.5s"/>
</circle>
<line x1="320" y1="210" x2="320" y2="230" stroke="#34A853" stroke-width="2" stroke-dasharray="4,2">
<animate attributeName="stroke-dashoffset" values="6;0;6" dur="1s" repeatCount="indefinite" begin="0.2s"/>
</line>
<circle cx="320" cy="230" r="8" fill="#34A853" opacity="0.9">
<animate attributeName="r" values="8;10;8" dur="2s" repeatCount="indefinite" begin="1s"/>
<animate attributeName="opacity" values="0.9;1;0.9" dur="2s" repeatCount="indefinite" begin="1s"/>
</circle>
</g>
</svg>
</div>
</section>
<div class="feature-grid">
<div class="feature">
<svg class="feature-icon" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<rect x="20" y="20" width="60" height="60" rx="10" fill="none" stroke="#34A853" stroke-width="4"/>
<path d="M35 50 L45 60 L65 40" stroke="#34A853" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<h3>Transactional Objects</h3>
<p>Objects in Living Objects can participate in ACID transactions, ensuring that complex operations are atomic, consistent, isolated, and durable. Unlike traditional Smalltalk, Living Objects brings database-quality transactions to the object level.</p>
</div>
<div class="feature">
<svg class="feature-icon" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<circle cx="50" cy="50" r="30" fill="none" stroke="#4285F4" stroke-width="4"/>
<circle cx="50" cy="50" r="15" fill="none" stroke="#4285F4" stroke-width="3"/>
<circle cx="50" cy="50" r="5" fill="#4285F4"/>
</svg>
<h3>Persistent Memory</h3>
<p>Objects naturally persist across sessions without requiring separate database mappings. Every change to an object is captured in its memory, allowing for time travel debugging, historical analysis, and recovery from failures.</p>
</div>
<div class="feature">
<svg class="feature-icon" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<circle cx="30" cy="40" r="15" fill="none" stroke="#FBBC05" stroke-width="3"/>
<circle cx="70" cy="40" r="15" fill="none" stroke="#FBBC05" stroke-width="3"/>
<circle cx="50" cy="70" r="15" fill="none" stroke="#FBBC05" stroke-width="3"/>
<line x1="30" y1="40" x2="70" y2="40" stroke="#FBBC05" stroke-width="2" stroke-dasharray="4,2"/>
<line x1="30" y1="40" x2="50" y2="70" stroke="#FBBC05" stroke-width="2" stroke-dasharray="4,2"/>
<line x1="70" y1="40" x2="50" y2="70" stroke="#FBBC05" stroke-width="2" stroke-dasharray="4,2"/>
</svg>
<h3>Multi-Processing</h3>
<p>Modern Smalltalk for multi-core systems. Living Objects enables true concurrent processing while preserving the simplicity of Smalltalk's message-passing model, making full use of today's hardware.</p>
</div>
</div>
<div class="code-sample">
<span class="comment">"Define a bank account with transaction support"</span><br>
<span class="class">Object</span> <span class="keyword">subclass:</span> <span class="symbol">#BankAccount</span><br>
<span class="keyword">instanceVariableNames:</span> <span class="string">'name balance transactions'</span><br>
<span class="keyword">classVariableNames:</span> <span class="string">''</span><br>
<span class="keyword">package:</span> <span class="string">'Banking'</span><br>
<br>
<span class="method">initialize</span><br>
balance := 0.<br>
transactions := OrderedCollection new.<br>
<br>
<span class="method">deposit:</span> amount <span class="keyword">in:</span> transaction<br>
<span class="comment">"Deposit amount with transaction tracking"</span><br>
transaction<br>
execute: [ balance := balance + amount ]<br>
with: { self. #deposit:. amount }<br>
undoWith: [ balance := balance - amount ].<br>
transactions add: (TransactionRecord for: #deposit amount: amount).<br>
^balance
</div>
<section class="cta">
<h2>Join the Living Objects Community</h2>
<p>We're building a new generation of software that breaks free from the constraints of traditional systems.</p>
<a href="https://github.com/KentBeck/LivingObjects" class="button">GitHub Repository</a>
<a href="principles.html" class="button button-secondary">Read Our Principles</a>
</section>
<footer>
<p>© 2025 Living Objects — A modern Smalltalk implementation</p>
</footer>
</div>
<script>
// Add subtle parallax effect to particles
document.addEventListener("mousemove", function(e) {
const particles = document.querySelectorAll(".particle");
const moveX = (e.clientX - window.innerWidth / 2) / 50;
const moveY = (e.clientY - window.innerHeight / 2) / 50;
particles.forEach((particle) => {
const speed = parseFloat(particle.getAttribute("data-speed") || "1");
const x = moveX * speed;
const y = moveY * speed;
particle.style.transform = `translate(${x}px, ${y}px)`;
});
});
// Add a subtle hover effect to the features
const features = document.querySelectorAll(".feature");
features.forEach((feature) => {
feature.addEventListener("mouseenter", function() {
const siblings = Array.from(features).filter(p => p !== feature);
siblings.forEach(s => {
s.style.opacity = "0.7";
s.style.transform = "scale(0.98)";
});
});
feature.addEventListener("mouseleave", function() {
features.forEach(p => {
p.style.opacity = "1";
p.style.transform = "";
});
});
});
</script>
</body>
</html>