Skip to content

Instantly share code, notes, and snippets.

@leenjiru
leenjiru / torrent-to-google-drive-downloader.ipynb
Last active January 23, 2024 19:46
Torrent To Google Drive Downloader
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@leenjiru
leenjiru / chess.py
Created February 20, 2019 17:32 — forked from rsheldiii/chess.py
chess program for python
"""CONVENTIONS:
positions are done row-column from the bottom left and are both numbers. This corresponds to the alpha-number system in traditional chess while being computationally useful. they are specified as tuples
"""
import itertools
WHITE = "white"
BLACK = "black"