Archive for April 2015

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

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 →