Skip to content

Instantly share code, notes, and snippets.

View cgdougm's full-sized avatar

Doug MacMillan cgdougm

View GitHub Profile
Verifying my Blockstack ID is secured with the address 1Mqpwj4QUPPRYiLu3LgMWnEokWKAPRH6Yf https://explorer.blockstack.org/address/1Mqpwj4QUPPRYiLu3LgMWnEokWKAPRH6Yf
@cgdougm
cgdougm / pygame_events.py
Last active October 9, 2019 14:11
[PyGame event loop] Mouse and keyboard event types #boilerplate #pygame #eventloop
import pygame
pygame.init()
screen = pygame.display.set_mode( (800,600) )
surface = pygame.Surface(screen.get_size())
screen.fill( (75,85,85) )
cont = True