Reference Guide Playful Invention Company

Size: px
Start display at page:

Download "Reference Guide Playful Invention Company"

Transcription

1 Reference Guide 2016

2 TutleArt Interface Editor Run the main stack Tap the stack to run Save the current project and exit to the Home page Show the tools Hide the blocks Tap to select a category of programming blocks: - Turtle - Pen - Math - Flow - My Blocks O the Options Menu Stop button Save and exit Tap anywhere on the canvas to run the program again Tap anywhere on the black border to show the blocks Close without saving

3 set TutleArt Interface Tools Tap to clean the screen and return the turtle to the center. Tap to select the tool, then tap on a stack to delete it. Tap to select the tool, then tap on a stack to get a copy. Undo. Redo. Options Menu Save a copy of the current project. O or close the Backpack. Zoom out to see the entire programming canvas. Close the current project and exit to the Home page. Backpack The backpack is a place where you may temporarily store stacks. It allows you to copy and paste stacks from one project to another. Drag and drop stacks here, to store them temporarily Drag them out to get a copy color set 0 50 repeat 4 forward 100 right 90

4 TutleArt Interface Home Page Gallery name O the Gallery Panel Tap the empty thumbnail to start a new project Touch and hold the empty thumbnail to paste the contents of the clipboard. Tap a thumbnail to o a project. Touch and hold a thumbnail to copy to the clipboard, take a snapshot, or delete the project. Tap to edit the name Gallery Panel Gallery name Tap to close Add a gallery Tap to see this gallery s thumbnails Tap on a thumbnail to move the project to the current gallery Tap to switch galleries

5 TutleArt Tips and Tricks Find out what a block does forward clean forward 100 number of steps forward 100 moves the turlte 100 steps forward Touch and hold a block to see what it does. Colors and Shades The color numbers in TurtleArt are between 0 and 100. The numbers are between 0 and 100. Color Shade The default color is 0 and the default is 50. Black color is and 0. White is color and 100.

6 TutleArt Tips and Tricks Two Handed Gestures clean In order to keep a palette o, use your left hand to hold on the palette and your right to drag blocks. forward right back left arc arc setxy set heading x y heading Tap on, then touch and hold on. With the other hand, tap on all the stacks you want to delete. When you are done deleting, release the scissors. clean forward 100 Tap on, then select. Hold and drag the stack you want to copy. clean clean forward rd 100 forward 100

7 TutleArt Tips and Tricks Coordinate System TurtleArt works with a coordinate system. The Turtle s default position is (0, 0), which is the middle of the TurtleArt canvas. Y Move and turn the turtle Move the turtle by dragging it by its shell. Turn the turtle by dragging it by its nose.

8 TutleArt Tips and Tricks Defining Procedures Place a hat on top of a stack. Tap to give it a name. dash up forward 6 down forward 6 up forward 6 down forward 6 A block with that name will appear on the yellow blocks palette. Use that block alone or in other stacks. repeat 10 dash Local Boxes To add an input, drag a box block (box 1, 2, or 3) and drop it on a named hat. dash box1 up forward 6 down forward 6 dash box1 up forward down 6 forward 6 Change the input to temporarily change the value of the box. dash box1 up forward down forward box1 box1 repeat 10 dash 10 input Hats can have a maximum of 2 inputs.

9 TutleArt Tips and Tricks Save to Camera Roll Touch and hold on the thumbnail and choose The TurtleArt image will then be copied to your camera roll. Magritte Bird

10 TutleArt Blocks Turtle clean clean Clear the screen and reposition the turtle to the center. forward back forward Move the turtle forward. back Move the turtle backward. right left right Turn the turtle right. left Turn the turtle left. arc angle Draw an arc. arc radius setxy x coordinate setxy x Set the position of the turtle. x The x (horizontal) coordinate of the turtle. y y coordinate y The y (vertical) coordinate of the turtle. set heading heading set heading Set the heading of the turtle. heading The heading of the turtle.

11 set TutleArt Blocks Pen up down up Raise the turtle s so that it will not draw. down Lower the turtle s so that it will draw. set size size set size Set the width of the turtle s. size The width of the turtle s. set color color set color Set the color of the turtle s. color The color of the turtle s. set set Set the of the turtle s. The of the turtle s. start fill end fill start fill Mark the start of an area to be filled. end fill Mark the end of the area and fill it. fill screen color fill screen Fill the screen with a color and a.

12 set TutleArt Blocks Numbers Arithmetic in TurtleArt proceeds from left to right. 1+2*3 is read as (1+2)*3 not 1+(2*3). number 0 A number to be used as an input. add subtract + Add two numbers. - Subtract one number from another. multiply divide X Multiply two numbers. / Divide one number by another. modulo % Calculate the remainder when dividing two numbers. random one of random Generate a random number between the two specified values. one of Choose one of two numbers. greater less > Test if one number is greater than another. < Test if one number is less than another. equal = Test if two numbers are equal.

13 set set TutleArt Blocks o bracket close bracket ( O a parenthesis. ) Close the parenthesis. print print Print a number. Flow wait forever wait Wait for some time (in tenths of seconds). forever Run some blocks over and over. repeat if repeat Repeat some blocks a specified number of times. if Conditionally run some blocks. stop stop Stop the stack that is running. vertical spacer horizontal spacer A spacer for layout purposes. A spacer for layout purposes.

14 set TutleArt Blocks My Blocks store in box box store in box1 Store a number in a box. box1 The current value of a box. hat Name a stack to create your own block.

Sketch Out the Design

Sketch Out the Design 9 Making an Advanced Platformer he first Super Mario Bros. game was introduced in 1985 and became Nintendo s greatest video game franchise and one of the most influential games of all time. Because the

More information

Lab 6: Energizer Turtles

Lab 6: Energizer Turtles Lab 6: Energizer Turtles Screen capture showing the required components: 4 Sliders (as shown) 2 Buttons (as shown) 4 Monitors (as shown) min-pxcor = -50, max-pxcor = 50, min-pycor = -50, max-pycor = 50

More information

Coding with Scratch - First Steps

Coding with Scratch - First Steps Getting started Starting the Scratch program To start using Scratch go to the web page at scratch.mit.edu. Page 1 When the page loads click on TRY IT OUT. Your Scratch screen should look something like

More information

In this project you will use loops to create a racing turtle game and draw a race track.

In this project you will use loops to create a racing turtle game and draw a race track. Turtle Race! Introduction In this project you will use loops to create a racing turtle game and draw a race track. Step 1: Race track You re going to create a game with racing turtles. First they ll need

More information

The Lost Treasures of Giza

The Lost Treasures of Giza The Lost Treasures of Giza *sniff* We tried our best, but they still got away! What will we do without Mitch s programming? Don t give up! There has to be a way! There s the Great Pyramid of Giza! We can

More information

1 Turtle Graphics Concepts

1 Turtle Graphics Concepts Transition from Scratch to Python using to Turtle Graphics Practical Sheet Contents 1 Turtle Graphics Concepts... 1 2 First Turtle Program... 1 3 Exploring More Turtle... 2 4 Control Structures in Python

More information

Writing Simple Procedures Drawing a Pentagon Copying a Procedure Commanding PenUp and PenDown Drawing a Broken Line...

Writing Simple Procedures Drawing a Pentagon Copying a Procedure Commanding PenUp and PenDown Drawing a Broken Line... Turtle Guide Contents Introduction... 1 What is Turtle Used For?... 1 The Turtle Toolbar... 2 Do I Have Turtle?... 3 Reviewing Your Licence Agreement... 3 Starting Turtle... 3 Key Features... 4 Placing

More information

Getting Started with Java Using Alice. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Getting Started with Java Using Alice. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Getting Started with Java Using Alice Use Functions 1 Copyright 2013, Oracle and/or its affiliates. All rights Objectives This lesson covers the following objectives: Use functions to control movement

More information

Scratch Lesson Plan. Part One: Structure. Part Two: Movement

Scratch Lesson Plan. Part One: Structure. Part Two: Movement Scratch Lesson Plan Scratch is a powerful tool that lets you learn the basics of coding by using easy, snap-together sections of code. It s completely free to use, and all the games made with scratch are

More information

Workbook. Version 3. Created by G. Mullin and D. Carty

Workbook. Version 3. Created by G. Mullin and D. Carty Workbook Version 3 Created by G. Mullin and D. Carty Introduction... 3 Task 1. Load Scratch... 3 Task 2. Get familiar with the Scratch Interface... 3 Task 3. Changing the name of a Sprite... 5 Task 4.

More information

Package TurtleGraphics

Package TurtleGraphics Version 1.0-7 Date 2017-10-23 Title Turtle Graphics Suggests knitr VignetteBuilder knitr Depends R (>= 3.0), grid Package TurtleGraphics October 23, 2017 An implementation of turtle graphics .

More information

Lab 5: Bumper Turtles

Lab 5: Bumper Turtles Lab 5: Bumper Turtles min-pxcor = -16, max-pxcor = 16, min-pycor = -16, max-pycor = 16 The Bumper Turtles model created in this lab requires the use of Boolean logic and conditional control flow. The basic

More information

Table of Contents. Page 2 ebook created with Orion PDF Author orion.aidaluu.com. What is Orion Label Maker?

Table of Contents. Page 2 ebook created with Orion PDF Author orion.aidaluu.com. What is Orion Label Maker? 3.2 0 3 3. 3.2 Table of Contents What is Orion Label Maker? Compatible Templates (Part I - US Letter Size Paper) Compatible Templates (Part II - US Letter Size Paper) Compatible Templates (Part III - A4

More information

User Manual. Senior Project Mission Control. Product Owner Charisse Shandro Mission Meow Cat Rescue and Adoptions, Inc.

User Manual. Senior Project Mission Control. Product Owner Charisse Shandro Mission Meow Cat Rescue and Adoptions, Inc. User Manual Senior Project Mission Control Product Owner Charisse Shandro Mission Meow Cat Rescue and Adoptions, Inc. Team The Parrots are Coming Eric Bollinger Vanessa Cruz Austin Lee Ron Lewis Robert

More information

StarLogo Complete Command List (Edited and reformatted by Nicholas Gessler, 6 June 2001.)

StarLogo Complete Command List (Edited and reformatted by Nicholas Gessler, 6 June 2001.) StarLogo Complete Command List (Edited and reformatted by Nicholas Gessler, 6 June 2001.) Symbols [Observer, Turtle] number1 +, -, *, / number2 Basic math functions. Be sure to put a space between the

More information

Virtual Dog Program in Scratch. By Phil code-it.co.uk

Virtual Dog Program in Scratch. By Phil code-it.co.uk Virtual Dog Program in Scratch By Phil Bagge @baggiepr code-it.co.uk How to use this planning Confident children could work independently through the instructions You could use the step by step guide to

More information

Scratch. To do this, you re going to need to have Scratch!

Scratch. To do this, you re going to need to have Scratch! GETTING STARTED Card 1 of 7 1 These Sushi Cards are going to help you learn to create computer programs in Scratch. To do this, you re going to need to have Scratch! You can either download it and install

More information

PYTHON FOR KIDS A Pl ayfu l I ntrodu ctio n to Prog r am m i ng J a s o n R. B r i g g s

PYTHON FOR KIDS A Pl ayfu l I ntrodu ctio n to Prog r am m i ng J a s o n R. B r i g g s PYTHON FO R K I D S A P l ay f u l I n t r o d u c t i o n to P r o g r a m m i n g Jason R. Briggs 4 Drawing with Turtles A turtle in Python is sort of like a turtle in the real world. We know a turtle

More information

Clicker Books: How to Make a Clicker Book Using Clicker Books App v

Clicker Books: How to Make a Clicker Book Using Clicker Books App v 105 1750 West 75th Avenue, Vancouver, B.C., Canada V6P 6G2 Phone: 604.261.9450 Fax: 604.261.2256 www.setbc.org Clicker Books: How to Make a Clicker Book Using Clicker Books App v. 1.4.3 Introduction Clicker

More information

Code, Draw, and 3D-Print with Turtle Tina

Code, Draw, and 3D-Print with Turtle Tina Code, Draw, and 3D-Print with Turtle Tina Code, Draw, and 3D-Print with Turtle Tina Pavel Solin Revision July 14, 2016 About the Author Dr. Pavel Solin is Professor of Applied and Computational Mathematics

More information

Hello Scratch! by Gabriel Ford, Sadie Ford, and Melissa Ford. Sample Chapter 3. Copyright 2018 Manning Publications

Hello Scratch! by Gabriel Ford, Sadie Ford, and Melissa Ford. Sample Chapter 3. Copyright 2018 Manning Publications SAMPLE CHAPTER Hello Scratch! by Gabriel Ford, Sadie Ford, and Melissa Ford Sample Chapter 3 Copyright 2018 Manning Publications Brief contents PART 1 SETTING UP THE ARCADE 1 1 Getting to know your way

More information

GEOG 490/590 SPATIAL MODELING SPRING 2015 ASSIGNMENT 3: PATTERN-ORIENTED MODELING WITH AGENTS

GEOG 490/590 SPATIAL MODELING SPRING 2015 ASSIGNMENT 3: PATTERN-ORIENTED MODELING WITH AGENTS GEOG 490/590 SPATIAL MODELING SPRING 2015 ASSIGNMENT 3: PATTERN-ORIENTED MODELING WITH AGENTS Objective: To determine a process that produces a particular spatial pattern. Description: An ecologist studying

More information

Maze Game Maker Challenges. The Grid Coordinates

Maze Game Maker Challenges. The Grid Coordinates Maze Game Maker Challenges The Grid Coordinates The Hyperspace Arrows 1. Make Hyper A position in a good place when the game starts (use a when green flag clicked with a goto ). 2. Make Hyper B position

More information

Lab 7: Experimenting with Life and Death

Lab 7: Experimenting with Life and Death Lab 7: Experimenting with Life and Death Augmented screen capture showing the required components: 2 Sliders (as shown) 2 Buttons (as shown) 1 Plot (as shown) min-pxcor = -50, max-pxcor = 50, min-pycor

More information

Lab 7. Evolution Lab. Name: General Introduction:

Lab 7. Evolution Lab. Name: General Introduction: Lab 7 Name: Evolution Lab OBJECTIVES: Help you develop an understanding of important factors that affect evolution of a species. Demonstrate important biological and environmental selection factors that

More information

Help Guide. Locating parts and controls. Getting ready for your life with aibo

Help Guide. Locating parts and controls. Getting ready for your life with aibo This is provided to help you when you have issues or questions in the course of your life with aibo. The information contained in this is provided based on the assumption that aibo's system software and

More information

Lab 10: Color Sort Turtles not yet sorted by color

Lab 10: Color Sort Turtles not yet sorted by color Lab 10: Color Sort 4000 Turtles not yet sorted by color Model Overview: Color Sort must be a Netlogo model that creates 4000 turtles: each in a uniformly distributed, random location, with one of 14 uniformly

More information

Activity 1: Changes in beak size populations in low precipitation

Activity 1: Changes in beak size populations in low precipitation Darwin s Finches Lab Work individually or in groups of -3 at a computer Introduction The finches on Darwin and Wallace Islands feed on seeds produced by plants growing on these islands. There are three

More information

Econometric Analysis Dr. Sobel

Econometric Analysis Dr. Sobel Econometric Analysis Dr. Sobel Econometrics Session 1: 1. Building a data set Which software - usually best to use Microsoft Excel (XLS format) but CSV is also okay Variable names (first row only, 15 character

More information

Biol 160: Lab 7. Modeling Evolution

Biol 160: Lab 7. Modeling Evolution Name: Modeling Evolution OBJECTIVES Help you develop an understanding of important factors that affect evolution of a species. Demonstrate important biological and environmental selection factors that

More information

~~~***~~~ A Book For Young Programmers On Scratch. ~~~***~~~

~~~***~~~ A Book For Young Programmers On Scratch. ~~~***~~~ ~~~***~~~ A Book For Young Programmers On Scratch. Golikov Denis & Golikov Artem ~~~***~~~ Copyright Golikov Denis & Golikov Artem 2013 All rights reserved. translator Elizaveta Hesketh License Notes.

More information

Code Documentation MFA (Movable Finite Automata) Eric Klemchak CS391/CS392

Code Documentation MFA (Movable Finite Automata) Eric Klemchak CS391/CS392 Code Documentation MFA (Movable Finite Automata) Eric Klemchak CS391/CS392 1 Contents 1.Overview... 2 1.1Introduction... 2 1.2MajorFunctions... 2 2.Dataflow... 2 3Controlflow... 3 4.Logical/PhysicalDataDesignDescription...

More information

Supporting document Antibiotics monitoring Short database instructions for veterinarians

Supporting document Antibiotics monitoring Short database instructions for veterinarians Supporting document Antibiotics monitoring Short database instructions for veterinarians Content 1 First steps... 3 1.1 How to log in... 3 1.2 Start-screen... 4 1.3. Change language... 4 2 How to display

More information

Finch Robot: snap level 4

Finch Robot: snap level 4 Finch Robot: snap level 4 copyright 2017 birdbrain technologies llc the finch is a great way to get started with programming. we'll use snap!, a visual programming language, to control our finch. First,

More information

Coding with Scratch Popping balloons

Coding with Scratch Popping balloons Getting started If you haven t used Scratch before we suggest you first take a look at our project Coding with Scratch First Steps Page 1 Popping Balloons In this game the cat will move around the screen

More information

Help the Scratch mascot avoid the space junk and return safely back to Earth! Start a new Scratch project. You can find the online Scratch editor at

Help the Scratch mascot avoid the space junk and return safely back to Earth! Start a new Scratch project. You can find the online Scratch editor at Space Junk Introduction Help the Scratch mascot avoid the space junk and return safely back to Earth! Step 1: Controlling the cat Let s allow the player to control the cat with the arrow keys. Activity

More information

Scratch Jigsaw Method Feelings and Variables

Scratch Jigsaw Method Feelings and Variables Worksheets provide guidance throughout the program creation. Mind the following symbols that structure your work progress and show subgoals, provide help, mark and explain challenging and important notes

More information

CS108L Computer Science for All Module 7: Algorithms

CS108L Computer Science for All Module 7: Algorithms CS108L Computer Science for All Module 7: Algorithms Part 1: Patch Destroyer Part 2: ColorSort Part 1 Patch Destroyer Model Overview: Your mission for Part 1 is to get your turtle to destroy the green

More information

Fractal. Fractals. L- Systems 1/17/12

Fractal. Fractals. L- Systems 1/17/12 1/17/12 Fractal Fractal refers to objects which appear to be geometrically complex with certain characteris6cs They have a rough or complicated shape They are self- similar at different scales Fractals

More information

Half-Lives of Antibiotics

Half-Lives of Antibiotics MH-6 Team 1 Half-Lives of Antibiotics Team Members: Ethan Wright Senior ethan.wright@melroseschools.org Mackenzie Perkins Junior mackenzie.perkins@melroseschools.org Rebecca Rush Junior rebecca.rush@melroseschools.org

More information

Building Concepts: Mean as Fair Share

Building Concepts: Mean as Fair Share Lesson Overview This lesson introduces students to mean as a way to describe the center of a set of data. Often called the average, the mean can also be visualized as leveling out the data in the sense

More information

Recursion with Turtles

Recursion with Turtles Recursion with Turtles Turtle Graphics Concepts in this slide: A list of all useful functions from the turtle module. Python has a built-in module named turtle. See the Python turtle module API for details.

More information

Barrelponics. Construction/Workflow OHIO AGRICULTURAL RESEARCH AND DEVELOPMENT CENTER

Barrelponics. Construction/Workflow OHIO AGRICULTURAL RESEARCH AND DEVELOPMENT CENTER Barrelponics Construction/Workflow Barrelponics 2 System Startup Checklist 1. Decide on type and size of system to build 2. Draw designs, research where to get parts, plan 3. Buy and assemble components

More information

ROAMING DOG POPULATION COUNTING PROTOCOL

ROAMING DOG POPULATION COUNTING PROTOCOL ROAMING DOG POPULATION COUNTING PROTOCOL The objective of this protocol is to establish a standardised technique for undertaking street dog population assessments as part of the Mission Rabies international

More information

Protocol for fabrication of microcompartments for long-term culture and imaging of small C. elegans larvae. Henrik Bringmann, March 2011.

Protocol for fabrication of microcompartments for long-term culture and imaging of small C. elegans larvae. Henrik Bringmann, March 2011. Protocol for fabrication of microcompartments for long-term culture and imaging of small C. elegans larvae Henrik Bringmann, March 2011. 1 Step-by-Step Protocol Step1 : Preparing a humidity dish (see illustration

More information

Scratch. Copyright. All rights reserved.

Scratch. Copyright. All rights reserved. Scratch Copyright All rights reserved. License Notes. This book is licensed for your personal enjoyment only. This book may not be re-sold or given away to other people. If you would like to share this

More information

Python 3 Turtle graphics. Lecture 24 COMPSCI111/111G SS 2017

Python 3 Turtle graphics. Lecture 24 COMPSCI111/111G SS 2017 Python 3 Turtle graphics Lecture 24 COMPSCI111/111G SS 2017 Today s lecture The Turtle graphics package Brief history Basic commands Drawing shapes on screen Logo and Turtle graphics In 1967, Seymour Papert

More information

A Guide to the TurtleGraphics Package for R

A Guide to the TurtleGraphics Package for R A Guide to the TurtleGraphics Package for R A. Cena, M. Gagolewski, B. Żogała-Siudem, M. Kosiński, N. Potocka Contents http://www.gagolewski.com/software/turtlegraphics/ 1 The TurtleGraphics Package Introduction

More information

AKC Trick Dog EVALUATOR GUIDE

AKC Trick Dog EVALUATOR GUIDE AKC Trick Dog EVALUATOR GUIDE 2 November 1, 2017 About AKC Trick Dog Welcome to the AKC Trick Dog program. In AKC Trick Dog, dogs and their owners can have fun learning tricks together. There are 4 levels

More information

5 State of the Turtles

5 State of the Turtles CHALLENGE 5 State of the Turtles In the previous Challenges, you altered several turtle properties (e.g., heading, color, etc.). These properties, called turtle variables or states, allow the turtles to

More information

CAT Paid vs. CAT Unpaid November 2012

CAT Paid vs. CAT Unpaid November 2012 CAT Paid vs. CAT Unpaid November 2012 The following documentation contains information on updating reimbursement payments that have a CAT percentage and how to track it before sending the payment to CAT

More information

Your Litter-Robot ships fully assembled. Follow these steps to get started and refer to the Instruction Manual for more information.

Your Litter-Robot ships fully assembled. Follow these steps to get started and refer to the Instruction Manual for more information. QUICK START GUIDE LET S GET STARTED! Your Litter-Robot ships fully assembled. Follow these steps to get started and refer to the Instruction Manual for more information. Get to know the main components

More information

North Carolina Aquariums Education Section. Prepare to Hatch. Created by the NC Aquarium at Fort Fisher Education Section

North Carolina Aquariums Education Section. Prepare to Hatch. Created by the NC Aquarium at Fort Fisher Education Section Essential Question: Prepare to Hatch Created by the NC Aquarium at Fort Fisher Education Section How can we help sea turtle hatchlings reach the ocean safely? Lesson Overview: Students will design methods

More information

ROUGH TERRAIN CRANE GR-120NL GR-120N

ROUGH TERRAIN CRANE GR-120NL GR-120N ROUGH TERRAIN CRANE GR-120NL GR-120N (Standard Jib) JAPANESE SPECIFICATIONS CARRIER MODEL OUTLINE SPEC. NO. GR-120NL 12 t hook X-type Outrigger GR-120N-2-00101 GR-120NL 12 t hook H-type Outrigger GR-120N-2-00102

More information

American Mondioring Brevet Rules. for the. United States Mondioring Association. June 1, 2006

American Mondioring Brevet Rules. for the. United States Mondioring Association. June 1, 2006 American Mondioring Brevet Rules for the United States Mondioring Association June 1, 2006 2 Table of Contents I. Foreword 3 II. III. IV. Regulations 1. Presentation 4 2. Behavior common to all exercises

More information

Manual Compustam-Cloud

Manual Compustam-Cloud Total program for the pigeon sport UK distributor: Compuclub Markt 5 7064 AZ Silvorde The Netherlands technical questions +31(0)6 20212967 other questions + 31(0)6 29523224 Email Compuclub Websites: Compuclub.nl

More information

Army Community Recreation Reports Online (ACRRO) 2.0 Bulk Buy Requests Quick Reference Help Guide

Army Community Recreation Reports Online (ACRRO) 2.0 Bulk Buy Requests Quick Reference Help Guide rmy ommunity Recreation Reports Online (RRO) 2.0 ulk uy Requests Quick Reference Help Guide 1. ccess apital Replacement Tool 2. Navigate ulk uy Requests Home page 3. Navigate ulk uy Requests Order Form

More information

AKC Rally More Advanced Signs

AKC Rally More Advanced Signs Back to the Rally signs. This should get more interesting, since most of these remaining signs are not so self-explanatory as the first signs. These are all signs that can be found at the Novice level,

More information

Geometry from Scratch

Geometry from Scratch Geometry from Scratch Dan Anderson Queensbury High School, Upstate NY dan@recursiveprocess.com @dandersod Presentation Key Teacher POV Black background Student POV White background What is Scratch (while

More information

All Dogs Parkour Exercises (Interactions) updated to October 6, 2018

All Dogs Parkour Exercises (Interactions) updated to October 6, 2018 All Dogs Parkour Exercises (Interactions) updated to October 6, 2018 NOTE: Minimum/maximum dimensions refer to the Environmental Feature (EF) being used. NOTE: The phrase "stable and focused" means the

More information

ACTIVITY #6: TODAY S PICNIC SPECIALS ARE

ACTIVITY #6: TODAY S PICNIC SPECIALS ARE TOPIC What types of food does the turtle eat? ACTIVITY #6: TODAY S PICNIC SPECIALS ARE BACKGROUND INFORMATION For further information, refer to Turtles of Ontario Fact Sheets (pages 10-26) and Unit Five:

More information

Do the traits of organisms provide evidence for evolution?

Do the traits of organisms provide evidence for evolution? PhyloStrat Tutorial Do the traits of organisms provide evidence for evolution? Consider two hypotheses about where Earth s organisms came from. The first hypothesis is from John Ray, an influential British

More information

SARG Guide Surrey Amphibian and Reptile Group. SARG Reptile Surveyor s Guide Using SARGWEB. April 2012 Version 1.0. Steve Langham

SARG Guide Surrey Amphibian and Reptile Group. SARG Reptile Surveyor s Guide Using SARGWEB. April 2012 Version 1.0. Steve Langham SARG Guide Surrey Amphibian and Reptile Group SARG Reptile Surveyor s Guide Using SARGWEB Steve Langham April 2012 Version 1.0 Contents The SARG Reptile Surveyor s Guide to SARGWEB... 3 1. Introduction...

More information

SEVENTH'ANNUAL'JUILFS'CONTEST' SPRING'2015' ' '

SEVENTH'ANNUAL'JUILFS'CONTEST' SPRING'2015' ' ' SEVENTHANNUALJUILFSCONTEST SPRING2015 DepartmentofComputerandInformationScience UniversityofOregon 2015%May%0% contributors:skylerberg,atleebrink,chriswilson A: RINGS (1 POINTS) How much mass is contained

More information

SUBNOVICE OBJECTIVES. Successful completion of this class means that the following objectives were obtained:

SUBNOVICE OBJECTIVES. Successful completion of this class means that the following objectives were obtained: COMPETITION OBEDIENCE Subnovice to Novice At Hidden Valley Obedience Club we believe a strong correct foundation is critical to a successful competition obedience dog. Therefore we provide Subnovice classes

More information

Annie and the Wild Animals Extension Activities

Annie and the Wild Animals Extension Activities Animals Extension Activities Main Idea- Pets can be good company for people, but some animals make better pets than others. Targeted Tier 2 Vocabulary- Center/Large Group Materials Activity Targeted Vocabulary

More information

W360 Multifunction Tabber System Operator Guide

W360 Multifunction Tabber System Operator Guide W360 Multifunction Tabber System Operator Guide US English Version NOTICE The use of this information by the recipient or others for purposes other than the repair, adjustment or operation of Pitney Bowes

More information

Adélie Penguin Family Life Cycle

Adélie Penguin Family Life Cycle Adélie Penguin Family Life Cycle E 9 ach year, Adélie penguins are capable of migrating nearly 11,000 mi (17702 km) to reach their breeding colony. They begin the breeding process at the start of the spring

More information

How to Solve Word Problems

How to Solve Word Problems How to Use Daily Math Practice. Reproduce the activities for each five-day unit and cut apart the half-page lessons for days through. unfamiliar to your students. You may want to preview those skills as

More information

Best in Show Solitaire Manual & Strategy Guide

Best in Show Solitaire Manual & Strategy Guide Best in Show Solitaire Manual & Strategy Guide TABLE OF CONTENTS Chapter 1: Getting Started Chapter 2: Game Basics Chapter 3: Advanced Game Mechanics Chapter 4: The Pet Store Chapter 5: Buying New Dogs

More information

DOGS SEEN PER KM MONITORING OF A DOG POPULATION MANAGEMENT INTERVENTION

DOGS SEEN PER KM MONITORING OF A DOG POPULATION MANAGEMENT INTERVENTION DOGS SEEN PER KM MONITORING OF A DOG POPULATION MANAGEMENT INTERVENTION Elly & Lex Hiby 2014 An outline of the method...1 Preparing the PC and phone...3 Using Google Maps on the PC to create standard routes...3

More information

Getting Started! Searching for dog of a specific breed:

Getting Started! Searching for dog of a specific breed: Getting Started! This booklet is intended to help you get started using tbs.net. It will cover the following topics; Searching for Dogs, Entering a Dog, Contacting the Breed Coordinator, and Printing a

More information

CONNECTION TO LITERATURE

CONNECTION TO LITERATURE CONNECTION TO LITERATURE part of the CONNECTION series The Tale of Tom Kitten V/xi/MMIX KAMICO Instructional Media, Inc.'s study guides provide support for integrated learning, academic performance, and

More information

Level 2 Signs with Explanations A4.indd 1 09/04/ :35:50

Level 2 Signs with Explanations A4.indd 1 09/04/ :35:50 Level 2 Signs with Explanations A4.indd 1 09/04/2015 14:35:50 Level 2 Signs with Explanations A4.indd 2 09/04/2015 14:35:50 1 4 2 3 Level 2 Signs with Explanations A4.indd 3 09/04/2015 14:35:50 31. OFF-

More information

The FCI Initiative for Young Dog Lovers Worldwide. Basic recomendations ORGANIZING YOUTH ACTIVITIES FOR CYNOLOGICAL VENUES.

The FCI Initiative for Young Dog Lovers Worldwide. Basic recomendations ORGANIZING YOUTH ACTIVITIES FOR CYNOLOGICAL VENUES. The FCI Initiative for Young Dog Lovers Worldwide Basic recomendations ORGANIZING YOUTH ACTIVITIES FOR CYNOLOGICAL VENUES part one Table of Content contents 1. PREFACE 2. OBJECTIVES:. PRE PLANNING ACTIVITIES:.1

More information

AKC Herding Regulations Chapter VIII Course D

AKC Herding Regulations Chapter VIII Course D Section 1.. reflects the day to day control and management of livestock in a varied ranch, farm and/or stockyard setting. The dog should demonstrate instinct, ability, versatility and training as an effective

More information

Life Under Your Feet: Field Research on Box Turtles

Life Under Your Feet: Field Research on Box Turtles Life Under Your Feet: Field Research on Box Turtles Part I: Our Field Research Site Scientists often work at field research sites. Field research sites are areas in nature that the scientists have chosen

More information

RUBBER NINJAS MODDING TUTORIAL

RUBBER NINJAS MODDING TUTORIAL RUBBER NINJAS MODDING TUTORIAL This tutorial is for users that want to make their own campaigns, characters and ragdolls for Rubber Ninjas. You can use mods only with the full version of Rubber Ninjas.

More information

Morning Census Protocol

Morning Census Protocol Morning Census Protocol Playa Norte Marine Turtle Conservation Click to edit Master subtitle style & Monitoring Programme All photographic images within are property of their copyrights and may only be

More information

Animal Behavior. Problem Area: Animal Health and Administering Veterinary Care. Corresponding E-unit(s). Danville, IL: CAERT, Inc.

Animal Behavior. Problem Area: Animal Health and Administering Veterinary Care. Corresponding E-unit(s). Danville, IL: CAERT, Inc. Animal Behavior Unit: Animal Science and the Industry Problem Area: Animal Health and Administering Veterinary Care Student Learning Objectives. Instruction in this lesson should result in students achieving

More information

Human Evolution. Lab Exercise 17. Introduction. Contents. Objectives

Human Evolution. Lab Exercise 17. Introduction. Contents. Objectives Lab Exercise Human Evolution Contents Objectives 1 Introduction 1 Activity.1 Data Collection 2 Activity.2 Phylogenetic Tree 3 Resutls Section 4 Introduction One of the methods of analysis biologists use

More information

Remember! Life skills for puppies

Remember! Life skills for puppies Life skills for puppies Remember! The goal is for him to be able to choose to perform the appropriate response himself, rather than having to be asked to do so. If your pup sits to greet people, ensure

More information

Trapped in a Sea Turtle Nest

Trapped in a Sea Turtle Nest Essential Question: Trapped in a Sea Turtle Nest Created by the NC Aquarium at Fort Fisher Education Section What would happen if you were trapped in a sea turtle nest? Lesson Overview: Students will write

More information

GCSE ENGLISH LANGUAGE (8700)

GCSE ENGLISH LANGUAGE (8700) TURTON PAPER A Please write clearly in block capitals. Centre number Candidate number Surname Forename(s) Candidate signature GCSE ENGLISH LANGUAGE (8700) Paper 1 Explorations in creative reading and writing

More information

BLACK PRONG HRD SHEEP COURSE MAP Main Property

BLACK PRONG HRD SHEEP COURSE MAP Main Property End Start c Holding Sand Road Arch obstacle WOODED AREA BRIDGE Foot Bath Gate 60A B Arena B A Pen 61 C A1 A2 A3 Handler Post Pen A CHUTE BLACK PRONG HRD SHEEP COURSE MAP Main Property HRD SHEEP COURSE

More information

XL³ 800 IP 55metal distribution cabinets, freestanding enclosures and cable compartments

XL³ 800 IP 55metal distribution cabinets, freestanding enclosures and cable compartments XL³ 800 IP 55metal distribution cabinets, freestanding 87045 LIMOGES Cedex Telephone : 05 55 06 87 87 Fax : 05 55 06 88 88 Cat. No(s) : 20451/52/53/54/56/57/58/59/73/74 CONTENTS PAGE 1. General characteristics...

More information

PupDate. Lacey Rahmani UX

PupDate. Lacey Rahmani UX PupDate Lacey Rahmani UX5 06 IS OUR DOG... LONEL? BORED? HPER? THE PROBLEM: Dog owners need a way to socialize their new puppies and young dogs in a specific environment with personalized tailored specifications.

More information

November Final Report. Communications Comparison. With Florida Climate Institute. Written by Nicole Lytwyn PIE2012/13-04B

November Final Report. Communications Comparison. With Florida Climate Institute. Written by Nicole Lytwyn PIE2012/13-04B November 2012 Final Report Communications Comparison With Florida Climate Institute Written by Nicole Lytwyn Center for Public Issues Education IN AGRICULTURE AND NATURAL RESOURCES PIE2012/13-04B Contents

More information

Biology 164 Laboratory

Biology 164 Laboratory Biology 164 Laboratory CATLAB: Computer Model for Inheritance of Coat and Tail Characteristics in Domestic Cats (Based on simulation developed by Judith Kinnear, University of Sydney, NSW, Australia) Introduction

More information

XL³ 400 class II insulated distribution cabinets and cable compartments

XL³ 400 class II insulated distribution cabinets and cable compartments 87045 LIMOGES Cedex Telephone : 05 55 06 87 87 Fax : 05 55 06 88 88 XL³ 400 class II insulated distribution CONTENTS PAGE 1. General characteristics...1 2. Finish...1 3. Range...2 4. Overall dimensions...2

More information

Table 2. Pen floor space for housed unshorn in-lamb ewes Type of ewe Slats m2 Bedded m2. By Edward Egan, Teagasc Drystock Advisor Meath.

Table 2. Pen floor space for housed unshorn in-lamb ewes Type of ewe Slats m2 Bedded m2. By Edward Egan, Teagasc Drystock Advisor Meath. By Edward Egan, Teagasc Drystock Advisor Meath. A well designed sheep shed is labour efficient, provides a healthy environment for sheep & shepherd & makes the best use of space. The layout of a sheep

More information

Evaluating the Quality of Bengal Kittens. A lot more than meets the eye! Lots of photos, be patient to learn...

Evaluating the Quality of Bengal Kittens. A lot more than meets the eye! Lots of photos, be patient to learn... Evaluating the Quality of Bengal Kittens. A lot more than meets the eye! Lots of photos, be patient to learn... Home Page choose a page from Drop Down Menu, then CLICK here to GO Can you pick out the show/

More information

Sampling and Experimental Design David Ferris, noblestatman.com

Sampling and Experimental Design David Ferris, noblestatman.com Sampling and Experimental Design David Ferris, noblestatman.com How could the following questions be answered using data? Are coffee drinkers more likely to be female? Are females more likely to drink

More information

KiwiSDR Quick Start Guide

KiwiSDR Quick Start Guide KiwiSDR Quick Start Guide Version 1.3 Please check kiwisdr.com/quickstart for the latest information. Ask questions on the forum. Check kiwisdr.com for link. bluebison.net Important If you purchased the

More information

Finch Robot: snap levels 1-3

Finch Robot: snap levels 1-3 Finch Robot: snap levels 1-3 copyright 2017 birdbrain technologies llc the finch is a great way to get started with programming. we'll use snap!, a visual programming language, to control our finch. First,

More information

BRITISH LONGHAIR. Color: For cats with special markings, points are divided equally: 10 for color, 10 for markings.

BRITISH LONGHAIR. Color: For cats with special markings, points are divided equally: 10 for color, 10 for markings. HEAD 25 Points Shape (10) Ears ( 5) Eyes (10) BODY/TAIL 35 Points Neck ( 5) Shape/Size (20) Legs/Feet ( 5) Tail ( 5) COAT 10 Points Length ( 5) Texture ( 5) COLOR 20 Points CONDITION 5 Points BALANCE 5

More information

2018 JUNIOR LIVESTOCK SALE PARTICIPATION REQUIREMENTS

2018 JUNIOR LIVESTOCK SALE PARTICIPATION REQUIREMENTS I. Introductory Provisions 2018 JUNIOR LIVESTOCK SALE PARTICIPATION REQUIREMENTS A. The Junior Livestock Sale (the Sale ) is a terminal sale. Every animal that qualifies to be in the Sale and every animal

More information

Rules and Course Requirements by Level/Title. Barn Hunt Instinct (RATI)

Rules and Course Requirements by Level/Title. Barn Hunt Instinct (RATI) Rules and Course Requirements by Level/Title Barn Hunt Instinct (RATI) Prerequisite: None. Dogs may enter this class and Novice in the same Trial. Dogs may continue to enter this class until the Novice

More information

Kingpin to rear end 10.1 m (33' 2") Mass on Tandem Allowable Load on Axle Standard: 2 axles

Kingpin to rear end 10.1 m (33' 2) Mass on Tandem Allowable Load on Axle Standard: 2 axles Kingpin to nose 0.2 m (7") 1.2 m (4') 0.4 m (1' 3") Height 3.4 m (11' 2") 1.7 m (5' 7") Kingpin to tandem 7.2 m (23' 7") Axle to axle 0.9 m (3') Track 2.1 m (6'11'') Kingpin to rear end 10.1 m (33' 2")

More information

Activity 7 Swallow Census

Activity 7 Swallow Census Swallow Census Created By Point Reyes Bird Observatory Education Program Monitoring Swallow Nests Activity 7 Objective: To make students aware of swallows nesting at their school, teach them about the

More information