Attack the King Side? Close the center!

This week I’ve reached 2000 ELO rapid and 1900 ELO blitz on lichess, and I started playing many games I enjoyed more than usual. This was one of them. 1. Nf3 c5  2. d4 cxd4  3. Nxd4 Nc6  4. Nc3 Nf6  5. b3 e6  6. Bb2 Bb4  7. a3 Ba5  8. e3 O-O  Already, a […]

Python Collage and Contour

This set of Python programs is about creating a collage and then adding a contour to it. import numpy as np import matplotlib.pyplot as plt import matplotlib.image as im import random random.seed(123) l = [] a = list(range(1, 37)) random.shuffle(a) for i in a: if i == 35: continue image = im.imread(‘images/collagephoto{}.jpg’.format(i)) l.append(image) l1 = […]

Scroll to top