COMP 110 INTRODUCTION TO PROGRAMMING WWW

Size: px
Start display at page:

Download "COMP 110 INTRODUCTION TO PROGRAMMING WWW"

Transcription

1 COMP 110 INTRODUCTION TO PROGRAMMING WWW Fall 2011 Hmewrk 3 Submissin Deadline: 10:59 AM, Oct 24 Overview Validating Multiple Chess Mves n a Chessbard Fr this assignment yu will replace yur Javascript cde frm HW 2 with ne that uses arrays and lps fr validating multiple chess mves. As befre, chess pieces can be a King (K), Queen (Q), Bishp (B), Knight (N), Rk (R), r a Pawn (P). Yur prgram will keep asking the user t enter the type f the chess piece, as well as its starting (current) psitin and ending (intended) psitin. It will then validate whether this piece can change its psitin with a single valid mve (given that all f the valid mves entered s far have already taken place). When the user is dne entering all mves, yur prgram will then display a chessbard with all f the valid/invalid mves. Prgram Specificatin Specifically, yur prgram shuld d the fllwing (in the same rder): Ask the user if he/she wants t enter anther mve. If yes, use the 5 prmpts belw t ask fr the mve. If nt, display the final chess bard (as described belw). Prmpt the user t enter the type f the (white) chess piece. The valid ptins are: K, Q, B, N, R, P. Prmpt the user t enter the starting clumn (valid ptins are: a, b, c, d, e, f, g, h). Prmpt the user t enter the starting rw (valid ptins are: 1, 2, 3, 4, 5, 6, 7, 8). Prmpt the user t enter the ending clumn (valid ptins are: a,b, c, d, e, f, g, h). Prmpt the user fr ending rw (valid ptins are: 1,2, 3, 4, 5, 6, 7, 8). If the piece can mve frm the starting psitin t the ending psitin in a single mve, then: The mve is valid and the piece is assigned t the ending psitin. Displays a message (display n the HTML page, nt in an alert bx) that lists the 5 input fields and a message as shwn belw: N d 4 f 5 : This is a valid mve.

2 Page 2 f 6 If the piece can nt mve frm the starting psitin t the ending psitin in a single mve, then: The mve is invalid and the piece is retained at the starting psitin. Yur prgram shuld display a message (display n the HTML page, nt in an alert bx) that lists the 5 input fields and a message as shwn belw: Q g 6 e 3 : This is an INVALID mve. Once the user is dne entering all mves (answers n t the first questin abve), yur prgram shuld display a chessbard, in which: Fr each valid mve, the starting and ending cells are highlighted in green (#00FF00), and the piece is displayed in the ending cell. Fr each invalid mve, the starting and ending cells are highlighted in red (#FF0000), and the piece is displayed in the starting cell, and a bld?! (questin & exclamatin mark) is displayed in the ending cell. Align yur chess bard t the center f the page. NOTE: Cnsider (and display) nly white pieces. If any f the user input is invalid, simply display an apprpriate errr message, and d nthing else (d nt display the chess bard). When a user enters a mve, if the starting/ending psitins verlap with any f the starting/ending psitins he has entered fr nn verlapping mves s far, display an apprpriate errr message, and ignre the mve (d nt display it n the final chess bard). But fr such an input, yur prgram shuld als display a message (in HTML, nt in an alert bx) that lists the 5 input fields and a message as shwn belw: Q g 6 f 5 : This is an OVERLAPPING mve. Use 2 D arrays t remember/stre fr each square f the chess bard (based n user input): What clr shuld be the backgrund What image/text shuld be displayed (if at all) Use (nested) lps fr displaying the chess bard. Use the chess rules specified belw t figure ut if a mve is valid r invalid. (Nte: belw, we assume that 64 cells f the chess bard can be specified using (X,Y) crdinates, where the cell in the lwer left hand crner has a crdinate f (1,1), and the cell n the upper right hand crner has a crdinate f (8,8). Similarly, the cell n the upper left hand crner will have a psitin f (1,8) and the cell n the lwer righthand crner will have a psitin f (8,1). ) Valid King (K) mve: If the piece mves frm (X 1, Y 1 ) t (X 2, Y 2 ), the mve is valid if and nly if X 2 X 1 1, and Y 2 Y 1 1. Valid Bishp (B) mve: If the piece mves frm (X 1, Y 1 ) t (X 2, Y 2 ), the mve is valid if and nly if X 2 X 1 = Y 2 Y 1.

3 Page 3 f 6 Valid Rk (R) mve: If the piece mves frm (X 1, Y 1 ) t (X 2, Y 2 ), the mve is valid if and nly if X 2 = X 1 r Y 2 = Y 1. Valid Queen (Q) mve: A queen s mve is valid if it is either a valid mve fr either a bishp r a rk. Valid Knight (N) mve: If the piece mves frm (X 1, Y 1 ) t (X 2, Y 2 ), the mve is valid if and nly if ( X 2 X 1 = 1 and Y 2 Y 1 = 2) r ( X 2 X 1 = 2 and Y 2 Y 1 = 1). Valid Pawn (P) mve: If the piece mves frm (X 1, Y 1 ) t (X 2, Y 2 ), the mve is valid if and nly if X 2 = X 1 and Y 2 Y 1 = 1. Sample Output: Belw, yu ll find screenshts f a cuple f sample utputs (Firefx brwser). Sample Input 1: OK N d 4 f 5 OK Q g 6 e 3 Cancel Sample Output 1:

4 Page 4 f 6 Sample Input 2: OK N d 4 f 5 OK Q g 9 Sample Output 2: Sample Input 3: OK N d 4 f 5 OK Q d 4 g 7 Sample Output 3:

5 Page 5 f 6 Prgramming Style/Guidelines Abut 10% f the grade is reserved fr a gd prgramming style. S d remember t indent yur cde prperly and d remember t add sufficient cmments. Tips This hmewrk is designed t give yu practice n using arrays and lps. These are the nly additinal cnstructs yu need t cmplete this hmewrk. If yu use arrays effectively t remember the clr and image fr each chessbard square, yu can d away with mst selectin (if) statements frm the part f yur cde that is actually displaying/drawing the final chessbard. If yu use yur arrays effectively, yu will als easily be able t check whether a mve is verlapping with a previus mve. Nte that the use f lps will reduce the ttal lines f Javascript cde yu end up writing (cmpared t Assignment # 2); hwever, the cde will be mre cmplex. S d start early (tday), else yu will nt be able t cmplete the assignment n time! Yur hmewrk will be public and available t the whle wrld including web search engines such as Ggle. S dn't put any infrmatin n the pages that yu dn't want the whle wrld t see. D nt create a link t this page frm any ther page. Submissin Instructins Yur HTML shuld include the fllwing cmments at the tp f the page Yur name COMP 110 Assignment number 3 Ttal time taken t cmplete this assignment Pledge: I have neither given nr received unauthrized aid n this assignment (signed) Sign the pledge by typing yur full name. Give a secret (and cryptic) name t yur HTML file (e.g., xx4yzrt.html). Please d nt use this example name use a different ne. This will help ensure that thers cannt cpy yur submissin. D nt share the name f yur file with anyne (ther than the instructr r the TAs). D nt create a link t this file frm any ther web page! Turn in a single sheet that cntains n paper yur pledge fr this hmewrk (the pledge shuld have yur name, assignment number, yur pledge, and signature). Please type set (d nt hand write). Hand this t either the instructr r the TAs by the submissin deadline.

6 Page 6 f 6 Submit n blackbard the full URL and surce cde fr yur web page n blackbard. e.g., if yur ONYEN lgin id is nyen, and yur assignment file is called xx4yzrt.html, then under Assignment # 3 : Submit the fllwing text in the Cmments bx under Assignment # 3 : Als submit yur HTML file as an attachment, by using the attach lcal file under Assignment # 3 (and chsing xx4yzrt.html). Yu d nt need t turn in a paper cpy f yur HTML file. D NOT mdify yur HTML files after submitting the abve URL n blackbard! S make sure yur hmewrk is ready fr grading befre yu submit it. If yur file is mdified after the submissin deadline, yur assignment will be cnsidered (crrespndingly) late. A Reminder n the Hnr Cde Please review the hnr cde fr this curse. It is k t: Discussing the assigned hmewrk prblem t understand its meaning. Discuss abut specific HTML and Javascript features In all cases yu must explicitly acknwledge any and all substantive help received frm ther individuals. That is, if yu cllabrate in any f the abve ways with ther individuals then yu must include an explicit acknwledgment in yur hmewrk slutin f the persns frm whm yu received aid. Acknwledging thers, if dne prperly, will nt adversely affect yur grade. Unacceptable cllabratin n written hmewrk includes: Cpying HTML r Javascript cde (r any prtin f yur hmewrk slutin) frm ther students, r frm the web. Shuld questins arise during the curse f wrking n a prblem please feel free t cntact the instructr. In principle, if yu wrk with thers in gd faith and are hnest and generus with yur attributins f credit yu will have n prblems.

Excel Step by Step Instructions Creating Lists and Charts. Microsoft

Excel Step by Step Instructions Creating Lists and Charts. Microsoft Infrmatin Yu Can Enter in a Wrksheet: Labels: Any type f text r infrmatin nt used in any calculatins. Labels are used fr wrksheet headings and make wrksheets easy t read and understand. Labels can als

More information

Desktop Teller Exception User Guide

Desktop Teller Exception User Guide Desktp Teller Exceptin User Guide Jammed Dcuments If a dcument jams during the scanning prcess, the scanner will stp, and a message bx will display a Device Errr Message, as shwn belw: Click OK t allw

More information

Introduction to Life Cycle Risk Management Help Page

Introduction to Life Cycle Risk Management Help Page Select a frequently asked questin (FAQ) t skip t its answer. Hw is the curse rganized? Wh shuld take this curse? Hw d I get credit fr this curse? What d all the navigatin buttns d? Hw d I knw what t click?

More information

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL

The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Yu will learn the fllwing in this lab: The UNIVERSITY f NORTH CAROLINA at CHAPEL HILL Cmp 541 Digital Lgic and Cmputer Design Prf. Mntek Singh Fall 2016 Lab Prject (PART A): Attaching a Display t the Prcessr

More information

Figure 1: A Battleship game by Pogo

Figure 1: A Battleship game by Pogo CSCI 2312-002: Object Oriented Prgramming Final Prject Assigned: Octber 17, 2017 Design Due: Octber 24, 2017 IN CLASS (Graded as ne hmewrk grade) Final prject Due: Nvember 16, 2017 at 11:59 PM Fr many

More information

Spring 06 Assignment 3: Robot Motion, Game Theory

Spring 06 Assignment 3: Robot Motion, Game Theory 15-381 Spring 06 Assignment 3: Rbt Mtin, Game Thery Questins t Rng Yan(yanrng@cs.cmu.edu) Out: 2/21/06 Due: 3/7/06 Name: Andrew ID: Please turn in yur answers n this assignment (etra cpies can be btained

More information

Claim Amalgamation. Getting Started. Amalgamate means to join 2 or more cell claims into one cell claim. Before you start:

Claim Amalgamation. Getting Started. Amalgamate means to join 2 or more cell claims into one cell claim. Before you start: Claim Amalgamatin Amalgamate means t jin 2 r mre cell claims int ne cell claim. Befre yu start: Yu will need t knw the title numbers f the cell titles fr amalgamatin. If yu are acting as an agent, yu must

More information

Security Exercise 12

Security Exercise 12 Security Exercise 12 Asynchrnus Serial Digital Baseband Transmissin Discussin: In this chapter, yu learned that bits are transmitted ver a cpper wire as a series f vltage pulses (a prcess referred t as

More information

1 Logistics. Chengkai Li. Department of Computer Science and Engineering University of Texas at Arlington Fall 2017

1 Logistics. Chengkai Li. Department of Computer Science and Engineering University of Texas at Arlington Fall 2017 CSE4334/5334 1 Lgistics Data Mining Chengkai Li Department f Cmputer Science and Engineering University f Texas at Arlingtn Fall 2017 Self Intrductin 2 Chengkai Li Assciate Prfessr, CSE Office: ERB 628

More information

ECE 3829: Advanced Digital System Design with FPGAs A Term 2017

ECE 3829: Advanced Digital System Design with FPGAs A Term 2017 ECE 3829: Advanced Digital System Design with FPGAs A Term 2017 Lab 2- VGA display and Light Sensr interface Reprt due at start f class Friday September 15 th Use the prvided Ambient Light Sensr mdule

More information

1. Constraint propagation

1. Constraint propagation 6.034 Artificial Intelligence, Fall 2006 Prf. Patrick H.Winstn Prblem Set 3 This prblem set is due Wednesday, Octber 18th at 11:59 PM. If yu have questins abut it, ask the TA email list. Yur respnse will

More information

Mobile LightSync Link App Programing Guide Revision 2

Mobile LightSync Link App Programing Guide Revision 2 Mbile LightSync Link App Prgraming Guide Revisin 2 Overview: The Mbile LightSync Link App emulates LightSync input devices used t cntrl ILC relays and dimmer utputs frm an Andrid r Apple mbile device.

More information

Creating Gift Card Batches

Creating Gift Card Batches Every active custmer gift card issued is a part f a batch f gift cards. Prir t activating any individual gift card, yu must define a batch f gift cards and any accmpanying rules that apply t each batch.

More information

Upgrading to PlanetPress Suite Version 5

Upgrading to PlanetPress Suite Version 5 Upgrading t PlanetPress Suite Versin 5 Creatin date: September 2, 2005 Revisin date: June 14, 2006 Table f Cntents System Requirements... 4 Imprtant Cnsideratins... 4 Knwn Issues... 6 Prcedure t imprt

More information

Frequency Response of a BJT CE Amplifier

Frequency Response of a BJT CE Amplifier Frequency Respnse f a BJT CE Amplifier Run the experiment By clicking the arrw n the Tlbar. Chse values f C B & C C, C E & R C frm the crrespnding drp dwn menus. (Clicking the arrw n the right side f the

More information

DXF2DAT 3.0 Professional Designed Computing Systems 848 W. Borton Road Essexville, Michigan 48732

DXF2DAT 3.0 Professional Designed Computing Systems 848 W. Borton Road Essexville, Michigan 48732 Prgram Infrmatin 1 DXF2DAT 3.0 Prfessinal Designed Cmputing Systems 848 W. Brtn Rad Essexville, Michigan 48732 Cntact: (989) 892-4376 website: http://www.famwrk.net General Infrmatin: inf@famwrk.net Technical

More information

Freading for Kindle Fire Using the SlideME app.

Freading for Kindle Fire Using the SlideME app. Harvard Public Library www.harvardpubliclibrary.rg Freading fr Kindle Fire Using the SlideME app. Freading is an e-bk cllectin, available t Harvard Public Library cardhlders, that ffers tens f thusands

More information

INSTRUCTION BOOKLET (PUZZLES BY NIKOLA ZIVANOVIC)

INSTRUCTION BOOKLET (PUZZLES BY NIKOLA ZIVANOVIC) LMI DECEMBER PUZZLE TEST PUZZLES & CHESS -2. DECEMBER 200. INSTRUCTION BOOKLET (PUZZLES BY NIKOLA ZIVANOVIC) SUBMISSION: http://lgicmastersindia.cm/m2002p 0 PUZZLES 70 MINUTES POINTS TABLE CHESS BATTLESHIPS

More information

Table of Contents. ilab Solutions: Core Facilities Core Usage Reporting

Table of Contents. ilab Solutions: Core Facilities Core Usage Reporting Revisin Date: 12/31/2012 Table f Cntents 1. Institutin, Cre Facility and Lab Administratin Reprting Overview...2 2. Hw d I access ilab Reprts?...3 3. What is the General Functinality fr ilab Reprting?...6

More information

PAPER SPACE AND LAYOUTS

PAPER SPACE AND LAYOUTS PAPER SPACE AND LAYOUTS There are tw distinct wrking envirnments in AutCAD namely: Mdel Space and Paper space. Prjects can be develped by either wrking in the mdel space thrugh the use f MVSETUP r PAPER

More information

WiFi Lab C. Equipment Needs:

WiFi Lab C. Equipment Needs: WiFi Lab C Event Objective: Teams will cnstruct an antenna prir t the turnament that is designed t transmit a signal at 2.4 GHz and cmplete a written test n the principles f electrmagnetic wave prpagatin.

More information

2018 Print and DPI Annual Competition Rules

2018 Print and DPI Annual Competition Rules Brisbane Camera Grup 'Annual Cmpetitin' takes place in Nvember each year. It's the highlight f the club cmpetitin year and submissin standards are cnsistently high. All graded members are eligible and

More information

This app uses callas pdftoolbox server as the imposition engine and consequently you have to have that program installed on your Switch server.

This app uses callas pdftoolbox server as the imposition engine and consequently you have to have that program installed on your Switch server. Autmatic impsitin Page 1/8 Autmatic impsitin Descriptin Autmatic impsitin will d the mst cmmn impsitins fr yur digital printer. It will autmatically d flders fr A5, A4 r US Letter page sizes in either

More information

Dry Contact Sensor DCS15 User Manual

Dry Contact Sensor DCS15 User Manual Dry Cntact Sensr DCS15 User Manual Help Versin updated till firmware 404i / SP456 Cpyright 2012, AKCess Pr C., Ltd.. Intrductin / What is a Dry Cntact Sensr The Dry Cntact sensr r DCS15 is a simple cnnectin

More information

Support Subscribers call

Support Subscribers call Prduced by Cmputer Helper Publishing (CHP). We hpe this sftware makes the tasks f Church administratin easier and mre efficient. Any questins that cannt be answered by these help files shuld be directed

More information

What your Board Should look like!

What your Board Should look like! What yur Bard Shuld lk like! Fr almst every science fair prject, yu need t prepare a display bard t cmmunicate yur wrk t thers. In mst cases yu will use a standard, three-panel display bard that unflds

More information

1.12 Equipment Manager

1.12 Equipment Manager Mdule 1 Categry 1 1.12 Equipment Manager Functin f the windw The windw is the central data file fr the Kntrl Pr and cllects the main data fr fees f an bject that t be used in this prject. The Equipment

More information

Dialectical Journals. o o. Sample Dialectical Journal entry: The Things They Carried, by Tim O Brien Passages from the text Pg#s Comments & Questions

Dialectical Journals. o o. Sample Dialectical Journal entry: The Things They Carried, by Tim O Brien Passages from the text Pg#s Comments & Questions Bay Path Reginal Vcatinal Technical High Schl Summer Reading Assignment 2018 Any nvel by Neal Shusterman Students will read ne nvel by Neal Shusterman, any nvel, and cmplete six (6) dialectical jurnal

More information

University of Hyderabad ENTRANCE EXAMINATIONS

University of Hyderabad ENTRANCE EXAMINATIONS University f Hyderabad ENTRANCE EXAMINATIONS 2018-19 INSTRUCTIONS FOR COMPLETING THE ON-LINE APPLICATION FORM General Instructins: I. Applicatin fr entrance examinatin fr admissin t varius curses during

More information

You Be The Chemist Challenge Official Competition Format

You Be The Chemist Challenge Official Competition Format 2018-2019 Yu Be The Chemist Challenge Official Cmpetitin Frmat This dcument prvides detailed infrmatin regarding the Challenge frmat at each level f the cmpetitin. Schl Crdinatrs, participants, and parents/guardians

More information

Banner pocket v3 Page 1/7. Banner pocket v3

Banner pocket v3 Page 1/7. Banner pocket v3 Banner pcket v3 Page 1/7 Banner pcket v3 Descriptin Banner pcket will help yu get the printed sheets arranged in the way yu need fr attaching the frnt and back side pckets tgether. It will crp ne sides

More information

Dry Contact Sensor

Dry Contact Sensor www.akcp.cm Dry Cntact Sensr Intrductin The Dry Cntact sensr is a simple cnnectin t burglar alarms, fire alarms r any applicatin that requires mnitring by the unit. Dry cntact sensrs are user definable

More information

Operating Instructions

Operating Instructions TC 60/8 THERMOCOMPUTER TC 60/8 temp / time s s temp / time k start stp Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing

More information

Razor Tracking: User Guide

Razor Tracking: User Guide Cntents 1. Setup Instructins...3 1.1 Administratin...3 GPS Device Inf...3 Peple Management...4 Vehicle Setup (Fleet and Asset Devices)...5 Vehicle Grup Setup...7 Departments...7 Camera Management...8 Public

More information

PreLab5 Temperature-Controlled Fan (Due Oct 16)

PreLab5 Temperature-Controlled Fan (Due Oct 16) PreLab5 Temperature-Cntrlled Fan (Due Oct 16) GOAL The gal f Lab 5 is t demnstrate a temperature-cntrlled fan. INTRODUCTION The electrnic measurement f temperature has many applicatins. A temperature-cntrlled

More information

UCLA Extension Writers Program Public Syllabus

UCLA Extension Writers Program Public Syllabus Writing the First Screenplay III Syllabus -- Fall 2010.002 1 UCLA Extensin Writers Prgram Public Syllabus Nte t students: this public syllabus is designed t give yu a glimpse int this curse and instructr.

More information

6/22/17 MEMO TO: CALL TO TEEN ARTISTS (AGES 15-18) NEW Creative Crosswalk project in ViBe District

6/22/17 MEMO TO: CALL TO TEEN ARTISTS (AGES 15-18) NEW Creative Crosswalk project in ViBe District 6/22/17 MEMO TO: CALL TO TEEN ARTISTS (AGES 15-18) RE: NEW Creative Crsswalk prject in ViBe District ViBe Creative District will hst a NEW creative crsswalk painting event n the Secnd Saturday f July (7/8/17)

More information

Flash Image Rotator Web Part

Flash Image Rotator Web Part Flash Image Rtatr Web Part User Guide Cpyright 2007 Data Springs Inc. All rights reserved. Table f cntents: 1 INTRODUCTION...3 2 INSTALLATION PROCEDURE...4 2.1 After installatin ntes:...5 2.2 Trubleshting...6

More information

TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE

TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE TUTORIAL I ECE 555 CADENCE SCHEMATIC SIMULATION USING SPECTRE Cadence Virtus Schematic editing prvides a design envirnment cmprising tls t create schematics, symbls and run simulatins. This tutrial will

More information

NORTH CAROLINA ODYSSEY OF THE MIND SCHOLARSHIP APPLICATION

NORTH CAROLINA ODYSSEY OF THE MIND SCHOLARSHIP APPLICATION NORTH CAROLINA ODYSSEY OF THE MIND 2009-2010 SCHOLARSHIP APPLICATION Nrth Carlina Odyssey f the Mind (NCOM) is pleased t annunce tw cllege schlarships available t current and/r frmer Odyssey f the Mind

More information

SHADOW OF THE DRAGON AGE OF SIGMAR

SHADOW OF THE DRAGON AGE OF SIGMAR AGE OF SIGMAR SHADOW OF THE DRAGON Welcme t the first annual Age f Sigmar event at Dragn-Fall. We are very excited abut this year s narrative event and what it means t the new cmmunity frming arund the

More information

E-Jobsheet Tablet Application Functionality

E-Jobsheet Tablet Application Functionality E-Jbsheet Tablet Applicatin Functinality The e-jbsheet applicatin has been created fr Truck Service Prviders (TSP) in rder fr their admin staff and fitters t handle all types f wrk via a mbile platfrm

More information

Guidelines for Preparation of Accepted Papers (Full Length) / Posters

Guidelines for Preparation of Accepted Papers (Full Length) / Posters 23 rd Internatinal Cngress n Irrigatin and Drainage 8-14 Octber 2017, Mexic City, Mexic Theme: Mdernizing Irrigatin and Drainage fr a New Green Revlutin Guidelines fr Preparatin f Accepted Papers (Full

More information

f f d o FIGURE 1 - Light ray diagram

f f d o FIGURE 1 - Light ray diagram Lab 10 Thin Lenses What Yu Nee T Knw: The Physics Frm last week s lab, Reflectin an Refractin, yu shul alreay be familiar with the fllwing terms: principle axis, fcal pint, fcal length, f, cnverging lens

More information

Appendix D. Photography

Appendix D. Photography Appendix D Phtgraphy 1 I. Taking Phtgraphs Taking phtgraphs is a required NWCA field activity that prvides an imprtant visual recrd f sampling activities at each site. Phtgraphs are taken with a digital

More information

Microsoft PowerPoint 2007

Microsoft PowerPoint 2007 Micrsft PwerPint 2007 Finding Presentatins n the Web Open the Internet and g t http://www.ggle.cm Click n Advanced Search. Enter wrds r phrases t describe desired results. On the File Frmat line, click

More information

COM/ENG 357: Scriptwriting for Serial Media Spring 2016 Tue./Thur. 12-1:50pm Black 139

COM/ENG 357: Scriptwriting for Serial Media Spring 2016 Tue./Thur. 12-1:50pm Black 139 COM/ENG 357: Scriptwriting fr Serial Media Spring 2016 Tue./Thur. 12-1:50pm Black 139 1 Instructr: Maria Sanders Office Hurs: Builln 225 Assistant Prfessr, Film and Vide Studies Mn. & Wed. 2-4:30p & Thur

More information

Photoshop Elements: Color and Tonal Correction Basics

Photoshop Elements: Color and Tonal Correction Basics Phtshp Elements: Clr and Tnal Crrectin Basics Cntrast Lighten Phtshp Elements: Clr and Tnal Crrectin Basics 1 Sharpen Expsure Phtshp Elements: Clr and Tnal Crrectin Basics 2 Highlights and Shadws All key

More information

Hospital Task Scheduling using Constraint Programming

Hospital Task Scheduling using Constraint Programming Hspital Task Scheduling using Cnstraint Prgramming Authr: Chaman Chahal Supervisr: Dr. P. Bse, Schl f Cmputer Science Organizatin: Carletn University Curse: COMP4905 Date: Dec. 11, 2012 1 Abstract Hspitals

More information

Pencil Drawing. Hard 2H H F HB B 2B 4B 6B Soft

Pencil Drawing. Hard 2H H F HB B 2B 4B 6B Soft This activity is abut learning hw t use ur pencils t create wnderful images like these. Take a lk at a few that All Saints students have dne in the past. (Take a lk at the riginals at the frnt f the rm

More information

Photoshop Elements 7 Intermediate: Layout & Design

Photoshop Elements 7 Intermediate: Layout & Design Phtshp Elements 7 Intermediate: Layut & Design Designing a prject... 2 Preparing pictures fr use in a prject... 2 Creating a new blank dcument... 2 Adding a picture(s) t a prject... 2 Turning n the Ruler/Grid...

More information

A2: Aperture, DOF, & Focus

A2: Aperture, DOF, & Focus Art 205 A2: Aperture, DOF, & Fcus Original RAW Shts Due: Crit Date: Requires 2 Ink Jet Prints (50 pints) Objectives: 1. T understand hw apertures like f-16 & f-22 have a large DOF r range f fcus. 2. T

More information

Consult with this syllabus before asking questions regarding the course rules. There will no exceptions to these rules.

Consult with this syllabus before asking questions regarding the course rules. There will no exceptions to these rules. Syllabus Cnsult with this syllabus befre asking questins regarding the curse rules. There will n exceptins t these rules. Curse: Math 20F: Linear Algebra Instructr Office Hurs: Prfessr Harel (APM 7420):

More information

Spring 06 Assignment 3: Solution

Spring 06 Assignment 3: Solution 15-381 Spring 06 Assignment 3: Slutin Questins t Rng Yan(yanrng@cs.cmu.edu) Out: 2/21/06 Due: 3/7/06 Name: Andrew ID: Please turn in yur answers n this assignment (etra cpies can be btained frm the class

More information

GRFX 1801: Game Development for Platforms

GRFX 1801: Game Development for Platforms GRFX 1801: Game Develpment fr Platfrms Instructr Camern Buckley Email cbuckley@astate.edu Office Lcatin Fine Arts Center 123 Office Hurs Friday 10a 1p Curse Overview Intermediate and advanced techniques

More information

TC 60 THERMOCOMPUTER TC 60. prog. start stop. Operating Instructions

TC 60 THERMOCOMPUTER TC 60. prog. start stop. Operating Instructions TC 60 prg start stp THERMOCOMPUTER TC 60 h C/h C Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing Curve...2 Checing

More information

PLIC Books School User s Manual

PLIC Books School User s Manual Schl User s Manual is a web based yearbk sftware that lets users, studi r schl, lgin and wrk n their yearbks frm anywhere. is very user friendly and allws users t uplad their wn graphics and images t easily

More information

Configure and Use Bar Tabs

Configure and Use Bar Tabs One Blue Hill Plaza, 16th Flr, PO Bx 1546 Pearl River, NY 10965 1-800-PC-AMERICA, 1-800-722-6374 (Vice) 845-920-0800 (Fax) 845-920-0880 Cnfigure and Use Bar Tabs In rder fr Bar Tabs t wrk a Credit Card

More information

Dorsey s Search. Name Address Home Telephone Work. Address. Property Owner s Signature

Dorsey s Search. Name Address Home Telephone Work.  Address. Property Owner s Signature Drsey s Search Return t: Linden Hall 4765 Drsey Hall Drive Ellictt City, MD 21042 410 730-4005 Fax 410 730-4008 ihatz@clumbiavillages.rg - Cvenant Advisr nmeredith@clumbiavillages.rg - Asst. Cvenant Advisr

More information

Operating Instructions

Operating Instructions TC 40 THERMOCOMPUTER TC 40 start stp Operating Instructins Cntents General Infrmatin...1 Security Advice...1 Firing Curves...1 Typical Firing Curves...2 Entering a Firing Curve...2 Checing the Prgramme

More information

Submission Guidance. The Editorial Board is keen to receive submissions from students, past and present, of the University of Aberdeen.

Submission Guidance. The Editorial Board is keen to receive submissions from students, past and present, of the University of Aberdeen. Submissin Guidance The Editrial Bard is keen t receive submissins frm students, past and present, f the University f Aberdeen. Overview The purpse f the ASLR is t shwcase the wrk f the students f Aberdeen,

More information

Application for Drive Technology

Application for Drive Technology Applicatin fr Drive Technlgy MICROMASTER 4 Applicatin Descriptin Warranty, Liability and Supprt 1 Warranty, Liability and Supprt We d nt accept any liability fr the infrmatin cntained in this dcument.

More information

a) Which points will be assigned to each center in the first iteration? b) What will be the values of the k new centers (means)?

a) Which points will be assigned to each center in the first iteration? b) What will be the values of the k new centers (means)? CS 378 Cmputer Visin Prblem set 2 Out: Tuesday Sept 22 Due: Mnday Oct 5, by 11:59 PM See the end f this dcument fr submissin instructins. I. Shrt answer prblems [30 pints] 1. Suppse we are using k-means

More information

Documentation of the PIC32 Pin Finder

Documentation of the PIC32 Pin Finder App. Versin: 1.1.1.120 Dcument Versin: 1.0 Dcument Create date: 2009-10-16 Dcument Update: 2009-10-19 22:37 Authr: B Gärdmark Cmpany: Spectrn System Develpment AB WEB: www.spectrn.us Cpyright 2009 All

More information

CIHS English 2 Honors Summer Reading Assignment

CIHS English 2 Honors Summer Reading Assignment CIHS English 2 Hnrs Summer Reading Assignment Dear Prspective English 2 Hnrs Students: Attached yu will find the summer reading and writing assignments required fr entry int the curse this fall. It is

More information

Using the Register of Swiss Surnames

Using the Register of Swiss Surnames Using the Register f Swiss Surnames Switzerland Hw t Guide, Beginning Level: Instructin Octber 2015 GOAL This guide will teach yu t navigate the nline versin f the Register f Swiss Surnames, and hw t utilize

More information

Lab 1 Load Cell Measurement System (Jan 09/10)

Lab 1 Load Cell Measurement System (Jan 09/10) BME/ECE 386 Lab 1 Lad Cell Measurement System GOALS Lab 1 Lad Cell Measurement System (Jan 09/10) 1) Test the lad cell amplifier. 2) Write an Arduin prgram t: a. Acquire data frm a lad cell amplifier b.

More information

Dragon Fall Age of Sigmar Event

Dragon Fall Age of Sigmar Event Dragn Fall Age f Sigmar Event Welcme t the first annual Age f Sigmar event at Dragn-Fall. We are very excited abut this year s narrative event and what it means t the new cmmunity frming arund the Age

More information

TABLE OF CONTENTS. Section Number Explanations 3. Part of Term Explanations 4. Building Codes 5. UA Little Rock Scheduling Guidelines 7

TABLE OF CONTENTS. Section Number Explanations 3. Part of Term Explanations 4. Building Codes 5. UA Little Rock Scheduling Guidelines 7 Scheduling Guide 1 TABLE OF CONTENTS Sectin Number Explanatins 3 Part f Term Explanatins 4 Building Cdes 5 UA Little Rck Scheduling Guidelines 7 Undergraduate and Graduate Classes 7 Scheduling fr Fall

More information

Big Kahuna Assembly Instructions

Big Kahuna Assembly Instructions Big Kahuna Assembly Instructins Thank yu fr purchasing a d-it-yurself pergla kit frm Average Je s Pergla Dept. We appreciate yur business, and we are here t help yu in any way pssible. Read this entire

More information

State Bank Virtual Card FAQs

State Bank Virtual Card FAQs State Bank Virtual Card FAQs 1. What is State Bank Virtual Card? State Bank Virtual Card is a limit Debit card, which can be created using the State Bank Internet Banking facility fr ecmmerce (nline) transactins.

More information

SVT Tab and Service Visibility Tool Job Aid

SVT Tab and Service Visibility Tool Job Aid Summary This Jb Aid cvers: SVT Tab Overview Service Visibility Tl (SVT) Area Overview SVT Area: Satellite Mdem Status (Frm Mdem) Clumn SVT Area: Satellite Mdem Status (Frm SMTS) Clumn SVT Area: Prvisining

More information

idcv Isolated Digital Voltmeter User Manual

idcv Isolated Digital Voltmeter User Manual www.akcp.cm idcv Islated Digital Vltmeter User Manual Help Versin updated till firmware SP446 Cpyright 2011, AKCess Pr Limited Prvided by fficial AKCP-Distributr Didactum https://www.didactum-security.cm/en/

More information

How to Install a Slate Tile Floor By See Jane Drill TM Copyright 2014, All Rights Reserved

How to Install a Slate Tile Floor By See Jane Drill TM Copyright 2014, All Rights Reserved Hw t Install a Slate Tile Flr By See Jane Drill TM Cpyright 2014, All Rights Reserved Resurces Needed t Cmplete the Jb Tls & Supplies Pwer drill with mixing want (a bucket trwel can als be used fr mixing)

More information

Quilts By The Sea Quilt Show Gram. Feb , 2020

Quilts By The Sea Quilt Show Gram. Feb , 2020 Octber 2018 Quilts By The Sea Quilt Shw Gram All the news yu need t participate in the 2020 Shw! Feb. 21-22, 2020 Shw pen t the Public Entries pen t members f Amelia Island Quilt Guild Shw C-Chairs: Cyndee

More information

Lab 1 Load Cell Measurement System

Lab 1 Load Cell Measurement System BME/ECE 386 Lab 1 Lad Cell Measurement System GOALS Lab 1 Lad Cell Measurement System 1) Build and test a lad cell amplifier. 2) Write an Arduin prgram t: a. Acquire data frm a lad cell amplifier b. Cmpute

More information

1. Give an example of how one can exploit the associative property of convolution to more efficiently filter an image.

1. Give an example of how one can exploit the associative property of convolution to more efficiently filter an image. CS 376 Cmputer Visin Spring 2011 Prblem set 1 Out: Tuesday Feb 1 Due: Mnday Feb 14 11:59 PM See the end f this dcument fr submissin instructins. Visit us during ffice hurs t discuss any questins n the

More information

DEAD MAN S DOUBLOONS. Rules v1.2

DEAD MAN S DOUBLOONS. Rules v1.2 DEAD MAN S DOUBLOONS Rules v1.2 OVERVIEW Welcme t Dead Man s Dublns, an actin packed bard game fr 2 t 6 players, playable in 30 t 45 minutes. Each player takes n the rle f a legendary pirate ship captain,

More information

Standard Operating Procedure for SEM3 (ThermoFisher / FEI Apreo)

Standard Operating Procedure for SEM3 (ThermoFisher / FEI Apreo) Standard Operating Prcedure fr SEM3 (ThermFisher / FEI Apre) Befre beginning, ensure yu have an active reservatin fr SEM3 in CreResearch@Duke Lading a Sample: If Sample Exchange Windw is nt pen, click

More information

Consciousness Shifting

Consciousness Shifting Frmula fr Miracles Presents Cnsciusness Shifting Shift Yur Cnsciusness, Open Yur Mind, and See Int The Matrix With Open Eyes! By Brent Phillips and Daniel Metraux www.frmulafrmiracles.net Shift Yur Cnsciusness

More information

The Mathematics of the Rubik s Cube

The Mathematics of the Rubik s Cube In this lessn, students will explre the pssible number ways the pieces f a Rubik's Cube can be arranged, and still fit the criteria fr a Rubik's Cube. Clrs are riented in a set way, s sme pieces (such

More information

From Beginner to Expert in 90 Minutes

From Beginner to Expert in 90 Minutes Cmma CMMS Maintenance Management at Yur Fingertips Frm Beginner t Expert in 90 Minutes http://cmmacmms.cm Table f Cntents Intrductin... 3 Frm beginner t expert in 90 minutes... 3 Sessin 1 Set it Up! (5

More information

BILLING POLICIES AND PROCEDURES FOR ALL PROVIDERS

BILLING POLICIES AND PROCEDURES FOR ALL PROVIDERS BILLING POLICIES AND PROCEDURES FOR ALL PROVIDERS N critical cmpliance issue Received in ur ffice n time Single sided 8 ½ x 11 inch white paper Blue r black pen N staples Any necessary back up Lg ntes

More information

Name: Date: Period: 1. Multi-Genre Character Project

Name: Date: Period: 1. Multi-Genre Character Project Name: Date: Perid: 1 Multi-Genre Character Prject A multi-genre prject is ne large prject with many different parts. Each part represents what yu knw abut a tpic and extends yur thinking in many ways.

More information

BTEC EXTENDED DIPLOMA IN CREATIVE MEDIA PRODUCTION (GAMING)

BTEC EXTENDED DIPLOMA IN CREATIVE MEDIA PRODUCTION (GAMING) BTEC EXTENDED DIPLOMA IN CREATIVE MEDIA PRODUCTION (GAMING) UNIT 72 COMPUTER GAME DESIGN ASSIGNMENT 2OF2 COMPUTER GAME CONCEPT & PRODUCTION Student Name: Grup: Games Prject Five: Cmputer Games Design Assignment

More information

The objective of Man of Steel is to obtain winning symbol combinations by spinning the reels.

The objective of Man of Steel is to obtain winning symbol combinations by spinning the reels. Man f Steel 5-Reel 25-Line Slt The bjective f Man f Steel is t btain winning symbl cmbinatins by spinning the reels. TO PLAY THE GAME The Man f Steel game can be played in bth landscape and prtrait mdes.

More information

Optimization Tutorial Using OSLO Standard or Premium

Optimization Tutorial Using OSLO Standard or Premium Page 1 f 18 Optimizatin Tutrial Using OSLO Standard r Premium Optimizatin Tutrial Using OSLO Standard r Premium Lambda Research Crpratin INTRODUCTION Nte: Parts f this tutrial are very similar t the "Optimizatin

More information

AccuBuild Version 9.3 Release 05/11/2015. Document Management Speed Performance Improvements

AccuBuild Version 9.3 Release 05/11/2015. Document Management Speed Performance Improvements AccuBuild Versin 9.3 Release 05/11/2015 Dcument Management Speed Perfrmance Imprvements The entire dcument management system and security system design was retled which shuld result in majr speed imprvements

More information

Knowledge of Basic Drafting and keyboarding.

Knowledge of Basic Drafting and keyboarding. OAKTON COMMUNITY COLLEGE COURSE SYLLABUS http://www.aktn.edu/~jcirne/ Instructr: Jseph Cirne Semester: Spring 2013 Office Phne: (847) 376-7612 On-Line. Divisin Phne: (847) 635-1688 e-mail: jcirne@aktn.edu

More information

Insert Picture, reduce the size of a Picture and Wrap text around a picture

Insert Picture, reduce the size of a Picture and Wrap text around a picture Insert Picture, reduce the size f a Picture and Wrap text arund a picture Yu can insert pictures frm different places, such as yur cmputer, an nline surce like Bing.cm, a webpage, r a scanned image. Insert

More information

Election Day Checklists

Election Day Checklists Electin Day Checklists ELECTION MORNING Precinct Inspectr: Remve all the pages frm this bklet. Using the stapler in the statinery kit, staple tgether the checklists fr each pll wrker. Give each pll wrker

More information

Dry Contact Sensor. Communications cable - RJ-45 jack to sensor using UTP Cat 5 wire. Power source: powered by the unit. No additional power needed.

Dry Contact Sensor. Communications cable - RJ-45 jack to sensor using UTP Cat 5 wire. Power source: powered by the unit. No additional power needed. Intrductin Dry Cntact Sensr The Dry Cntact sensr is a simple cnnectin t burglar alarms, fire alarms r any applicatin that requires mnitring by the unit. Dry cntact sensrs are user definable and can be

More information

Using the Laser Cutter

Using the Laser Cutter Using the Laser Cutter Prerequisites Befre yu will be allwed t use the laser cutter, yu must cmplete these three steps: 1. Yu must have cmpleted the Laser Cutter training at Cyberia 2. Yu must schedule

More information

DEVELOPMENT APPLICATION

DEVELOPMENT APPLICATION DEVELOPMENT APPLICATION FOR CITY STAFF ONLY PROJECT NUMBER: DATE RECEIVED: RECEIVED BY: NAME OF SUBDIVISION AND/OR PROJECT: Revised April 2018 ITEMS SUBMITTED: Filing Fee* Filing Fee* Land Study/Cncept

More information

National Curriculum Programme of Study:

National Curriculum Programme of Study: Natinal Curriculum Prgramme f Study: Cunt in steps f 2, 3, and 5 frm 0, and in tens frm any number, frward and backward. Recall and use multiplicatin and divisin facts fr the 2, 5 and 10 multiplicatin

More information

DIGITAL IMAGE & VIDEO SPECIFICATIONS. Digital Item Production Team: Brings kohls.com product pages to life through imagery & copy.

DIGITAL IMAGE & VIDEO SPECIFICATIONS. Digital Item Production Team: Brings kohls.com product pages to life through imagery & copy. DIGITAL IMAGE & VIDEO SPECIFICATIONS Digital Item Prductin Team: Brings khls.cm prduct pages t life thrugh imagery & cpy. Creates, publishes and maintains prduct detail pages n khls.cm. Partners clsely

More information

CESSDA-Questionnaire on PIDs

CESSDA-Questionnaire on PIDs CESSDA-Questinnaire n PIDs The persistent identificatin f CESSDA Service Prviders data hldings requires mre attentin. While sme ERICs achieved practical and administrative successes (e.g. CLARIN), CESSDA

More information

Flux Bender Equalizer

Flux Bender Equalizer Lightning By Audi Flux Bender Equalizer Users Guide 2014 Revised 2015 Cngratulatins n an excellent purchase! This guide was put tgether t help yu get the mst ut f yur investment. Please read this thrughly

More information

Introduction. Version 8.2.2

Introduction. Version 8.2.2 Intrductin As with each new versin, minr changes and new ptins are added. Sme f these changes are nt visible because they are designed t imprve functins and crrect sme minr bug. Fr visible changes, please

More information

TROUBLESHOOTING GUIDE

TROUBLESHOOTING GUIDE TROUBLESHOOTING GUIDE Dcument revisin 1.3 Last revised: December 6, 2017 Recn Wireless Blckage and Flw Mnitr Trubleshting Guide 2014-2017 Intelligent Agricultural Slutins All Rights Reserved. Recn Wireless

More information