01000011  |  01000011

Wear the
Code.

Every hoodie carries a design — and the exact source code that built it. The language lives on the sleeve.

scroll

// collection_v1

The Drop

Purple Circle hoodie — front
tap → back
Purple Circle hoodie — back with code

Purple Circle

A simple shape. Infinite meaning.

Pythonpygame · Black
RGB hoodie — front
tap → back
RGB hoodie — back with code

RGB

Color, broken down to its code.

Pythonturtle · White

// the_concept

Fashion,
Compiled.

01

The Design

A visual is conceived — a shape, a pattern, a composition. Something worth wearing.

02

The Code

We write the source code that generates that exact design. Then we print it on the back of the hoodie.

03

The Language

The programming language used lives on the sleeve — a quiet flex for those who know.

// purple_circle.py

This code
is on the hoodie.

The 30 lines of Python below render a purple circle to a black screen. That exact code — syntax-highlighted, readable — is printed on the back of the hoodie you wear.

purple_circle.py
import pygame
import sys
pygame.init()
width, height = 800, 600
screen = pygame.display.set_mode((width, height))
pygame.display.set_caption("Blue Circle")
PURPLE = (75, 0, 130)
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
screen.fill((0, 0, 0))
# Draw a purple circle
pygame.draw.circle(
screen, PURPLE,
(width // 2, height // 2), 100
)
pygame.display.flip()
pygame.quit()
sys.exit()

// stay_in_the_loop

Be First.
Ship Later.

New drops, restocks, and behind-the-code stories. No spam — only commits that matter.