01000011 | 01000011
Wear the
Code.
Every hoodie carries a design — and the exact source code that built it. The language lives on the sleeve.
// collection_v1
The Drop
Tap a hoodie to see the code on the back. Click the name to see sizes.


$75
Select Size

$75
Select Size// 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.
import pygameimport syspygame.init()width, height = 800, 600screen = pygame.display.set_mode((width, height))pygame.display.set_caption("Blue Circle")PURPLE = (75, 0, 130)running = Truewhile 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.