Skip to content

Instantly share code, notes, and snippets.

View jawa0's full-sized avatar

Jabavu "Jaba" Adams jawa0

View GitHub Profile
Resources For Getting Into the Game Industry (Toronto, Ontario, Canada)
=======================================================================
Game Jams
==========
- learn by doing
- where you make a small simple game over a few days, either alone, or with a group
- these should be free (be suspicious if they want to charge you money)
List of Game (making) Jams on Itch.io
@jawa0
jawa0 / gist:821e8373c408cbc69a4a20e1fae14d68
Created April 3, 2022 18:17
Resources and Links for Getting Into Game Development
Game Jams
- learn by doing
- where you make a small simple game over a few days, either alone, or with a group
- these should be free (be suspicious if they want to charge you money)
=========
List of Game (making) Jams on Itch.io
https://itch.io/jams
Toronto Game Jam <-- GREAT!!
@jawa0
jawa0 / loadTexture.py
Created November 2, 2012 17:39
Use the Python Imaging Library (PIL), and NumPy to read an image into an OpenGL texture
from OpenGL.GL import *
import Image
import numpy
imname = 'uv-grey.jpg'
# glTexImage2D expects the first element of the image data to be the bottom-left corner of the image.
# Subsequent elements go left to right, with subsequent lines going from bottom to top.
#
# However, the image data was created with PIL Image tostring and numpy's fromstring, which means we