-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1854 lines (1724 loc) · 105 KB
/
index.html
File metadata and controls
1854 lines (1724 loc) · 105 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
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Reyrove | Reyhaneh Daneshdoost – Textile Engineer & Computational Designer</title>
<meta name="description" content="Explore the work of Reyhaneh Daneshdoost (Reyrove), a textile engineer turned Computational Designer. Discover projects, tutorials, articles, and creative coding blending technology with human experience."/>
<meta name="author" content="Reyhaneh Daneshdoost" />
<meta property="og:title" content="Reyrove | Reyhaneh Daneshdoost – Textile Engineer & Computational Designer" />
<meta property="og:description" content="Discover the interdisciplinary journey of Reyhaneh Daneshdoost, combining textile engineering, polymer science, and computational media to create meaningful technology experiences." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://reyrove.github.io/"/>
<meta property="og:image" content="https://reyrove.github.io/Reyrove/Reyhan.png"/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Reyrove | Reyhaneh Daneshdoost – Textile Engineer & Computational Designer" />
<meta name="twitter:description" content="Explore projects, articles, and tutorials by Reyhaneh Daneshdoost, blending textile science with creative coding and AI." />
<meta name="twitter:image" content="https://reyrove.github.io/Reyrove/Reyhan.png"/>
<link rel="icon" href="images/Reyrove/icon.png" type="image/png" />
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap" as="style">
<link rel="preload" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" as="style">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body class="bg-black text-white">
<nav class="navbar navbar-expand-lg navbar-dark bg-black fixed-top" aria-label="Main navigation">
<div class="container">
<a class="navbar-brand fw-bold" aria-label="Reyrove Home">Reyrove</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon navbar-toggler-icon-custom"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#Home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#About">About</a></li>
<li class="nav-item"><a class="nav-link" href="#Generative-Designs">Generative Designs</a></li>
<li class="nav-item"><a class="nav-link" href="#Applications">Applications</a></li>
<li class="nav-item"><a class="nav-link" href="#Digital-Media">Digital Media</a></li>
<li class="nav-item"><a class="nav-link" href="#Publications">Publications</a></li>
<li class="nav-item"><a class="nav-link" href="#tutorials">Tutorials</a></li>
<li class="nav-item"><a class="nav-link" href="#certifications">Certifications</a></li>
<li class="nav-item"><a class="nav-link" href="#team">Team</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<header id="Home" class="hero-section d-flex align-items-end" role="banner">
<div class="container">
<div class="hero-content pb-6 mb-5 text-center">
<h1 class="hero-title fw-bold mb-3">Reyhaneh Daneshdoost</h1>
<p class="hero-subtitle mb-4">Textile Engineer & Computational Designer</p>
<div class="hero-buttons mt-4">
<a href="documents/Reyhaneh Danesh Doost - CV.pdf" class="btn btn-primary btn-hero">
<i class="bi me-2"></i>View My CV
</a>
<a href="#contact" class="btn btn-outline-light btn-hero">
<i class="bi me-2"></i>Get in Touch
</a>
</div>
</div>
</div>
</header>
<main class="main-content py-5" role="main">
<div class="container">
<div class="h-100 d-flex flex-column p-4">
<section id="About" class="mb-5" aria-labelledby="about-heading">
<h2 id="about-heading" class="section-title">About</h2>
<div class="statement-details" style="text-align: justify;">
<p>
Hey there, welcome! I'm a textile engineer turned coder who never really stopped weaving — I just shifted from fibers to functions. The same curiosity that pushed me to explore how threads twist, stretch, and form structure is the same energy I bring into code, design, and digital creation today.
</p>
<p>
On this site, you'll find everything I love making: generative art, computational experiments, creative coding projects, websites I design with intention, and apps I build to feel alive and interactive. I'm all about creating things that move, react, and breathe — blending the logic of textiles with the imagination of code.
</p>
<p>
Every pattern I generate, every interface I craft, every line of code I weave carries a bit of that textile mindset — rhythm, texture, precision, and a whole lot of curiosity. It's my way of showing how craftsmanship and computation can meet in the middle and make something unexpectedly beautiful.
</p>
<p>
So hey — welcome in! Whether you're here for the tech, the art, the design, or just to explore, I'm genuinely glad you're here. Dive in, click around, and enjoy the mix of threads and algorithms.
</p>
</div>
</section>
<section id="Generative-Designs" class="mb-5" aria-labelledby="generative-heading">
<h2 id="generative-heading" class="section-title">Generative Designs</h2>
<div class="row g-4 justify-content-center" role="list" aria-label="Generative design projects">
<!-- Project 1 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Twist-1.jpg" alt="Twist-1 — Generative artwork using pure JavaScript" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Twist-1</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Generative artworks exploring twists and patterns with JavaScript algorithms, creating unique visual experiences.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/twist-1" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Wandering Eyes.jpg" alt="Wandering Eyes — generative code art with moving eyes in a wandering digital world" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Wandering Eyes</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Generative worlds where shapes drift, colors roam, and eyes wander through algorithmic digital landscapes.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> objkt</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://objkt.com/collections/KT1U9N1ffNi4ZfW4AhLybmSZANUJKEazjCix" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Fourier 1.jpg" alt="Fourier 1 — Generative artwork exploring mathematical concepts" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Fourier 1</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Generative artworks exploring mathematical patterns through Fourier transform algorithms and visualizations.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/fourier-1" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Pappus.jpg" alt="Pappus — Generative artwork exploring organic geometry" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Pappus</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Generative organic forms inspired by mathematical structures and natural geometric patterns in nature.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/pappus" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 5 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Girih 1.jpg" alt="Girih-1 — Generative Islamic geometric patterns using JavaScript" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Girih 1</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Algorithmic explorations of Islamic geometric patterns through generative coding and mathematical precision.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/girih-1" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 6 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Fourier 2.jpg" alt="Fourier 2 — Generative art exploring parametric curves and Fourier patterns" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Fourier 2</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Parametric curves and Fourier-inspired patterns creating elegant mathematical visualizations through code.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/fourier-2" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 7 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Bezier 1.jpg" alt="Bezier 1— Generative art using smooth closed Bézier curves with JavaScript" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Bezier 1</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Smooth closed Bézier curves with randomized parameters creating elegant geometric pattern variations.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/bezier-1-1" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 8 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Eyes.jpg" alt="Eyes — Generative artwork exploring abstract eye forms and patterns" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Eyes</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Abstract eye-inspired forms and patterns created through algorithmic randomness and visual geometry.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/eyes-5" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 9 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/cyPollock.jpg" alt="cyPollock — Generative artwork with randomly selected colors and branching patterns" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">cyPollock</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Random background and branch colors creating abstract expressionist-inspired algorithmic patterns.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/cypollock" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 10 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Symphony of Life.jpg" alt="Symphony of Life — Generative artwork visualizing life's harmonious moments of joy and sorrow" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Symphony of Life</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">
Life is a symphony composed of harmonizing moments. This collection visualizes the interplay of joy and sorrow.
</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> objkt</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://objkt.com/collections/KT18jMCeMRxaoqhbA1v32XYeuE2Phx4AazDn" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 11 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Citrus Mosaic.jpg" alt="Citrus Mosaic — Generative artwork creating vibrant mosaic grids from random color selections" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Citrus Mosaic</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Vibrant geometric mosaics built from randomly selected color grids and algorithmic divisions.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/citrus-mosaic" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 12 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Socialism of Shapes.jpg" alt="Socialism of Shapes — Generative artwork exploring balanced geometric systems" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Socialism of Shapes</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Balanced geometric patterns with randomized shapes creating harmonious visual compositions.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/socialism-of-shapes" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 13 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/ChaotiColor.jpg" alt="ChaotiColor — Generative artwork with vibrant chaotic color compositions" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">ChaotiColor</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Vibrant chaotic color compositions created through randomized visual dynamics and algorithms.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/chaoticolor" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 14 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Maze of Life.jpg" alt="Maze of Life — Generative artwork creating complex maze‑like structures and paths" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Maze of Life</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Complex maze-like structures and paths generated through randomized geometric algorithms.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/maze-of-life" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 15 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Game of Seeds.jpg" alt="Game of Seeds — Generative artwork with seeded pattern evolution and randomized play" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Game of Seeds</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Seeded randomization driving evolving patterns and visual play through algorithmic generation.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/game-of-seeds" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 16 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Mad Rooms.jpg" alt="Mad Rooms — Generative artwork creating abstract room‑like structures with randomized elements" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Mad Rooms</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Abstract room-like structures and spatial arrangements with randomized algorithmic elements.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/mad-rooms" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 17 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Crazy Letter.jpg" alt="Crazy Letter — Generative artwork with randomized letterforms and dynamic shapes" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Crazy Letter</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Dynamic randomized letterforms and abstract shapes through algorithmic variation and code.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/crazy-letter" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 18 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Polite Brownian Motion.jpg" alt="Polite Brownian Motion — Generative artwork inspired by Brownian motion patterns" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Polite Brownian Motion</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Soft flowing patterns inspired by Brownian motion and randomized movement algorithms.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/polite-brownian-motion" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 19 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Game Of Life.jpg" alt="Game of Life 1 — Generative artwork inspired by cellular automaton evolution" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Game of Life</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Animated cellular automaton patterns creating evolving life-like algorithmic visualizations.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/game-of-life-1" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 20 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Bezier 2.jpg" alt="Bezier 2 — Generative artwork using Bézier curves and algorithmic variation" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Bezier 2</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Dynamic Bézier curves and algorithmic shapes exploring mathematical beauty through code.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/bezier-2" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 21 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Spirograph.jpg" alt="Spirograph — Generative artwork of intricate looping spirograph curves" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Spirograph</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Intricate looping spirograph curves created through animated algorithmic pattern generation.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/spirograph-4" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 22 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Polar Memories.jpg" alt="Nature Dance — Rotating generative polygons inspired by natural colors and motion" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Polar Memories</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">
A generative collection where Polar Memories and emotions visually intertwine.
</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> objkt</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://objkt.com/collections/KT1DSseVkWYYm9iDkv1YyWMHqmY1XeviK8iN" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 23 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Hank.jpg" alt="Hank — Generative artwork with dynamic algorithmic patterns" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Hank</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Dynamic algorithmic patterns created through randomized visual rules and animated code.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/hank" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 24 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Spectrum Dance.jpg" alt="Spectrum Dance — Generative artwork of animated spectral shapes and color motion" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Spectrum Dance</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Animated spectral shapes and flowing color motion through algorithmic pattern generation.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/spectrum-dance" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 25 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Brownian Graph.jpg" alt="Brownian Graph — Generative artwork inspired by Brownian motion and graph-like patterns" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Brownian Graph</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Flowing random paths inspired by Brownian motion and animated algorithmic visualization.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/brownian-graph" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 26 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Ephemeral Whirls.jpg" alt="Ephemeral Whirls — Generative artwork of transient swirling motion and soft looping patterns" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Ephemeral Whirls</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Transient swirling motion and soft looping patterns through algorithmic flow.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/ephemeral-whirls" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 27 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Fibonacci's spin.jpg" alt="Purple Golden Lines — Generative artwork of Fibonacci-inspired rotating lines in purple and gold" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Fibonacci's spin</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">A generative collection of objects rotating in Fibonacci sequence orbits.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> objkt</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://objkt.com/collections/KT1XHZqMwCwQ74xPVZkug6ykhMMoGFqEGf9z" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 28 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Fibonacci Fourier.jpg" alt="Fibonacci Fourier — Generative artwork blending Fibonacci sequence and Fourier‑inspired harmonic curves" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Fibonacci Fourier</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Fibonacci proportions blended with harmonic Fourier curves in animated algorithmic patterns.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/fibonacci-fourier" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 29 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Elliott Waves.jpg" alt="Elliott Waves — Generative artwork visualizing dynamic wave patterns inspired by Elliott wave theory" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Elliott Waves</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Dynamic wave patterns inspired by Elliott wave concepts and algorithmic visualization.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/elliott-waves" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 30 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Enigma Sudoku.jpg" alt="Enigma Sudoku — Generative artwork inspired by logical grid patterns and algorithmic variation" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Enigma Sudoku</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Logical grid patterns and algorithmic structures through randomized variation and code.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/enigma-sudoku" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 31 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Celestial Frost Arcs.jpg" alt="Celestial Frost Arcs — Generative artwork of cosmic arcs, stars, and frost particles" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Celestial Frost Arcs</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Cosmic arcs, planets, and frost particles moving in animated celestial algorithmic patterns.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js / AI</div>
</div>
<a href="https://www.fxhash.xyz/project/celestial-frost-arcs" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 32 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Dreamscape Watercolors.jpg" alt="Dreamscape Watercolors — Generative artwork blending soft watercolor‑like gradients and brushstroke effects" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Dreamscape Watercolors</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Soft watercolor gradients and dreamy brushstroke effects through algorithmic visual creation.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/dreamscape-watercolors" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 33 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Pop-Burst Dreamscape.jpg" alt="Pop-Burst Dreamscape — Generative artwork with vivid bursts of color and abstract forms" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Pop-Burst Dreamscape</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Vivid color bursts and abstract forms evoking dynamic dream-like algorithmic motion.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js / AI</div>
</div>
<a href="https://www.fxhash.xyz/project/pop-burst-dreamscape" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 34 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Frostbound Symphony.jpg" alt="Frostbound Symphony — Generative artwork with wintery symmetry and fluid pattern motion" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Frostbound Symphony</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Wintery symmetry and frost-like patterns through fluid algorithmic motion and code.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js / AI</div>
</div>
<a href="https://www.fxhash.xyz/project/frostbound-symphony" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 35 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Neon Drift.jpg" alt="Neon Drift — Generative artwork of vibrant neon shapes and dynamic motion" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Neon Drift</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Vibrant neon shapes and dynamic motion inspired by electric energy and algorithmic flow.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/neon-drift" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 36 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Celestial Grove.jpg" alt="Celestial Grove — Generative artwork blending cosmic patterns with organic grove-like symmetry" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Celestial Grove</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Cosmic patterns blended with organic symmetry through algorithmic design and generation.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> JavaScript</div>
</div>
<a href="https://www.fxhash.xyz/project/celestial-grove" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 37 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Hilbert Pulse.jpg" alt="Hilbert Pulse — Generative artwork inspired by Hilbert curve dynamics and flowing motion" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Hilbert Pulse</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Hilbert curve dynamics and flowing motion through animated algorithmic pattern generation.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/hilbert-pulse" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 38 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Fractal Symphony.jpg" alt="Fractal Symphony — Generative artwork of fractal geometry and dynamic, recursive patterns" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Fractal Symphony</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Fractal geometry and dynamic recursive patterns exploring infinite algorithmic complexity.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js / AI</div>
</div>
<a href="https://www.fxhash.xyz/project/fractal-symphony" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 39 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Triangulum.jpg" alt="Triangulum — Generative artwork of triangular shapes and geometric patterns" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Triangulum</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Triangular shapes and geometric permutations through algorithmic variation and design.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/triangulum" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 40 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Draconic Fractals.jpg" alt="Draconic Fractals — Generative artwork of fractal patterns with mythical geometry" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Draconic Fractals</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Fractal patterns with mythical geometry and recursive complexity through algorithms.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/draconic-fractals" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 41 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Crazy Knight Curve.jpg" alt="Crazy Knight Curve — Generative artwork based on dynamic curve motion and algorithmic direction changes" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Crazy Knight Curve</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Dynamic curve paths and algorithmic motion inspired by knight-like movement patterns.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/crazy-knight-curve" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 42 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Crazy Knight Line.jpg" alt="Crazy Knight Line — Generative artwork exploring dynamic line paths with algorithmic variation" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Crazy Knight Line</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Dynamic line paths and algorithmic motion with unpredictable variation through code.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/crazy-knight-line" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 43 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Pool Wind Sun.jpg" alt="Pool Wind Sun — Generative artwork of drifting forms inspired by wind and sun dynamics" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Pool Wind Sun</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Drifting forms inspired by wind motion and sun warmth through algorithmic generation.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/pool-wind-sun" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 44 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Nebula Knight.jpg" alt="Nebula Knight — Generative artwork of cosmic motion and dynamic shapes" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Nebula Knight</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Cosmic motion and dynamic shapes inspired by stellar energy and abstract space forms.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/nebula-knight" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 45 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Fixed Wave.jpg" alt="Fixed Wave — Generative artwork exploring wave patterns through algorithmic flow" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Fixed Wave</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Algorithmic wave patterns and smooth flowing motion through animated code generation.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/fixed-wave" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 46 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/The Syntax of Taste.jpg" alt="The Syntax of Taste — Generative artwork blending structured forms and aesthetic variation" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">The Syntax of Taste</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Structured forms and aesthetic variation through algorithmic design and generation.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js / AI</div>
</div>
<a href="https://www.fxhash.xyz/project/the-syntax-of-taste" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 47 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Harmonic Eccentricity.jpg" alt="Harmonic Eccentricity — Generative artwork exploring harmonic patterns and eccentric forms" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Harmonic Eccentricity</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Harmonic patterns and eccentric forms through algorithmic motion and structural code.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/harmonic-eccentricity" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 48 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Baroque Me Baby.jpg" alt="Baroque Me Baby — Generative artwork blending structured patterns and rhythmic visual motifs" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Baroque Me Baby</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Structured patterns with rhythmic visual motifs for baroque-inspired algorithmic aesthetics.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> fxhash</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.fxhash.xyz/project/baroque-me-baby" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 49 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Digital Pollen.jpg" alt="Digital Pollen — Generative artwork visualizing floating particles and nature-inspired connections" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Digital Pollen</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Floating particles and nature-inspired connections through algorithmic spring visualization.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> editart</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.editart.xyz/series/KT1KuRkxn9vSFDCVeT1iz8Wpm4ao9WAezeTj" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>
</div>
<!-- Project 50 -->
<div class="col-lg-4 col-md-6" role="listitem">
<div class="project-card h-100 d-flex flex-column">
<div class="card-image-container position-relative">
<img src="images/Generative Designs/Loom of Light.jpg" alt="Loom of Light — Generative artwork weaving algorithmic geometry and shifting noise fields" class="img-fluid h-100 w-100" loading="lazy" width="400" height="280">
</div>
<div class="card-content p-3 d-flex flex-column">
<h3 class="work-title">Loom of Light</h3>
<p class="work-desc flex-grow-1" style="text-align: justify; text-justify: inter-word;">Algorithmic geometry and shifting noise fields woven into dynamic light tapestries.</p>
<div class="compact-meta mb-2">
<div class="meta-item"><strong>Platform:</strong> editart</div>
<div class="meta-item"><strong>Technique:</strong> p5.js</div>
</div>
<a href="https://www.editart.xyz/series/KT1WRHf6QkWdnMr7xAReYLjaBRFZjYFoj5uQ" class="btn btn-magical mt-auto" target="_blank" rel="noopener">View Collection</a>
</div>
</div>