Mark V. Shaney. Comp 140

Size: px
Start display at page:

Download "Mark V. Shaney. Comp 140"

Transcription

1 The curious case of Mark V. Shaney Comp 140 Fall 2008

2 Who is Mark V. Shaney? Mark was a member of a UseNet News group called net.singles, a users group chock full of dating tips, lonely l heart chatter, frank discussions of sexual problems and high tech missionary gospel about the sins of premarital smut-typing. Penn Jilette s description August 27, 2008 (c) Devika Subramanian, Fall

3 Who is MVS? Mr Shaney was a little goofy but he was always there. He chimed in with poetic opinions on romantic empathy: "As I've commented before, really relating to someone involves standing next to impossible. " August 27, 2008 (c) Devika Subramanian, Fall

4 MVS contd And he had a great Groucho Marx sense of humor: "One morning I shot an elephant in my arms and kissed him. So it was too small for a pill? Well, it was too small for a while. August 27, 2008 (c) Devika Subramanian, Fall

5 MVS And his idea of a good closing was: "Oh, sorry. Nevermind. I am afraid of it becoming another island in a nice suit." August 27, 2008 (c) Devika Subramanian, Fall

6 MVS on Bush s speech Mr. Chairman, delegates, fellow citizens, I'm honored to aid the rise of democracy in Germany and Japan, Nicaragua and Central Europe and the freedom of knowing you can take them. Tonight, I remind every parent and every school must teach, so we do to improve health care and a more hopeful America. I am in their days of worry. We see that character in our future. We will build a safer world today. The progress we and our friends and allies seek in the life of our work. The terrorists are fighting freedom with all their cunning and cruelty because freedom is not America's gift to every man and woman in this place, that dream is renewed. Now we go forward, grateful for our older workers. With the huge baby b boom generation approaching retirement, many of our work. About 40 nations stand beside us in the next four years. August 27, 2008 (c) Devika Subramanian, Fall

7 Compiled musings of MVS August 27, 2008 (c) Devika Subramanian, Fall

8 Mark V. Shaney A program created at AT&T Research Labs by Bruce Ellis Rob Pike Don Mitchell Name is a play on Markov chain, which is the underlying technology. August 27, 2008 (c) Devika Subramanian, Fall

9 Motivating the reconstruction of Shaney Wouldn't you like to write a program that could read a thousand words of something and spew out lovable nonsense in the same style? Your own little desktop Bret Easton Ellis, that sucks up the culture of your choice and spits it back at you? Don't let the Murray Hill address scare you, now that rob and brucee have done the hard work of thinking it up, even you and I can understand how Mark V. Shaney works and with a little work you and I can write our own (but let's hope to hell we all have something better to do with our lives -what is on the Weather Channel tonight?) --- Penn Jillette August 27, 2008 (c) Devika Subramanian, Fall

10 What does Shaney do? Input text We know Shaney riffs on texts that he reads. We can therefore guess his inputs and outputs. Shaney Output text We also know that Shaney generates output text that is similar to the input text. (of the same genre, on the same topic, with similar words) August 27, 2008 (c) Devika Subramanian, Fall

11 Outline of lecture Reverse engineering Shaney 10 minute group exercise Shaney s recipe Mathematical ti model Computational realization of model Fun with our model August 27, 2008 (c) Devika Subramanian, Fall

12 Allen B. Downey The goal is to teach you to think like a computer scientist. This way of thinking combines some of the best features of mathematics, engineering, and natural science. Like mathematicians, computer scientists i use formal languages to denote ideas (specifically computations). Like engineers, they design things, assembling components into systems and evaluating tradeoffs among alternatives. Like scientists, they observe the behavior of complex systems, form hypotheses, and test predictions. The single most important skill for a computer scientist is problem solving. Problem solving means the ability to formulate problems, think creatively about solutions, and express a solution clearly l and accurately. -- How to think like a computer scientist August 27, 2008 (c) Devika Subramanian, Fall

13 Questions Abstraction Was the problem specified precisely? What are the inputs and outputs? How did you represent the inputs and outputs? Automation How did you express your recipe for a solution? How can you demonstrate that your recipe solves the problem? How expensive is it to run/use your recipe (where cost is defined in units related to the size of the input)? Are there other recipes to solve the problem? Is your recipe the best there could ever be? August 27, 2008 (c) Devika Subramanian, Fall

14 Abstraction Inputs: sequence of words Outputs: sequence of words similar to inputs Use same or similar vocabulary (be about the same topic(s)) Use same or similar phrases (short sequences) (have similar linguistic style) August 27, 2008 (c) Devika Subramanian, Fall

15 Automation Input text Reads posts on net.singles or some other source. Shaney Output text Creates a GENERATIVE mathematical model of these posts Computationally constructs new posts based on this model August 27, 2008 (c) Devika Subramanian, Fall

16 The lyrics of She loves you She loves you, yeh, yeh, yeh. She loves you, yeh, yeh, yeh. She loves you, yeh, yeh, yeh, yeeeh! You think you lost your love, when I saw her yesterday. It's you she's thinking of, and she told me what to say. She says she loves you, and you know that can't bebad bad. Yes, she loves you, and you know you should be glad. Ooh! She said you hurt her so, she almost lost her mind. And now she says she knows, you're not the hurting kind. She says she loves you, and you know that can't be bad. Yes, she loves you, and you know you should be glad. Ooh! She loves you, yeh, yeh, yeh! She loves you, yeh, yeh, yeh! And with a love like that, you know you should be glad. And now it's up to you, I think it's only fair, if I should hurt you too, apologize to her, because she loves you, and you know that can't be bad. Yes, she loves you, and you know you should be glad. Ooh! She loves you, yeh, yeh, yeh! She loves you, yeh, yeh, yeh! And with a love like that, you know you should be glad. And with a love like that, you know you should be glad. And with a love like that, you know you shouuuld be glad. Yeh, yeh, yeh; yeh, yeh, yeh; yeh, yeh, yeeeh! August 27, 2008 (c) Devika Subramanian, Fall

17 The simplest model Get all the words from the lyrics and put them in a giant bowl/envelope August 27, 2008 (c) Devika Subramanian, Fall

18 Generative model based on randomization Extract all words from the text and put them in a giant bowl/envelope. Repeat N times Draw a word at random (with replacement) from bowl/envelope. Print it out August 27, 2008 (c) Devika Subramanian, Fall

19 Computational mapping How to represent the bowl of words? Our old friend, the Python list She loves you yeh yeeh! Now throw a dart at this list with your eyes closed, and pick the word where your dart lands on. Repeat the dart throw as many times as the length of the text you want to generate. August 27, 2008 (c) Devika Subramanian, Fall

20 How to extract words into a list def read_file_into_word_list(filename): Split the text into a list of words, separating on space inputfile = open(filename, 'r') text = inputfile.read() words = text.split() return words Making the bowl Open the file for reading Read the entire file into a string called text return words as a list August 27, 2008 (c) Devika Subramanian, Fall

21 How to throw a computational dart import random def make_random_text_simple(words, num_words = 100): random_text = '' for i in range(num_words): next = random.choice(words) random_text = random_text +''+ next return random_text August 27, 2008 (c) Devika Subramanian, Fall

22 Putting it all together words = read_file_into_word_list( into list( shelovesyou.txt txt') riff = make_random_text_simple(words) print riff August 27, 2008 (c) Devika Subramanian, Fall

23 More complex models The model we just developed (random drawing out of a list of words) is called a zeroth-order Markov model. Each word is generated independently of any other. However, English has sequential structure. We will now build better models to capture this structure. August 27, 2008 (c) Devika Subramanian, Fall

24 The lyrics of She loves you She loves you, yeh, yeh, yeh. She loves you, yeh, yeh, yeh. She loves you, yeh, yeh, yeh, yeeeh! You think you lost your love, when I saw her yesterday. It's you she's thinking of, and she told me what to say. She says she loves you, and you know that can't bebad bad. Yes, she loves you, and you know you should be glad. Ooh! She said you hurt her so, she almost lost her mind. And now she says she knows, you're not the hurting kind. She says she loves you, and you know that can't be bad. Yes, she loves you, and you know you should be glad. Ooh! She loves you, yeh, yeh, yeh! She loves you, yeh, yeh, yeh! And with a love like that, you know you should be glad. And now it's up to you, I think it's only fair, if I should hurt you too, apologize to her, because she loves you, and you know that can't be bad. Yes, she loves you, and you know you should be glad. Ooh! She loves you, yeh, yeh, yeh! She loves you, yeh, yeh, yeh! And with a love like that, you know you should be glad. And with a love like that, you know you should be glad. And with a love like that, you know you shouuuld be glad. Yeh, yeh, yeh; yeh, yeh, yeh; yeh, yeh, yeeeh! Look for patterns! August 27, 2008 (c) Devika Subramanian, Fall

25 Example of structure In the lyrics of She loves you by the Beatles, what words follow the word she? She --> ['loves', 'loves', 'loves', 'says', loves, said, almost, says, knows, 'says', 'loves', 'loves', 'loves', 'loves, loves, loves, loves ] August 27, 2008 (c) Devika Subramanian, Fall

26 Computational mapping How to represent this structure? For every distinct word in the text, store a list of words that follow it immediately in the text She loves you A prefix dictionary yeh yeeh August 27, 2008 (c) Devika Subramanian, Fall

27 Creating the prefix dictionary Example text: She loves you yeh yeh yeh She loves you yeh yeh yeh Prefix dictionary: She [loves, loves] loves [you, you] you [yeh, yeh] yeh [yeh, yeh, She, yeh, yeh] August 27, 2008 (c) Devika Subramanian, Fall

28 Generation recipe Generate a random word w from text, and set riff = w. Repeat N times Get list associated with word w from prefix dictionary Make a random choice from that list, say w, then add w to riff Set w = w Print riff August 27, 2008 (c) Devika Subramanian, Fall

29 Generation example Random word picked at start = loves What word is likely to be picked after that? you (probability = 1) What word is likely to be picked after that? t? yeh (probability = 1) What word is likely to be picked after that? With probability 4/5 it will be yeh, with probability 1/5 it will be She Prefix dictionary: She [loves, loves] loves [you, you] you [yeh, yeh] yeh [yeh, yeh, She, yeh, yeh] August 27, 2008 (c) Devika Subramanian, Fall

30 The generation process 4/5 loves 1 you 1 yeh 1/5 She Pick Pick a word a word Pick at random at random a word from from at random prefix[ loves ] prefix[ you ] from prefix[ yeh ] August 27, 2008 (c) Devika Subramanian, Fall

31 Recipe for constructing prefix dictionary Example text: She loves you yeh yeh yeh She loves you yeh yeh yeh Prefix dictionary: She [loves] August 27, 2008 (c) Devika Subramanian, Fall

32 Recipe for constructing prefix dictionary Example text: She loves you yeh yeh yeh She loves you yeh yeh yeh Prefix dictionary: She [loves] Loves [you] August 27, 2008 (c) Devika Subramanian, Fall

33 Recipe for constructing prefix dictionary Example text: She loves you yeh yeh yeh She loves you yeh yeh yeh Prefix dictionary: She [loves] Loves [you] you [yeh] August 27, 2008 (c) Devika Subramanian, Fall

34 A dictionary nanotutorial Dictionaries are mappings constructed so you can look up items by a key. Built-in data type in Python. Extremely useful! August 27, 2008 (c) Devika Subramanian, Fall

35 Example Suppose you have a list of people and their Rice phone numbers names = [ Alice, Beth, Carol, Diana, Eliza ] numbers = [ 1234, 5651, 2379, 3096, 2345 ] Operation you want to do efficiently Given a name, find the number August 27, 2008 (c) Devika Subramanian, Fall

36 Example continued How would you find a person s number? First find their index in the names list. names.index( person ) ndex( person) Then read off the number using that index from the numbers list numbers[names.index( person )] August 27, 2008 (c) Devika Subramanian, Fall

37 Dictionary example A dictionary consists of pairs of items of the form key : value phonebook = { Alice : 1234, Beth : 5651, Carol : 2379, Diana : 3096, Eliza : 2345 } The keys of the phonebook in this example are the names of people. Keys need to be unique. The value associated with each key in this example is the phone number of the person. Each key is separated from its value by a colon, and items in the dictionary are separated by commas. August 27, 2008 (c) Devika Subramanian, Fall

38 Operations on a dictionary Make an empty dictionary phonebook = {} Adding elements to a dictionary for i in range(len(names)): phonebook[names[i]] = numbers[i] Retrieve an element by key phonebook[ person ] phonebook.get( person ) August 27, 2008 (c) Devika Subramanian, Fall

39 Cost of operations Sequentially looking through a list of N names can take up to N operations in the worst case On average N/2 lookups in the list to find person If N is large (say 4 million), this can be quite slow! August 27, 2008 (c) Devika Subramanian, Fall

40 Why dictionaries are used A dictionary allows retrieval of values by their keys in constant time (independent of the number of entries in the dictionary) phonebook[ Alice ] gives us Alice s number in constant nt time, no matter how large or small the phonebook is. So does phonebook.get( Alice ) The dict.py demo shows performance difference of a factor of 100 in retrieval time for a phonebook of size 10 million. August 27, 2008 (c) Devika Subramanian, Fall

41 More operations Get all items in a dictionary phonebook.items() Get all keys in a dictionary phonebook.keys() Get all values in a dictionary phonebook.values() Checking presence of key phonebook.has_key( Fay ) August 27, 2008 (c) Devika Subramanian, Fall

42 The structure of dictionary values Phonebook has numbers as values A list can be a value To implement prefix dictionaries, we use a word as a key and a list of words that follow it as the associated value She loves you yeh yeeh August 27, 2008 (c) Devika Subramanian, Fall

43 Even more complex values A dictionary can be a value too! This is how databases are implemented in Python August 27, 2008 (c) Devika Subramanian, Fall

44 How to make a prefix dictionary using Python def make_prefix_dictionary(words): prefix = {} for i in range(len(words)-1): if words[i] d[i] not tin prefix: Why do we need prefix[words[i]] = [] this if? prefix[words[i]].append(words[i+1]) return prefix August 27, 2008 (c) Devika Subramanian, Fall

45 Generating text using the prefix dictionary in Python def make_random_text(prefix, num_words=100): current_word = random.choice(prefix.keys()) random_text = current_word for i in range(num_words-1): #last word in document may not have a suffix if current_word not in prefix: break next = random.choice(prefix[current_word]) random_text = random_text + ' ' + next current_word = next return random_text August 27, 2008 (c) Devika Subramanian, Fall

46 Putting it all together words = read_file_into_word_list( shelovesyou.txt') prefix = make_prefix_dictionary(words) riff = make_random_text (words) print riff The model we just built is called a first-order Markov model. August 27, 2008 (c) Devika Subramanian, Fall

47 Making even more complex models Idea: why look at the current word alone to determine the next word? How about making a prefix dictionary indexed by two previous words, rather than a single word? This model is a second-order Markov model. August 27, 2008 (c) Devika Subramanian, Fall

48 Penn Jilette s description Mr Shaney takes the input text and measures how many times each triple occurs - How many times does "you like to" occur in our sample - let's say twice. And how many times does "you like macrame" (for example) occur? Let's say once. All you got to do to generate output text is have Shaney print a pair of words and then choose, according to the probability of the input text, what the next word should be. So after it prints "you like " it will print the word "to" 2/3rds of the time and the word "macrame" 1/3rd of the time at random. Now, let's say, it prints "macrame". " Now the current pair becomes "like macrame" (you see? this IS nonsense) - Shaney looks to see what word could follow that pair and he's off and running. August 27, 2008 (c) Devika Subramanian, Fall

49 Creating a more complex prefix dictionary Example text: She loves you yeh yeh yeh She loves you yeh yeh yeh Prefix dictionary: [She loves] [you, you] [loves you] [yeh, yeh] [you yeh] [yeh, yeh] [yeh yeh] [yeh, She, yeh] [yeh She] [loves] August 27, 2008 (c) Devika Subramanian, Fall

50 Generation using the more complex prefix dictionary Random word pair picked at start = loves you What word is likely to be picked after that? yeh (probability = 1) What word is likely to be picked after that? t? yeh (probability = 1) What word is likely to be picked after that? With probability 2/3 it will be yeh, with probability 1/3 it will be She Prefix dictionary: [She loves] [you, you] [loves you] [yeh, yeh] [you yeh] [yeh, yeh] [yeh yeh] [yeh, She, yeh] [yeh She] [loves] August 27, 2008 (c) Devika Subramanian, Fall

51 Homework 2 Write down the recipe for generating a random riff using the more complex prefix dictionary. Encode the recipes for building the prefix dictionary as well as the random text riffer based on that dictionary in Python Try it on some interesting text. August 27, 2008 (c) Devika Subramanian, Fall

52 Some more string operations Stripping off punctuation marks from string import punctuation for word in words: print word.strip(punctuation) Converting to lower case from string import punctuation for word in words: print word.lower() August 27, 2008 (c) Devika Subramanian, Fall

The curious case of Mark V. Shaney. Comp 140 Fall 2008

The curious case of Mark V. Shaney. Comp 140 Fall 2008 The curious case of Mark V. Shaney Comp 140 Fall 2008 Who is Mark V. Shaney? Mark was a member of a UseNet News group called net.singles, a users group chock full of dating tips, lonely heart chatter,

More information

6.041SC Probabilistic Systems Analysis and Applied Probability, Fall 2013 Transcript Lecture 21

6.041SC Probabilistic Systems Analysis and Applied Probability, Fall 2013 Transcript Lecture 21 6.041SC Probabilistic Systems Analysis and Applied Probability, Fall 2013 Transcript Lecture 21 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare

More information

Georgia Quality Core Curriculum 9 12 English/Language Arts Course: Ninth Grade Literature and Composition

Georgia Quality Core Curriculum 9 12 English/Language Arts Course: Ninth Grade Literature and Composition Grade 9 correlated to the Georgia Quality Core Curriculum 9 12 English/Language Arts Course: 23.06100 Ninth Grade Literature and Composition C2 5/2003 2002 McDougal Littell The Language of Literature Grade

More information

Georgia Quality Core Curriculum 9 12 English/Language Arts Course: American Literature/Composition

Georgia Quality Core Curriculum 9 12 English/Language Arts Course: American Literature/Composition Grade 11 correlated to the Georgia Quality Core Curriculum 9 12 English/Language Arts Course: 23.05100 American Literature/Composition C2 5/2003 2002 McDougal Littell The Language of Literature Grade 11

More information

SEVENTH GRADE RELIGION

SEVENTH GRADE RELIGION SEVENTH GRADE RELIGION will learn nature, origin and role of the sacraments in the life of the church. will learn to appreciate and enter more fully into the sacramental life of the church. THE CREED ~

More information

Lesson 09 Notes. Machine Learning. Intro

Lesson 09 Notes. Machine Learning. Intro Machine Learning Lesson 09 Notes Intro C: Hi Michael. M: Hey how's it going? C: So I want to talk about something today Michael. I want to talk about Bayesian Learning, and I've been inspired by our last

More information

>> Marian Small: I was talking to a grade one teacher yesterday, and she was telling me

>> Marian Small: I was talking to a grade one teacher yesterday, and she was telling me Marian Small transcripts Leadership Matters >> Marian Small: I've been asked by lots of leaders of boards, I've asked by teachers, you know, "What's the most effective thing to help us? Is it -- you know,

More information

INTRODUCTION TO LOGIC 1 Sets, Relations, and Arguments

INTRODUCTION TO LOGIC 1 Sets, Relations, and Arguments INTRODUCTION TO LOGIC 1 Sets, Relations, and Arguments Volker Halbach Pure logic is the ruin of the spirit. Antoine de Saint-Exupéry The Logic Manual The Logic Manual The Logic Manual The Logic Manual

More information

6.041SC Probabilistic Systems Analysis and Applied Probability, Fall 2013 Transcript Lecture 3

6.041SC Probabilistic Systems Analysis and Applied Probability, Fall 2013 Transcript Lecture 3 6.041SC Probabilistic Systems Analysis and Applied Probability, Fall 2013 Transcript Lecture 3 The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare

More information

The Argument Clinic. Monty Python. Index: Atheism and Awareness (Clues) Home to Positive Atheism. Receptionist: Yes, sir?

The Argument Clinic. Monty Python. Index: Atheism and Awareness (Clues) Home to Positive Atheism. Receptionist: Yes, sir? Page 1 of 5 Index: Atheism and Awareness (Clues) Home to Positive Atheism Receptionist: Yes, sir? Man: I'd like to have an argument please. Monty Python Receptionist: Certainly, sir, have you been here

More information

Excel Lesson 3 page 1 April 15

Excel Lesson 3 page 1 April 15 Excel Lesson 3 page 1 April 15 Monday 4/13/15 We begin today's lesson with the $ symbol, one of the biggest hurdles for Excel users. Let us learn about the $ symbol in the context of what I call the Classic

More information

NPTEL NPTEL ONLINE COURSES REINFORCEMENT LEARNING. UCB1 Explanation (UCB1)

NPTEL NPTEL ONLINE COURSES REINFORCEMENT LEARNING. UCB1 Explanation (UCB1) NPTEL NPTEL ONLINE COURSES REINFORCEMENT LEARNING UCB1 Explanation (UCB1) Prof. Balaraman Ravindran Department of Computer Science and Engineering Indian Institute of Technology Madras So we are looking

More information

Question Answering. CS486 / 686 University of Waterloo Lecture 23: April 1 st, CS486/686 Slides (c) 2014 P. Poupart 1

Question Answering. CS486 / 686 University of Waterloo Lecture 23: April 1 st, CS486/686 Slides (c) 2014 P. Poupart 1 Question Answering CS486 / 686 University of Waterloo Lecture 23: April 1 st, 2014 CS486/686 Slides (c) 2014 P. Poupart 1 Question Answering Extension to search engines CS486/686 Slides (c) 2014 P. Poupart

More information

Artificial Intelligence Prof. Deepak Khemani Department of Computer Science and Engineering Indian Institute of Technology, Madras

Artificial Intelligence Prof. Deepak Khemani Department of Computer Science and Engineering Indian Institute of Technology, Madras (Refer Slide Time: 00:26) Artificial Intelligence Prof. Deepak Khemani Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture - 06 State Space Search Intro So, today

More information

Information Extraction. CS6200 Information Retrieval (and a sort of advertisement for NLP in the spring)

Information Extraction. CS6200 Information Retrieval (and a sort of advertisement for NLP in the spring) Information Extraction CS6200 Information Retrieval (and a sort of advertisement for NLP in the spring) Information Extraction Automatically extract structure from text annotate document using tags to

More information

Introduction to Statistical Hypothesis Testing Prof. Arun K Tangirala Department of Chemical Engineering Indian Institute of Technology, Madras

Introduction to Statistical Hypothesis Testing Prof. Arun K Tangirala Department of Chemical Engineering Indian Institute of Technology, Madras Introduction to Statistical Hypothesis Testing Prof. Arun K Tangirala Department of Chemical Engineering Indian Institute of Technology, Madras Lecture 09 Basics of Hypothesis Testing Hello friends, welcome

More information

Verification and Validation

Verification and Validation 2012-2013 Verification and Validation Part III : Proof-based Verification Burkhart Wolff Département Informatique Université Paris-Sud / Orsay " Now, can we build a Logic for Programs??? 05/11/14 B. Wolff

More information

Grade 7 Math Connects Suggested Course Outline for Schooling at Home 132 lessons

Grade 7 Math Connects Suggested Course Outline for Schooling at Home 132 lessons Grade 7 Math Connects Suggested Course Outline for Schooling at Home 132 lessons I. Introduction: (1 day) Look at p. 1 in the textbook with your child and learn how to use the math book effectively. DO:

More information

Probability Foundations for Electrical Engineers Prof. Krishna Jagannathan Department of Electrical Engineering Indian Institute of Technology, Madras

Probability Foundations for Electrical Engineers Prof. Krishna Jagannathan Department of Electrical Engineering Indian Institute of Technology, Madras Probability Foundations for Electrical Engineers Prof. Krishna Jagannathan Department of Electrical Engineering Indian Institute of Technology, Madras Lecture - 1 Introduction Welcome, this is Probability

More information

Transcription ICANN London IDN Variants Saturday 21 June 2014

Transcription ICANN London IDN Variants Saturday 21 June 2014 Transcription ICANN London IDN Variants Saturday 21 June 2014 Note: The following is the output of transcribing from an audio. Although the transcription is largely accurate, in some cases it is incomplete

More information

Hey everybody. Please feel free to sit at the table, if you want. We have lots of seats. And we ll get started in just a few minutes.

Hey everybody. Please feel free to sit at the table, if you want. We have lots of seats. And we ll get started in just a few minutes. HYDERABAD Privacy and Proxy Services Accreditation Program Implementation Review Team Wednesday, November 09, 2016 11:00 to 12:15 IST ICANN57 Hyderabad, India AMY: Hey everybody. Please feel free to sit

More information

I am excited and ready to get out my Bible and dig deep into the truth author, Chrystal Evans Hurst, brings up in She s Still There.

I am excited and ready to get out my Bible and dig deep into the truth author, Chrystal Evans Hurst, brings up in She s Still There. Hey, friend! I am excited and ready to get out my Bible and dig deep into the truth author, Chrystal Evans Hurst, brings up in She s Still There. She s Still There, as you may know, is all about rescuing

More information

PAGE(S) WHERE TAUGHT (If submission is not a book, cite appropriate location(s))

PAGE(S) WHERE TAUGHT (If submission is not a book, cite appropriate location(s)) Prentice Hall Literature: Timeless Voices, Timeless Themes 2005, Bronze Level Washington Reading Grade Level Expectations and Writing EALRs Reading Grade 7 In seventh grade, students are aware of their

More information

September 11, 1998 N.G.I.S.C. New Orleans Meeting. Within the next 15 minutes I will. make a comprehensive summary of dozens and dozens of research

September 11, 1998 N.G.I.S.C. New Orleans Meeting. Within the next 15 minutes I will. make a comprehensive summary of dozens and dozens of research September, N.G.I.S.C. New Orleans Meeting CHAIRMAN JAMES: Mr. Ladouceur. MR. LADOUCEUR: Within the next minutes I will make a comprehensive summary of dozens and dozens of research that we've conducted

More information

Grade 7. correlated to the. Kentucky Middle School Core Content for Assessment, Reading and Writing Seventh Grade

Grade 7. correlated to the. Kentucky Middle School Core Content for Assessment, Reading and Writing Seventh Grade Grade 7 correlated to the Kentucky Middle School Core Content for Assessment, Reading and Writing Seventh Grade McDougal Littell, Grade 7 2006 correlated to the Kentucky Middle School Core Reading and

More information

I Am Journey Week 3: Moses and the burning bush. February 25-26, Exodus 2-4; Psalm 139: God is always with us.

I Am Journey Week 3: Moses and the burning bush. February 25-26, Exodus 2-4; Psalm 139: God is always with us. February 25-26, 2017 I Am Journey Week 3: Moses and the burning bush Exodus 2-4; Psalm 139:13-14 God is always with us. Connect Time (15 minutes): Five minutes after the service begins, split kids into

More information

MITOCW watch?v=4hrhg4euimo

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

More information

Laboratory Exercise Saratoga Springs Temple Site Locator

Laboratory Exercise Saratoga Springs Temple Site Locator Brigham Young University BYU ScholarsArchive Engineering Applications of GIS - Laboratory Exercises Civil and Environmental Engineering 2017 Laboratory Exercise Saratoga Springs Temple Site Locator Jordi

More information

Thinking Skills. John Butterworth and Geoff Thwaites

Thinking Skills. John Butterworth and Geoff Thwaites Thinking Skills John Butterworth and Geoff Thwaites CAMBRIDGE UNIVERSITY PRESS Cambridge, New York, Melbourne, Madrid, Cape town, Singapore, São Paulo Cambridge University Press The Edinburgh Building,

More information

Artificial Intelligence. Clause Form and The Resolution Rule. Prof. Deepak Khemani. Department of Computer Science and Engineering

Artificial Intelligence. Clause Form and The Resolution Rule. Prof. Deepak Khemani. Department of Computer Science and Engineering Artificial Intelligence Clause Form and The Resolution Rule Prof. Deepak Khemani Department of Computer Science and Engineering Indian Institute of Technology, Madras Module 07 Lecture 03 Okay so we are

More information

Unit 3: Miracles of Jesus NT3.14 Jesus Raises the Widow's Son

Unit 3: Miracles of Jesus NT3.14 Jesus Raises the Widow's Son 1 Unit 3: Miracles of Jesus NT3.14 Jesus Raises the Widow's Son Scripture: Luke 7: 11-17 Lesson Goal: Jesus was a very powerful teacher. He proved to everyone that he was really God by his teaching and

More information

South Carolina English Language Arts / Houghton Mifflin Reading 2005 Grade Three

South Carolina English Language Arts / Houghton Mifflin Reading 2005 Grade Three Reading Goal (R) The student will draw upon a variety of strategies to comprehend, interpret, analyze, and evaluate what he or she reads. READING PROCESS AND COMPREHENSION 3-R1 The student will integrate

More information

1 Thessalonians 4:13 5:11 APPLY THE STORY (10 15 MINUTES) TEACH THE STORY (25 30 MINUTES) (25 30 MINUTES) PAGE 108 PAGE 110. Leader BIBLE STUDY

1 Thessalonians 4:13 5:11 APPLY THE STORY (10 15 MINUTES) TEACH THE STORY (25 30 MINUTES) (25 30 MINUTES) PAGE 108 PAGE 110. Leader BIBLE STUDY UNIT 35 Session 2 Use Week of: July 15, 2018 Paul Gave Hope 1 Thessalonians 4:13 5:11 MAIN POINT: Paul encouraged the Thessalonians by reminding them that Jesus will return. KEY PASSAGE: 2 Timothy 3:16-17

More information

Modal verbs. Certain, probable or possible

Modal verbs. Certain, probable or possible Modal verbs There is a further set of auxiliary verbs known as modal verbs or modal auxiliary verbs. These combine with other verbs to express necessity, possibility, intention, or ability. The modal auxiliary

More information

MITOCW watch?v=ppqrukmvnas

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

More information

1. Introduction Formal deductive logic Overview

1. Introduction Formal deductive logic Overview 1. Introduction 1.1. Formal deductive logic 1.1.0. Overview In this course we will study reasoning, but we will study only certain aspects of reasoning and study them only from one perspective. The special

More information

Stratford School Academy Schemes of Work

Stratford School Academy Schemes of Work Number of weeks (between 6&8) Content of the unit Assumed prior learning (tested at the beginning of the unit) A 6 week unit of work Students learn how to make informed personal responses, use quotes to

More information

Now you know what a hypothesis is, and you also know that daddy-long-legs are not poisonous.

Now you know what a hypothesis is, and you also know that daddy-long-legs are not poisonous. Objectives: Be able to explain the basic process of scientific inquiry. Be able to explain the power and limitations of scientific inquiry. Be able to distinguish a robust hypothesis from a weak or untestable

More information

Lecture 6. Realism and Anti-realism Kuhn s Philosophy of Science

Lecture 6. Realism and Anti-realism Kuhn s Philosophy of Science Lecture 6 Realism and Anti-realism Kuhn s Philosophy of Science Realism and Anti-realism Science and Reality Science ought to describe reality. But what is Reality? Is what we think we see of reality really

More information

NPTEL NPTEL ONINE CERTIFICATION COURSE. Introduction to Machine Learning. Lecture-59 Ensemble Methods- Bagging,Committee Machines and Stacking

NPTEL NPTEL ONINE CERTIFICATION COURSE. Introduction to Machine Learning. Lecture-59 Ensemble Methods- Bagging,Committee Machines and Stacking NPTEL NPTEL ONINE CERTIFICATION COURSE Introduction to Machine Learning Lecture-59 Ensemble Methods- Bagging,Committee Machines and Stacking Prof. Balaraman Ravindran Computer Science and Engineering Indian

More information

StoryTown Reading/Language Arts Grade 3

StoryTown Reading/Language Arts Grade 3 Phonemic Awareness, Word Recognition and Fluency 1. Identify rhyming words with the same or different spelling patterns. 2. Use letter-sound knowledge and structural analysis to decode words. 3. Use knowledge

More information

2.1 Review. 2.2 Inference and justifications

2.1 Review. 2.2 Inference and justifications Applied Logic Lecture 2: Evidence Semantics for Intuitionistic Propositional Logic Formal logic and evidence CS 4860 Fall 2012 Tuesday, August 28, 2012 2.1 Review The purpose of logic is to make reasoning

More information

Automatic Recognition of Tibetan Buddhist Text by Computer. Masami Kojima*1, Yoshiyuki Kawazoe*2 and Masayuki Kimura*3

Automatic Recognition of Tibetan Buddhist Text by Computer. Masami Kojima*1, Yoshiyuki Kawazoe*2 and Masayuki Kimura*3 Automatic Recognition of Tibetan Buddhist Text by Computer Masami Kojima*1, Yoshiyuki Kawazoe*2 and Masayuki Kimura*3 *1 Dept. of Electrical Communication, Tohoku Institute of Technology ( E-mail : mkojima@tohtech.ac.jp

More information

Houghton Mifflin English 2001 Houghton Mifflin Company Grade Three Grade Five

Houghton Mifflin English 2001 Houghton Mifflin Company Grade Three Grade Five Houghton Mifflin English 2001 Houghton Mifflin Company Grade Three Grade Five correlated to Illinois Academic Standards English Language Arts Late Elementary STATE GOAL 1: Read with understanding and fluency.

More information

South Carolina English Language Arts / Houghton Mifflin English Grade Three

South Carolina English Language Arts / Houghton Mifflin English Grade Three Reading Goal (R) The student will draw upon a variety of strategies to comprehend, interpret, analyze, and evaluate what he or she reads. READING PROCESS AND COMPREHENSION 3-R1 The student will integrate

More information

Lesson 07 Notes. Machine Learning. Quiz: Computational Learning Theory

Lesson 07 Notes. Machine Learning. Quiz: Computational Learning Theory Machine Learning Lesson 07 Notes Quiz: Computational Learning Theory M: Hey, Charles. C: Oh, hi Michael. M: It's funny running into to you here. C: It is. It's always funny running in to you over the interwebs.

More information

Does the name Hari Seldon mean anything to any of you? Okay, I must be the only science fiction geek in the room

Does the name Hari Seldon mean anything to any of you? Okay, I must be the only science fiction geek in the room Does the name Hari Seldon mean anything to any of you? Okay, I must be the only science fiction geek in the room Hari Seldon is a main character of Isaac Asimov s Foundation novels which first came out

More information

StoryTown Reading/Language Arts Grade 2

StoryTown Reading/Language Arts Grade 2 Phonemic Awareness, Word Recognition and Fluency 1. Identify rhyming words with the same or different spelling patterns. 2. Read regularly spelled multi-syllable words by sight. 3. Blend phonemes (sounds)

More information

BERT VOGELSTEIN, M.D. '74

BERT VOGELSTEIN, M.D. '74 BERT VOGELSTEIN, M.D. '74 22 December 1999 Mame Warren, interviewer Warren: This is Mame Warren. Today is December 22, 1999. I'm in Baltimore, Maryland, with Bert Vogelstein. I've got to start with a silly

More information

Midterm Review Part 1 #4

Midterm Review Part 1 #4 Midterm Review Part 1 #4 Intermediate Algebra / MAT135 S2014 sec 042 (Prof. Fleischner) Student Name/ID: 1. Solve for. 2. Solve for. 3. A Web music store offers two versions of a popular song. The size

More information

Before reading. Mr Smith's new nose. Preparation task. Stories Mr Smith's new nose

Before reading. Mr Smith's new nose. Preparation task. Stories Mr Smith's new nose Stories Mr Smith's new nose It is the 22nd century and the world is very different. With new technologies, people can have the bodies that they want. See what happens when Mr Smith decides to change his

More information

Gerald s Column. by Gerald Fitton. This month I want to discuss Paul s aim for the future of Archive.

Gerald s Column. by Gerald Fitton. This month I want to discuss Paul s aim for the future of Archive. Gerald s Column by Gerald Fitton This month I want to discuss Paul s aim for the future of Archive. One of the better tips I received about good teaching practice was this Always start with a digression

More information

Prentice Hall Biology 2004 (Miller/Levine) Correlated to: Idaho Department of Education, Course of Study, Biology (Grades 9-12)

Prentice Hall Biology 2004 (Miller/Levine) Correlated to: Idaho Department of Education, Course of Study, Biology (Grades 9-12) Idaho Department of Education, Course of Study, Biology (Grades 9-12) Block 1: Applications of Biological Study To introduce methods of collecting and analyzing data the foundations of science. This block

More information

Americano, Outra Vez!

Americano, Outra Vez! O Americano, Outra Vez! by Richard P. Feynman Richard P. Feynman (1918-1998) was an American scientist, educator, and author. A brilliant physicist, Feynman received the Nobel Prize in 1965. In addition

More information

FOURTH GRADE. WE LIVE AS CHRISTIANS ~ Your child recognizes that the Holy Spirit gives us life and that the Holy Spirit gives us gifts.

FOURTH GRADE. WE LIVE AS CHRISTIANS ~ Your child recognizes that the Holy Spirit gives us life and that the Holy Spirit gives us gifts. FOURTH GRADE RELIGION LIVING AS CATHOLIC CHRISTIANS ~ Your child recognizes that Jesus preached the Good News. understands the meaning of the Kingdom of God. knows virtues of Faith, Hope, Love. recognizes

More information

Strand 1: Reading Process

Strand 1: Reading Process Prentice Hall Literature: Timeless Voices, Timeless Themes 2005, Silver Level Arizona Academic Standards, Reading Standards Articulated by Grade Level (Grade 8) Strand 1: Reading Process Reading Process

More information

MITOCW ocw f08-rec10_300k

MITOCW ocw f08-rec10_300k MITOCW ocw-18-085-f08-rec10_300k The following content is provided under a Creative Commons license. Your support will help MIT OpenCourseWare continue to offer high-quality educational resources for free.

More information

YEAR: UNIT-SPECIFIC GOALS (italicized) Assessable Student Outcome

YEAR: UNIT-SPECIFIC GOALS (italicized) Assessable Student Outcome What s in the Bible? GRACEWAYS CONCEPT: GOD HELPS PEOPLE BY THE WORD YEAR: SUGGESTED DURATION: 5 weeks (approximately 135 minutes per week) DATE OF USE: FAITH STATEMENTS: 1 2 3 UPPER ELEMENTARY BAND Level

More information

Anaphora Resolution in Biomedical Literature: A

Anaphora Resolution in Biomedical Literature: A Anaphora Resolution in Biomedical Literature: A Hybrid Approach Jennifer D Souza and Vincent Ng Human Language Technology Research Institute The University of Texas at Dallas 1 What is Anaphora Resolution?

More information

MITOCW ocw f99-lec19_300k

MITOCW ocw f99-lec19_300k MITOCW ocw-18.06-f99-lec19_300k OK, this is the second lecture on determinants. There are only three. With determinants it's a fascinating, small topic inside linear algebra. Used to be determinants were

More information

Introduction. Selim Aksoy. Bilkent University

Introduction. Selim Aksoy. Bilkent University Introduction Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr What is computer vision? Analysis of digital images by a computer. Stockman and Shapiro: making useful

More information

Mini-me. What is a Summary? What is a summary? What is a summary? English 2 textbook p. 97 A. Milo Cho

Mini-me. What is a Summary? What is a summary? What is a summary? English 2 textbook p. 97 A. Milo Cho Mini-me What is a Summary? English 2 textbook p. 97 A. Milo Cho What is a summary?! Manatee, the Cows of the Sea Long, long ago, sailors thought they were mermaids. Even Christopher Columbus thought so!

More information

MULTIPLE CHOICE Literary Analysis and Reading Skills

MULTIPLE CHOICE Literary Analysis and Reading Skills MULTIPLE CHOICE Literary Analysis and Reading Skills Unit 4: Division, Reconciliation, and Expansion Benchmark Test 5 1. Imagine you are handed a magazine article called Uncovering Hidden Biographical

More information

Darwinism on trial in American state (Sun 8 May, 2005)

Darwinism on trial in American state (Sun 8 May, 2005) WARM-UPS CHAT: In pairs / groups, decide which of these topics you are interested in, which do not look interesting and which look really boring: Kansas / scientists / Charles Darwin / the Theory of Evolution

More information

Lecture 9. A summary of scientific methods Realism and Anti-realism

Lecture 9. A summary of scientific methods Realism and Anti-realism Lecture 9 A summary of scientific methods Realism and Anti-realism A summary of scientific methods and attitudes What is a scientific approach? This question can be answered in a lot of different ways.

More information

CS 2104 Intro Problem Solving in Computer Science Test 1 READ THIS NOW!

CS 2104 Intro Problem Solving in Computer Science Test 1 READ THIS NOW! READ THIS NOW! Print your name in the space provided below. There are 5 problems, priced as marked. The maximum score is 100. The grading of each question will take into account whether you obtained a

More information

Strand 1: Reading Process

Strand 1: Reading Process Prentice Hall Literature: Timeless Voices, Timeless Themes 2005, Bronze Level Arizona Academic Standards, Reading Standards Articulated by Grade Level (Grade 7) Strand 1: Reading Process Reading Process

More information

Saint Bartholomew School Third Grade Curriculum Guide. Language Arts. Writing

Saint Bartholomew School Third Grade Curriculum Guide. Language Arts. Writing Language Arts Reading (Literature) Locate and respond to key details Determine the message or moral in a folktale, fable, or myth Describe the qualities and actions of a character Differentiate between

More information

Skits. Come On, Fatima! Six Vignettes about Refugees and Sponsors

Skits. Come On, Fatima! Six Vignettes about Refugees and Sponsors Skits Come On, Fatima! Six Vignettes about Refugees and Sponsors These vignettes are based on a United Church handout which outlined a number of different uncomfortable interactions that refugees (anonymously)

More information

Prentice Hall Literature: Timeless Voices, Timeless Themes, Silver Level '2002 Correlated to: Oregon Language Arts Content Standards (Grade 8)

Prentice Hall Literature: Timeless Voices, Timeless Themes, Silver Level '2002 Correlated to: Oregon Language Arts Content Standards (Grade 8) Prentice Hall Literature: Timeless Voices, Timeless Themes, Silver Level '2002 Oregon Language Arts Content Standards (Grade 8) ENGLISH READING: Comprehend a variety of printed materials. Recognize, pronounce,

More information

Accountability and Transparency Review Team Meeting - Part II Page 1 of 11

Accountability and Transparency Review Team Meeting - Part II Page 1 of 11 Accountability and Transparency Review Team Meeting - Part II Page 1 of 11 I don t think that is done in any case, however transparent you want to be. The discussion about the relative matters, no. We

More information

Prentice Hall Literature: Timeless Voices, Timeless Themes, Bronze Level '2002 Correlated to: Oregon Language Arts Content Standards (Grade 7)

Prentice Hall Literature: Timeless Voices, Timeless Themes, Bronze Level '2002 Correlated to: Oregon Language Arts Content Standards (Grade 7) Prentice Hall Literature: Timeless Voices, Timeless Themes, Bronze Level '2002 Oregon Language Arts Content Standards (Grade 7) ENGLISH READING: Comprehend a variety of printed materials. Recognize, pronounce,

More information

Mapping to the CIDOC CRM Basic Overview. George Bruseker ICS-FORTH CIDOC 2017 Tblisi, Georgia 25/09/2017

Mapping to the CIDOC CRM Basic Overview. George Bruseker ICS-FORTH CIDOC 2017 Tblisi, Georgia 25/09/2017 Mapping to the CIDOC CRM Basic Overview George Bruseker ICS-FORTH CIDOC 2017 Tblisi, Georgia 25/09/2017 Table of Contents 1. Pre-requisites for Mapping Understanding, Materials, Tools 2. Mapping Method

More information

Champion Teacher Index

Champion Teacher Index Champion Teacher Index academic language 43-44, 66, 68, 71, 79, 89-90, 91-92, 106, 110, 115, 125, 132, 135, 136, 141-142, 163-164, 170, 172, 177, 178, 194-195, 202, 204, 209-211, 227, 234, 237, 242-243,

More information

The Decline of the Traditional Church Choir: The Impact on the Church and Society. Dr Arthur Saunders

The Decline of the Traditional Church Choir: The Impact on the Church and Society. Dr Arthur Saunders The Decline of the Traditional Church Choir: The Impact on the Church and Society Introduction Dr Arthur Saunders Although Christianity is growing in most parts of the world, its mainstream denominations

More information

You are Not a Beautiful and Unique Snowflake

You are Not a Beautiful and Unique Snowflake Devin Howard You are Not a Beautiful and Unique Snowflake My project began last summer while at Shad Valley Calgary, a summer enrichment program for grades 11-12. It was there that I heard the phrase emergence

More information

The paradox we re discussing today is not a single argument, but a family of arguments. Here s an example of this sort of argument:!

The paradox we re discussing today is not a single argument, but a family of arguments. Here s an example of this sort of argument:! The Sorites Paradox The paradox we re discussing today is not a single argument, but a family of arguments. Here s an example of this sort of argument:! Height Sorites 1) Someone who is 7 feet in height

More information

AN APOLOGY FOR THE LIFE OF COLLEY CIBBER

AN APOLOGY FOR THE LIFE OF COLLEY CIBBER AN APOLOGY FOR THE LIFE OF COLLEY CIBBER Page 1 Page 2 an apology for the pdf 1 Platoâ s Apology of Socrates How you, men of Athens, have been affected by my accusers, I do 17a not know 1. For my part,

More information

An Interview with GENE GOLUB OH 20. Conducted by Pamela McCorduck. 16 May Stanford, CA

An Interview with GENE GOLUB OH 20. Conducted by Pamela McCorduck. 16 May Stanford, CA An Interview with GENE GOLUB OH 20 Conducted by Pamela McCorduck on 16 May 1979 Stanford, CA Charles Babbage Institute The Center for the History of Information Processing University of Minnesota, Minneapolis

More information

The recordings and transcriptions of the calls are posted on the GNSO Master Calendar page

The recordings and transcriptions of the calls are posted on the GNSO Master Calendar page Page 1 Transcription Hyderabad GNSO Next-Gen RDS PDP Working Group Friday, 04 November 2016 at 10:00 IST Note: Although the transcription is largely accurate, in some cases it is incomplete or inaccurate

More information

MODERN FAMILY FIGHTING

MODERN FAMILY FIGHTING LISTEN IN ENGLISH MODERN FAMILY MODERN FAMILY FIGHTING TEACHER S PACK (COMPREHENSION VOCABULARY DISCUSSION SCRIPT) LISTEN IN ENGLISH ( https://www.youtube.com/watch?v=gs28_bhfois ) www.listeninenglish.com

More information

The Great Debate Assignment World War II. Date Assigned: Thursday, June 11 Date Due: Wednesday, June 17 / 32 marks

The Great Debate Assignment World War II. Date Assigned: Thursday, June 11 Date Due: Wednesday, June 17 / 32 marks The Great Debate Assignment World War II Date Assigned: Thursday, June 11 Date Due: Wednesday, June 17 / 32 marks For this task, you will be divided into groups to prepare to debate on an aspect of World

More information

Midterm Review. Intermediate Algebra / MAT135 S2014 test (Mr. Porter)

Midterm Review. Intermediate Algebra / MAT135 S2014 test (Mr. Porter) Midterm Review Intermediate Algebra / MAT135 S2014 test (Mr. Porter) Student Name/ID: 1. Solve for. 2. Solve for. 3. At the city museum, child admission is and adult admission is. On Wednesday, tickets

More information

Prentice Hall Literature: Timeless Voices, Timeless Themes, Silver Level 2002 Correlated to: West Virginia English Language Arts IGO s (Grade 8)

Prentice Hall Literature: Timeless Voices, Timeless Themes, Silver Level 2002 Correlated to: West Virginia English Language Arts IGO s (Grade 8) Prentice Hall Literature: Timeless Voices, Timeless Themes, Silver Level 2002 West Virginia English Language Arts (Grade 8) Listening/Speaking 8.1 identify and correct usage errors in oral communications

More information

Mathematics. The BIG game Behind the little tricks

Mathematics. The BIG game Behind the little tricks Mathematics The BIG game Behind the little tricks Marta Maria Casetti @mmcasetti (She/Her) Hi there! :-) The goal of this talk is to show maths is nothing to fear, but it's a tool to embrace to empower

More information

PAGLORY COLLEGE OF EDUCATION

PAGLORY COLLEGE OF EDUCATION PAGLORY COLLEGE OF EDUCATION NAME MARY KAYANDA SUBJECT RELIGIOUS EDUCATION COURSE: SECONDARY TEACHERS DIPLOMA LECTURER PASTOR P,J MWEWA ASSIGNMENT NO: 1 QUESTION: Between 5-10 pages discuss the following:

More information

ADAIR COUNTY SCHOOL DISTRICT GRADE 03 REPORT CARD Page 1 of 5

ADAIR COUNTY SCHOOL DISTRICT GRADE 03 REPORT CARD Page 1 of 5 ADAIR COUNTY SCHOOL DISTRICT GRADE 03 REPORT CARD 2013-2014 Page 1 of 5 Student: School: Teacher: ATTENDANCE 1ST 9 2ND 9 Days Present Days Absent Periods Tardy Academic Performance Level for Standards-Based

More information

Cabal, Ted, ed. The Apologetics Study Bible.. Nick Norelli Rightly Dividing the Word of Truth New Jersey

Cabal, Ted, ed. The Apologetics Study Bible.. Nick Norelli Rightly Dividing the Word of Truth New Jersey Cabal, Ted, ed. The Apologetics Study Bible Nashville, TN: Holman Bible, 2007. Pp. xxxviii + 2008. Hardcover. $39.99. ISBN 9781586400248... Nick Norelli Rightly Dividing the Word of Truth New Jersey Obviously

More information

An Efficient Indexing Approach to Find Quranic Symbols in Large Texts

An Efficient Indexing Approach to Find Quranic Symbols in Large Texts Indian Journal of Science and Technology, Vol 7(10), 1643 1649, October 2014 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 An Efficient Indexing Approach to Find Quranic Symbols in Large Texts Vahid

More information

Week 6 Elementary Large Group Script

Week 6 Elementary Large Group Script Elementary Script Need to Know Trust is Being Confident in God s Power! Bible Story The Never-Ending Story Revelation 1; 21-22 Reference Verse God didn t give us a spirit that makes us weak and fearful.

More information

MITOCW L21

MITOCW L21 MITOCW 7.014-2005-L21 So, we have another kind of very interesting piece of the course right now. We're going to continue to talk about genetics, except now we're going to talk about the genetics of diploid

More information

Biometrics Prof. Phalguni Gupta Department of Computer Science and Engineering Indian Institute of Technology, Kanpur. Lecture No.

Biometrics Prof. Phalguni Gupta Department of Computer Science and Engineering Indian Institute of Technology, Kanpur. Lecture No. Biometrics Prof. Phalguni Gupta Department of Computer Science and Engineering Indian Institute of Technology, Kanpur Lecture No. # 13 (Refer Slide Time: 00:16) So, in the last class, we were discussing

More information

Use a test generator to construct multiple versions of an exam.

Use a test generator to construct multiple versions of an exam. (1) Record Keeping: Teachers have a professional responsibility to monitor, record and communicate student progress. Many schools and districts have adopted networked grading systems, and some publish

More information

The following content is provided under a Creative Commons license. Your support

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

More information

Al-Qaeda warns of more attacks

Al-Qaeda warns of more attacks www.breaking News English.com Ready-to-use ESL / EFL Lessons Al-Qaeda warns of more attacks URL: http://www.breakingnewsenglish.com/0508/050805-zawahri-e.html Today s contents The Article 2 Warm-ups 3

More information

GIVING LIVING. Text: Luke 6:38

GIVING LIVING. Text: Luke 6:38 GIVING LIVING Text: Luke 6:38 Key Word: Giving Key Thought: There Are Principles for Giving and Receiving in the Word of God During this Christmas season we hear a lot about giving to others. But have

More information

New Pope chosen (Wed 20 Apr, 2005)

New Pope chosen (Wed 20 Apr, 2005) New Pope chosen (Wed 20 Apr, 2005) WARM-UPS CHAT: Talk in pairs or groups about: Roman Catholic Church / the 265 th Pope / 78-yearolds / tradition / homosexuality / gay marriage / abortion / contraception

More information

Rosendo "Ro" Parra Commencement Speech May 22, 2002

Rosendo Ro Parra Commencement Speech May 22, 2002 Rosendo "Ro" Parra Commencement Speech May 22, 2002 Thank you, Dean Frank. Proud parents, friends, guests, faculty thanks to all of you for inviting me to share this day with you. To the graduates, congratulations.

More information

"Was I speeding? I m sorry, officer. Without my glasses, I can hardly see the speedometer."

Was I speeding? I m sorry, officer. Without my glasses, I can hardly see the speedometer. Excuses February 2, 2014 I thought it would be a good way to start this sermon to read you some funny excuses. So I went online to look. I found lots of excuses, most of which claimed to be genuine excuses

More information