Beginning Game Programming, COMI 2040 Lab 6

Size: px
Start display at page:

Download "Beginning Game Programming, COMI 2040 Lab 6"

Transcription

1 Beginning Game Programming, COMI 2040 Lab 6 Background This lab covers the second part of Chapter 3 of your text and the second half of lecture. Before attempting this lab, you should be familiar with the following concepts: Writing functions in Python. Invoking functions in Python. Passing data to functions. Returning data from functions. Assigning the return value of a function to a variable. If you are uncertain about any of the concepts just listed, you should review the second part of Chapter 3 before proceeding with this lab. Before proceeding with this lab, you should complete Lab 5. Overview Continuing with the enemies with hit points program, you will now group your long and difficult-to-read code into nice, neat functions. You will then invoke those functions. Learning objectives After this lab, you should be able to: Break a long program into functions. Pass data into and return data from functions. Use data that is returned from functions. 1. Enhance your program with functions If your program is anything like mine, you have a really long mess. Every single piece of this program will be easier to read if you break it up into functions. Model your program after this code, or work from mine:

2 """ enemies.py Maggie Burke 9/18/2010 A program that stores data about enemies. Now let's allow the user to fight the enemies until they're defeated. """ import random #low-life celebrity enemies enemies=["mel Gibson","50 Cent","Tom Cruise","Jenny McCarthy"] hitpoints=[25,20,15,5] maxattack=[5,5,5,3] weapons=["racist potty mouth", "moronic homophobic babble", "idiotic hyperactive babble", "disease"] # getcelebtoattack #You're going to move some code from below into here, look for the lines def getcelebtoattack(): print "Replace this line with code that does something." # attackceleb #Do some damage on a celebrity #The parameter "celebrity" contains the name #Returns final hit points for the celebrity def attackceleb(celebrity,maxhitpoints): #Calculate random damage from 1 to maxhitpoints damage=random.randint(1,maxhitpoints) #now let's find the enemy in the list loc=enemies.index(celebrity) #now inflict the damage, the hit points are at the same index in the hitpoints list

3 hitpoints[loc]=hitpoints[loc]-damage #set hitpoints to zero if it went below if hitpoints[loc]<0: hitpoints[loc]=0 #give the calling module back the final hit points for the celebrity return hitpoints[loc] # MAIN PROGRAM #attack until all are vanquished or you get bored... allvanquished=false userquit=false while (not allvanquished) and (not userquit): #pull out the code between these lines and put it into getcelebtoattack, #returning the name of the celebrity to be stored in the variable victim # #find out who your user wants to attack print "You can attack any of the following: " enemiesstring="" for enemy in enemies: enemiesstring=enemiesstring+" "+enemy print enemiesstring victim=raw_input("which ultra ugly celebrity do you want to expose? (Or 'Quit' to quit)> ") # #at this point, if you wrote your code correctly, victim should contain the name of the victim #or the word "Quit" if (victim=="quit"): userquit=true #Maybe right here you should do a check to see if "victim" is in your list, just in case #the user typed it wrong, and make sure you don't execute any code that would cause a crash, #maybe also print a little error message for your user???

4 if not userquit: #attack the celebrity: thehitpoints=attackceleb(victim,20) #print the result print "%s now has %d hit points." %(victim,thehitpoints) #right here is where you should call a function that does something fun, #gives the enemy a "turn" or whatnot. #Here's some code that does that, but it should really be in a function: attacker=random.choice(enemies) attackee=random.choice(enemies) #okay if a celebrity attacks him/her self, that's funny newhitpoints=attackceleb(attackee, maxattack[enemies.index(attacker)]) print "%s just attacked %s with %s!" %(attacker,attackee,weapons[enemies.index(attacker)]) print "%s now has %d hit points left." %(attackee, newhitpoints) #let the user see what's left print " " for index in range(len(enemies)): print "%s has %d hit points" %(enemies[index],hitpoints[index]) print " " #figure out if the user has won hitpointstogo=0 for hp in hitpoints: hitpointstogo=hitpointstogo+hp if hitpointstogo==0: allvanquished=true if allvanquished: print "Congratulations! You are celebrity blogger of the year and humanitarian extraordinaire!" elif userquit: print "Winners never quit and quitters never win. :-("

5 This might feel a bit long and intimidating! We've gone from very short programs to very long ones, but you built this up slowly (or something similar), so you should understand all of the pieces. The problem is, it's hard to read all of the pieces when they're together. It's much easier if you break out each piece that has a purpose that you can describe in one sentence into a function. This is an overview of the program if you look at it that way: 1. Define all of the lists that are our data 2. Define a function that gets (and returns) the name of the celebrity from the user that s/he wants to attack 3. Define a function that attacks a celebrity, given the celebrity's name and the max damage that can be done 4. Define a function that does something fun, like have a celebrity attack another celebrity 5. Main gaming loop, while the user hasn't won or quit: a. Get a celebrity to attack, using (2) b. If that wasn't a choice to Quit, then: i. Attack the celebrity, using (3) ii. Do something else fun, using (4) iii. Report the state of the game to the user iv. Calculate whether the user has won In the program above, I wrote one function for you. I put in a shell for a second function, and told you where to get the body of that function from. You'll have to figure out how to call it, how to return a value from it, and how to use that value. I suggested where you should write a third function (that would be (4) in the overview above), but didn't give you any other help. I also suggested that you put in a test to make sure the user has typed the name of the enemy correctly, so your program doesn't crash.

Ok, we need the computer to generate random numbers. Just add this code inside your main method so you have this:

Ok, we need the computer to generate random numbers. Just add this code inside your main method so you have this: Java Guessing Game In this guessing game, you will create a program in which the computer will come up with a random number between 1 and 1000. The player must then continue to guess numbers until the

More information

Environmental Stochasticity: Roc Flu Macro

Environmental Stochasticity: Roc Flu Macro POPULATION MODELS Environmental Stochasticity: Roc Flu Macro Terri Donovan recorded: January, 2010 All right - let's take a look at how you would use a spreadsheet to go ahead and do many, many, many simulations

More information

Once this function is called, it repeatedly does several things over and over, several times per second:

Once this function is called, it repeatedly does several things over and over, several times per second: Alien Invasion Oh no! Alien pixel spaceships are descending on the Minecraft world! You'll have to pilot a pixel spaceship of your own and fire pixel bullets to stop them! In this project, you will recreate

More information

Copyright MMXVII Debbie De Grote. All rights reserved

Copyright MMXVII Debbie De Grote. All rights reserved Gus: So Stacy, for your benefit I'm going to do it one more time. Stacy: Yeah, you're going to have to do it again. Gus: When you call people, when you engage them always have something to give them, whether

More information

MITOCW R3. Document Distance, Insertion and Merge Sort

MITOCW R3. Document Distance, Insertion and Merge Sort MITOCW R3. Document Distance, Insertion and Merge Sort The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational

More information

MITOCW watch?v=6fyk-3vt4fe

MITOCW watch?v=6fyk-3vt4fe MITOCW watch?v=6fyk-3vt4fe Good morning, everyone. So we come to the end-- one last lecture and puzzle. Today, we're going to look at a little coin row game and talk about, obviously, an algorithm to solve

More information

Lesson 2: Choosing Colors and Painting Chapter 1, Video 1: "Lesson 2 Introduction"

Lesson 2: Choosing Colors and Painting Chapter 1, Video 1: Lesson 2 Introduction Chapter 1, Video 1: "Lesson 2 Introduction" Welcome to Lesson 2. Now that you've had a chance to play with Photoshop a little bit and explore its interface, and the interface is becoming a bit more familiar

More information

CIDM 2315 Final Project: Hunt the Wumpus

CIDM 2315 Final Project: Hunt the Wumpus CIDM 2315 Final Project: Hunt the Wumpus Description You will implement the popular text adventure game Hunt the Wumpus. Hunt the Wumpus was originally written in BASIC in 1972 by Gregory Yob. You can

More information

Mike Wynn - ArtofAlpha.com

Mike Wynn - ArtofAlpha.com The Art of Alpha Presents' 7 Proven Conversation Starters That Lead To Dates How to easily approach any women, And not get stuck in your head wondering what to say I just let another beautiful woman slip

More information

Do Not Quit On YOU. Creating momentum

Do Not Quit On YOU. Creating momentum Do Not Quit On YOU See, here's the thing: At some point, if you want to change your life and get to where it is you want to go, you're going to have to deal with the conflict of your time on your job.

More information

Hello and welcome to the CPA Australia podcast, your source for business, leadership and public practice accounting information.

Hello and welcome to the CPA Australia podcast, your source for business, leadership and public practice accounting information. CPA Australia Podcast Episode 30 Transcript Introduction: Hello and welcome to the CPA Australia podcast, your source for business, leadership and public practice accounting information. Hello and welcome

More information

How to Use an Embroidery Machine

How to Use an Embroidery Machine How to Use an Embroidery Machine Welcome crafty folk, to the realm of Urban Threads. If you're reading this, then I'm going to take a wild guess and say you're looking to learn a little about machine embroidery.

More information

Begin this assignment by first creating a new Java Project called Assignment 5.There is only one part to this assignment.

Begin this assignment by first creating a new Java Project called Assignment 5.There is only one part to this assignment. CSCI 2311, Spring 2013 Programming Assignment 5 The program is due Sunday, March 3 by midnight. Overview of Assignment Begin this assignment by first creating a new Java Project called Assignment 5.There

More information

Jezzabelle's Old School

Jezzabelle's Old School It was Jezzabelle's first day at her new school. She didn't like it one bit. Everyone was in groups. They ate lunch together. They played on teams. "At my old school, we didn't say the Pledge," Jezzabelle

More information

Commencement Address by Steve Wozniak May 4, 2013

Commencement Address by Steve Wozniak May 4, 2013 Thank you so much, Dr. Qubein, Trustees, everyone so important, especially professors. I admire teaching so much. Nowadays it seems like we have a computer in our life in almost everything we do, almost

More information

Formulas: Index, Match, and Indirect

Formulas: Index, Match, and Indirect Formulas: Index, Match, and Indirect Hello and welcome to our next lesson in this module on formulas, lookup functions, and calculations, and this time around we're going to be extending what we talked

More information

OBERLO: A FANTASTIC APP THAT LL TURN YOUR SHOP INTO A SUPER PROFIT MAKING MACHINE BY CONNECTING IT TO ALIEXPRESS!

OBERLO: A FANTASTIC APP THAT LL TURN YOUR SHOP INTO A SUPER PROFIT MAKING MACHINE BY CONNECTING IT TO ALIEXPRESS! OBERLO: A FANTASTIC APP THAT LL TURN YOUR SHOP INTO A SUPER PROFIT MAKING MACHINE BY CONNECTING IT TO ALIEXPRESS! Welcome back to my series for the videos Sells Like Hotcakes on how to create your most

More information

Computer Science 25: Introduction to C Programming

Computer Science 25: Introduction to C Programming California State University, Sacramento College of Engineering and Computer Science Computer Science 25: Introduction to C Programming Fall 2018 Project Dungeon Battle Overview Time to make a game a game

More information

Proven Performance Inventory

Proven Performance Inventory Proven Performance Inventory Module 4: How to Create a Listing from Scratch 00:00 Speaker 1: Alright guys. Welcome to the next module. How to create your first listing from scratch. Really important thing

More information

3 SPEAKER: Maybe just your thoughts on finally. 5 TOMMY ARMOUR III: It's both, you look forward. 6 to it and don't look forward to it.

3 SPEAKER: Maybe just your thoughts on finally. 5 TOMMY ARMOUR III: It's both, you look forward. 6 to it and don't look forward to it. 1 1 FEBRUARY 10, 2010 2 INTERVIEW WITH TOMMY ARMOUR, III. 3 SPEAKER: Maybe just your thoughts on finally 4 playing on the Champions Tour. 5 TOMMY ARMOUR III: It's both, you look forward 6 to it and don't

More information

First Tutorial Orange Group

First Tutorial Orange Group First Tutorial Orange Group The first video is of students working together on a mechanics tutorial. Boxed below are the questions they re discussing: discuss these with your partners group before we watch

More information

Specialty Stitch Tutorial #5 The Jessica Stitch

Specialty Stitch Tutorial #5 The Jessica Stitch Specialty Stitch Tutorial #5 The Jessica Stitch I'm in love with Jessica stitches. They are an extremely versatile stitch that can be done in a myriad of shapes, sizes and styles. They can be beaded, or

More information

An Evening With Grandpa

An Evening With Grandpa An Evening With Grandpa Adventures in Chess Land By Diana Matlin Illustrated by S. Chatterjee DIANA MATLIN Copyright 2013 Diana Matlin All rights reserved. ISBN-10: 0988785013 ISBN-13: 978-0-9887850-1-4

More information

Q: Mr. Dylan, you sing a lot of old songs. Do you still have the old feelings when you sing them?

Q: Mr. Dylan, you sing a lot of old songs. Do you still have the old feelings when you sing them? Hamburg Press Conference May 31, 1984 Hamburg Press Conference featuring Bob Dylan (BD), Carlos Santana (CS), and Joan Baez (JB), Clubhaus, St.-Pauli-Stadion, May 31, 1984 First printed in Guenter Amendt,

More information

MITOCW ocw lec11

MITOCW ocw lec11 MITOCW ocw-6.046-lec11 Here 2. Good morning. Today we're going to talk about augmenting data structures. That one is 23 and that is 23. And I look here. For this one, And this is a -- Normally, rather

More information

#1 CRITICAL MISTAKE ASPERGER EXPERTS

#1 CRITICAL MISTAKE ASPERGER EXPERTS #1 CRITICAL MISTAKE ASPERGER EXPERTS How's it going, everyone? Danny Raede here from Asperger Experts. I was diagnosed with Asperger's when I was 12, and in this video, we are going to talk about all this

More information

MITOCW R7. Comparison Sort, Counting and Radix Sort

MITOCW R7. Comparison Sort, Counting and Radix Sort MITOCW R7. Comparison Sort, Counting and Radix Sort The following content is provided under a Creative Commons license. B support will help MIT OpenCourseWare continue to offer high quality educational

More information

BBC LEARNING ENGLISH How to chat someone up

BBC LEARNING ENGLISH How to chat someone up BBC LEARNING ENGLISH How to chat someone up This is not a word-for-word transcript I'm not a photographer, but I can picture me and you together. I seem to have lost my phone number. Can I have yours?

More information

Instructor (Mehran Sahami):

Instructor (Mehran Sahami): Programming Methodology-Lecture21 Instructor (Mehran Sahami): So welcome back to the beginning of week eight. We're getting down to the end. Well, we've got a few more weeks to go. It feels like we're

More information

NLP Courses Podcast: Ready to take you NLP training to the next level visit

NLP Courses Podcast: Ready to take you NLP training to the next level visit John: Hello! Welcome to this week's podcast. My name is John Cassidy-Rice and I have the pleasure to be your host. And I'm gonna be on some few questions that have been sent to me, so we'll be covering

More information

Common Phrases (2) Generic Responses Phrases

Common Phrases (2) Generic Responses Phrases Common Phrases (2) Generic Requests Phrases Accept my decision Are you coming? Are you excited? As careful as you can Be very very careful Can I do this? Can I get a new one Can I try one? Can I use it?

More information

MITOCW watch?v=fp7usgx_cvm

MITOCW watch?v=fp7usgx_cvm MITOCW watch?v=fp7usgx_cvm Let's get started. So today, we're going to look at one of my favorite puzzles. I'll say right at the beginning, that the coding associated with the puzzle is fairly straightforward.

More information

SOAR Study Skills Lauri Oliver Interview - Full Page 1 of 8

SOAR Study Skills Lauri Oliver Interview - Full Page 1 of 8 Page 1 of 8 Lauri Oliver Full Interview This is Lauri Oliver with Wynonna Senior High School or Wynonna area public schools I guess. And how long have you actually been teaching? This is my 16th year.

More information

Microsoft Excel Lab Three (Completed 03/02/18) Transcript by Rev.com. Page 1 of 5

Microsoft Excel Lab Three (Completed 03/02/18) Transcript by Rev.com. Page 1 of 5 Speaker 1: Hello everyone and welcome back to Microsoft Excel 2003. In today's lecture, we will cover Excel Lab Three. To get started with this lab, you will need two files. The first file is "Excel Lab

More information

BULLYDOWN PHASE ONE BULLETIN BOARD FOCUS GROUP: MODERATOR SCRIPT

BULLYDOWN PHASE ONE BULLETIN BOARD FOCUS GROUP: MODERATOR SCRIPT BULLYDOWN PHASE ONE BULLETIN BOARD FOCUS GROUP: MODERATOR SCRIPT [Note: This is a template. Questions will evolve based on the content of the discussions.] Objectives: 1. To illuminate the current exposure

More information

MITOCW watch?v=guny29zpu7g

MITOCW watch?v=guny29zpu7g MITOCW watch?v=guny29zpu7g The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

2: Turning the Tables

2: Turning the Tables 2: Turning the Tables Gareth McCaughan Revision 1.8, May 14, 2001 Credits c Gareth McCaughan. All rights reserved. This document is part of the LiveWires Python Course. You may modify and/or distribute

More information

10 Tips for Conquering Planned Pooling Crochet

10 Tips for Conquering Planned Pooling Crochet 10 Tips for Conquering Planned Pooling Crochet Have you tried Planned Pooling Crochet? I ADORE it!! I probably spend far too much time doing it! Whenever I'm at the craft store now... I'm always checking

More information

Resolving Managing Customer Complaints by the James Walker

Resolving Managing Customer Complaints by the James Walker Resolving Managing Customer Complaints by the 1000 James Walker Aled Davies: Hi everyone, my name is Aled Davies, founder of MediatorAcademy.com, home of the passionate mediator. You know what we do on

More information

I: Can you tell me more about how AIDS is passed on from one person to the other? I: Ok. Does it matter a how often a person gets a blood transfusion?

I: Can you tell me more about how AIDS is passed on from one person to the other? I: Ok. Does it matter a how often a person gets a blood transfusion? Number 68 I: In this interview I will ask you to talk about AIDS. And I want you to know that you don't have to answer all my questions. If you don't want to answer a question just let me know and I will

More information

How to Help People with Different Personality Types Get Along

How to Help People with Different Personality Types Get Along Podcast Episode 275 Unedited Transcript Listen here How to Help People with Different Personality Types Get Along Hi and welcome to In the Loop with Andy Andrews. I'm your host, as always, David Loy. With

More information

Author Platform Rocket -Podcast Transcription-

Author Platform Rocket -Podcast Transcription- Author Platform Rocket -Podcast Transcription- Grow your platform with Social Giveaways Speaker 1: Welcome to Author Platform Rocket. A highly acclaimed source for actionable business, marketing, mindset

More information

The Slide Master and Sections for Organization: Inserting, Deleting, and Moving Around Slides and Sections

The Slide Master and Sections for Organization: Inserting, Deleting, and Moving Around Slides and Sections The Slide Master and Sections for Organization: Inserting, Deleting, and Moving Around Slides and Sections Welcome to the next lesson in the third module of this PowerPoint course. This time around, we

More information

Ep #138: Feeling on Purpose

Ep #138: Feeling on Purpose Ep #138: Feeling on Purpose Full Episode Transcript With Your Host Brooke Castillo Welcome to the Life Coach School Podcast, where it's all about real clients, real problems and real coaching. Now, your

More information

BOOK MARKETING: Profitable Book Marketing Ideas Interview with Amy Harrop

BOOK MARKETING: Profitable Book Marketing Ideas Interview with Amy Harrop BOOK MARKETING: Profitable Book Marketing Ideas Interview with Amy Harrop Welcome to Book Marketing Mentors, the weekly podcast where you learn proven strategies, tools, ideas, and tips from the masters.

More information

SCRIPT TITLE. Written by. Name of First Writer. Based on, If Any

SCRIPT TITLE. Written by. Name of First Writer. Based on, If Any SCRIPT TITLE Written by Name of First Writer Based on, If Any Address Phone Number INT. HOME She is at home alone and sober but strung out. HI. Hey. YOU OKAY? NEVER BETTER WHAT HAPPENED - SOMETHIN' AT

More information

Ep #2: 3 Things You Need to Do to Make Money as a Life Coach - Part 2

Ep #2: 3 Things You Need to Do to Make Money as a Life Coach - Part 2 Full Episode Transcript With Your Host Stacey Boehman Welcome to the Make Money as a Life Coach podcast where sales expert and life coach Stacey Boehman teaches you how to make your first 2K, 20K, and

More information

Girls Programming Network. Scissors Paper Rock!

Girls Programming Network. Scissors Paper Rock! Girls Programming Network Scissors Paper Rock! This project was created by GPN Australia for GPN sites all around Australia! This workbook and related materials were created by tutors at: Sydney, Canberra

More information

Basic Lesson 2: Crochet Chain Stitch by Sandy Marie and Mom s Crochet

Basic Lesson 2: Crochet Chain Stitch by Sandy Marie and Mom s Crochet Basic Lesson 2: Crochet Chain Stitch by Sandy Marie and Mom s Crochet The Chain Stitch is where most crochet projects begin. For that simple reason, learning how to make a nice even chain is very important.

More information

The Emperor's New Repository

The Emperor's New Repository The Emperor's New Repository I don't know the first thing about building digital repositories. Maybe that's a strange thing to say, given that I work in a repository development group now, and worked on

More information

2015 Farnoosh, Inc. 1 EPISODE 119 [ASK FARNOOSH] [00:00:33]

2015 Farnoosh, Inc. 1 EPISODE 119 [ASK FARNOOSH] [00:00:33] EPISODE 119 [ASK FARNOOSH] [00:00:33] FT: You're listening to So Money everyone. Welcome back. I'm your host Farnoosh Torabi. For all you mothers out there, happy Mother's Day! It's funny, I'm a mother

More information

What is Dual Boxing? Why Should I Dual Box? Table of Contents

What is Dual Boxing? Why Should I Dual Box? Table of Contents Table of Contents What is Dual Boxing?...1 Why Should I Dual Box?...1 What Do I Need To Dual Box?...2 Windowed Mode...3 Optimal Setups for Dual Boxing...5 This is the best configuration for dual or multi-boxing....5

More information

Christine: I am Christine Connerly. I'd like to welcome you today. I coordinate the student learning center, and I've done this reading workshop

Christine: I am Christine Connerly. I'd like to welcome you today. I coordinate the student learning center, and I've done this reading workshop Christine: I am Christine Connerly. I'd like to welcome you today. I coordinate the student learning center, and I've done this reading workshop quite a few times and I've taught study skills for longer

More information

BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box

BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box BEST PRACTICES COURSE WEEK 14 PART 2 Advanced Mouse Constraints and the Control Box Copyright 2012 by Eric Bobrow, all rights reserved For more information about the Best Practices Course, visit http://www.acbestpractices.com

More information

Managing the Defiant Child

Managing the Defiant Child Managing the Defiant Child Transcript of Speaker PERSONALITIES Now, I'm going to in a little while give you a little more specifics on how to deal with certain situations such as homework, peer pressure,

More information

This is an oral history interview with Colleen, IBM CRM (Customer Relationship Management) Business Partner

This is an oral history interview with Colleen, IBM CRM (Customer Relationship Management) Business Partner This is an oral history interview with Colleen, IBM CRM (Customer Relationship Management) Business Partner Worldwide Test Manager, conducted on September 4, 2003, by IBM Corporate Archivist, Paul Lasewicz.

More information

Multimedia and Arts Integration in ELA

Multimedia and Arts Integration in ELA Multimedia and Arts Integration in ELA TEACHER: There are two questions. I put the poem that we looked at on Thursday over here on the side just so you can see the actual text again as you're answering

More information

3-DAY FEAR CLEANSE. Become fearless and lock in your Tapping habit in just 3 days

3-DAY FEAR CLEANSE. Become fearless and lock in your Tapping habit in just 3 days 3-DAY FEAR CLEANSE Become fearless and lock in your Tapping habit in just 3 days Let s get You thinking... When you're going through the motions, going to work, doing the chores, going on holiday and basically

More information

HOW TO SURPRISE YOUR READERS

HOW TO SURPRISE YOUR READERS HOW TO SURPRISE YOUR READERS A CBI Special Report by Laura Backes Children's Book Insider, LLC May not be redistributed without permission. How to Surprise Your Readers by Laura Backes It's essential that

More information

Jenna: If you have, like, questions or something, you can read the questions before.

Jenna: If you have, like, questions or something, you can read the questions before. Organizing Ideas from Multiple Sources Video Transcript Lynn Today, we're going to use video, we're going to use charts, we're going to use graphs, we're going to use words and maps. So we're going to

More information

Go back to the stopped deck. Put your finger on it, holding it still, and press start. The deck should be running underneath the stopped record.

Go back to the stopped deck. Put your finger on it, holding it still, and press start. The deck should be running underneath the stopped record. LEARN TO MIX RECORDS Place two identical records/cd's on your decks, and set the pitch to 0. On most decks, a green light will come on to let you know it's at 0 and it'll probably click into place. By

More information

MITOCW 22. DP IV: Guitar Fingering, Tetris, Super Mario Bros.

MITOCW 22. DP IV: Guitar Fingering, Tetris, Super Mario Bros. MITOCW 22. DP IV: Guitar Fingering, Tetris, Super Mario Bros. The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality

More information

How Experienced Traders Think Differently

How Experienced Traders Think Differently How Experienced Traders Think Differently By Pete Renzulli Distributed by Please feel free to pass this e-book along to friends. All we ask is that you do not change any of the content. Thank you. Trading

More information

THE STORY OF TRACY BEAKER EPISODE 17 Based on the book by Jacqueline Wilson Broadcast: 18 September, 2003

THE STORY OF TRACY BEAKER EPISODE 17 Based on the book by Jacqueline Wilson Broadcast: 18 September, 2003 THE STORY OF TRACY BEAKER EPISODE 17 Based on the book by Jacqueline Wilson Broadcast: 18 September, 2003 award! Ready? Ready? Go on! Yeah, that's it. Go on! You're doing it yourself! I've let go! Go on,

More information

Crushing Self-Doubt & Insecurity

Crushing Self-Doubt & Insecurity THE ULTIMATE CHEAT SHEET FOR Crushing Self-Doubt & Insecurity FIND A GUIDE WHO WILL GIVE YOU A PL AN THAT MEETS YOU WHERE YOU ARE Start simple, with a beginner s plan. As you get more familiar with lifting,

More information

Using Google Analytics to Make Better Decisions

Using Google Analytics to Make Better Decisions Using Google Analytics to Make Better Decisions This transcript was lightly edited for clarity. Hello everybody, I'm back at ACPLS 20 17, and now I'm talking with Jon Meck from LunaMetrics. Jon, welcome

More information

SBB13 Annette Densham Shows Small Business How to do PR the Right Way Step by Step

SBB13 Annette Densham Shows Small Business How to do PR the Right Way Step by Step SBB13 Annette Densham Shows Small Business How to do PR the Right Way Step by Step Annette: [00:00:00] That the industry's fashion and it was a jewelry line. So the owner of this business had been around

More information

Automate Your Social Media Marketing (Tutorial)

Automate Your Social Media Marketing (Tutorial) Automate Your Social Media Marketing (Tutorial) I get it, you're busy. Buildings don't design themselves. But as we've talked about before, social media marketing is important and you need to continue

More information

Mint Tin Mini Skulduggery

Mint Tin Mini Skulduggery Mint Tin Mini Skulduggery 1-4 player, 10- to 25-minute dice game How much is your spirit worth? Invoke the ethereal realm to roll spirit points, shatter others, and push the limits without unleashing skulduggery!

More information

Autodesk University See What You Want to See in Revit 2016

Autodesk University See What You Want to See in Revit 2016 Autodesk University See What You Want to See in Revit 2016 Let's get going. A little bit about me. I do have a degree in architecture from Texas A&M University. I practiced 25 years in the AEC industry.

More information

SDS PODCAST EPISODE 110 ALPHAGO ZERO

SDS PODCAST EPISODE 110 ALPHAGO ZERO SDS PODCAST EPISODE 110 ALPHAGO ZERO Show Notes: http://www.superdatascience.com/110 1 Kirill: This is episode number 110, AlphaGo Zero. Welcome back ladies and gentlemen to the SuperDataSceince podcast.

More information

3/23/2016 My Point of View on Point of View Karina Schink Books

3/23/2016 My Point of View on Point of View Karina Schink Books the blog http://www.karinaschinkbooks.com/blog/2016/3/10/12yn62m8o46ihw32wte294wx3utrol 1/10 M a r c h 1 0, 2 0 1 6 As you may gure out in the posts to come, or already know because I told you personally,

More information

Rolando s Rights. I'm talking about before I was sick. I didn't get paid for two weeks. The owner said he doesn't owe you anything.

Rolando s Rights. I'm talking about before I was sick. I didn't get paid for two weeks. The owner said he doesn't owe you anything. Rolando s Rights Rolando. José, I didn't get paid for my last two weeks on the job. I need that money. I worked for it. I'm sorry. I told you on the phone, I want to help but there's nothing I can do.

More information

Ep #53: Why You Aren't Taking Action

Ep #53: Why You Aren't Taking Action Full Episode Transcript With Your Host Rachel Hart You are listening to the Take a Break podcast with Rachel Hart, episode 53. Welcome to the Take a Break podcast with Rachel Hart. If you're an alcoholic

More information

Midnight MARIA MARIA HARRIET MARIA HARRIET. MARIA Oh... ok. (Sighs) Do you think something's going to happen? Maybe nothing's gonna happen.

Midnight MARIA MARIA HARRIET MARIA HARRIET. MARIA Oh... ok. (Sighs) Do you think something's going to happen? Maybe nothing's gonna happen. Hui Ying Wen May 4, 2008 Midnight SETTING: AT RISE: A spare bedroom with a bed at upper stage left. At stage right is a window frame. It is night; the lights are out in the room. is tucked in bed. is outside,

More information

NCC_BSL_DavisBalestracci_3_ _v

NCC_BSL_DavisBalestracci_3_ _v NCC_BSL_DavisBalestracci_3_10292015_v Welcome back to my next lesson. In designing these mini-lessons I was only going to do three of them. But then I thought red, yellow, green is so prevalent, the traffic

More information

Graphs and Charts: Creating the Football Field Valuation Graph

Graphs and Charts: Creating the Football Field Valuation Graph Graphs and Charts: Creating the Football Field Valuation Graph Hello and welcome to our next lesson in this module on graphs and charts in Excel. This time around, we're going to being going through a

More information

>> Counselor: Hi Robert. Thanks for coming today. What brings you in?

>> Counselor: Hi Robert. Thanks for coming today. What brings you in? >> Counselor: Hi Robert. Thanks for coming today. What brings you in? >> Robert: Well first you can call me Bobby and I guess I'm pretty much here because my wife wants me to come here, get some help with

More information

Intros and background on Kyle..

Intros and background on Kyle.. Intros and background on Kyle.. Lina: Okay, so introduce yourself. Kyle: My name is Kyle Marshall and I am the President of Media Lab. Lina: Can you tell me a little bit about your past life, before the

More information

Coding Camp. Coding Camp A Reading A Z Level N Leveled Book Word Count: 640 LEVELED BOOK N.

Coding Camp. Coding Camp A Reading A Z Level N Leveled Book Word Count: 640 LEVELED BOOK N. Coding Camp A Reading A Z Level N Leveled Book Word Count: 640 LEVELED BOOK N Coding Camp Written by Keith and Sarah Kortemartin Illustrated by Ted Dawson Visit www.readinga-z.com for thousands of books

More information

6.00 Introduction to Computer Science and Programming, Fall 2008

6.00 Introduction to Computer Science and Programming, Fall 2008 MIT OpenCourseWare http://ocw.mit.edu 6.00 Introduction to Computer Science and Programming, Fall 2008 Please use the following citation format: Eric Grimson and John Guttag, 6.00 Introduction to Computer

More information

The 5 Most Powerful Steps to Find Your Life Story and Message and Attract Your Dream Clients Month after Month: Worksheet

The 5 Most Powerful Steps to Find Your Life Story and Message and Attract Your Dream Clients Month after Month: Worksheet The 5 Most Powerful Steps to Find Your Life Story and Message and Attract Your Dream Clients Month after Month: Worksheet There's a new celebrity in the world today, and it's you. You have a life story

More information

Sneak Peek at IvyLearn Page 2 of 20

Sneak Peek at IvyLearn Page 2 of 20 Kara Monroe: Okay, here we go. Good morning again, everybody. Welcome to our Sneak Peek of Ivy Learn. We just have a few goals for today's session. First of all is to provide some resources to allow faculty

More information

CONTROLLED MEETING WITH CW AND P.O. MORENO IN FRONT OF THE 9TH PRECINCT

CONTROLLED MEETING WITH CW AND P.O. MORENO IN FRONT OF THE 9TH PRECINCT CONTROLLED MEETING WITH CW AND P.O. MORENO IN FRONT OF THE 9TH PRECINCT [CW]: Excuse me, excuse me, you're one of the officers who helped me the other night. Moreno: [CW]? [CW]: Yeah. Yeah. [CW]: Can I

More information

MITOCW R22. Dynamic Programming: Dance Dance Revolution

MITOCW R22. Dynamic Programming: Dance Dance Revolution MITOCW R22. Dynamic Programming: Dance Dance Revolution The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational

More information

Nevertheless, here are some ground rules for any approach:

Nevertheless, here are some ground rules for any approach: February 18, 1993 Dear Roland & Jake, We played around with the Goomba subtitles idea, and we think basically it creates more inconsistency and confusion than potential humor. However, since this movie

More information

MITOCW watch?v=2ddjhvh8d2k

MITOCW watch?v=2ddjhvh8d2k MITOCW watch?v=2ddjhvh8d2k The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free. To

More information

I: OK Humm..can you tell me more about how AIDS and the AIDS virus is passed from one person to another? How AIDS is spread?

I: OK Humm..can you tell me more about how AIDS and the AIDS virus is passed from one person to another? How AIDS is spread? Number 4 In this interview I will ask you to talk about AIDS. I want you to know that you don't have to answer all my questions. If you don't want to answer a question just let me know and I will go on

More information

MITOCW MITCMS_608S14_ses03_2

MITOCW MITCMS_608S14_ses03_2 MITOCW MITCMS_608S14_ses03_2 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources for free.

More information

Freezer Paper Piecing with Tara Faughnan

Freezer Paper Piecing with Tara Faughnan Freezer Paper Piecing with Tara Faughnan Chapter 1 - Freezer Paper Piecing Overview (modern music) - Hi everyone, I'm Tara Faughnan, I'm a quilter, a teacher, and a textile designer by trade. We're gonna

More information

Learn Crochet: Part 1

Learn Crochet: Part 1 Mom s Crochet Patterns written by Sandy Marie Learn Crochet: Part 1 Includes: Beginner s Basics, Crochet Chain, Single Crochet and More. Plus the Single Crochet Potholder Pattern. Learn Crochet: Part 1

More information

3 Ways to Make $10 an Hour

3 Ways to Make $10 an Hour 3 Ways to Make $10 an Hour By Raja Kamil 1 We didn't start online businesses to make 10 bucks an hour, right? Our goals are obviously much bigger. But here's what new comers need to know that only seasoned

More information

As can be seen in the example pictures below showing over exposure (too much light) to under exposure (too little light):

As can be seen in the example pictures below showing over exposure (too much light) to under exposure (too little light): Hopefully after we are done with this you will resist any temptations you may have to use the automatic settings provided by your camera. Once you understand exposure, especially f-stops and shutter speeds,

More information

Begin. >> I'm Dani, yes.

Begin. >> I'm Dani, yes. >> Okay. Well, to start off my name is Gina. I'm assuming you all know, but you're here for the Prewriting presentation. So we're going to kind of talk about some different strategies, and ways to kind

More information

Dialog on Jargon. Say, Prof, can we bother you for a few minutes to talk about thermo?

Dialog on Jargon. Say, Prof, can we bother you for a few minutes to talk about thermo? 1 Dialog on Jargon Say, Prof, can we bother you for a few minutes to talk about thermo? Sure. I can always make time to talk about thermo. What's the problem? I'm not sure we have a specific problem it's

More information

ACTOR ON TV Oh darling, no. I'll die without you. NICK He's Robert. He ran away with Jenny. NICK That s why she can t marry Lionel.

ACTOR ON TV Oh darling, no. I'll die without you. NICK He's Robert. He ran away with Jenny. NICK That s why she can t marry Lionel. ACTOR ON TV Oh darling, no. I'll die without you. He's Robert. He ran away with Jenny. Oh no! That s why she can t marry Lionel. Oh, that is so sad. I know. But doesn't Jenny know that Lionel is her brother?

More information

1( ) 1

1( ) 1 1( ) 1 http://likasuni.com Back to the English Pump Up Your English! Pump Up Your English! DJ: Good morning, listeners. Welcome to Let's Open Up. DJ:, Let's Open Up. This is Chris Lee. Every Monday, we

More information

MITOCW Recitation 9b: DNA Sequence Matching

MITOCW Recitation 9b: DNA Sequence Matching MITOCW Recitation 9b: DNA Sequence Matching The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high quality educational resources

More information

Girl Doesn't Text Back Cheat Sheet. by: textdino.com

Girl Doesn't Text Back Cheat Sheet. by: textdino.com Girl Doesn't Text Back Cheat Sheet by: textdino.com Spiking a Girl's Curiousity Your best bet in getting a girl (who doesn't text back) to reply is to really spike her curiousity. However, this is only

More information

HOW TO FIND HAPPINESS IN LIFE

HOW TO FIND HAPPINESS IN LIFE HOW TO FIND HAPPINESS IN LIFE Concept Collected By Dr. Subhransu Sekhar Jena Director, Smart Workforce Pvt Ltd Ph.D,MBA(HR), MA Psychology, MS in Psychotherapy & Counselling, LLB, B.Sc ( Zoology Hons)

More information