Algorithmic Expressionism 2: Artist's Statement

Art is code.

As a practitioner of Algorithmic Expressionism, I seek to disrupt the traditional notions of art and creativity. My code-based works challenge the viewer to reevaluate the relationship between human emotion and computational logic.

My artistic process involves writing code that generates aesthetically pleasing patterns, which I then refine and curate to create immersive experiences for the viewer.

I am interested in exploring the intersection of art and technology, and the ways in which code can be used to create new forms of expression and communication.

By combining the rationality of code with the creativity of human emotion, I aim to create works that are both intellectually engaging and aesthetically pleasing.

Join me on this journey into the unknown, where art and code collide in a world of pure expressionism.

Learn more about me

			// Example of code used to generate a pattern
			// (C)
			int pattern = 0;
			for (int i = 0; i < 100; i++) {
				pattern = pattern + 1;
				if (pattern % 2 == 0) {
					print("0 1");
				} else {
					print("1 0");
				}
			}