Author Archive

Broken Snake Code

from OpenGL.GL import * from OpenGL.GLUT import * from OpenGL.GLU import * from random import randint window = 0 width,height = 500,500 field_width, field_height = 50,50 snake = [(20,20)] snake_dir = (1,0) interval = 200 food = [] def refresh2d_custom(width,height,…Continue Reading →

Graphics Games with Python

1. Graphics.py reference – http://mcsp.wartburg.edu/zelle/python/graphics/graphics/graphics.html 2. Snake Tutorial (note: we will be modifying this): http://noobtuts.com/python/snake-game 3. PyOpenGL –  http://pyopengl.sourceforge.net/  (file needed)  

Week 14: What’s Next for the Web

Keeping Up: Noupe Smashing Magazine  Windows 8 Metro JS Tutorial Metro App Development Mobile Jo PhoneGap Sencha Responsive Design Extending JS Limitations of HTML5 Mashi Pixastic WebGL Canviz Plotr CoffeeScript Intro to Unity with JS Other Languages Objective C PHP…Continue Reading →

Final Project

Your final project will consist of an adventure game written in Python. The game may either use simple graphics or text based interactions. Your game should consist of a basic game engine that can read and interpret user input and…Continue Reading →

Week 13: Quickfire Business Plan

1. Ad Week Social Media Cheat Sheet – http://www.adweek.com/files/imagecache/w1500/native-sc-cheatsheet-01c-2013.jpg

Team Standings

+===============================+ |#Supplies! | +======+==========+======+======+ | | Money | Fans | Time | +======+==========+======+======+ |Start:| 100K | 100 | 24 | +======+==========+======+======+ |Rd 1 | -2K | -400 | – | +======+==========+======+======+ |Rd 2 | -4K | 300 | 3 |…Continue Reading →

How To Dress Like A Leader In Any Work Environment

If you still aren’t sure how to dress for the final class session here is a guide: http://www.businessinsider.com/how-to-dress-for-work-business-attire-2014-8 For the presentation Mainstream Casual and up are acceptable (women can wear pants instead of skirts).

Installing PyGame

You can find instructions and links to the python install here: http://inventwithpython.com/pygame/chapter1.html