Week 12: Sustaining a Business
1. Slides – Sustaining+Your+Business
1. Slides – Sustaining+Your+Business
http://xkcd.com/1513/
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 →
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 →
1. Slides – Merchandising+_+PR (1)
http://www.theesa.com/wp-content/uploads/2015/04/ESA-Essential-Facts-2015.pdf
<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 →
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 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
<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 →