diff --git a/JAN11-20/JAN11/JAN11.png b/JAN11-20/JAN11/JAN11.png
new file mode 100644
index 0000000..6c7973f
Binary files /dev/null and b/JAN11-20/JAN11/JAN11.png differ
diff --git a/JAN11-20/JAN11/sketch.js b/JAN11-20/JAN11/sketch.js
new file mode 100644
index 0000000..706ec74
--- /dev/null
+++ b/JAN11-20/JAN11/sketch.js
@@ -0,0 +1,57 @@
+/*
+Genuary 2023
+JAN.11 "Suprematism"
+By Roni Kaufman
+https://ronikaufman.github.io
+*/
+
+let m = 64, n = 32, sx, sy;
+
+function setup() {
+ textSize(24);
+ textAlign(LEFT, TOP);
+ textFont("monospace")
+ sx = textWidth("█")*0.626, sy = sx*1.7;
+
+ createCanvas(sx*m, sy*n);
+ noLoop();
+ noStroke();
+}
+
+function draw() {
+ background("#fffbe6");
+ fill("#050505");
+
+ for (let x = 0; x < width; x += sx) {
+ for (let y = 0; y < height; y += sy) {
+ let c, offset = 0;
+ let theta = atan2(y-height/3, x-width/2)+4*PI/3;
+ if (theta > TAU - PI/6 || theta < PI/2) {
+ c = "▓";
+ if (random() < 1/6) {
+ c = "█";
+ }
+ } else if (theta < 7*PI/6) {
+ c = "▒";
+ } else {
+ c = "░";
+ if (random() < 1/6) {
+ c = "█";
+ }
+ }
+
+ theta = atan2(y-2*height/3, x-width/2)+PI/3;
+ if (theta > PI/2 && theta < 7*PI/6) c = "▒";
+
+ let d = max(abs(x-width/2), abs(y-height/3));
+ if (d < 8*sx) c = " ";
+ if (d < 5*sx) c = "█";
+
+ if (abs(x - 42*sx) < sx/10 && abs(y - 24*sy) < sy/10) {
+ c = "🪑";
+ offset = -sx/4;
+ }
+ text(c, x+offset+random([-1, 1])*0.2, y+sy*0.75+random([-1, 1])*0.2);
+ }
+ }
+}
\ No newline at end of file
diff --git a/README.md b/README.md
index 6ace83a..67440cc 100644
--- a/README.md
+++ b/README.md
@@ -59,6 +59,10 @@ After Andreas Gysin (https://www.instagram.com/p/CUR2We3gc2I)
### JAN. 11
> Suprematism
+
+
+Inspired by the photo of the ["0,10 Exhibition"](https://en.wikipedia.org/wiki/0,10_Exhibition)
+
### JAN. 12
> Tessellation
diff --git a/index.html b/index.html
index 8a023ad..d1cfb3e 100644
--- a/index.html
+++ b/index.html
@@ -1,7 +1,7 @@