Author Archive

In Class Code 3/12/15

#if eyecolor == “brown”: # if haircolor == “brown”: # print(“Wave your hands”) # elif haircolor == “blond” # print(“Jump up and down”) # else # print(“Do a dance”) #elif eyecolor == “green” #import math #def main(): # print(“This program…Continue Reading →

Assignment 3

Following from the pseudo code you developed in class, design a game or application that uses all of the following: Functions Arrays Variables Built-in functions Loops If/Else statements Your project should meaningfully integrate each element towards accomplishing your goal.  Example…Continue Reading →

Week 7: Business Plans

Hold Over from Week 6 1. Can Valve’s Bossless Company Model Work Elsewhere? 2. Example critique format – Example+Critique+Format (1) 3. Steps to giving good feedback – Steps+to+Giving+Good+Feedback (1) 4. SimCity 5: How Not to Design a Single Player Game Week 7 1….Continue Reading →

Week 7: jQuery

1. Getting Started with jQuery: http://learn.jquery.com/using-jquery-core/ 2. Introduction to the DOM: jQuery and HTML – http://www.codecademy.com/courses/web-beginner-en-bay3D?curriculum_id=50a3fad8c7a770b5fd0007a1 3. Slides – JQuery (1) 4. Mastermind Code – http://home.ubalt.edu/id33uv76/iat.ubalt.edu/IDIA619/mastermind.html

Farmer Game Code

<html> <head> <script> window.onload = init; function init () { var animalList = [“pig”, “cow”, “horse”, “duck”]; var soundsList = [“oink”, “moo”, “neigh”, “quack”]; var randomNum = Math.floor(Math.random() * animalList.length); var animal = animalList[randomNum]; var sound = soundsList[randomNum]; var soundPlace…Continue Reading →

Homework 3

Following from the pseudo code you developed in class, design a game or application that uses all of the following: Objects Functions Arrays Variables Built-in functions Loops If/Else statements DOM/Elements Your project should meaningfully integrate each element towards accomplishing your…Continue Reading →

Why do some indie developers publish their games themselves instead of a known publisher?

I found this link and thought it would be useful for your information. – BB http://askagamedev.tumblr.com/post/112230674151/why-do-some-indie-developers-publish-their-games anonymous asked: Why do some indie developers publish their games themselves instead of going to a known small/noteworthy publisher? Why do the others actually go…Continue Reading →

In Class Code for 2/26

def main(): print(“This program generates your superhero name”) first = input(“Please enter your first name: “) street = input(“Please enter the name of the street you grew up on: “) superName = first[:4] + street[2:5] print(“Your superhero name is:”, superName)…Continue Reading →