Skip to content

Instantly share code, notes, and snippets.

View Lathryx's full-sized avatar
:electron:
Currently innovating...

Lathryx Lathryx

:electron:
Currently innovating...
View GitHub Profile
@Lathryx
Lathryx / technologies.md
Last active December 8, 2022 18:06
Technoliges

Technologies

This Gist (technologies.md) is going to be used as a running list of any and all technologies, tools, platforms, and otherwise related to programming (organized by category).

CMSs (Content Management Systems)

Freemium

Database Platforms

import pygame
pygame.init() #Start Pygame
screen = pygame.display.set_mode((640,480)) #Start the screen
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT: #The user closed the window!
running = False #Stop running