This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ml4k | |
import random | |
import tkinter as tk | |
from copy import copy | |
from tkinter import messagebox | |
API_KEY = "PASTE-API-KEY-HERE" | |
AI_MODE = "random" | |
TRAINING = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tkinter as tk | |
from tkinter import messagebox | |
# We can make a "virtual" game board as a list of lists. The list contains 3 other lists (rows). | |
# Each row list contains 3 string values representing spaces. The spaces will be populated with | |
# either "X" or "O", but we start with empty strings to denote an empty space. | |
# | |
# We can access a space on the board using row and column indexes. For example, the top-left space | |
# is `board[0][0]`, the center space is `board[1][1]`, and the bottom-right space is `board[2][2]`. |
(taken from: https://www.reddit.com/r/archlinux/comments/5r5ep8/make_your_arch_fonts_beautiful_easily/)
This is what I do when I install Arch Linux to improve the fonts.
You may consider the following settings to improve your fonts for system-wide usage without installing a patched font library packages (eg. Infinality):
- Install some fonts, for example:
The CAPS
key can be mapped to an escape key when pressed once, and a super
(mod4) key when used in combination with other keys.
Create the file /usr/share/X11/xkb/symbols/custom_opts
with the following:
// Make Caps an additional Escape
hidden partial modifier_keys
xkb_symbols "super_esc" {
key { [ Escape ] };
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Course(models.Model): | |
name = models.CharField(max_length=128) | |
class Session(models.Model): | |
course = models.ForeignKey(Course) | |
date = models.DateField() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime, timedelta | |
class Person: | |
def __init__(self, birth_date): | |
self.birth_date = birth_date | |
def get_age(self): | |
return (datetime.now() - self.birth_date) // timedelta(days=365.2425) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> class Person: | |
... def __init__(self, first_name, last_name): | |
... self.first_name = first_name | |
... self.last_name = last_name | |
... | |
... @property | |
... def full_name(self): | |
... return self.first_name + ' ' + self.last_name | |
... | |
>>> me = Person('Ben', 'Davis') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> class Person: | |
... def __init__(self, first_name, last_name): | |
... self.first_name = first_name | |
... self.last_name = last_name | |
... | |
... def get_full_name(self): | |
... return self.first_name + ' ' + self.last_name | |
... | |
>>> me = Person('Ben', 'Davis') | |
>>> me.get_full_name() |