Author Archive

Week 12: Local Storage

1. Slides – localstorage (2) 2. Example Final Projects a. http://home.ubalt.edu/students/id95rx02/newborn.html b. https://home.ubalt.edu/clayton.zook/idia619final/IDIA619_final_czook.html c. http://www.staticmud.com/IDIA619/FINAL/RehabGuessWho-v4.html d. http://home.ubalt.edu/students/ID51GC84/IDIA619/finalProject.html 3. Sample Code <script>// <![CDATA[ window.onload = init; function init() { var button = document.getElementById(“submit”); button.onclick = storeGroceryList; for (var i = 0; i < localStorage.length; i++)…Continue Reading →

in Class Code 4-16-15

Compound Interest Graph: from graphics import * def main():     print(“This program plots the growth of a 10-year investment.”)     principal = eval(input(“Enter the initial principal: “))     apr = eval(input(“Enter the annualized interest rate: “))     win = GraphWin(“Investment…Continue Reading →

In Class Canvas Code

<html> <head> <script> window.onload = function() { var button = document.getElementById(“submit”); button.onclick = drawShapes; } function drawShapes(){ var canvas = document.getElementById(“tshirtCanvas”); var context = canvas.getContext(“2d”); var selectObj = document.getElementById(“backgroundColor”); var index = selectObj.selectedIndex; var bgColor = selectObj[index].value; var selectObj =…Continue Reading →

Graphics Py File

http://mcsp.wartburg.edu/zelle/python/   http://www.tech-recipes.com/rx/2621/os_x_change_path_environment_variable/   from graphics import * def main(): win = GraphWin(“Click Me!”) for i in range(10): p = win.getMouse() print(“You clicked at: “, p.getX(), p.getY()) main()

Week 11: Publishing

Week 10 Materials 1. Slides – Managing+Schedules 2. Sample Software Development MS Project File – 01018453 3. Using Microsoft Project for Student Games – http://www.gamasutra.com/blogs/StephenNorthcut/20130226/187393/Using_Microsoft_Project_for_Student_Games.php 4. List of Free Agile Planning Tools (MS Project Alternative) – http://www.agile-tools.net/ Week 11 Materials 1. Slides – Publishing

In Class Code – 4/7/15

<html> <head> <script> window.onload = function() { var button = document.getElementById(“submit”); button.onclick = drawShapes; } function drawShapes(){ var canvas = document.getElementById(“tshirtCanvas”); var context = canvas.getContext(“2d”); var selectObj = document.getElementById(“backgroundColor”); var index = selectObj.selectedIndex; var bgColor = selectObj[index].value; var selectObj =…Continue Reading →