COLOR WALL Boston Python Workshop

Size: px
Start display at page:

Download "COLOR WALL Boston Python Workshop"

Transcription

1 COLOR WALL Boston Python Workshop

2 Review: Lists Create a list

3 Review: Lists Create a list primary = ['red', 'blue', 'yellow']

4 Review: Lists Create a list primary = ['red', 'blue', 'yellow'] How long is our list?

5 Review: Lists Create a list primary = ['red', 'blue', 'yellow'] How long is our list? len(primary)

6 Review: Lists Create a list primary = ['red', 'blue', 'yellow'] How long is our list? len(primary) Getting items from our list

7 Review: Lists Create a list primary = ['red', 'blue', 'yellow'] How long is our list? len(primary) Getting items from our list primary[1] =??? primary[-1] =???

8 Review: Lists Create a list of numbers

9 Review: Lists Create a list of numbers mynums = [0, 1, 2, 3]

10 Review: Lists Create a list of numbers mynums = [0, 1, 2, 3] Even easier with range

11 Review: Lists Create a list of numbers mynums = [0, 1, 2, 3] Even easier with range mynums2 = range(4) mynums2 = range(5) mynums2 = range(1, 4)

12 Review: Tuples Create a tuple

13 Review: Tuples Create a tuple staff= ('Jessica', 'Christine', 'Liz')

14 Review: Tuples Create a tuple staff= ('Jessica', 'Christine', 'Liz') How long is our tuple?

15 Review: Tuples Create a tuple staff= ('Jessica', 'Christine', 'Liz') How long is our tuple? len(staff)

16 Review: Tuples Create a tuple staff= ('Jessica', 'Christine', 'Liz') How long is our tuple? len(staff) Getting items from our tuple

17 Review: Tuples Create a tuple staff= ('Jessica', 'Christine', 'Liz') How long is our tuple? len(staff) Getting items from our tuple staff[1] =??? staff[-1] =???

18 Review: Tuples Why are tuples different from lists?

19 Review: Tuples Why are tuples different from lists? Cannot add or delete items in a tuple For data we don't need to change Faster! than list

20 Review: Dictionaries Contain keys and values

21 Review: Dictionaries Contain keys and values Create a dictionary

22 Review: Dictionaries Contain keys and values Create a dictionary favoritecolor= {'Jessica' : 'blue', 'Liz' : 'red'}

23 Review: Dictionaries Contain keys and values Create a dictionary favoritecolor= {'Jessica' : 'blue', 'Liz' : 'red'} How can we use keys to lookup values?

24 Review: Dictionaries Contain keys and values Create a dictionary favoritecolor= {'Jessica' : 'blue', 'Liz' : 'red'} How can we use keys to lookup values? favoritecolor['jessica']

25 Review: Dictionaries Contain keys and values Create a dictionary favoritecolor= {'Jessica' : 'blue', 'Liz' : 'red'} How can we use keys to lookup values? favoritecolor['jessica'] Why would we want this?

26 Review: Dictionaries Contain keys and values Create a dictionary favoritecolor= {'Jessica' : 'blue', 'Liz' : 'red'} How can we use keys to lookup values? favoritecolor['jessica'] Why would we want this? Easy and fast way to store things that are hard to remember

27 ColorWall Colors In the HSV color space Hue Saturation Value

28 ColorWall Colors In the HSV color space Hue Saturation Value

29 ColorWall Colors In the HSV color space Hue Saturation Value But HSV colors are complicated

30 ColorWall Colors In the HSV color space Hue Saturation Value But HSV colors are complicated # A dictionary of hsv values for some common colors. colors = {"black":(0, 0, 0), "white":(0, 0, 1), "gray":(0, 0, 0.5), "red":(0, 1, 1), "blue":(0.66, 1, 1), "yellow":(0.16, 1, 1), "purple":(0.85, 1, 0.5), "green":(0.33, 1, 0.5), }

31 Functions we write for a wall

32 Functions we write for a wall Describe how to color each cell in the wall

33 Functions we write for a wall Describe how to color each cell in the wall Let's look at SolidColorTest!

34 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)

35 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)

36 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)

37 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)

38 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)

39 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)

40 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0

41 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0

42 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 0

43 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 0

44 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)! x = 0 y = 0

45 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 0

46 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 0

47 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 1

48 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 1!

49 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 1

50 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 1

51 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 2

52 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 2!

53 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 2

54 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y = 2

55 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 0 y =?

56 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 1 y =?

57 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 1 y = 0

58 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)! x = 1 y = 0

59 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 1 y = 0

60 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 1 y = 0

61 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 1 y = 1

62 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 1 y = 1!

63 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 1 y = 1

64 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 1 y = 2!

65 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 1 y = 2

66 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)! x = 2 y = 0

67 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 2 y = 0

68 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 2 y = 1!

69 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 2 y = 1

70 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 2 y = 2!

71 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 2 y = 2

72 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 2 y = 2

73 def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) x = 2 y = 2

74 That was cool! But what if we want to see more than just blue?

75 That was cool! But what if we want to see more than just blue? def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)

76 That was cool! But what if we want to see more than just blue? def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2)

77 That was cool! But what if we want to see more than just blue? def SolidColorTest(wall): color = colors["blue"] wall.set_pixel(x, y, color) time.sleep(2) Let's look at DictionaryTest!

78 def DictionaryTest(wall): for color in ["black", "white", "gray", "red", ]: wall.set_pixel(x, y, colors[color]) time.sleep(0.5)

79 def DictionaryTest(wall): for color in ["black", "white", "gray", "red", ]: wall.set_pixel(x, y, colors[color]) time.sleep(0.5) # A dictionary of hsv values for some common colors. colors = {"black":(0, 0, 0), "white":(0, 0, 1), "gray":(0, 0, 0.5), "red":(0, 1, 1), }

80 def DictionaryTest(wall): for color in ["black", "white", "gray", "red", ]: wall.set_pixel(x, y, colors[color]) time.sleep(0.5) # A dictionary of hsv values for some common colors. colors = {"black":(0, 0, 0), "white":(0, 0, 1), "gray":(0, 0, 0.5), "red":(0, 1, 1), }

81 def DictionaryTest(wall): for color in ["black", "white", "gray", "red", ]: wall.set_pixel(x, y, colors[color]) time.sleep(0.5) # A dictionary of hsv values for some common colors. colors = {"black":(0, 0, 0), "white":(0, 0, 1), "gray":(0, 0, 0.5), "red":(0, 1, 1), } colors.keys() = ["black", "white", "gray", "red", ]

82 def DictionaryTest(wall): for color in colors.keys(): wall.set_pixel(x, y, colors[color]) time.sleep(0.5) # A dictionary of hsv values for some common colors. colors = {"black":(0, 0, 0), "white":(0, 0, 1), "gray":(0, 0, 0.5), "red":(0, 1, 1), } colors.keys() = ["black", "white", "gray", "red", ]

83 What if we only want some colors?

84 What if we only want some colors? Let's implement RainbowTest!

85 What if we only want some colors? Let's implement RainbowTest! Model it off of DictionaryTest, but use only some colors

86 def RainbowTest(wall): print "RainbowTest" # Your code here!!!

87 def RainbowTest(wall): print "RainbowTest" rainbow = ["red", "orange", "yellow", "green", "blue", "indigo", "purple"] for color in rainbow: wall.set_pixel(x, y, colors[color]) time.sleep(0.5)

88 There are a lot more to explore already!

89 There are a lot more to explore already! Play around with them and write your own

90 There are a lot more to explore already! Play around with them and write your own Change the color range in Twinkle (in more_effects.py) Change the math that controls the spacing in Checkerboards (also in more_effects.py) Change the scrolling message in Message (also in more_effects.py) Or whatever else you'd like to do!

Pantone Matching System Color Chart PMS Colors Used For Printing

Pantone Matching System Color Chart PMS Colors Used For Printing Pantone Matching System Color Chart PMS Colors Used For Printing Use this guide to assist your color selection and specification process. This chart is a reference guide only. Pantone colors on computer

More information

How To Color Print

How To Color Print Pantone Matching System Color Chart PMS Colors Used For Printing Use this guide to assist your color selection and specification process. This chart is a reference guide only. Pantone colors on computer

More information

PANTONE Solid to Process

PANTONE Solid to Process PANTONE Solid to Process PANTONE C:0 M:0 Y:100 K:0 Proc. Yellow PC PANTONE C:0 M:0 Y:51 K:0 100 PC PANTONE C:0 M:2 Y:69 K:0 106 PC PANTONE C:0 M:100 Y:0 K:0 Proc. Magen. PC PANTONE C:0 M:0 Y:79 K:0 101

More information

Green = 0,255,0 (Target Color for E.L. Gray Construction) CIELAB RGB Simulation Result for E.L. Gray Match (43,215,35) Equal Luminance Gray for Green

Green = 0,255,0 (Target Color for E.L. Gray Construction) CIELAB RGB Simulation Result for E.L. Gray Match (43,215,35) Equal Luminance Gray for Green Red = 255,0,0 (Target Color for E.L. Gray Construction) CIELAB RGB Simulation Result for E.L. Gray Match (184,27,26) Equal Luminance Gray for Red = 255,0,0 (147,147,147) Mean of Observer Matches to Red=255

More information

Pantone Color Chart Plexiglas Cross Reference

Pantone Color Chart Plexiglas Cross Reference Pantone Color Chart Plexiglas Cross Reference T = Transparent, TL = Translucent, O = Opaque Pantone Color Type Plexiglas Number Pantone Color 288 PMS 288 Type Plexiglas Number Pantone Color 485 C2X PMS

More information

Tabla de conversión Pantone a NCS (Natural Color System)

Tabla de conversión Pantone a NCS (Natural Color System) Tabla de conversión Pantone a NCS (Natural Color System) PANTONE NCS (más parecido) PANTONE NCS (más parecido) Pantone Yellow C NCS 0580-Y Pantone 3985C NCS 3060-G80Y Pantone Yellow U NCS 0580-Y Pantone

More information

Process Yellow PMS 100 PMS 101 PMS 102 Pantone Yellow PMS 103 PMS 104 PMS 105 PMS 106 PMS 107 PMS 108 PMS 109 PMS 110 PMS 111

Process Yellow PMS 100 PMS 101 PMS 102 Pantone Yellow PMS 103 PMS 104 PMS 105 PMS 106 PMS 107 PMS 108 PMS 109 PMS 110 PMS 111 Pantone Matching System - PMS - Color Guide The Pantone Matching System is the industry standard color matching system. The color formula guide provides an accurate method for selecting, specifying, broadcasting,

More information

Understanding, Identifying & Analyzing Box & Whisker Plots

Understanding, Identifying & Analyzing Box & Whisker Plots Understanding, Identifying & Analyzing Box & Whisker Plots CCSS: 6.SP.4, 8.SP.1 VA SOLs: A.10 Box and Whisker Plots Lower Extreme Lower Quartile Median Upper Quartile Upper Extreme The inter quartile range

More information

Lottery Looper. User Manual

Lottery Looper. User Manual Lottery Looper User Manual Lottery Looper 1.7 copyright Timersoft. All rights reserved. http://www.timersoft.com The information contained in this document is subject to change without notice. This document

More information

Organizing image files in Lightroom part 2

Organizing image files in Lightroom part 2 Organizing image files in Lightroom part 2 Hopefully, after our last issue, you've spent some time working on your folder structure and now have your images organized to be easy to find. Whether you have

More information

PANTONE Coated Color Reference

PANTONE Coated Color Reference Coated The color names and numbers displayed in this book represent names and numbers from its copyrighted MATCHING SYSTEM Color names have been abbreviated to save space. This chart shows solid name within

More information

Important Notes Color

Important Notes Color Important Notes Color Introduction A definition for color (MPI Glossary) The selective reflection of light waves in the visible spectrum. Materials that show specific absorption of light will appear the

More information

1. Three-Color Light. Introduction to Three-Color Light. Chapter 1. Adding Color Pigments. Difference Between Pigments and Light. Adding Color Light

1. Three-Color Light. Introduction to Three-Color Light. Chapter 1. Adding Color Pigments. Difference Between Pigments and Light. Adding Color Light 1. Three-Color Light Chapter 1 Introduction to Three-Color Light Many of us were taught at a young age that the primary colors are red, yellow, and blue. Our early experiences with color mixing were blending

More information

3704-0147 Lithichrome Stone Paint- LT Blue Gallon 3704-0001 Lithichrome Stone Paint- Blue 2 oz 3704-0055 Lithichrome Stone Paint- Blue 6 oz 3704-0082

3704-0147 Lithichrome Stone Paint- LT Blue Gallon 3704-0001 Lithichrome Stone Paint- Blue 2 oz 3704-0055 Lithichrome Stone Paint- Blue 6 oz 3704-0082 Lithichrome Colors Item Number Item Description 120-COL Lithichrome Stone Paint - Any Size or Color 3704-0011 Lithichrome Stone Paint- LT Blue 2 oz 3704-0066 Lithichrome Stone Paint- LT Blue 6 oz 3704-0093

More information

CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE

CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE INTRODUCTION You can access your email account from any workstation at your school using Outlook Web Access (OWA),

More information

PANTONE ColorVANTAGE Process Simulations of PANTONE solid colors Page: 1 of 14

PANTONE ColorVANTAGE Process Simulations of PANTONE solid colors Page: 1 of 14 PANTONE ColorVANTAGE Process Simulations of PANTONE solid colors Page: 1 of 14 PANTONE Yellow CS R:245 G:222 B:0 PANTONE Purple CS R:158 G:56 B:181 PANTONE Pro. Yel. CS R:242 G:227 B:0 PANTONE Hex. Yel.

More information

COLOR THEORY WORKSHEET

COLOR THEORY WORKSHEET COLOR THEORY WORKSHEET Use color pencils to complete the following exercises Name: Period Date PRIMARY COLORS cannot be made from any combination of colors. Fade intensity from top left to bottom right

More information

Using Ratios to Taste the Rainbow. Lesson Plan

Using Ratios to Taste the Rainbow. Lesson Plan Using Ratios to Taste the Rainbow Lesson Plan Cube Fellow: Amber DeMore Teacher Mentor: Kelly Griggs Goal: At the end of the activity, the students will know that the actual ratio of colored skittles is

More information

A magician showed a magic trick where he picked one card from a standard deck. Determine what the probability is that the card will be a queen card?

A magician showed a magic trick where he picked one card from a standard deck. Determine what the probability is that the card will be a queen card? Topic : Probability Word Problems- Worksheet 1 Jill is playing cards with her friend when she draws a card from a pack of 20 cards numbered from 1 to 20. What is the probability of drawing a number that

More information

Pantone Matching System - PMS - Color Guide Presented By Great Ideas Inc. www.greatideasinc.com

Pantone Matching System - PMS - Color Guide Presented By Great Ideas Inc. www.greatideasinc.com Pantone Matching System - PMS - Color Guide Presented By Great Ideas Inc. www.greatideasinc.com The Pantone Matching System is the industry standard color matching system. The color formula guide provides

More information

THE BASICS OF COLOUR THEORY

THE BASICS OF COLOUR THEORY HUE: VALUE: THE BASICS OF COLOUR THEORY Hue is another word for colour, such as blue, red, yellow-green Distinguishes between the lightness (tint) and darkness (shade) of Colours. (TONE) CHROMA: The vibrancy

More information

CERTIFICATION OF COMPLIANCE

CERTIFICATION OF COMPLIANCE Item: 85023001, Artemis Plant Watercolors 25 ml - carmine red CEO. Item: 85023002, Artemis Plant Watercolors 25 ml - vermilion CEO. Item: 85023003, Artemis Plant Watercolors 25 ml - kamala orange CEO.

More information

Using Image J to Measure the Brightness of Stars (Written by Do H. Kim)

Using Image J to Measure the Brightness of Stars (Written by Do H. Kim) Using Image J to Measure the Brightness of Stars (Written by Do H. Kim) What is Image J? Image J is Java-based image processing program developed at the National Institutes of Health. Image J runs on everywhere,

More information

How can you coordinate the color in stage lighting, costumes, makeup and sets so they all work well together?

How can you coordinate the color in stage lighting, costumes, makeup and sets so they all work well together? "How to color stage lighting to enhance the color in scenery, costumes, and makeup" Content: DETERMINING THE EFFECT OF COLORED LIGHT ON SCENERY AND COSTUMES HOW TO EXPERIMENT WITH COLOR ON COLOR WHAT SHALL

More information

When To Work Scheduling Program

When To Work Scheduling Program When To Work Scheduling Program You should receive your login information by the second week of May. Please login and follow the instructions included in this packet. You will be scheduled based upon the

More information

Seeing in black and white

Seeing in black and white 1 Adobe Photoshop CS One sees differently with color photography than black and white...in short, visualization must be modified by the specific nature of the equipment and materials being used Ansel Adams

More information

Outlook Web App McKinney ISD 5/27/2011

Outlook Web App McKinney ISD 5/27/2011 Outlook Web App McKinney ISD 5/27/2011 Outlook Web App Tutorial Outlook Web Access allows you to gain access to your messages, calendars, contacts, tasks and public folders from any computer with internet

More information

EFX Keying/Alpha plugins for After Effects

EFX Keying/Alpha plugins for After Effects EFX Keying/Alpha plugins for After Effects Here you'll find description of the plugins developed to help select pixels based on many criteria. Also after selection, there are often things you want to do

More information

Lessons 1-15: Science in the First Day of the Creation Week. Lesson 1: Let There Be Light!

Lessons 1-15: Science in the First Day of the Creation Week. Lesson 1: Let There Be Light! Day 1: Let There Be Light! 1 Lessons 1-15: Science in the First Day of the Creation Week Lesson 1: Let There Be Light! Note to the parent/teacher: To start this lesson, you should have Genesis 1:2-3 memorized

More information

PROFESSIONAL HAIR COLOR BASIC HAIR COLOR THEORY

PROFESSIONAL HAIR COLOR BASIC HAIR COLOR THEORY PROFESSIONAL HAIR COLOR BASIC HAIR COLOR THEORY BASIC COLOR THEORY When Coloring the hair, remember the rules of complementarities Red is opposite Green Blue is opposite Orange Yellow is opposite Violet

More information

Color Balancing Techniques

Color Balancing Techniques Written by Jonathan Sachs Copyright 1996-1999 Digital Light & Color Introduction Color balancing refers to the process of removing an overall color bias from an image. For example, if an image appears

More information

Simplify your palette

Simplify your palette Simplify your palette ou can create most any spectrum color with a simple six color palette. And, an infinity of tones and shades you ll make by mixing grays and black with your colors... plus color tints

More information

A Few Quick Tips for Using the Virtual Classroom

A Few Quick Tips for Using the Virtual Classroom A Few Quick Tips for Using the Virtual Classroom When you first get onto the class site, this is the screen you will see. You will click on the tabs on the left side of the screen to access the different

More information

3-D Workshop AT A GLANCE:

3-D Workshop AT A GLANCE: 3-D Workshop AT A GLANCE: Kids will learn about perception and how we can trick our eyes into seeing 3-dimensional images with the physics of color. They also will make their own working 3-D glasses with

More information

PATIENT FLOSS PACKS Print Size: 1 x 1 Print Color: Blue, white, red, green, yellow, black or gold (choose up to 2) Minimum Order: 72 per item #

PATIENT FLOSS PACKS Print Size: 1 x 1 Print Color: Blue, white, red, green, yellow, black or gold (choose up to 2) Minimum Order: 72 per item # 97 7280 OVERVIEW CUSTOM PRINTING AND LABELING for practice promotion NEXADENTAL is the only company that lets you customize the components in your patient kits to meet the needs of your unique treatment

More information

DETERMINING WHICH COLOR UV BEAD CHANGES COLORS THE FASTEST

DETERMINING WHICH COLOR UV BEAD CHANGES COLORS THE FASTEST DETERMINING WHICH COLOR UV BEAD CHANGES COLORS THE FASTEST Helen C Cary Academy ABSTRACT The purpose of this experiment was to determine which color UV bead changes colors the fastest. The bead colors

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

After you complete the survey, compare what you saw on the survey to the actual questions listed below:

After you complete the survey, compare what you saw on the survey to the actual questions listed below: Creating a Basic Survey Using Qualtrics Clayton State University has purchased a campus license to Qualtrics. Both faculty and students can use Qualtrics to create surveys that contain many different types

More information

Third Grade Light and Optics Assessment

Third Grade Light and Optics Assessment Third Grade Light and Optics Assessment 1a. Light travels at an amazingly high speed. How fast does it travel? a. 186,000 miles per second b. 186,000 miles per hour 1b. Light travels at an amazingly high

More information

Introduction to Light, Color, and Shadows

Introduction to Light, Color, and Shadows Introduction to Light, Color, and Shadows What is light made out of? -waves, photons, Electromagnetic waves (don t know this one) How do you get color? - different wavelengths of light. What does it mean

More information

Outline. Quantizing Intensities. Achromatic Light. Optical Illusion. Quantizing Intensities. CS 430/585 Computer Graphics I

Outline. Quantizing Intensities. Achromatic Light. Optical Illusion. Quantizing Intensities. CS 430/585 Computer Graphics I CS 430/585 Computer Graphics I Week 8, Lecture 15 Outline Light Physical Properties of Light and Color Eye Mechanism for Color Systems to Define Light and Color David Breen, William Regli and Maxim Peysakhov

More information

A simpler version of this lesson is covered in the basic version of these teacher notes.

A simpler version of this lesson is covered in the basic version of these teacher notes. Lesson Element Colour Theory Lesson 2 Advanced Colour Theory A simpler version of this lesson is covered in the basic version of these teacher notes. Task instructions The objective of the lesson is to

More information

RGB Workflow Key Communication Points. Journals today are published in two primary forms: the traditional printed journal and the

RGB Workflow Key Communication Points. Journals today are published in two primary forms: the traditional printed journal and the RGB Workflow Key Communication Points RGB Versus CMYK Journals today are published in two primary forms: the traditional printed journal and the online journal. As the readership of the journal shifts

More information

PANTONE Chart Builder 2.5.2 File: MPC2000_2500_3000 Page: 1 of 14

PANTONE Chart Builder 2.5.2 File: MPC2000_2500_3000 Page: 1 of 14 PANTONE Chart Builder 2.5.2 File: MPC2000_2500_3000 Page: 1 of 14 PANTONE Yellow CS C:2 M:9 Y:98 K:0 PANTONE Purple CS C:32 M:74 Y:0 K:0 PANTONE Pro. Yel. CS C:3 M:4 Y:100 K:0 PANTONE Hex. Yel. CS C:0

More information

Corporate Identity Quick Reference Guide

Corporate Identity Quick Reference Guide Corporate Identity Quick Reference Guide fedexbrand.com The FedEx brand is more than a famous name. It s a set of values, attributes and artwork that reflects the spirit of our company. Using it consistently

More information

California Treasures High-Frequency Words Scope and Sequence K-3

California Treasures High-Frequency Words Scope and Sequence K-3 California Treasures High-Frequency Words Scope and Sequence K-3 Words were selected using the following established frequency lists: (1) Dolch 220 (2) Fry 100 (3) American Heritage Top 150 Words in English

More information

HP Certification Look-up Tool (CLT) User Guide

HP Certification Look-up Tool (CLT) User Guide HP ExpertONE HP Certification Look-up Tool (CLT) User Guide What is the HP Certification Look-up Tool? The Certification Look-up Tool (CLT) is a tool that will allow you to consult, review, and report

More information

Perception of Light and Color

Perception of Light and Color Perception of Light and Color Theory and Practice Trichromacy Three cones types in retina a b G+B +R Cone sensitivity functions 100 80 60 40 20 400 500 600 700 Wavelength (nm) Short wavelength sensitive

More information

UNDERSTANDING DIFFERENT COLOUR SCHEMES MONOCHROMATIC COLOUR

UNDERSTANDING DIFFERENT COLOUR SCHEMES MONOCHROMATIC COLOUR UNDERSTANDING DIFFERENT COLOUR SCHEMES MONOCHROMATIC COLOUR Monochromatic Colours are all the Colours (tints, tones and shades) of a single hue. Monochromatic colour schemes are derived from a single base

More information

Color Theory for Floral Design

Color Theory for Floral Design Color Theory for Floral Design Essential Questions: Why would a floral designer need to have an understanding of color theory? How is color used to create floral designs? How can color be used for store

More information

Overview. Family & Passenger: Wear Bright Cloth Brighter is better! That's right, the brighter your clothing the better your chances are of being seen

Overview. Family & Passenger: Wear Bright Cloth Brighter is better! That's right, the brighter your clothing the better your chances are of being seen Overview Family & Passenger: Wear Bright Cloth Brighter is better! That's right, the brighter your clothing the better your chances are of being seen Personal Matters: Cell Phone use While Driving Yes,

More information

COOL ART WITH MATH & SCIENCE OPTICAL ILLUSIONS CREATIVE ACTIVITIES THAT MAKE MATH & SCIENCE FUN FOR KIDS! A NDERS HANSON AND ELISSA MANN

COOL ART WITH MATH & SCIENCE OPTICAL ILLUSIONS CREATIVE ACTIVITIES THAT MAKE MATH & SCIENCE FUN FOR KIDS! A NDERS HANSON AND ELISSA MANN CHECKERBOARD HOW-TO LIBRARY COOL ART WITH MATH & SCIENCE OPTICAL ILLUSIONS CREATIVE ACTIVITIES THAT MAKE MATH & SCIENCE FUN FOR KIDS! A NDERS HANSON AND ELISSA MANN C O O L A R T W I T H M A T H & S C

More information

GIS Tutorial 1. Lecture 2 Map design

GIS Tutorial 1. Lecture 2 Map design GIS Tutorial 1 Lecture 2 Map design Outline Choropleth maps Colors Vector GIS display GIS queries Map layers and scale thresholds Hyperlinks and map tips 2 Lecture 2 CHOROPLETH MAPS Choropleth maps Color-coded

More information

Please Excuse My Dear Aunt Sally

Please Excuse My Dear Aunt Sally Really Good Stuff Activity Guide Order of Operations Poster Congratulations on your purchase of the Really Good Stuff Order of Operations Poster a colorful reference poster to help your students remember

More information

Lead Management System

Lead Management System Welcome to MSPowermail s user-friendly. To log into the system, input the same information that you currently use for our online leads site. If you don t have, or don t remember your credentials, please

More information

At the core of this relationship there are the three primary pigment colours RED, YELLOW and BLUE, which cannot be mixed from other colour elements.

At the core of this relationship there are the three primary pigment colours RED, YELLOW and BLUE, which cannot be mixed from other colour elements. The Colour Wheel The colour wheel is designed so that virtually any colours you pick from it will look good together. Over the years, many variations of the basic design have been made, but the most common

More information

Insights Discovery Profiles. A Tour of Your Insights Discovery Profile. info.seattle@insights.com. Page 1 of 6

Insights Discovery Profiles. A Tour of Your Insights Discovery Profile. info.seattle@insights.com. Page 1 of 6 A Tour of Your Insights Discovery Profile Page 1 of 6 Introduction: This document will provide you with a brief overview of your profile and the Insights Discovery System. Perhaps you have completed Psychological

More information

2014 Michigan School Accountability Scorecards: Summary Characteristics

2014 Michigan School Accountability Scorecards: Summary Characteristics 2014 Michigan School Accountability Scorecards: Summary Characteristics About the Michigan School Accountability Scorecards The Michigan School Accountability Scorecard is a diagnostic tool that gives

More information

Basic Use of the TI-84 Plus

Basic Use of the TI-84 Plus Basic Use of the TI-84 Plus Topics: Key Board Sections Key Functions Screen Contrast Numerical Calculations Order of Operations Built-In Templates MATH menu Scientific Notation The key VS the (-) Key Navigation

More information

13 PRINTING MAPS. Legend (continued) Bengt Rystedt, Sweden

13 PRINTING MAPS. Legend (continued) Bengt Rystedt, Sweden 13 PRINTING MAPS Bengt Rystedt, Sweden Legend (continued) 13.1 Introduction By printing we mean all kind of duplication and there are many kind of media, but the most common one nowadays is your own screen.

More information

Microsoft Excel 2010 Lesson 13: Practice Exercise 3

Microsoft Excel 2010 Lesson 13: Practice Exercise 3 Microsoft Excel 2010 Lesson 13: Practice Exercise 3 Start with the Nutrition Excel spreadsheet, which can be found on the course Moodle page. Look for the link to Files for Excel Lessons. These worksheets

More information

Textiles Arts and Crafts

Textiles Arts and Crafts Textiles Arts and Crafts PLO- IDENTIFY COLOUR AS AN ELEMENT OF DESIGN WHAT IS YOUR FAVOURITE COLOUR? Red : action, confidence, courage, vitality Pink : love, beauty Brown : earth, order, convention Orange

More information

Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 3

Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 3 Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 3 How do I resize the picture so that it maintains its proportions? (PPT 141) Press and hold the shift key while dragging a sizing handle away

More information

GUITAR THEORY REVOLUTION. Part 1: How To Learn All The Notes On The Guitar Fretboard

GUITAR THEORY REVOLUTION. Part 1: How To Learn All The Notes On The Guitar Fretboard GUITAR THEORY REVOLUTION Part 1: How To Learn All The Notes On The Guitar Fretboard Contents Introduction Lesson 1: Numbering The Guitar Strings Lesson 2: The Notes Lesson 3: The Universal Pattern For

More information

Building Qualtrics Surveys for EFS & ALC Course Evaluations: Step by Step Instructions

Building Qualtrics Surveys for EFS & ALC Course Evaluations: Step by Step Instructions Building Qualtrics Surveys for EFS & ALC Course Evaluations: Step by Step Instructions Jennifer DeSantis August 28, 2013 A relatively quick guide with detailed explanations of each step. It s recommended

More information

A a B b C c D d. E e. F f G g H h. I i. J j K k L l. M m. N n O o P p. Q q. R r S s T t. U u. V v W w X x. Y y. Z z. abcd efg hijk lmnop qrs tuv wx yz

A a B b C c D d. E e. F f G g H h. I i. J j K k L l. M m. N n O o P p. Q q. R r S s T t. U u. V v W w X x. Y y. Z z. abcd efg hijk lmnop qrs tuv wx yz A a B b C c D d E e F f G g H h I i J j K k L l M m N n O o P p Q q R r S s T t U u V v W w X x Y y Z z abcd efg hijk lmnop qrs tuv wx yz 25 Ways to Use Magnetic Letters at Home 1. LETTER PLAY Encourage

More information

Cell Membrane & Tonicity Worksheet

Cell Membrane & Tonicity Worksheet NAME ANSWER KEY DATE PERIOD Cell Membrane & Tonicity Worksheet Composition of the Cell Membrane & Functions The cell membrane is also called the PLASMA membrane and is made of a phospholipid BI-LAYER.

More information

OA3-10 Patterns in Addition Tables

OA3-10 Patterns in Addition Tables OA3-10 Patterns in Addition Tables Pages 60 63 Standards: 3.OA.D.9 Goals: Students will identify and describe various patterns in addition tables. Prior Knowledge Required: Can add two numbers within 20

More information

2011 Volvo Color Compatibility Guide

2011 Volvo Color Compatibility Guide C30 019 Black Underhood 019 Black Color Name C30 426 Mystic Silver Metallic Underhood 426 Mystic Silver Metallic C30 452 Black Sapphire Metallic Underhood 452 Black Sapphire Metallic C30 455 Titanium Gray

More information

The rest of this document describes how to facilitate a Danske Bank Kanban game.

The rest of this document describes how to facilitate a Danske Bank Kanban game. Introduction This is a Kanban game developed by Sune Lomholt for Danske Bank Kanban workshop. It is based on Software development Kanban which can be found here: http://www.skaskiw.biz/resources.html The

More information

CHAPTER 461b. SLOT MACHINE TOWER LIGHTS AND ERROR CONDITIONS TECHNICAL STANDARD. 461b.2. Slot machine tower lights and error conditions.

CHAPTER 461b. SLOT MACHINE TOWER LIGHTS AND ERROR CONDITIONS TECHNICAL STANDARD. 461b.2. Slot machine tower lights and error conditions. CHAPTER 461b. SLOT MACHINE TOWER LIGHTS AND ERROR CONDITIONS TECHNICAL STANDARD 461b.2. Slot machine tower lights and error conditions. (a) Unless otherwise authorized by the Board, each slot machine must

More information

Lesson Plan. Set: Notecard K of KWL. What do you know about color? Students will write information about everything they know about color.

Lesson Plan. Set: Notecard K of KWL. What do you know about color? Students will write information about everything they know about color. Annie Clarke Windsor High School Interior Design Topic: Elements of Design Basic color introduction Lesson Plan Concept: Students will have a basic introduction to color, which will allow them have the

More information

Teaching Children to Praise

Teaching Children to Praise Teaching Children to Praise Thinking About Praise Discuss one or two of the following questions with a partner. When did you last praise God in a heartfelt way? What were you doing at the time? What effect

More information

Main Question 1: How and where do you or your family use the Internet - whether on a computer or a cell phone? Follow up questions for INTERNET USERS

Main Question 1: How and where do you or your family use the Internet - whether on a computer or a cell phone? Follow up questions for INTERNET USERS TABLE 1: Current Internet use Main Question 1: How and where do you or your family use the Internet - whether on a computer or a cell phone? Follow up questions for INTERNET USERS 1. What do you use to

More information

2. How many ways can the letters in PHOENIX be rearranged? 7! = 5,040 ways.

2. How many ways can the letters in PHOENIX be rearranged? 7! = 5,040 ways. Math 142 September 27, 2011 1. How many ways can 9 people be arranged in order? 9! = 362,880 ways 2. How many ways can the letters in PHOENIX be rearranged? 7! = 5,040 ways. 3. The letters in MATH are

More information

Data representation and analysis in Excel

Data representation and analysis in Excel Page 1 Data representation and analysis in Excel Let s Get Started! This course will teach you how to analyze data and make charts in Excel so that the data may be represented in a visual way that reflects

More information

DIGITAL / HD GUIDE. Using Your Interactive Digital / HD Guide. 1-866-WAVE-123 wavebroadband.com

DIGITAL / HD GUIDE. Using Your Interactive Digital / HD Guide. 1-866-WAVE-123 wavebroadband.com DIGITAL / HD GUIDE Using Your Interactive Digital / HD Guide 1-866-WAVE-123 wavebroadband.com Using Your Interactive Digital/HD Guide Wave s Digital/HD Guide unlocks a world of greater choice, convenience

More information

Solving the Rubik's Revenge (4x4x4) Home Pre-Solution Stuff Step 1 Step 2 Step 3 Solution Moves Lists

Solving the Rubik's Revenge (4x4x4) Home Pre-Solution Stuff Step 1 Step 2 Step 3 Solution Moves Lists Solving your Rubik's Revenge (4x4x4) 07/16/2007 12:59 AM Solving the Rubik's Revenge (4x4x4) Home Pre-Solution Stuff Step 1 Step 2 Step 3 Solution Moves Lists Turn this... Into THIS! To solve the Rubik's

More information

BASIC CONCEPTS OF HAIR PHYSIOLOGY AND COSMETIC HAIR DYES

BASIC CONCEPTS OF HAIR PHYSIOLOGY AND COSMETIC HAIR DYES Staple here TECHNICAL MANUAL BASIC CONCEPTS OF HAIR PHYSIOLOGY AND COSMETIC HAIR DYES COVER PAGE MACRO-STRUCTURE OF THE HAIR The hair is formed by the shaft and the piliferous bulb. The visible part of

More information

ATP & Photosynthesis Honors Biology

ATP & Photosynthesis Honors Biology ATP & Photosynthesis Honors Biology ATP All cells need for life. Some things we use energy for are: Moving Thinking Sleeping Breathing Growing Reproducing ENERGY Labeled Sketch: The principal chemical

More information

Calculator Worksheet--page 1

Calculator Worksheet--page 1 Calculator Worksheet--page 1 Name On this worksheet, I will be referencing keys that are on the TI30Xa. If you re using a different calculator, similar keys should be there; you just need to fi them! Positive/Negative

More information

Outlook Training. By Martha Williamson, CIC AVP Automation and Workflow Trainer Martha.williamson@oldnationalins.com (217) 304-1666 Cell

Outlook Training. By Martha Williamson, CIC AVP Automation and Workflow Trainer Martha.williamson@oldnationalins.com (217) 304-1666 Cell Outlook Training By Martha Williamson, CIC AVP Automation and Workflow Trainer Martha.williamson@oldnationalins.com (217) 304-1666 Cell 1 Agenda 1. Outlook Views 2. Email Etiquette 3. Signatures 4. Out

More information

This feature is available on select devices featuring VUDU. In order to use this feature, your VUDU device must be connected to the Internet.

This feature is available on select devices featuring VUDU. In order to use this feature, your VUDU device must be connected to the Internet. Movie Download This feature is available on select devices featuring VUDU. In order to use this feature, your VUDU device must be connected to the Internet. Summary The Movie Download feature allows you

More information

After a wave passes through a medium, how does the position of that medium compare to its original position?

After a wave passes through a medium, how does the position of that medium compare to its original position? Light Waves Test Question Bank Standard/Advanced Name: Question 1 (1 point) The electromagnetic waves with the highest frequencies are called A. radio waves. B. gamma rays. C. X-rays. D. visible light.

More information

HOWTO annotate documents in Microsoft Word

HOWTO annotate documents in Microsoft Word HOWTO annotate documents in Microsoft Word Introduction This guide will help new users markup, make corrections, and track changes in a Microsoft Word document. These instructions are for Word 2007. The

More information

Energy - Heat, Light, and Sound

Energy - Heat, Light, and Sound Science Benchmark: 06:06 Heat, light, and sound are all forms of energy. Heat can be transferred by radiation, conduction and convection. Visible light can be produced, reflected, refracted, and separated

More information

Opposites are all around us. If you move forward two spaces in a board game

Opposites are all around us. If you move forward two spaces in a board game Two-Color Counters Adding Integers, Part II Learning Goals In this lesson, you will: Key Term additive inverses Model the addition of integers using two-color counters. Develop a rule for adding integers.

More information

ELEMENTS OF ART & PRINCIPLES OF DESIGN

ELEMENTS OF ART & PRINCIPLES OF DESIGN ELEMENTS OF ART & PRINCIPLES OF DESIGN Elements of Art: 1. COLOR Color (hue) is one of the elements of art. Artists use color in many different ways. The colors we see are light waves absorbed or reflected

More information

Color Theory. Tips & Tricks. Why do some colors work better together than others? More available at artbeats.com. by Chris & Trish Meyer, Crish Design

Color Theory. Tips & Tricks. Why do some colors work better together than others? More available at artbeats.com. by Chris & Trish Meyer, Crish Design Color Theory by Chris & Trish Meyer, Crish Design Figure 1a Why do some colors work better together than others? Ah, the joys of being able to create moving media all by ourselves: Not only do we need

More information

Window and Door Home Safety Workbook for Kids

Window and Door Home Safety Workbook for Kids Window and Door Home Safety Workbook for Kids Please review and practice these safety measures in your home. A Note to Parents! Children see the world s wonder before they may see its dangers. By following

More information

TEACHER S GUIDE TO RUSH HOUR

TEACHER S GUIDE TO RUSH HOUR Using Puzzles to Teach Problem Solving TEACHER S GUIDE TO RUSH HOUR Includes Rush Hour 2, 3, 4, Rush Hour Jr., Railroad Rush Hour and Safari Rush Hour BENEFITS Rush Hour is a sliding piece puzzle that

More information

Discover what you can build with ice. Try to keep ice cubes from melting. Create colored ice for painting

Discover what you can build with ice. Try to keep ice cubes from melting. Create colored ice for painting Visit Moody Gardens this holiday season and check out the coolest exhibit around ICE LAND: Ice Sculptures. After your visit, try out these ice-related activities. Discover what you can build with ice Try

More information

Formal and informal Assessment

Formal and informal Assessment Formal and informal Assessment Assessment is used in various venues: in schools from birth throughout postgraduate work, in the workplace, and from agencies granting licenses. Assessments can be either

More information

Facility Operations Physical Safety Guidance Document

Facility Operations Physical Safety Guidance Document Facility Operations Physical Safety Guidance Document Title: Guide on Pipe Identification Standards (ASME A13.1-1996) Original Date: December 18, 2000 Section: 4.0 Facility Operations Revised Date: Number:

More information

Outlook Web Access Tutorial

Outlook Web Access Tutorial 1 Outlook Web Access Tutorial Outlook Web Access 2010 allows you to gain access to your messages, calendars, contacts, tasks and public folders from any computer with internet access. How to access your

More information

High level code and machine code

High level code and machine code High level code and machine code Teacher s Notes Lesson Plan x Length 60 mins Specification Link 2.1.7/cde Programming languages Learning objective Students should be able to (a) explain the difference

More information

Xylophone. What You ll Build

Xylophone. What You ll Build Chapter 9 Xylophone It s hard to believe that using technology to record and play back music only dates back to 1878, when Edison patented the phonograph. We ve come so far since then with music synthesizers,

More information

TCS DIGITAL COLOR WHEEL VERSION 4.1 USER GUIDE

TCS DIGITAL COLOR WHEEL VERSION 4.1 USER GUIDE TCS DIGITAL COLOR WHEEL VERSION 4.1 USER GUIDE We provide this TCS User Guide for our members as well as persons who would like to know more about the functionality before subscribing to TCS Color Match

More information

Create Your Own Picture Tubes

Create Your Own Picture Tubes Create Your Own Picture Tubes By JP Kabala What can do you do if you don t have a Picture Tube with the kind of images that you need or want? Well, you could try the Jasc.com Creative Downloads. These

More information