KTH-KISTA. [Robot] [Labb Raport] Alfred Ndossi [8:30:2012] E-post : ndossi@kth.se. Introduktionskurs i datateknik (H12) II1310

Size: px
Start display at page:

Download "KTH-KISTA. [Robot] [Labb Raport] Alfred Ndossi [8:30:2012] E-post : ndossi@kth.se. Introduktionskurs i datateknik (H12) II1310"

Transcription

1 KTH-KISTA [Robot] [Labb Raport] Alfred Ndossi [8:30:2012] E-post : ndossi@kth.se Introduktionskurs i datateknik (H12) II1310

2 Sammanfattning As I had missed the Robot Lecture I had it tough getting started. My partner had the same problem I had but together we had to skim through the PDF files till we got it together. Having a programming background helped us to find most of the code errors and so we changed them. The code was basic even if it seemed complicated. By reviewing it carefully and in a slow tempo one could easily notice the errors and the codes that never needed to be present in the form. EX: the Dance code. Kista KTH Sida 2 av 7

3 Innehållsförteckning 1. Inledning Bakgrund Syfte och målsättning Genomförande Resultat Analys Diskussion... 6 Referenser... 7 Bilagor... Error! Bookmark not defined. Kista KTH Sida 3 av 7

4 1. Inledning In this lab we had to make sure that we find the code errors and change them in order to make sure that our robot followed the black line. Using the program provided and the notes for the past lecture we had to make sure that the robot printed both of our names we the goal was reached. 1.1 Bakgrund Coding and testing a project is a plus for any student reading this course. As we may face these problems in the future a student is to be able to follow the criteria s needed and stay on course during the lab. A lab is very important to any programmer because there you get to test your work and correct the errors. So understanding the code, testing it and later reviewing is the key to what makes a good programmer and what every student reading this special subject is supposed to be able to do. 1.2 Syfte och målsättning In the lab we got to put our hands in the coding program and our robots, all we had to do was to find the errors and correct them. This was good because the best way in learning is through practice. It s easy to see a math problem but the only way to learn and remember is by practicing it daily. Writing a report is good because there you get to review your work in words and proof how you got your results and how you worked. In a report you can show your individual work and your thought and again the way you came to your result. A lab report gives you a chance to show your conclusions and solutions and the parts the teacher missed during the lab. 2. Genomförande After I got my partner and got our robot we had absolute zero idea on where to start and what to do. As I mentioned before my partner and I had missed the robot lecture so we had to skim the PDF we found in the course website. Luckily we both had a programming background so understanding the code wasn t a problem. After installing the drivers and the program as instructed we asked for help and got started with the program -First we programmed our robot with the basic code given and went for a test drive. Our robot didn t make the line and was out of control so we went back and started to look at the code to see the errors and adjust them. Kista KTH Sida 4 av 7

5 - Adjusting the speed and the small errors we found we went back again for a run test and our robot started showing life. -My partner and I switched and he did the last corrections and we went and did our last run test and the robot made it all the way and followed the line slowly but safely and both of our names were visible on the display. 3. Resultat NR Old Code New Code Comments 2-3 #define SpeedSlow #define SpeedFast 100 string groupmembers[] = "person1" 41 TextOut(0, LCD_LINE1, "Gruppmedlemmar:"); 43 for(i = 0; i < ArrayLen(names); 45 TextOut(0, (LCD_LINE2 - (8*i-16)), names[i]); 68 lightintensity = SensorRaw(IN_1); #define SpeedSlow 30 #define SpeedFast 50 string groupmembers[] = "Alfred","Armin" TextOut(0, LCD_LINE1, "groupmembers"); for(i = 0; i < ArrayLen(groupMembers); TextOut(0, (LCD_LINE2 - (8*i)), groupmembers[i]); lightintensity = SensorRaw(IN_3); We had to reduce the engine speed for the robot to stay in line and for the sensor to have time to think. We filled our names and used (,) to define both of our names The variable was defined as Gruppmedlemmar but the input was to be groupmembers The variable was defined to names but the real input was to be groupmembers The initial -16 give a negative loop which is an error The variable names was defined wrong the input was to be groupmembers The input cable was in the 3 jack not the first if(lightintensity < TopThreshold) OnFwd(OUT_A, SpeedSlow); } else if(lightintensity < TopThreshold) OnFwd(OUT_A, SpeedSlow); } else OnFwd(OUT_A, SpeedFast); LightIntensity speed had to be divided equally to both ends. Kista KTH Sida 5 av 7

6 OnFwd(OUT_A, SpeedSlow); if(lightintensity > BotThreshold) OnFwd(OUT_B, SpeedFast); } else if(lightintensity > BotThreshold) OnFwd(OUT_B, SpeedSlow); } else OnFwd(OUT_B, SpeedFast); The same thing here OnFwd(OUT_B, SpeedFast); void dance() Deleted This variable had nothing to do with the code. OnFwd(OUT_A, 87); OnFwd(OUT_B, 20); Wait(SEC_3); } 114 dance(); Deleted This variable had nothing to do with the line following code 4. Analys Finally after adjusting the code we got our robot working and following the line. Adjusting the speed to a lower grade made our robot have time to sense the line. Adjusting the light sensor with both slow and fast speed gave it a balance that made it easy while reading the line. Everything in the lab was perfect nothing went that wrong than the code itself something that we corrected. 5. Diskussion In this lab I learned a lot. Not just the program but how to easily code a robot. While correcting the code it was good that you could find different codes in the map that had nothing to do with the robot. Looking through the code and understanding it made one feel good and one s knowledge was seen. The lab helped to fresh up our brains because it was a while ago we had our hands on a programming program. The program was had to get started with but with a little help I had it going. The program came to show that it was easy to use and didn t differ that much with all other coding programs. Kista KTH Sida 6 av 7

7 Learning this will help in the future when a problem shows up. And having a programing background is always a positive sign in the IT branch. Referenser I used the information provided in Bilda Report Template Lab PM The Program Provided Line-follower PDF about coding Kista KTH Sida 7 av 7

Book 3 Cost Estimating in an Agile Development Environment. (early release)

Book 3 Cost Estimating in an Agile Development Environment. (early release) Book 3 Cost Estimating in an Agile Development Environment (early release) Book 3: Cost Estimating in an Agile Development Environment In this third book I ll use the slides I gave at a speech several

More information

Lift the Load! Make a lever. Measure the amount of force needed to lift up a book when applying a force at different positions on the lever.

Lift the Load! Make a lever. Measure the amount of force needed to lift up a book when applying a force at different positions on the lever. Lift the Load! Computer 28 The Greek philosopher Archimedes said, "Give me a lever long enough, and a place to stand and I can move the world." What did he mean by this? In this activity, you will get

More information

Spring 2013 Structured Learning Assistance (SLA) Program Evaluation Results

Spring 2013 Structured Learning Assistance (SLA) Program Evaluation Results Crafton Hills College RRN 682 July 2013 Research Brief Spring 2013 Structured Learning Assistance (SLA) Program Evaluation Results Prepared by Lorena Guadiana Summary of Main Findings 85% of respondents

More information

How to Study Mathematics Written by Paul Dawkins

How to Study Mathematics Written by Paul Dawkins How to Study Mathematics Written by Paul Dawkins Before I get into the tips for how to study math let me first say that everyone studies differently and there is no one right way to study for a math class.

More information

214.823.9999 214.823.6440

214.823.9999 214.823.6440 abich & Associates E. 57th Street Partners 214.823.9999 214.823.6440 www.babich.com www.e57partners.com This question would seem to have a simple answer: employers with a need should interview, that s

More information

Response Rates in Online Teaching Evaluation Systems

Response Rates in Online Teaching Evaluation Systems Response Rates in Online Teaching Evaluation Systems James A. Kulik Office of Evaluations and Examinations The University of Michigan July 30, 2009 (Revised October 6, 2009) 10/6/2009 1 How do you get

More information

ISI Debtor Testimonials. April 2015 ISI. Tackling problem debt together

ISI Debtor Testimonials. April 2015 ISI. Tackling problem debt together ISI Debtor Testimonials April 2015 ISI Tackling problem debt together The following are the words of debtors who have availed of the ISI s debt solutions and are real cases. They have reviewed and agreed

More information

Design a Line Maze Solving Robot

Design a Line Maze Solving Robot Design a Line Maze Solving Robot Teaching a Robot to Solve a Line Maze By Richard T. Vannoy II April 2009 RoboticsProfessor@gmail.com Please email me at the address above if you have questions or comments.

More information

Taking Notes in Class THINK

Taking Notes in Class THINK Taking Notes in Class I. Page Setup: Cornell System Date Topic Leave blank 2 Notes 2-3 lines leave blank II. Background Information. A. Today we will be discussing an organized way of study that starts

More information

Chapter 2. My Early Days Trading Forex

Chapter 2. My Early Days Trading Forex Chapter 2 My Early Days Trading Forex I want to talk about my early days as a Forex trader because I m hoping that my story will be something you can relate to. So it doesn t really matter if you are brand

More information

Planning a Responsive Website

Planning a Responsive Website Planning a Responsive Website Planning a website is important for both web designers and website owners. Planning your website before you start building it can save you time, keep your site code more accurate

More information

Data Structures. Algorithm Performance and Big O Analysis

Data Structures. Algorithm Performance and Big O Analysis Data Structures Algorithm Performance and Big O Analysis What s an Algorithm? a clearly specified set of instructions to be followed to solve a problem. In essence: A computer program. In detail: Defined

More information

Practical Nursing Frequently Asked Questions (FAQs)

Practical Nursing Frequently Asked Questions (FAQs) Practical Nursing Frequently Asked Questions (FAQs) There are always a lot of questions about how to apply for the Practical Nursing program. Many people rely on what they hear from others because they

More information

Ideal Gas Law Introduction Lesson Plan Keith Newman Chemistry 511 Final Project 2006/2007

Ideal Gas Law Introduction Lesson Plan Keith Newman Chemistry 511 Final Project 2006/2007 Ideal Gas Law Introduction Lesson Plan Keith Newman Chemistry 511 Final Project 2006/2007 Objectives: Students will be able to solve ideal gas law problems using algebraic ratios. Students will be able

More information

Speed Based on Volume Values & Assignment (Part 1)

Speed Based on Volume Values & Assignment (Part 1) Speed Based on Volume Values & Assignment (Part 1) The Sound Sensor is the last of the standard NXT sensors. In essence it s a kind of microphone which senses amplitude (how loud or soft a sound is), but

More information

p: I am elected q: I will lower the taxes

p: I am elected q: I will lower the taxes Implication Conditional Statement p q (p implies q) (if p then q) is the proposition that is false when p is true and q is false and true otherwise. Equivalent to not p or q Ex. If I am elected then I

More information

Outline. 1 Denitions. 2 Principles. 4 Implementation and Evaluation. 5 Debugging. 6 References

Outline. 1 Denitions. 2 Principles. 4 Implementation and Evaluation. 5 Debugging. 6 References Outline Computer Science 331 Introduction to Testing of Programs Mike Jacobson Department of Computer Science University of Calgary Lecture #3-4 1 Denitions 2 3 4 Implementation and Evaluation 5 Debugging

More information

How to make more money in forex trading. 2003 W. R. Booker & Co. All rights reserved worldwide, forever and ever and ever.

How to make more money in forex trading. 2003 W. R. Booker & Co. All rights reserved worldwide, forever and ever and ever. The 10 Rules How to make more money in forex trading. 2003 W. R. Booker & Co. All rights reserved worldwide, forever and ever and ever. 2 10 Rules Page 2 Rule #1: Never lie to anyone. Never lie to yourself

More information

This Method will show you exactly how you can profit from this specific online casino and beat them at their own game.

This Method will show you exactly how you can profit from this specific online casino and beat them at their own game. This Method will show you exactly how you can profit from this specific online casino and beat them at their own game. It s NOT complicated, and you DON T need a degree in mathematics or statistics to

More information

THE GREAT DEBATE: Is GPS Tracking Really Beneficial for Fleets? Fear of Employee Pushback. Fleet Intelligence for Your Business GPS INSIGHT

THE GREAT DEBATE: Is GPS Tracking Really Beneficial for Fleets? Fear of Employee Pushback. Fleet Intelligence for Your Business GPS INSIGHT THE GREAT DEBATE: Is GPS Tracking Really Beneficial for Fleets? Since GPS tracking was first introduced to the fleet industry, there has been a debate whether this technology is really beneficial for fleets

More information

2014 S&P500 Bulletin Review

2014 S&P500 Bulletin Review 2015 I Am in Wall Street Ltd Registered in England No. 9440096 Director: Daniele Prandelli W: www.iaminwallstreet.com E: info@iaminwallstreet.com T: 0044 75 212 46 792 2014 S&P500 Bulletin Review +124

More information

From the corporate private sector to an International Financial Institution: Swiss working for the IFC

From the corporate private sector to an International Financial Institution: Swiss working for the IFC From the corporate e sector to an International Financial Institution: Swiss working for the IFC A career move from the corporate e sector in Switzerland banking and insurance to an International Financial

More information

Emergency Volunteer. by counselors and other people I talked to that I would be required to do Service

Emergency Volunteer. by counselors and other people I talked to that I would be required to do Service Matt Szpara December 9, 2004 Gottlieb Memorial Hospital Emergency Volunteer When first going into the Scholars Program at Triton College, I was told by counselors and other people I talked to that I would

More information

Tamika just loved school this year! She was in second grade

Tamika just loved school this year! She was in second grade Tamika just loved school this year! She was in second grade and she loved it because she had the best teacher ever Mrs. Washington! Mrs. Washington loved math, just like Tamika, and she liked to organize

More information

Time Management Strategies for Busy TAs (Full Article)

Time Management Strategies for Busy TAs (Full Article) Time Management Strategies for Busy TAs (Full Article) Graduate education provides students with the opportunity to develop and hone a host of essential scholarly skills. However, graduate students receive

More information

The Google Guide to Search Advertising. How to make search advertising work for your business

The Google Guide to Search Advertising. How to make search advertising work for your business The Google Guide to Search Advertising How to make search advertising work for your business Contents Introduction... 2 Google AdWords: What s In It For You?... 2 5 Steps to Success: Setting Up & Maintaining

More information

The Kelly Betting System for Favorable Games.

The Kelly Betting System for Favorable Games. The Kelly Betting System for Favorable Games. Thomas Ferguson, Statistics Department, UCLA A Simple Example. Suppose that each day you are offered a gamble with probability 2/3 of winning and probability

More information

Get enough sleep so that you can stay alert during lecture. Falling asleep in the front row wastes your time and might offend your professor.

Get enough sleep so that you can stay alert during lecture. Falling asleep in the front row wastes your time and might offend your professor. SCIENCE STUDY SKILLS CYCLE (S 3 C) DR. JEFF PARADIS (SACSTATE) GENERAL INFORMATION Doing well in college science classes requires a minimum of 2-3 hours work outside of class for each hour you are in lecture.

More information

Sample Process Recording - First Year MSW Student

Sample Process Recording - First Year MSW Student Sample Process Recording - First Year MSW Student Agency: Department of Social Services Client System: Claudia Jones, age 22, unemployed single mother Date: February 22, 20xx Presenting Issues: Client

More information

Case Study. 4D-DC services used: Colocation & Connectivity. Data Liberation provides expertise and insight to

Case Study. 4D-DC services used: Colocation & Connectivity. Data Liberation provides expertise and insight to Case Study Company: Location: Sector: Data Liberation Wimbledon, UK Market Research 4D-DC services used: Colocation & Connectivity Company bio: Data Liberation provides expertise and insight to some of

More information

MA 1125 Lecture 14 - Expected Values. Friday, February 28, 2014. Objectives: Introduce expected values.

MA 1125 Lecture 14 - Expected Values. Friday, February 28, 2014. Objectives: Introduce expected values. MA 5 Lecture 4 - Expected Values Friday, February 2, 24. Objectives: Introduce expected values.. Means, Variances, and Standard Deviations of Probability Distributions Two classes ago, we computed the

More information

Open Source Learning Management System (OSS)

Open Source Learning Management System (OSS) DEPLOYING MISSION CRITICAL LMS USING OPEN SOURCE SOFTWARE Leigh Jin San Francisco State University OMG Standards for FOSS Governance Workshop Santa Clara, California December 11, 2013 OUTLINE Introduction

More information

Google Lead Generation For Attorneys - Leverage The Power Of Adwords To Grow Your Law Business FAST. The Foundation of Google AdWords

Google Lead Generation For Attorneys - Leverage The Power Of Adwords To Grow Your Law Business FAST. The Foundation of Google AdWords Google Lead Generation For Attorneys - Leverage The Power Of Adwords To Grow Your Law Business FAST You re about to discover the secrets of fast legal practice success with Google AdWords. Google AdWords

More information

CONTENTS. What is ROBOTC? Section I: The Basics

CONTENTS. What is ROBOTC? Section I: The Basics BEGINNERS CONTENTS What is ROBOTC? Section I: The Basics Getting started Configuring Motors Write Drive Code Download a Program to the Cortex Write an Autonomous Section II: Using Sensors Sensor Setup

More information

How To Win Your Fair Hearing

How To Win Your Fair Hearing How To Win Your Fair Hearing The Legal Aid Society The Legal Aid Society's Public Benefits Education Project This Booklet was made possible by funds from the Charles H. Revson Foundation. The statements

More information

Example: Find the expected value of the random variable X. X 2 4 6 7 P(X) 0.3 0.2 0.1 0.4

Example: Find the expected value of the random variable X. X 2 4 6 7 P(X) 0.3 0.2 0.1 0.4 MATH 110 Test Three Outline of Test Material EXPECTED VALUE (8.5) Super easy ones (when the PDF is already given to you as a table and all you need to do is multiply down the columns and add across) Example:

More information

Conditionals: (Coding with Cards)

Conditionals: (Coding with Cards) 10 LESSON NAME: Conditionals: (Coding with Cards) Lesson time: 45 60 Minutes : Prep time: 2 Minutes Main Goal: This lesson will introduce conditionals, especially as they pertain to loops and if statements.

More information

Back to School: Working with Teachers and Schools

Back to School: Working with Teachers and Schools Back to School: Working with Teachers and Schools Starting school each fall is a challenge for the student and parents. The following article offers some valuable suggestions as your child starts a new

More information

Cloud computing is a marketing term that means different things to different people. In this presentation, we look at the pros and cons of using

Cloud computing is a marketing term that means different things to different people. In this presentation, we look at the pros and cons of using Cloud computing is a marketing term that means different things to different people. In this presentation, we look at the pros and cons of using Amazon Web Services rather than setting up a physical server

More information

Associated files: Reviewing a session. Task 1-2 hours

Associated files: Reviewing a session. Task 1-2 hours Unit 2 Sports coaching Reviewing a session Instructions and answers for Teachers These instructions should accompany the OCR resource Reviewing a session, which supports the OCR Level 3 Cambridge Technical

More information

How To Proofread

How To Proofread GRADE 8 English Language Arts Proofreading: Lesson 6 Read aloud to the students the material that is printed in boldface type inside the boxes. Information in regular type inside the boxes and all information

More information

Beyond Social Networking: Using Facebook to Promote Student Engagement, Study Skills, and Critical Thinking Amy J. Marin Phoenix College

Beyond Social Networking: Using Facebook to Promote Student Engagement, Study Skills, and Critical Thinking Amy J. Marin Phoenix College Beyond Social Networking: Using Facebook to Promote Student Engagement, Study Skills, and Critical Thinking Amy J. Marin Phoenix College Cliff Stroop, pictured here relaxing at home. I think ALL classes

More information

Career Planning Allen House 610-606-4648 career@cedarcrest.edu Facebook.com/CareeratCCC Monday Friday: 8:30am 4:30pm

Career Planning Allen House 610-606-4648 career@cedarcrest.edu Facebook.com/CareeratCCC Monday Friday: 8:30am 4:30pm Graduate & Professional Schools Career Planning Allen House 610-606-4648 career@cedarcrest.edu Facebook.com/CareeratCCC Monday Friday: 8:30am 4:30pm So You Are Thinking About Graduate School... Graduate

More information

Undergraduate Advising FAQ

Undergraduate Advising FAQ Undergraduate Advising FAQ Section 1: Registration 1. Why can t I register if there are seats available? There are two reasons: (1) we are holding seats for students who need this class to graduate, or

More information

Google Lead Generation for Attorneys

Google Lead Generation for Attorneys 1 Google Lead Generation For Attorneys Leverage The Power Of AdWords To Grow Your Law Business FAST You re about to discover the secrets of fast legal practice success with Google AdWords. Google AdWords

More information

Provided free by Topcashoffer.co.uk

Provided free by Topcashoffer.co.uk Provided free by Topcashoffer.co.uk So you are thinking about selling your house, and at this stage have probably tried your local estate agent and failed; or you ve made a decision that the local estate

More information

m-net: Miles Valentine, CEO of Zeacom Ltd

m-net: Miles Valentine, CEO of Zeacom Ltd m-net: Miles Valentine, CEO of Zeacom Ltd Zeacom Communications Center (ZCC) is the company's flagship unified communications product. It was developed for contact centres of 10 to 250 seats. ZCC is also

More information

Introducing Multiplication of Fractions A Lesson for Fifth and Sixth Graders

Introducing Multiplication of Fractions A Lesson for Fifth and Sixth Graders Introducing Multiplication of Fractions A Lesson for Fifth and Sixth Graders by Marilyn Burns From Online Newsletter Issue Number 12, Winter 200 2004 Teaching multiplication of fractions is, in one way,

More information

Seven Things You Must Know Before Hiring a DUI Lawyer

Seven Things You Must Know Before Hiring a DUI Lawyer Seven Things You Must Know Before Hiring a DUI Lawyer 1 Introduction Some people don t quite understand the severity of getting a DUI. In many cases, your license is instantly taken away and you won t

More information

Note Taking Will Make You a Better Student

Note Taking Will Make You a Better Student Note Taking Will Make You a Better Student Have you ever found yourself getting ready to study for a test at 10:30 p.m. the night before a test? You sit there with only the book in front of you as your

More information

The Google Guide to Search Advertising. How to make search advertising work for your business

The Google Guide to Search Advertising. How to make search advertising work for your business The Google Guide to Search Advertising How to make search advertising work for your business Contents Introduction... 2 Google AdWords: What s In It For You?... 2 5 Steps to Success: Setting Up & Maintaining

More information

Network Monitoring with Xian Network Manager

Network Monitoring with Xian Network Manager Network Monitoring with Xian Network Manager Did you ever got caught by surprise because of a network problem and had downtime as a result? What about monitoring your network? Network downtime or network

More information

Making $200 a Day is Easy!

Making $200 a Day is Easy! Making $200 a Day is Easy! Firstly, I'd just like to say thank you for purchasing this information. I do not charge a huge amount for it so I hope that you will find it useful. Please note that if you

More information

SUPERIOR COURT OF CALIFORNIA-COUNTY OF CONTRA COSTA 1. Mock Trial Script: The Case of a Stolen Car

SUPERIOR COURT OF CALIFORNIA-COUNTY OF CONTRA COSTA 1. Mock Trial Script: The Case of a Stolen Car SUPERIOR COURT OF CALIFORNIA-COUNTY OF CONTRA COSTA 1 Mock Trial Script: The Case of a Stolen Car SUPERIOR COURT OF CALIFORNIA-COUNTY OF CONTRA COSTA 2 Mock Trial Script BAILIFF: All rise. Department One

More information

Game Programming CS233G / Winter 2012 / PCC

Game Programming CS233G / Winter 2012 / PCC Game Programming CS233G / Winter 2012 / PCC Portland Community College Sylvania Campus, Technology Classroom Building (TCB) room 310 Instructor: Phillip Kerman Telephone/Messages: 503-449-6701 Email: teacher@phillipkerman.com

More information

The Psychic Salesperson Speakers Edition

The Psychic Salesperson Speakers Edition The Psychic Salesperson Speakers Edition Report: The Three Parts of the Sales Process by Dave Dee Limits of Liability & Disclaimer of Warranty The author and publisher of this book and the associated materials

More information

Material for Peers: Portfolios

Material for Peers: Portfolios TOPSIDE Training Opportunities for Peer Supporters with Intellectual Disabilities in Europe Material for Peers: Portfolios Inclusion Europe www.peer-training.eu Authors: TOPSIDE partners Hugh Savage, ENABLE

More information

CS 2112 Spring 2014. 0 Instructions. Assignment 3 Data Structures and Web Filtering. 0.1 Grading. 0.2 Partners. 0.3 Restrictions

CS 2112 Spring 2014. 0 Instructions. Assignment 3 Data Structures and Web Filtering. 0.1 Grading. 0.2 Partners. 0.3 Restrictions CS 2112 Spring 2014 Assignment 3 Data Structures and Web Filtering Due: March 4, 2014 11:59 PM Implementing spam blacklists and web filters requires matching candidate domain names and URLs very rapidly

More information

The Basics of Robot Mazes Teacher Notes

The Basics of Robot Mazes Teacher Notes The Basics of Robot Mazes Teacher Notes Why do robots solve Mazes? A maze is a simple environment with simple rules. Solving it is a task that beginners can do successfully while learning the essentials

More information

Rock-N-Happy Heart: The Devotional By Yancy. by Yancy

Rock-N-Happy Heart: The Devotional By Yancy. by Yancy Rock-N-Happy Heart: The Devotional By Yancy by Yancy 1 73 Day 1-Dreams Will Come True Once upon a time a long time ago, I was a little girl with a dream. I loved to sing. (My parents have told that me

More information

SCIENCE NOTEBOOKS: We would label their dividers first. I would put the labels on the board or overhead. You could use a WhiteBoard, too.

SCIENCE NOTEBOOKS: We would label their dividers first. I would put the labels on the board or overhead. You could use a WhiteBoard, too. SCIENCE NOTEBOOKS: The principles behind notebooks are important: To be well-organized or to strive to be To develop the mindset of a place for everything To be accountable for your papers (keeping every

More information

File Management Windows

File Management Windows File Management Windows : Explorer Navigating the Windows File Structure 1. The Windows Explorer can be opened from the Start Button, Programs menu and clicking on the Windows Explorer application OR by

More information

Improving Employee Satisfaction in Healthcare through Effective Employee Performance Management

Improving Employee Satisfaction in Healthcare through Effective Employee Performance Management Improving Employee Satisfaction in Healthcare through Effective Employee Performance Management Introduction The following quotes are comments made by HR professionals from U.S. healthcare providers who

More information

Course No. LW 56-103-03 (51) Certificate in Legal Studies Professional Stream Fast Track Provisional Schedule (2015-16)

Course No. LW 56-103-03 (51) Certificate in Legal Studies Professional Stream Fast Track Provisional Schedule (2015-16) 2015-16 Course No. LW 56-103-03 (51) Certificate in Legal Studies Professional Stream Fast Track Provisional Schedule (2015-16) Module 1: Hong Kong Legal System and Legal Method March 3, 2016 (Thu) March

More information

getting there Models for Self- Directed Support broker support Getting There Discussion paper

getting there Models for Self- Directed Support broker support Getting There Discussion paper Models for Self- Directed Support broker support Getting There Discussion paper getting there Outside the Box November 2012 Introduction Introduction what this section covers: About Getting There Summary

More information

A lawyer and her client weigh in on the overtime scam

A lawyer and her client weigh in on the overtime scam A lawyer and her client weigh in on the overtime scam BY Paul Solman June 18, 2015 at 2:48 PM EST Working overtime doesn t always equate to overtime pay. Photo by Getty Images Editor s Note: In his 2015

More information

Managerial Accounting Prof. Dr. Vardaraj Bapat Department of School of Management Indian Institute of Technology, Bombay

Managerial Accounting Prof. Dr. Vardaraj Bapat Department of School of Management Indian Institute of Technology, Bombay Managerial Accounting Prof. Dr. Vardaraj Bapat Department of School of Management Indian Institute of Technology, Bombay Lecture - 26 Cost Volume Profit Analysis Dear participations in our early session,

More information

TIPS FOR CREATING SEP S ON DEGREEWORKS Skyline College Counselor Training April 22, 2013

TIPS FOR CREATING SEP S ON DEGREEWORKS Skyline College Counselor Training April 22, 2013 TIPS FOR CREATING SEP S ON DEGREEWORKS Skyline College Counselor Training April 22, 2013 Basic DegreeWorks and DegreeWorks Education Plan Instructions are available on the Banner Portal Training page:

More information

Seven Things You Must Know Before Hiring a DUI Attorney

Seven Things You Must Know Before Hiring a DUI Attorney Seven Things You Must Know Before Hiring a DUI Attorney Seven Things to Know Before Hiring a DUI Attorney Copyright 2014 SmartWeb Online 1 Introduction Some people don t quite understand the severity of

More information

Profiles of Chemical Engineers

Profiles of Chemical Engineers Profiles of Chemical Engineers Liza Munda Associate Process Engineer Genentech San Francisco, CA Education: B.S. - Chemical Engineering, California Polytechnic State University, San Luis Obispo Job Description:

More information

Using your LED Plus keypad

Using your LED Plus keypad Using your LED Plus keypad System 238 System 2316 System 238i System 2316i Part Number 5-051-372-00 Rev B Thank you for purchasing this C&K alarm system Your system is one of the most powerful and advanced

More information

How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook

How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook Written Directions for EV3 Line Follow (Heaviside Algorithm) Description: Given a black line and the light sensor on the EV3 robot, we want to have the light sensor read values from the reflected light.

More information

Critical analysis. Be more critical! More analysis needed! That s what my tutors say about my essays. I m not really sure what they mean.

Critical analysis. Be more critical! More analysis needed! That s what my tutors say about my essays. I m not really sure what they mean. Critical analysis Be more critical! More analysis needed! That s what my tutors say about my essays. I m not really sure what they mean. I thought I had written a really good assignment this time. I did

More information

Preseason Planning and Cash Flow Management. Mike Barnidge Credit Manager

Preseason Planning and Cash Flow Management. Mike Barnidge Credit Manager Preseason Planning and Cash Flow Management Mike Barnidge Credit Manager This seminar provides a planning and forecasting tool you can use throughout the year to fine-tune your financials, plan for anticipated

More information

Drunk Driving Vocabulary Lesson

Drunk Driving Vocabulary Lesson Hello and welcome to the vocabulary lesson for the conversation Drunk Driving. In this conversation, Joe and I are just talking about different friends or different people that we ve known that have gotten

More information

Exchange Report - San Diego, US

Exchange Report - San Diego, US Exchange Report - San Diego, US My name is Clara Elmquist and I went to San Diego in the state California in the US. It was the first time there and I loved it! The time in San Diego has been great and

More information

Portland Community College Activities and Services that Assist Successful Students in Achieving their Degree Goal: What Students Say

Portland Community College Activities and Services that Assist Successful Students in Achieving their Degree Goal: What Students Say Portland Community College Activities and Services that Assist Successful Students in Achieving their Degree Goal: What Students Say As part of an on line survey administered in Spring Term 2010 by the

More information

The Link Between Business Intelligence And Profitability

The Link Between Business Intelligence And Profitability The Link Between Business Intelligence And Profitability Sponsored by x February 27, 2013 1 PM EST Download handouts (PDF) : www.mdm.com/slides or info@mdm.com Session Leader J. Michael Marks, Managing

More information

CROSS EXAMINATION OF AN EXPERT WITNESS IN A CHILD SEXUAL ABUSE CASE. Mark Montgomery

CROSS EXAMINATION OF AN EXPERT WITNESS IN A CHILD SEXUAL ABUSE CASE. Mark Montgomery CROSS EXAMINATION OF AN EXPERT WITNESS IN A CHILD SEXUAL ABUSE CASE Mark Montgomery Post Office Box 161 Durham, NC 27702 (919) 680-6249 mark.montgomery@mindspring.com Opinion Testimony by a Pediatrician/Nurse/Counselor/Social

More information

STREAMLINING COMPUTER DELIVERY PROCESSES USING 1E SHOPPING AND SCCM

STREAMLINING COMPUTER DELIVERY PROCESSES USING 1E SHOPPING AND SCCM CASE STUDY FROM THE FACTORY TO THE USER: STREAMLINING COMPUTER DELIVERY PROCESSES USING 1E SHOPPING AND SCCM By Gene Acker SCCM Architect, Project Manager, and Administrator We all come to rely on manufacturers.

More information

Visual Logic Instructions and Assignments

Visual Logic Instructions and Assignments Visual Logic Instructions and Assignments Visual Logic can be installed from the CD that accompanies our textbook. It is a nifty tool for creating program flowcharts, but that is only half of the story.

More information

bottom line: implemented a single, web-based system that improved efficiency and care for both occ health and immediate care patients

bottom line: implemented a single, web-based system that improved efficiency and care for both occ health and immediate care patients Novapex Keith Huff, MD: bottom line: implemented a single, web-based system that improved efficiency and care for both occ health and immediate care patients quick view: measurable impact 4 4 New users

More information

Programming LEGO NXT Robots using NXC

Programming LEGO NXT Robots using NXC Programming LEGO NXT Robots using NXC This text programming language derived from C language is bended together with IDE BricxCC on standard firmware LEGO Mindstorms. This can be very convenient for those,

More information

Copyright 2010 You have giveaway rights to this report. Feel free to share.

Copyright 2010 You have giveaway rights to this report. Feel free to share. Article Marketing Magic Copyright 2010 You have giveaway rights to this report. Feel free to share. Table of Contents What Is Article Marketing?...3 The History of Article Marketing...7 Article Marketing

More information

Management Information Systems 260 Web Programming Fall 2006 (CRN: 42459)

Management Information Systems 260 Web Programming Fall 2006 (CRN: 42459) Management Information Systems 260 Web Programming Fall 2006 (CRN: 42459) Class Time: 6:00 8:05 p.m. (T,Th) Venue: WSL 5 Web Site: www.pbvusd.net/mis260 Instructor Name: Terrell Tucker Office: BDC 127

More information

Excerpt 6: Where Are the First Three Places to Go When Your Insurance Company Denies?

Excerpt 6: Where Are the First Three Places to Go When Your Insurance Company Denies? Excerpt 6: Where Are the First Three Places to Go When Your Insurance Company Denies? Previous Excerpt 5 "Before the Battle -- First Three Things to Do" 1. Medical Policy Statements 2. Insurance company

More information

15 Toughest Interview Questions and Answers! Reference: WomenCo. Lifestyle Digest, updates@m.womenco.com

15 Toughest Interview Questions and Answers! Reference: WomenCo. Lifestyle Digest, updates@m.womenco.com 15 Toughest Interview Questions and Answers! Reference: WomenCo. Lifestyle Digest, updates@m.womenco.com 1. Why do you want to work in this industry? I love to shop. Even as a kid, I spent hours flipping

More information

TEACHER S GUIDE. How can Ozobot help to teach students in your classroom? Thank you for inviting Ozobot into your classroom!

TEACHER S GUIDE. How can Ozobot help to teach students in your classroom? Thank you for inviting Ozobot into your classroom! TEACHER S GUIDE Thank you for inviting Ozobot into your classroom! How can Ozobot help to teach students in your classroom? Ozobot is a miniature smart robot that can follow lines or roam around freely,

More information

Does technology enhance learning?

Does technology enhance learning? www.tel.ac.uk Does technology enhance learning? SOME FINDINGS FROM THE UK S TECHNOLOGY ENHANCED LEARNING (TEL) RESEARCH PROGRAMME. 2 LEARNING The Learning (TEL) Research programme is: a 12m programme funded

More information

Mike: Alright welcome to episode three of Server Talk, I m here with Alexey. I m Mike. Alexey, how are things been going, man?

Mike: Alright welcome to episode three of Server Talk, I m here with Alexey. I m Mike. Alexey, how are things been going, man? Mike: Alright welcome to episode three of Server Talk, I m here with Alexey. I m Mike. Alexey, how are things been going, man? Alexey: They re doing pretty good. Yeah, I don t know, we ve launched two

More information

Bill of Materials: Line Follower: A Zippy Robot That Senses Where to Go PART NO. 2170783

Bill of Materials: Line Follower: A Zippy Robot That Senses Where to Go PART NO. 2170783 Line Follower: A Zippy Robot That Senses Where to Go PART NO. 2170783 This kit has the parts you'll need with the exception of a few craft items sold separately to make a line-following cart. It uses a

More information

PUSD High Frequency Word List

PUSD High Frequency Word List PUSD High Frequency Word List For Reading and Spelling Grades K-5 High Frequency or instant words are important because: 1. You can t read a sentence or a paragraph without knowing at least the most common.

More information

THEME: God desires for us to demonstrate His love!

THEME: God desires for us to demonstrate His love! Devotion NT320 CHILDREN S DEVOTIONS FOR THE WEEK OF: LESSON TITLE: The Gift of Love THEME: God desires for us to demonstrate His love! SCRIPTURE: 1 Corinthians 13:1-13 Dear Parents Welcome to Bible Time

More information

The One Key Thing You Need to Be Successful In Prospecting and In Sales

The One Key Thing You Need to Be Successful In Prospecting and In Sales The One Key Thing You Need to Be Successful In Prospecting and In Sales The secret key to being successful in prospecting and in sales found in this report will work in ANY INDUSTRY for any product or

More information

It Takes a Big Dog to Stay on Top of a Tough Market

It Takes a Big Dog to Stay on Top of a Tough Market Fleetmatics (formerly SageQuest ) An Article for People Interested in Using GPS Fleet Tracking to Help Build Business Success. From the Pages of Fleet Intelligence It Takes a Big Dog to Stay on Top of

More information

How To Understand Insurance And How It Works

How To Understand Insurance And How It Works TEACHER GUIDE 11.3 RISK MANAGEMENT AND INSURANCE PAGE 1 Standard 11: The student will describe and explain how various types of insurance can be used to manage risk. Using Insurance to Manage Risk Priority

More information

Applying to Physical Therapy Schools. Alyssa Montanaro Feel free to have any CMU students contact me with questions or advice.

Applying to Physical Therapy Schools. Alyssa Montanaro Feel free to have any CMU students contact me with questions or advice. Applying to Physical Therapy Schools Alyssa Montanaro Feel free to have any CMU students contact me with questions or advice. The application process: There are 3 major things you need to prepare for before

More information